diff --git a/spec/System/TestItemParse_spec.lua b/spec/System/TestItemParse_spec.lua index eb2763fe38..721a6be768 100644 --- a/spec/System/TestItemParse_spec.lua +++ b/spec/System/TestItemParse_spec.lua @@ -623,16 +623,16 @@ describe("TestItemParse", function() Rune: Soul Core of Atmohua LevelReq: 79 Implicits: 4 - {enchant}{rune}Convert 20% of Requirements to Dexterity - {enchant}{rune}Convert 20% of Requirements to Intelligence - {enchant}{rune}Convert 20% of Requirements to Strength + {enchant}{rune}Convert 40% of Requirements to Dexterity + {enchant}{rune}Convert 40% of Requirements to Intelligence + {enchant}{rune}Convert 40% of Requirements to Strength {tags:block}{range:1}+(10-15)% to Block chance Corrupted ]]) item:BuildAndParseRaw() - assert.are.equals(35, item.requirements.strMod) - assert.are.equals(86, item.requirements.dexMod) - assert.are.equals(55, item.requirements.intMod) + assert.are.equals(70, item.requirements.strMod) + assert.are.equals(45, item.requirements.dexMod) + assert.are.equals(60, item.requirements.intMod) end) @@ -1043,7 +1043,7 @@ describe("TestItemParse", function() -------- Item Level: 86 -------- - Hits against you have 40% reduced Critical Damage Bonus (rune) + Hits against you have 100% reduced Critical Damage Bonus (rune) -------- Only Soul Cores can be Socketed in this item This item gains bonuses from Socketed Soul Cores as though it was also a Shield @@ -1052,7 +1052,7 @@ describe("TestItemParse", function() assert.are.same({ "Soul Core of Ticaba" }, item.runes) item:BuildAndParseRaw() assert.are.same({ "Soul Core of Ticaba", "None", "None", "None", "None", "None" }, item.runes) - assert.are.equals("Hits against you have 40% reduced Critical Damage Bonus", item.runeModLines[1].line) + assert.are.equals("Hits against you have 100% reduced Critical Damage Bonus", item.runeModLines[1].line) end) it("infers pasted Soul Core lines with socketed Soul Core effect", function() @@ -1064,7 +1064,7 @@ describe("TestItemParse", function() -------- Sockets: S -------- - Hits against you have 40% reduced Critical Damage Bonus (rune) + Hits against you have 100% reduced Critical Damage Bonus (rune) -------- 100% increased effect of Socketed Soul Cores ]]) @@ -1072,7 +1072,7 @@ describe("TestItemParse", function() assert.are.same({ "Soul Core of Ticaba" }, item.runes) item:BuildAndParseRaw() assert.are.same({ "Soul Core of Ticaba" }, item.runes) - assert.is_not_nil(item:BuildRaw():match("Hits against you have 40%% reduced Critical Damage Bonus")) + assert.is_not_nil(item:BuildRaw():match("Hits against you have 100%% reduced Critical Damage Bonus")) end) it("jewel sockets", function() diff --git a/spec/System/TestItemsTab_spec.lua b/spec/System/TestItemsTab_spec.lua index 19c6d80020..a665e76c50 100644 --- a/spec/System/TestItemsTab_spec.lua +++ b/spec/System/TestItemsTab_spec.lua @@ -822,8 +822,8 @@ Ruby]]) end assert.are.equals(1, ticabaCount) assert.are.equals(2, #ticabaRune.lines) - assert.are.equals("Hits against you have 20% reduced Critical Damage Bonus", ticabaRune.lines[1]) - assert.are.equals("Hits against you have 20% reduced Critical Damage Bonus", ticabaRune.lines[2]) + assert.are.equals("Hits against you have 50% reduced Critical Damage Bonus", ticabaRune.lines[1]) + assert.are.equals("Hits against you have 50% reduced Critical Damage Bonus", ticabaRune.lines[2]) end) it("keeps pure Bonded slot entries and uses the regular rune mod as the dropdown label", function () diff --git a/src/Assets/monster-categories_44_44_BC7.dds.zst b/src/Assets/monster-categories_44_44_BC7.dds.zst new file mode 100644 index 0000000000..85b0238fcc Binary files /dev/null and b/src/Assets/monster-categories_44_44_BC7.dds.zst differ diff --git a/src/Classes/CheckBoxControl.lua b/src/Classes/CheckBoxControl.lua index 5b1284f961..ba8451c875 100644 --- a/src/Classes/CheckBoxControl.lua +++ b/src/Classes/CheckBoxControl.lua @@ -77,7 +77,7 @@ function CheckBoxClass:Draw(viewPort, noTooltip) else SetDrawColor(0.5, 0.5, 0.5) end - DrawImage(self.checkImage.handle, x + 1, y + 1, size - 2, size - 2, self.checkImage[1]) + DrawImage(self.checkImage.handle, x + 1, y + 1, size - 2, size - 2, unpack(self.checkImage)) else if self.state then if not enabled then diff --git a/src/Classes/PassiveTreeView.lua b/src/Classes/PassiveTreeView.lua index 86ffcd4659..a4b00ce7cb 100644 --- a/src/Classes/PassiveTreeView.lua +++ b/src/Classes/PassiveTreeView.lua @@ -1394,7 +1394,7 @@ function PassiveTreeViewClass:DrawQuadAndRotate(data, xTree, yTree, angleRad, tr local heightActive = data.height local function rotate(x, y, cx, cy, theta) - local translatedX = x - cy + local translatedX = x - cx local translatedY = y - cy local cosTheta = math.cos(theta) diff --git a/src/Data/Assets.lua b/src/Data/Assets.lua index 9eb813d629..fe0e42d5f9 100644 --- a/src/Data/Assets.lua +++ b/src/Data/Assets.lua @@ -3,13 +3,49 @@ return { ddsCoords={ - ["monster-categories_36_36_BC7.dds.zst"]={ - Beast=1, - Construct=2, - Demon=3, - Eldritch=4, - Humanoid=5, - Undead=6 + ["monster-categories_44_44_BC7.dds.zst"]={ + Beast={ + [1]=0, + [2]=0, + [3]=32, + [4]=32, + [5]=1 + }, + Construct={ + [1]=0, + [2]=0, + [3]=32, + [4]=32, + [5]=2 + }, + Demon={ + [1]=0, + [2]=0, + [3]=32, + [4]=32, + [5]=3 + }, + Eldritch={ + [1]=0, + [2]=0, + [3]=32, + [4]=32, + [5]=4 + }, + Humanoid={ + [1]=0, + [2]=0, + [3]=32, + [4]=32, + [5]=5 + }, + Undead={ + [1]=0, + [2]=0, + [3]=32, + [4]=32, + [5]=6 + } } } } \ No newline at end of file diff --git a/src/Data/Bases/belt.lua b/src/Data/Bases/belt.lua index fa7ebf7413..3dc726ef09 100644 --- a/src/Data/Bases/belt.lua +++ b/src/Data/Bases/belt.lua @@ -105,7 +105,7 @@ itemBases["Runemastered Heavy Belt"] = { charmLimit = 0, hidden = true, tags = { belt = true, default = true, genesis_tree_caster = true, genesis_tree_minion = true, runeforged = true, }, - implicit = "(20-30)% increased Stun Threshold\nHas (1-3) Charm Slot\nRunic Ward recovery can can Overflow maximum Runic Ward", + implicit = "(20-30)% increased Stun Threshold\nHas (1-3) Charm Slot\nRunic Ward recovery can Overflow maximum Runic Ward", implicitModTypes = { { }, { "charm" }, { }, }, req = { level = 50, }, } diff --git a/src/Data/Bases/sceptre.lua b/src/Data/Bases/sceptre.lua index e43adb6137..537de1ae52 100644 --- a/src/Data/Bases/sceptre.lua +++ b/src/Data/Bases/sceptre.lua @@ -7,7 +7,7 @@ itemBases["Rattling Sceptre"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, onehand = true, physical_implicit_skill = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Skeletal Warrior Minion", implicitModTypes = { }, req = { }, @@ -57,7 +57,7 @@ itemBases["Shrine Sceptre"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, fire_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Fire", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -67,7 +67,7 @@ itemBases["Shrine Sceptre"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { cold_implicit_skill = true, default = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Ice", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -77,7 +77,7 @@ itemBases["Shrine Sceptre"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, lightning_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Lightning", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -117,7 +117,7 @@ itemBases["Wrath Sceptre"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, lightning_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Fulmination", implicitModTypes = { }, req = { level = 49, int = 87, }, @@ -159,7 +159,7 @@ itemBases["Shrine Sceptre"] = { spirit = 100, hidden = true, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, fire_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Fire", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -170,7 +170,7 @@ itemBases["Shrine Sceptre"] = { spirit = 100, hidden = true, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { cold_implicit_skill = true, default = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Ice", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -181,7 +181,7 @@ itemBases["Shrine Sceptre"] = { spirit = 100, hidden = true, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, lightning_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Lightning", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -192,7 +192,7 @@ itemBases["Shrine Sceptre (Purity of Fire)"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, fire_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Fire", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -202,7 +202,7 @@ itemBases["Shrine Sceptre (Purity of Cold)"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { cold_implicit_skill = true, default = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Ice", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, @@ -212,7 +212,7 @@ itemBases["Shrine Sceptre (Purity of Lighting)"] = { quality = 20, spirit = 100, socketLimit = 3, - tags = { default = true, onehand = true, sceptre = true, }, + tags = { default = true, lightning_implicit_skill = true, onehand = true, sceptre = true, }, implicit = "Grants Skill: Level (1-20) Purity of Lightning", implicitModTypes = { }, req = { level = 26, str = 17, int = 38, }, diff --git a/src/Data/Bases/staff.lua b/src/Data/Bases/staff.lua index 6f1d236c64..999ddd0a19 100644 --- a/src/Data/Bases/staff.lua +++ b/src/Data/Bases/staff.lua @@ -6,7 +6,7 @@ itemBases["Ashen Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { default = true, fire_implicit_skill = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Firebolt", implicitModTypes = { }, req = { }, @@ -15,7 +15,7 @@ itemBases["Gelid Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { cold_implicit_skill = true, default = true, no_chaos_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Freezing Shards", implicitModTypes = { }, req = { }, @@ -24,7 +24,7 @@ itemBases["Voltaic Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { default = true, lightning_implicit_skill = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Lightning Bolt", implicitModTypes = { }, req = { }, @@ -42,7 +42,7 @@ itemBases["Pyrophyte Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { default = true, fire_implicit_skill = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Solar Orb", implicitModTypes = { }, req = { level = 16, int = 31, }, @@ -60,7 +60,7 @@ itemBases["Rending Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { chaos_implicit_skill = true, default = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Soulrend", implicitModTypes = { }, req = { level = 33, int = 60, }, @@ -69,7 +69,7 @@ itemBases["Reaping Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, staff = true, twohand = true, }, + tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, physical_implicit_skill = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Reap", implicitModTypes = { }, req = { level = 38, int = 68, }, @@ -78,7 +78,7 @@ itemBases["Icicle Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { cold_implicit_skill = true, default = true, no_chaos_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Firebolt", implicitModTypes = { }, req = { level = 45, int = 80, }, @@ -96,7 +96,7 @@ itemBases["Paralysing Staff"] = { type = "Staff", quality = 20, socketLimit = 4, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, + tags = { default = true, lightning_implicit_skill = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_physical_spell_mods = true, staff = true, twohand = true, }, implicit = "Grants Skill: Level (1-20) Enervating Nova", implicitModTypes = { }, req = { level = 52, int = 92, }, diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua index 2f101de765..4a712dfa23 100644 --- a/src/Data/Bases/wand.lua +++ b/src/Data/Bases/wand.lua @@ -6,7 +6,7 @@ itemBases["Withered Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, + tags = { chaos_implicit_skill = true, default = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Chaos Bolt", implicitModTypes = { }, req = { }, @@ -15,7 +15,7 @@ itemBases["Bone Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, onehand = true, wand = true, }, + tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, onehand = true, physical_implicit_skill = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Bone Blast", implicitModTypes = { }, req = { }, @@ -42,7 +42,7 @@ itemBases["Volatile Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, + tags = { default = true, fire_implicit_skill = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Volatile Dead", implicitModTypes = { }, req = { level = 16, int = 31, }, @@ -51,7 +51,7 @@ itemBases["Galvanic Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, + tags = { default = true, lightning_implicit_skill = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Galvanic Field", implicitModTypes = { }, req = { level = 25, int = 46, }, @@ -69,7 +69,7 @@ itemBases["Offering Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, onehand = true, wand = true, }, + tags = { default = true, no_chaos_spell_mods = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, onehand = true, physical_implicit_skill = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Exsanguinate", implicitModTypes = { }, req = { level = 38, int = 68, }, @@ -78,7 +78,7 @@ itemBases["Frigid Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_chaos_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, + tags = { cold_implicit_skill = true, default = true, no_chaos_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Chaos Bolt", implicitModTypes = { }, req = { level = 45, int = 80, }, @@ -105,7 +105,7 @@ itemBases["Primordial Wand"] = { type = "Wand", quality = 20, socketLimit = 3, - tags = { default = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, + tags = { chaos_implicit_skill = true, default = true, no_cold_spell_mods = true, no_fire_spell_mods = true, no_lightning_spell_mods = true, no_physical_spell_mods = true, onehand = true, wand = true, }, implicit = "Grants Skill: Level (1-20) Wither", implicitModTypes = { }, req = { level = 56, int = 99, }, diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua index 9e4ce6b68f..45bfb07ba3 100644 --- a/src/Data/Gems.lua +++ b/src/Data/Gems.lua @@ -8918,12 +8918,11 @@ return { tags = { grants_active_skill = true, attack = true, - area = true, ammunition = true, projectile = true, }, gemType = "Attack", - tagString = "AoE, Ammunition, Projectile", + tagString = "Ammunition, Projectile", weaponRequirements = "Crossbow", reqStr = 0, reqDex = 0, diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua index 438e91d861..15812a5bc9 100644 --- a/src/Data/Minions.lua +++ b/src/Data/Minions.lua @@ -82,7 +82,7 @@ minions["SummonedRagingSpirit"] = { minions["RaisedSkeletonSniper"] = { name = "Skeletal Sniper", - monsterTags = { "bone_armour", "bones", "has_bow", "medium_movement", "physical_affinity", "puncturing_weapon", "ranged", "skeleton", "Stab_onhit_audio", "undead", }, + monsterTags = { "bone_armour", "bones", "has_bow", "medium_movement", "physical_affinity", "puncturing_weapon", "ranged", "skeleton", "Stab1HMetal_onhit_audio", "undead", }, life = 0.55, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -121,7 +121,7 @@ minions["RaisedSkeletonSniper"] = { minions["RaisedSkeletonBrute"] = { name = "Skeletal Brute", - monsterTags = { "2HBluntMetal_onhit_audio", "bone_armour", "bones", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", }, + monsterTags = { "bone_armour", "bones", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "Mace2HMetal_onhit_audio", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -326,7 +326,7 @@ minions["RaisedSkeletonArsonist"] = { minions["RaisedSkeletonReaver"] = { name = "Skeletal Reaver", - monsterTags = { "1HAxe_onhit_audio", "bone_armour", "bones", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", }, + monsterTags = { "Axe1HMetal_onhit_audio", "bone_armour", "bones", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", }, life = 0.7, baseDamageIgnoresAttackSpeed = true, armour = 0.2, @@ -368,7 +368,7 @@ minions["RaisedSkeletonReaver"] = { minions["RaisedSkeletonWarriors"] = { name = "Skeletal Warrior", - monsterTags = { "1HSword_onhit_audio", "bone_armour", "bones", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", }, + monsterTags = { "bone_armour", "bones", "fast_movement", "has_one_hand_sword", "has_one_handed_melee", "medium_height", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "Sword1H_onhit_audio", "undead", }, life = 0.88, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -567,7 +567,7 @@ minions["AncestralSpiritCaster"] = { minions["AncestralSpiritWarhorn"] = { name = "Ancestral Warhorn", - monsterTags = { "2HBluntWood_onhit_audio", "bludgeoning_weapon", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "karui", "light_armour", "medium_height", "melee", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "bludgeoning_weapon", "has_one_hand_mace", "has_one_handed_melee", "human", "humanoid", "karui", "light_armour", "Mace2HWood_onhit_audio", "medium_height", "melee", "not_int", "physical_affinity", "very_slow_movement", }, life = 0.75, baseDamageIgnoresAttackSpeed = true, armour = 0.35, @@ -950,7 +950,7 @@ minions["WolfMinion"] = { minions["BeetleMinion"] = { name = "Corpse Beetle", - monsterTags = { "allows_inc_aoe", "beast", "Claw_onhit_audio", "insect", "sand_blood", "very_fast_movement", }, + monsterTags = { "allows_inc_aoe", "beast", "insect", "sand_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 0.4, fireResist = 0, coldResist = 0, @@ -1246,7 +1246,7 @@ minions["AzmerianSwarm"] = { minions["AzmerianWolf"] = { name = "Azmerian Wolf", - monsterTags = { "1HSword_onhit_audio", "beast", "mammal_beast", "medium_movement", "not_int", "not_str", "red_blood", }, + monsterTags = { "beast", "mammal_beast", "medium_movement", "not_int", "not_str", "red_blood", "Sword1H_onhit_audio", }, life = 2.7, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -1294,7 +1294,7 @@ minions["AzmerianWolf"] = { minions["BearCompanion"] = { name = "Wild Bear Spirit", - monsterTags = { "beast", "Claw_onhit_audio", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", }, + monsterTags = { "beast", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 1, diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index 1f12083c60..7b17442a9e 100644 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -7060,6 +7060,7 @@ c["Curses you inflict have infinite Duration You can apply an additional Curse"] c["Curses you inflict ignore Curse limit"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=99}},nil} c["Curses you inflict spread to enemies within 3 metres when Cursed enemy dies"]={nil,"Curses you inflict spread to enemies within 3 metres when Cursed enemy dies "} c["Curses you inflict spread to enemies within 3 metres when Cursed enemy dies Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence"]={nil,"Curses you inflict spread to enemies within 3 metres when Cursed enemy dies Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence "} +c["DNT Obliterated #233763"]={nil,"DNT Obliterated #233763 "} c["DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers"]={nil,"DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers "} c["DNT-UNUSED Blasphemy has no Reservation"]={nil,"DNT-UNUSED Blasphemy has no Reservation "} c["DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated"]={nil,"DNT-UNUSED Bleeding you inflict on Shocked enemies is Aggravated "} @@ -8794,13 +8795,13 @@ c["No Rage effect"]={{[1]={flags=0,keywordFlags=0,name="RageEffect",type="OVERRI c["No inherent Mana Regeneration"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoInherentManaRegen",type="FLAG",value=true}},nil} c["Non-Channelling Attacks cost an additional 6% of your maximum Mana"]={nil,"Non-Channelling Attacks cost an additional 6% of your maximum Mana "} c["Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana"]={nil,"Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana "} +c["Non-Channelling Skills have 3% increased Spell Critical Hit Chance per 100 maximum Mana"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Mana",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=3}},nil} c["Non-Channelling Spells cost an additional 6% of your maximum Life"]={{[1]={[1]={floor=true,percent=6,stat="Life",type="PercentStat"},[2]={neg=true,skillType=48,type="SkillType"},flags=0,keywordFlags=131072,name="LifeCostBase",type="BASE",value=1}},nil} c["Non-Channelling Spells deal 10% increased Damage per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["Non-Channelling Spells deal 6% increased Damage per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil} c["Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Mana",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil} c["Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},flags=2,keywordFlags=0,name="Mana",type="BASE",value=25}}," to cost Double and Critically Hit "} c["Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=3}},nil} -c["Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Mana",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=3}},nil} c["Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=0,keywordFlags=131072,name="AilmentMagnitude",type="INC",value=3}},nil} c["Non-Channelling Spells have 5% increased Critical Hit Chance per 100 maximum Life"]={{[1]={[1]={neg=true,skillType=48,type="SkillType"},[2]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["Non-Critical Hits deal no Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-100}},nil} @@ -9305,7 +9306,7 @@ c["Ritual Cadence"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",va c["Rogue Equipment cannot be found"]={nil,"Rogue Equipment cannot be found "} c["Rogue Perks are doubled"]={{},"Rogue Perks are d "} c["Rolls only the minimum or maximum Damage value for each Damage Type"]={nil,"Rolls only the minimum or maximum Damage value for each Damage Type "} -c["Runic Ward recovery can can Overflow maximum Runic Ward"]={nil,"Runic Ward recovery can can Overflow maximum Runic Ward "} +c["Runic Ward recovery can Overflow maximum Runic Ward"]={nil,"Runic Ward recovery can Overflow maximum Runic Ward "} c["Sacrifice 10% of maximum Life to gain that much Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="Life",type="BASE",value=10}}," to gain that much Energy Shield when you Cast a "} c["Sacrifice 15% of maximum Life to gain that much Energy Shield when you Cast a Spell"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=2,keywordFlags=0,name="Life",type="BASE",value=15}}," to gain that much Energy Shield when you Cast a "} c["Sacrifice 20% of Mana and they Leech that Mana"]={{[1]={[1]={includeTransfigured=true,skillName="Sacrifice",type="SkillName"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," and they Leech that Mana "} diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index ab8ad64d8c..c987e194e5 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -20,7 +20,7 @@ return { ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10247 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, + ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, @@ -33,7 +33,7 @@ return { ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, - ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, @@ -41,7 +41,7 @@ return { ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, - ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, @@ -66,11 +66,11 @@ return { ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4689 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10528 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, - ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6887 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6888 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6884 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4690 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10543 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, + ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6890 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6891 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6887 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, @@ -86,11 +86,11 @@ return { ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, - ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 7595 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% increased Melee Strike Range with this weapon", statOrder = { 7601 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 Rage on Hit", statOrder = { 7700 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7793 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, + ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 Rage on Hit", statOrder = { 7706 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7799 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, @@ -109,7 +109,7 @@ return { ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-15)% increased Critical Damage Bonus" }, } }, ["CorruptionChanceToPierce1"] = { type = "Corrupted", affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, - ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-20)% chance to Chain an additional time from terrain" }, } }, + ["CorruptionChainFromTerrain1"] = { type = "Corrupted", affix = "", "Projectiles have (10-20)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-20)% chance to Chain an additional time from terrain" }, } }, ["CorruptionJewelStrength1"] = { type = "Corrupted", affix = "", "+(4-6) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(4-6) to Strength" }, } }, ["CorruptionJewelDexterity1"] = { type = "Corrupted", affix = "", "+(4-6) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(4-6) to Dexterity" }, } }, ["CorruptionJewelIntelligence1"] = { type = "Corrupted", affix = "", "+(4-6) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(4-6) to Intelligence" }, } }, @@ -117,9 +117,9 @@ return { ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, - ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7297 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, - ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10584 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5268 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 7303 }, level = 1, group = "ImmuneToMaim", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, + ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10600 }, level = 1, group = "YouCannotBeHindered", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["CorruptionJewelCorruptedBloodImmunity1"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5269 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, ["CorruptionJewelBlindImmunity1"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(15-25)% increased Warcry Speed" }, } }, ["SpecialCorruptionCurseEffect1"] = { type = "SpecialCorrupted", affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(5-10)% increased Curse Magnitudes" }, } }, @@ -127,6 +127,6 @@ return { ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6405 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, + ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6407 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, } \ No newline at end of file diff --git a/src/Data/ModIncursionLimb.lua b/src/Data/ModIncursionLimb.lua index 0537b7e21c..a09eee455e 100644 --- a/src/Data/ModIncursionLimb.lua +++ b/src/Data/ModIncursionLimb.lua @@ -3,15 +3,15 @@ return { ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 884 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, - ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10062 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, + ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10073 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2983 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, - ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9148 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8016 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9153 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8022 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1133 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 985 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 987 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2376 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, - ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6114 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, + ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6115 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index 8e7faac33d..024418e03b 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -453,13 +453,13 @@ return { ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 836 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 836 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 836 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10254 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10254 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10254 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10254 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, - ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10254 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, - ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10254 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10268 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10268 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10268 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, + ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10268 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, + ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10268 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, + ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10268 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 858 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 858 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, @@ -1148,11 +1148,11 @@ return { ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 857, 892 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 857, 892 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 857, 892 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, - ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1067 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1067 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1067 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, @@ -1233,12 +1233,12 @@ return { ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 990 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 990 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 988 }, level = 55, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 988 }, level = 82, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, @@ -1258,30 +1258,30 @@ return { ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 900 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 900 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 900 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6635 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6635 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6635 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6635 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6635 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6635 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6637 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6637 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6637 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6637 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6637 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6637 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 1049 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 1049 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 1049 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 1049 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 1049 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 1049 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, - ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5601 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5601 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5601 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5601 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5601 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5601 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, - ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5602 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5602 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5602 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5602 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5602 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5602 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, + ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5602 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5602 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5602 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5602 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5602 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5602 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, + ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5603 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5603 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5603 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5603 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5603 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5603 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 989 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 989 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 1055 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, @@ -1420,20 +1420,20 @@ return { ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 1026 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 1026 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 1026 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, - ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6936 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6936 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, - ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6940 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, - ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6940 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, - ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6937 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6937 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6937 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6937 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6937 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6937 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6939 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6939 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, + ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6944 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, + ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6944 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, + ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6940 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6940 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6940 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6940 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6940 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6940 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Augment Items" }, } }, - ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7698 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, - ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6468 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6468 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7704 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, + ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6470 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6470 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, ["EssenceBreach"] = { type = "Prefix", affix = "Breachlord's", "+20% to Maximum Quality", statOrder = { 615 }, level = 1, group = "LocalMaximumQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, @@ -1670,29 +1670,29 @@ return { ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 410 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3912 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3913 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9708 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9716 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3915 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3916 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3164 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8830 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5492 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6737 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8835 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, + ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5493 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6740 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3293 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 444 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 141 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 564 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 545, 545.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1630 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6818 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6821 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2583 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 442 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2376 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2376 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6079 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9172 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6080 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9177 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2288 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7986 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7992 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4660 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4660 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 512 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, @@ -1718,107 +1718,107 @@ return { ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6570 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, - ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5685 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, - ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7546 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, + ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6572 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, + ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5686 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, + ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7552 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of all Attack Skills", statOrder = { 967 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+2 to Level of all Attack Skills" }, } }, ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 967 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 950 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 950 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, - ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7634 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, - ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, - ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, + ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7640 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, + ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, + ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 999 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 1000 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1001 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, - ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2574 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, ["GenesisTreeAmuletColdDamageAsPortionOfDamageCrafted"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4324, 4324.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6585 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4725 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9014 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8870 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9794 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, + ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6587 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, + ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4726 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, + ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9019 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, + ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9802 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, ["GenesisTreeRingOfferingEffectCrafted"] = { type = "Prefix", affix = "Sacrificial", "Offering Skills have (16-23)% increased Buff effect", statOrder = { 3719 }, level = 1, group = "OfferingEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (16-23)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10240 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8995 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9007 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9020 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9024 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, + ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10254 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, + ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 9000 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, + ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, + ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9025 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, + ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, ["GenesisTreeRingSpellDamageAsExtraLightningCrafted"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 870 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraFireCrafted"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 864 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraColdCrafted"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 868 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9236 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, + ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9242 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, ["GenesisTreeRingDamageTakenFromManaBeforeLifeCrafted"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6528 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7380 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10020 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6556 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7538 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5671 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, + ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6530 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, + ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7386 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, + ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10030 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6558 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7544 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5672 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, ["GenesisTreeBeltArchonEffectCrafted"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4345 }, level = 1, group = "ArchonEffect", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5561 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10018 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5562 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, + ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10028 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, ["GenesisTreeBeltArchonDurationCrafted"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4344 }, level = 1, group = "ArchonDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5397 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9029 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9091 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6031 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9761 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9062 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4726 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, + ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5398 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9034 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, + ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9096 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, + ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6032 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, + ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9769 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, + ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9067 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4727 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, ["AlloyMaximumRunicWard1"] = { type = "Prefix", affix = "Verisium", "+(37-49) to maximum Runic Ward", statOrder = { 890 }, level = 13, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(37-49) to maximum Runic Ward" }, } }, - ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10513 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, + ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10528 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, ["AlloyMaximumRunicWardPercent1"] = { type = "Prefix", affix = "Verisium", "(6-10)% increased maximum Runic Ward", statOrder = { 891 }, level = 13, group = "GlobalRunicWardPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(6-10)% increased maximum Runic Ward" }, } }, - ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9676 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, - ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9245 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9245 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, + ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9684 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, + ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9251 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, + ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9251 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, ["AlloyAttackSpeedIfMissingWardRecently1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Attack Speed while missing Runic Ward", statOrder = { 4558 }, level = 25, group = "AttackSpeedWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [325171970] = { "(10-15)% increased Attack Speed while missing Runic Ward" }, } }, - ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9677 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, + ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9685 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, ["AlloyLocalWardIncreasePercent1"] = { type = "Prefix", affix = "Verisium", "(24-30)% increased Runic Ward", statOrder = { 855 }, level = 25, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(24-30)% increased Runic Ward" }, } }, ["AlloyLocalWardIncreasePercent2"] = { type = "Prefix", affix = "Verisium", "(31-40)% increased Runic Ward", statOrder = { 855 }, level = 65, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(31-40)% increased Runic Ward" }, } }, ["AlloyMaximumRunicWardWeapon1"] = { type = "Suffix", affix = "of the Stars", "+(51-74) to maximum Runic Ward", statOrder = { 890 }, level = 25, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(51-74) to maximum Runic Ward" }, } }, - ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9732 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, + ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9740 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, ["AlloyPresenceAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(35-50)% increased Presence Area of Effect", statOrder = { 1069 }, level = 25, group = "PresenceRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(35-50)% increased Presence Area of Effect" }, } }, - ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, - ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10240 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, + ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, + ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10254 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, ["AlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(9-12)% increased Cast Speed", statOrder = { 987 }, level = 45, group = "IncreasedCastSpeedNoAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, ["AlloyAttackSpeedRing1"] = { type = "Suffix", affix = "of the Stars", "(7-9)% increased Attack Speed", statOrder = { 985 }, level = 45, group = "IncreasedAttackSpeedNoCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, } }, - ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6883 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, + ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6886 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, ["AlloyTotemPlacementSpeed1"] = { type = "Suffix", affix = "of the Stars", "(30-49)% increased Totem Placement speed", statOrder = { 2360 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-49)% increased Totem Placement speed" }, } }, - ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, ["AlloySkillEffectDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-19)% increased Skill Effect Duration", statOrder = { 1645 }, level = 45, group = "SkillEffectDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, - ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6060 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, ["AlloyArchonDuration1"] = { type = "Suffix", affix = "of the Stars", "(35-42)% increased Archon Buff duration", statOrder = { 4344 }, level = 45, group = "ArchonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(35-42)% increased Archon Buff duration" }, } }, ["AlloyElementalPenetration1"] = { type = "Prefix", affix = "of the Stars", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 45, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, ["AlloyAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 45, group = "AilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-30)% increased Magnitude of Ailments you inflict" }, } }, - ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6528 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, - ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 9007 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, - ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9984 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, + ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6530 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, + ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, + ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9994 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, ["AlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 45, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-15)% increased Area of Effect for Attacks" }, } }, ["AlloySpiritOnBoots1"] = { type = "Suffix", affix = "of the Stars", "+(10-15) to Spirit", statOrder = { 896 }, level = 45, group = "BaseSpirit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, - ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7598 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8870 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7604 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, + ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, ["AlloyEffectOfSocketedAugments1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 65, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "(20-30)% increased effect of Socketed Augment Items" }, } }, ["AlloyEffectOfResistanceMods1"] = { type = "Prefix", affix = "Verisium", "(20-30)% increased Explicit Resistance Modifier magnitudes", statOrder = { 45 }, level = 65, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1972391381] = { "(20-30)% increased Explicit Resistance Modifier magnitudes" }, } }, ["AlloySpellLevelManaHybrid1"] = { type = "Prefix", affix = "Verisium", "+(142-188) to maximum Mana", "+1 to Level of all Spell Skills", statOrder = { 892, 950 }, level = 65, group = "ManaSpellLevelHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(142-188) to maximum Mana" }, [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["AlloyAccuracyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(327-427) to Accuracy Rating", "(5-8)% increased Attack Speed", statOrder = { 880, 946 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, [803737631] = { "+(327-427) to Accuracy Rating" }, } }, + ["AlloyAccuracyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(327-427) to Accuracy Rating", "(5-8)% increased Attack Speed", statOrder = { 880, 946 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, [803737631] = { "+(327-427) to Accuracy Rating" }, } }, ["AlloyManaNearbyAllyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(110-114) to maximum Mana", "Allies in your Presence have (4-8)% increased Attack Speed", statOrder = { 892, 918 }, level = 65, group = "ManaNearbyAllyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(110-114) to maximum Mana" }, [1998951374] = { "Allies in your Presence have (4-8)% increased Attack Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9260 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybridOneHand1"] = { type = "Suffix", affix = "of the Stars", "(26-31)% increased Cast Speed", "Gain (7-11)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9260 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (7-11)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9266 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, + ["AlloyCastSpeedDamageAsExtraColdHybridOneHand1"] = { type = "Suffix", affix = "of the Stars", "(26-31)% increased Cast Speed", "Gain (7-11)% of Elemental Damage as Extra Cold Damage", statOrder = { 987, 9266 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (7-11)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(26-31)% increased Cast Speed" }, } }, ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { type = "Suffix", affix = "of the Stars", "(15-20)% increased Physical Damage", "+(7-10) to all Attributes", statOrder = { 830, 1145 }, level = 65, group = "AttributeIncreasedLocalPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2897413282] = { "+(7-10) to all Attributes" }, [1509134228] = { "(15-20)% increased Physical Damage" }, } }, ["AlloySpiritPresenceAreaOfEffectHybrid1"] = { type = "Suffix", affix = "of the Stars", "(8-12)% increased Spirit", "(50-60)% increased Presence Area of Effect", statOrder = { 857, 1069 }, level = 65, group = "SpiritPresenceAreaOfEffectHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [101878827] = { "(50-60)% increased Presence Area of Effect" }, [3984865854] = { "(8-12)% increased Spirit" }, } }, - ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5395 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, - ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6304 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, - ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5566 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4770 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, - ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8834 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, + ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5396 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, + ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6306 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, + ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5567 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4771 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, + ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8839 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, ["AlloyMeleeStrikeRange1"] = { type = "Suffix", affix = "of the Stars", "+(8-10) to Weapon Range", statOrder = { 2507 }, level = 65, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(8-10) to Weapon Range" }, } }, ["AlloyBallistaLimit1"] = { type = "Suffix", affix = "of the Stars", "+2 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1823942939] = { "+2 to maximum number of Summoned Ballista Totems" }, } }, - ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7541 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, + ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7547 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, ["AlloyMarkEffect"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 65, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "(40-50)% increased Effect of your Mark Skills" }, } }, ["HandWrapsStrength1"] = { type = "Suffix", affix = "of the Brute", "(7-10)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(7-10)% increased Area of Effect for Attacks" }, } }, ["HandWrapsStrength2"] = { type = "Suffix", affix = "of the Wrestler", "(11-13)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, @@ -1828,15 +1828,15 @@ return { ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(23-25)% increased Area of Effect for Attacks" }, } }, ["HandWrapsStrength7"] = { type = "Suffix", affix = "of the Leviathan", "(26-28)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(26-28)% increased Area of Effect for Attacks" }, } }, ["HandWrapsStrength8"] = { type = "Suffix", affix = "of the Titan", "(29-32)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(29-32)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, ["HandWrapsIntelligence1"] = { type = "Suffix", affix = "of the Pupil", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, ["HandWrapsIntelligence2"] = { type = "Suffix", affix = "of the Student", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, ["HandWrapsIntelligence3"] = { type = "Suffix", affix = "of the Prodigy", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, @@ -1972,42 +1972,42 @@ return { ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, @@ -2048,15 +2048,15 @@ return { ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (17-18)% of Damage as Extra Cold Damage" }, } }, ["HandWrapsAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Attacks Gain (19-20)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (19-20)% of Damage as Extra Cold Damage" }, } }, ["HandWrapsAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Attacks Gain (21-23)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (21-23)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, ["HandWrapsGlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+(10-12)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, ["HandWrapsGlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", "+(10-12)% to Quality of all Skills", statOrder = { 966, 975 }, level = 1, group = "GlobalSkillGemQualityMeleeLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, ["HandWrapsLifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (8-8.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, @@ -2085,10 +2085,10 @@ return { ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, ["HandWrapsManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Recover 2% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, ["HandWrapsManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7440 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7440 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7440 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7440 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7446 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7446 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7446 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7446 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, ["HandWrapsIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, ["HandWrapsIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(14-18)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(14-18)% chance to gain Onslaught for 4 seconds on Hit" }, } }, ["HandWrapsIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(20-24)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, @@ -2107,9 +2107,9 @@ return { ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.6-2)% to Critical Hit Chance" }, } }, ["HandWrapsCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(2.1-2.5)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.1-2.5)% to Critical Hit Chance" }, } }, ["HandWrapsCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(2.5-3)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.5-3)% to Critical Hit Chance" }, } }, - ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["HandWrapsEnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, ["HandWrapsEnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, ["HandWrapsEnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, @@ -2121,11 +2121,11 @@ return { ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, ["HandWrapsArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(19-21)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(19-21)% to all Elemental Resistances" }, } }, ["HandWrapsArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(22-24)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(22-24)% to all Elemental Resistances" }, } }, - ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(2-3)% to Maximum Lightning Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1011, 1024 }, level = 1, group = "ChaosAndMaxLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "(7-9)% increased Strength and Dexterity", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "strength", "attribute" }, tradeHashes = { [4248928173] = { "(7-9)% increased Strength and Dexterity" }, } }, ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(2-3)% to Maximum Fire Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1024 }, level = 1, group = "ChaosAndMaxFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, @@ -2133,31 +2133,31 @@ return { ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1010, 1024 }, level = 1, group = "ChaosAndMaxColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "(7-9)% increased Dexterity and Intelligence", statOrder = { 1004 }, level = 1, group = "IncreasedDexterityAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "intelligence", "attribute" }, tradeHashes = { [3300318172] = { "(7-9)% increased Dexterity and Intelligence" }, } }, ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Reservation Efficiency of Skills", statOrder = { 1955 }, level = 1, group = "ReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2587176568] = { "(6-10)% increased Reservation Efficiency of Skills" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4735 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5815 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4736 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to inflict Bleeding is calculated from your base chance to Poison instead", statOrder = { 4659 }, level = 1, group = "BasePoisonChanceAppliesToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1710906986] = { "Chance to inflict Bleeding is calculated from your base chance to Poison instead" }, } }, ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", statOrder = { 4238 }, level = 1, group = "AggravateOldBleedOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [521615509] = { "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds" }, } }, ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(13-17)% increased Attack Speed if you haven't been Hit Recently", statOrder = { 4551 }, level = 1, group = "AttackSpeedIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3842707164] = { "(13-17)% increased Attack Speed if you haven't been Hit Recently" }, } }, ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Mark Skills have (15-25)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (15-25)% increased Use Speed" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9272 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7449 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5954 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9278 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7455 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5955 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(5-10)% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-10)% chance to gain a Power Charge on Critical Hit" }, } }, ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(17-23)% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "(17-23)% increased Attack Speed when on Full Life" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6338, 6516, 6516.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6338, 6516, 6516.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6340, 6518, 6518.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6340, 6518, 6518.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, ["HandWrapsDecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, ["HandWrapsDecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3011 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, ["HandWrapsDecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, ["HandWrapsDecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3012 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "+(10-25) to Ailment Threshold", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4264, 4266 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(10-25) to Ailment Threshold" }, [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "+(26-40) to Ailment Threshold", "(21-35)% increased Elemental Ailment Threshold", statOrder = { 4264, 4266 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(26-40) to Ailment Threshold" }, [3544800472] = { "(21-35)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6255, 6255.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6255, 6255.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6257, 6257.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6257, 6257.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, ["HandWrapsDecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-22)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-22)% increased Duration of Ailments on Enemies" }, } }, ["HandWrapsDecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(23-37)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-37)% increased Duration of Ailments on Enemies" }, } }, ["HandWrapsDecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Damage while Leeching", statOrder = { 2795 }, level = 1, group = "DamageWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-35)% increased Damage while Leeching" }, } }, - ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6505 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, + ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6507 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, ["HandWrapsDecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "Leech (7-12)% of Physical Attack Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-12)% of Physical Attack Damage as Life" }, } }, ["HandWrapsDecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (5-9)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (5-9)% Chaos Resistance" }, } }, ["HandWrapsDecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (10-17)% Chaos Resistance", statOrder = { 3273 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, @@ -2165,13 +2165,13 @@ return { ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1909, 2376 }, level = 1, group = "AdditionalCurseOnEnemiesAndCurseMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [2353576063] = { "(5-15)% increased Curse Magnitudes" }, } }, ["HandWrapsDecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (4-8)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-8)% Elemental Resistances" }, } }, ["HandWrapsDecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7441 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7978 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, + ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7447 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, + ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7984 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire an additional Projectile", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire an additional Projectile" }, } }, ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 2 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 2 additional Projectiles" }, } }, ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 3 additional Projectiles", statOrder = { 3849 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 3 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5830 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5830 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5831 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5831 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(1-2)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(1-2)% increased Projectile Damage per Power Charge" }, } }, ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(3-4)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(3-4)% increased Projectile Damage per Power Charge" }, } }, ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(5-6)% increased Projectile Damage per Power Charge", statOrder = { 2415 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, @@ -2185,51 +2185,51 @@ return { ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2476 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (26-30)% chance to Shock" }, } }, ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain an additional time", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9559 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9559 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10615 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10615 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5974 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5974 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8823 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8823 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9538 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9538 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, - ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9567 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9567 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10631 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10631 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5975 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5975 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8828 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8828 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9546 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9546 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, + ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5801 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, ["HandWrapsAlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(10-30)% chance to gain a Power Charge when you Stun", statOrder = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "(10-30)% chance to gain a Power Charge when you Stun" }, } }, - ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5815 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, ["HandWrapsAlloyElementalPenetration1"] = { type = "Suffix", affix = "of the Stars", "+(20-30)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, ["HandWrapsAlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6111 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6884 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6887, 6888 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, + ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6112 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6887 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, + ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6890, 6891 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { type = "Prefix", affix = "", "+(36-42) to maximum Mana", "(15-35)% increased Attack Damage", statOrder = { 892, 1156 }, level = 1, group = "AttackDamageAndBaseMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "damage", "attack" }, tradeHashes = { [1050105434] = { "+(36-42) to maximum Mana" }, [2843214518] = { "(15-35)% increased Attack Damage" }, } }, - ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9682 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9690 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { type = "Prefix", affix = "", "(25-45)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(25-45)% of Damage taken Recouped as Mana" }, } }, ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { type = "Prefix", affix = "", "(15-40)% reduced Mana Cost of Attacks", statOrder = { 4538 }, level = 1, group = "ReducedAttackManaCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(15-40)% reduced Mana Cost of Attacks" }, } }, - ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9904 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, + ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9912 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { type = "Prefix", affix = "", "Attacks have added Physical damage equal to (1-3)% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7440 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7446 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { type = "Prefix", affix = "", "(20-30)% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4246007234] = { "(20-30)% increased Attack Damage while on Low Life" }, } }, ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "", "Dazes on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3146310524] = { "Dazes on Hit" }, } }, ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { type = "Suffix", affix = "", "(10-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(10-60)% reduced Poison Duration on you" }, } }, ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { type = "Suffix", affix = "", "Attacks have added Chaos damage equal to (1-3)% of maximum Life", statOrder = { 4463 }, level = 1, group = "ChaosDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9496 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9504 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { type = "Suffix", affix = "", "+(205-221) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(205-221) to maximum Life" }, } }, ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { type = "Suffix", affix = "", "(7-16)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-16)% increased maximum Energy Shield" }, } }, ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { type = "Suffix", affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { type = "Suffix", affix = "", "Attacks have (35-80)% chance to cause Bleeding", statOrder = { 2270 }, level = 1, group = "ChanceToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (35-80)% chance to cause Bleeding" }, } }, - ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5587, 9497 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 6003, 9497 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9164, 9497 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, + ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5588, 9505 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 6004, 9505 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, + ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9169, 9505 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-50)% chance to Avoid being Ignited" }, } }, ["HandWrapsUniqueMutatedVaalChillEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Chilled", statOrder = { 1600 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-50)% chance to Avoid being Chilled" }, } }, ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { type = "Suffix", affix = "", "Regenerate (5-15)% of maximum Life per second while Frozen", statOrder = { 3419 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate (5-15)% of maximum Life per second while Frozen" }, } }, ["HandWrapsUniqueMutatedVaalShockEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Shocked", statOrder = { 1604 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-50)% chance to Avoid being Shocked" }, } }, ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { type = "Suffix", affix = "", "(20-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(20-30)% reduced effect of Curses on you" }, } }, ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { type = "Suffix", affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2749 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6868 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, - ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9295 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6871 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, + ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9301 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { type = "Suffix", affix = "", "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", statOrder = { 4550 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana" }, } }, ["MinionDamage1"] = { type = "Prefix", affix = "Hustler's", "Minions deal (7-9)% increased Damage", statOrder = { 1720 }, level = 13, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-9)% increased Damage" }, } }, ["MinionDamage2"] = { type = "Prefix", affix = "Conniver's", "Minions deal (10-12)% increased Damage", statOrder = { 1720 }, level = 26, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-12)% increased Damage" }, } }, @@ -2249,51 +2249,51 @@ return { ["MinionElementalResistance4"] = { type = "Suffix", affix = "of Conditioning", "Minions have +(17-19)% to all Elemental Resistances", statOrder = { 2667 }, level = 57, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(17-19)% to all Elemental Resistances" }, } }, ["MinionElementalResistance5"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(20-22)% to all Elemental Resistances", statOrder = { 2667 }, level = 66, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(20-22)% to all Elemental Resistances" }, } }, ["MinionElementalResistance6"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(23-25)% to all Elemental Resistances", statOrder = { 2667 }, level = 73, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(23-25)% to all Elemental Resistances" }, } }, - ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, - ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 9025 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 9025 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 9025 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 9025 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 9025 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 9025 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, + ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, + ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 9030 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 9030 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 9030 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 9030 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 9030 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 9030 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, ["MinionLifeRing1"] = { type = "Prefix", affix = "Bearing", "Minions have (7-10)% increased maximum Life", statOrder = { 1026 }, level = 18, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-10)% increased maximum Life" }, } }, ["MinionLifeRing2"] = { type = "Prefix", affix = "Bracing", "Minions have (11-14)% increased maximum Life", statOrder = { 1026 }, level = 29, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (11-14)% increased maximum Life" }, } }, ["MinionLifeRing3"] = { type = "Prefix", affix = "Toughening", "Minions have (15-18)% increased maximum Life", statOrder = { 1026 }, level = 41, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, ["MinionLifeRing4"] = { type = "Prefix", affix = "Reinforcing", "Minions have (19-22)% increased maximum Life", statOrder = { 1026 }, level = 52, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, ["MinionLifeRing5"] = { type = "Prefix", affix = "Bolstering", "Minions have (23-26)% increased maximum Life", statOrder = { 1026 }, level = 67, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-26)% increased maximum Life" }, } }, ["MinionLifeRing6"] = { type = "Prefix", affix = "Fortifying", "Minions have (27-30)% increased maximum Life", statOrder = { 1026 }, level = 75, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, - ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9080 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, - ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9080 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, - ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9080 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, - ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9080 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, - ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 9022 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 9022 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 9022 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 9022 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 9022 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 9022 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, + ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9085 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, + ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9085 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, + ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9085 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, + ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9085 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, + ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 9027 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 9027 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 9027 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 9027 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 9027 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 9027 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, ["MinionGemLevelBelt1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 972 }, level = 36, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, ["MinionGemLevelBelt2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 972 }, level = 64, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9053 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9053 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9053 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9053 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9053 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9053 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, - ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9349 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, - ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9349 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, - ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9349 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, - ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9349 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, - ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9349 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, + ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9058 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9058 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9058 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9058 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9058 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9058 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, + ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9356 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, + ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9356 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, + ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9356 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, + ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9356 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, + ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9356 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, ["MinionAreaOfEffect1"] = { type = "Suffix", affix = "of Scurrying", "Minions have (5-8)% increased Area of Effect", statOrder = { 2759 }, level = 23, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, ["MinionAreaOfEffect2"] = { type = "Suffix", affix = "of Bustling", "Minions have (9-12)% increased Area of Effect", statOrder = { 2759 }, level = 36, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (9-12)% increased Area of Effect" }, } }, ["MinionAreaOfEffect3"] = { type = "Suffix", affix = "of Trampling", "Minions have (13-16)% increased Area of Effect", statOrder = { 2759 }, level = 49, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (13-16)% increased Area of Effect" }, } }, @@ -2307,12 +2307,12 @@ return { ["SpellDamageRing6"] = { type = "Prefix", affix = "Incanter's", "(26-29)% increased Spell Damage", statOrder = { 871 }, level = 63, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-29)% increased Spell Damage" }, } }, ["SpellDamageRing7"] = { type = "Prefix", affix = "Glyphic", "(30-34)% increased Spell Damage", statOrder = { 871 }, level = 71, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, ["SpellDamageRing8"] = { type = "Prefix", affix = "Runic", "(35-39)% increased Spell Damage", statOrder = { 871 }, level = 82, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4748 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4748 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4748 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4748 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4748 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4748 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4749 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4749 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4749 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4749 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4749 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4749 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, ["ArcaneSurgeEffect1"] = { type = "Prefix", affix = "Eager", "(12-18)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 24, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(12-18)% increased effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffect2"] = { type = "Prefix", affix = "Enthusiastic", "(19-25)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 47, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(19-25)% increased effect of Arcane Surge on you" }, } }, ["ArcaneSurgeEffect3"] = { type = "Prefix", affix = "Spirited", "(26-32)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 61, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(26-32)% increased effect of Arcane Surge on you" }, } }, @@ -2329,38 +2329,38 @@ return { ["SpellCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Fury", "(18-21)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 57, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(18-21)% increased Critical Spell Damage Bonus" }, } }, ["SpellCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Ferocity", "(22-25)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 69, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(22-25)% increased Critical Spell Damage Bonus" }, } }, ["SpellCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Destruction", "(26-29)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 80, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(26-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9992 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 9992 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 9992 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 9992 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 9992 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 9992 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10002 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 10002 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 10002 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 10002 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 10002 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 10002 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, ["DamageRemovedFromManaBeforeLife1"] = { type = "Prefix", affix = "Taxing", "(4-6)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 23, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(4-6)% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLife2"] = { type = "Prefix", affix = "Draining", "(7-9)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 39, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(7-9)% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLife3"] = { type = "Prefix", affix = "Exhausting", "(10-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 52, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-12)% of Damage is taken from Mana before Life" }, } }, ["DamageRemovedFromManaBeforeLife4"] = { type = "Prefix", affix = "Enervating", "(13-15)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 77, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(13-15)% of Damage is taken from Mana before Life" }, } }, - ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5800 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5328 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, + ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5801 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5801 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5801 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5801 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5801 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5329 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5329 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5329 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5329 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, ["CurseEffectiveness1"] = { type = "Prefix", affix = "Hexing", "(2-3)% increased Curse Magnitudes", statOrder = { 2376 }, level = 31, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-3)% increased Curse Magnitudes" }, } }, ["CurseEffectiveness2"] = { type = "Prefix", affix = "Condemning", "(4-6)% increased Curse Magnitudes", statOrder = { 2376 }, level = 47, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(4-6)% increased Curse Magnitudes" }, } }, ["CurseEffectiveness3"] = { type = "Prefix", affix = "Maledicting", "(7-9)% increased Curse Magnitudes", statOrder = { 2376 }, level = 61, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(7-9)% increased Curse Magnitudes" }, } }, ["CurseEffectiveness4"] = { type = "Prefix", affix = "Dooming", "(10-12)% increased Curse Magnitudes", statOrder = { 2376 }, level = 77, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-12)% increased Curse Magnitudes" }, } }, ["GlobalIncreaseSpellSkillGemLevel1"] = { type = "Suffix", affix = "of Jordan", "+1 to Level of all Spell Skills", statOrder = { 950 }, level = 45, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9984 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9984 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9984 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, - ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9732 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, - ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9732 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, - ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9732 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, - ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9732 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, - ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9732 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, + ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9994 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, + ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9994 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, + ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9994 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, + ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9740 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, + ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9740 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, + ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9740 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, + ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9740 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, + ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9740 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, ["SpellCooldownRecovery1"] = { type = "Prefix", affix = "Imagninative", "Spells have (2-4)% increased Cooldown Recovery Rate", statOrder = { 4105 }, level = 12, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (2-4)% increased Cooldown Recovery Rate" }, } }, ["SpellCooldownRecovery2"] = { type = "Prefix", affix = "Inventive", "Spells have (6-10)% increased Cooldown Recovery Rate", statOrder = { 4105 }, level = 28, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (6-10)% increased Cooldown Recovery Rate" }, } }, ["SpellCooldownRecovery3"] = { type = "Prefix", affix = "Pioneering", "Spells have (11-15)% increased Cooldown Recovery Rate", statOrder = { 4105 }, level = 41, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (11-15)% increased Cooldown Recovery Rate" }, } }, @@ -2415,77 +2415,77 @@ return { ["ConvertedNearbyAlliesAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", statOrder = { 911 }, level = 60, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage" }, } }, ["ConvertedNearbyAlliesAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", statOrder = { 911 }, level = 65, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage" }, } }, ["ConvertedNearbyAlliesAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", statOrder = { 911 }, level = 75, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage" }, } }, - ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7636 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, + ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7642 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, ["ConvertedSoulHybridResistance1"] = { type = "Suffix", affix = "of the Soul", "+(3-41)% to Chaos Resistance", statOrder = { 1024 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-41)% to Chaos Resistance" }, } }, - ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9238 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9238 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9250 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9250 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9234 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9234 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9244 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9244 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9256 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9256 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9240 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9240 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, ["TimeInfluenceIncreasedDuration1"] = { type = "Suffix", affix = "of Chronomancy", "(15-19)% increased Skill Effect Duration", statOrder = { 1645 }, level = 45, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, ["TimeInfluenceIncreasedDuration2"] = { type = "Suffix", affix = "of Chronomancy", "(20-29)% increased Skill Effect Duration", statOrder = { 1645 }, level = 55, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(20-29)% increased Skill Effect Duration" }, } }, ["TimeInfluenceIncreasedDuration3"] = { type = "Suffix", affix = "of Chronomancy", "(30-40)% increased Skill Effect Duration", statOrder = { 1645 }, level = 78, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(30-40)% increased Skill Effect Duration" }, } }, ["TimeInfluenceCooldownRecovery1"] = { type = "Suffix", affix = "of Chronomancy", "(12-17)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 45, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-17)% increased Cooldown Recovery Rate" }, } }, ["TimeInfluenceCooldownRecovery2"] = { type = "Suffix", affix = "of Chronomancy", "(18-23)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 55, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(18-23)% increased Cooldown Recovery Rate" }, } }, ["TimeInfluenceCooldownRecovery3"] = { type = "Suffix", affix = "of Chronomancy", "(24-30)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 78, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(24-30)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4745 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4745 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4745 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, - ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10062 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10062 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6195 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6195 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5599 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5599 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6094 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, - ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6094 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, + ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4746 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, + ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4746 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, + ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% reduced Slowing Potency of Debuffs on You", statOrder = { 836, 4746 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% reduced Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, + ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10073 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, + ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10073 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, + ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6196 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, + ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6196 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, + ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5600 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, + ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5600 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, + ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6095 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, + ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6095 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, ["SoulInfluenceIncreasedLifePercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Life", statOrder = { 889 }, level = 65, group = "MaximumLifeIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(1-20)% increased maximum Life" }, } }, ["SoulInfluenceIncreasedManaPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Mana", statOrder = { 894 }, level = 65, group = "MaximumManaIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(1-20)% increased maximum Mana" }, } }, ["SoulInfluenceIncreasedSpiritPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased Spirit", statOrder = { 1417 }, level = 65, group = "MaximumSpiritPercentageAllowBaseSpirit", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1416406066] = { "(1-20)% increased Spirit" }, } }, ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { type = "Suffix", affix = "of the Soul", "(5-50)% reduced Duration of Ailments on You", statOrder = { 4644 }, level = 65, group = "AilmentDurationOnYou", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "poison", "physical", "elemental", "fire", "cold", "lightning", "chaos", "ailment" }, tradeHashes = { [548070846] = { "(5-50)% reduced Duration of Ailments on You" }, } }, ["SoulInfluenceReducedCriticalDamageAgainstYou"] = { type = "Suffix", affix = "of the Soul", "Hits against you have (10-99)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 65, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (10-99)% reduced Critical Damage Bonus" }, } }, - ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6548 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, - ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5670 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, - ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7532 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, + ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, + ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5671 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, + ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7538 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, ["SoulInfluenceConvertedChaosAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(5-47)% to Chaos Resistance", statOrder = { 1024 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-47)% to Chaos Resistance" }, } }, ["SoulInfluenceIncreasedLifeAndMana"] = { type = "Prefix", affix = "Medved's", "+(19-189) to maximum Life", "+(19-189) to maximum Mana", statOrder = { 887, 892 }, level = 65, group = "BaseLifeAndMana", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(19-189) to maximum Mana" }, [3299347043] = { "+(19-189) to maximum Life" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(1-24) to Spirit", statOrder = { 850, 895 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(1-24) to Spirit", statOrder = { 851, 895 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, - ["SoulInfluenceSpiritDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(1-24) to Spirit", statOrder = { 852, 895 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(1-24) to Spirit", statOrder = { 846, 895 }, level = 65, group = "LocalIncreasedArmourAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(1-24) to Spirit", statOrder = { 848, 895 }, level = 65, group = "LocalIncreasedEvasionAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(1-24) to Spirit", statOrder = { 849, 895 }, level = 65, group = "LocalIncreasedEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [2704225257] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(1-24) to Spirit", statOrder = { 850, 896 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [3981240776] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(1-24) to Spirit", statOrder = { 851, 896 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3981240776] = { "+(1-24) to Spirit" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, + ["SoulInfluenceSpiritDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(1-24) to Spirit", statOrder = { 852, 896 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [3981240776] = { "+(1-24) to Spirit" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, + ["SoulInfluenceSpiritDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(1-24) to Spirit", statOrder = { 846, 896 }, level = 65, group = "LocalIncreasedArmourAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [3981240776] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(1-24) to Spirit", statOrder = { 848, 896 }, level = 65, group = "LocalIncreasedEvasionAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [3981240776] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(1-24) to Spirit", statOrder = { 849, 896 }, level = 65, group = "LocalIncreasedEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [3981240776] = { "+(1-24) to Spirit" }, } }, ["SoulInfluenceManaDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(7-57) to maximum Mana", statOrder = { 850, 892 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndManaNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, ["SoulInfluenceManaDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 851, 892 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, ["SoulInfluenceManaDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 852, 892 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, ["SoulInfluenceManaDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(7-57) to maximum Mana", statOrder = { 846, 892 }, level = 65, group = "LocalIncreasedArmourAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, ["SoulInfluenceManaDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(7-57) to maximum Mana", statOrder = { 848, 892 }, level = 65, group = "LocalIncreasedEvasionAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, ["SoulInfluenceManaDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(7-57) to maximum Mana", statOrder = { 849, 892 }, level = 65, group = "LocalIncreasedEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9603 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, - ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9603 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10502 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10502 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10502 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10505 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10505 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6909 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, - ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6909 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, - ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4738 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4738 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9616 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, - ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9616 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, - ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6870 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, - ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6870 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, + ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9611 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, + ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9611 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, + ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10516 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, + ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10516 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, + ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10516 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, + ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10519 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, + ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10519 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, + ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5233 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5233 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5233 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6912 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, + ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6912 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, + ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4739 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, + ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4739 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, + ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9624 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, + ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9624 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, + ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6873 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, + ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6873 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, ["BerserkInfluenceWarcrySpeed1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Speed", statOrder = { 2989 }, level = 45, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-36)% increased Warcry Speed" }, } }, ["BerserkInfluenceWarcrySpeed2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Speed", statOrder = { 2989 }, level = 75, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(37-50)% increased Warcry Speed" }, } }, ["BerserkInfluenceWarcryCooldown1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 45, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(23-36)% increased Warcry Cooldown Recovery Rate" }, } }, ["BerserkInfluenceWarcryCooldown2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 75, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(37-50)% increased Warcry Cooldown Recovery Rate" }, } }, - ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10507 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, - ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10507 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, + ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10521 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, + ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10521 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, ["BerserkInfluenceWarcryLifeRecovery1"] = { type = "Suffix", affix = "of the Berserker", "Recover (2-3)% of maximum Life when you use a Warcry", statOrder = { 2919 }, level = 45, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (2-3)% of maximum Life when you use a Warcry" }, } }, ["BerserkInfluenceWarcryLifeRecovery2"] = { type = "Suffix", affix = "of the Berserker", "Recover (4-5)% of maximum Life when you use a Warcry", statOrder = { 2919 }, level = 75, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (4-5)% of maximum Life when you use a Warcry" }, } }, ["BerserkInfluenceArmourBreakDuration1"] = { type = "Suffix", affix = "of the Berserker", "(50-99)% increased Armour Break Duration", statOrder = { 4409 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, @@ -2503,27 +2503,27 @@ return { ["DestructionInfluenceCriticalModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(20-30)% increased Explicit Critical Modifier magnitudes", statOrder = { 37 }, level = 65, group = "DestructionInfluenceCriticalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [2393315299] = { "(20-30)% increased Explicit Critical Modifier magnitudes" }, } }, ["DecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-34)% increased Ignite Magnitude", statOrder = { 1077 }, level = 45, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-34)% increased Ignite Magnitude" }, } }, ["DecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "(35-50)% increased Ignite Magnitude", statOrder = { 1077 }, level = 75, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(35-50)% increased Ignite Magnitude" }, } }, - ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, + ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, + ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, + ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, + ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, ["DecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-25)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 45, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-25)% increased Magnitude of Ailments you inflict" }, } }, ["DecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "(26-32)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 75, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(26-32)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6063 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, - ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6063 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, - ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6060 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6060 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6064 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, + ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6064 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, + ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, ["DecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% faster", statOrder = { 1038, 1896 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% faster" }, } }, ["DecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% slower", statOrder = { 1038, 1896 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% slower" }, } }, ["DecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "(30-40)% increased amount of Life Leeched", statOrder = { 1895 }, level = 45, group = "IncreasedLifeLeechAmountGloves", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(30-40)% increased amount of Life Leeched" }, } }, - ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10549 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, - ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10549 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, + ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10565 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, + ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10565 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, ["DecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-21)% increased Curse Magnitudes", statOrder = { 2376 }, level = 45, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-21)% increased Curse Magnitudes" }, } }, ["DecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "(22-29)% increased Curse Magnitudes", statOrder = { 2376 }, level = 75, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(22-29)% increased Curse Magnitudes" }, } }, - ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6528 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, - ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6528 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, + ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6530 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, + ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6530 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, ["DecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "(50-99)% increased Curse Duration", statOrder = { 1540 }, level = 75, group = "BaseCurseDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(50-99)% increased Curse Duration" }, } }, - ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5920 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, + ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5921 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, ["MarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Damage", statOrder = { 1738 }, level = 45, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(11-20)% increased Projectile Damage" }, } }, ["MarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Damage", statOrder = { 1738 }, level = 65, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(21-30)% increased Projectile Damage" }, } }, ["MarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Damage", statOrder = { 1738 }, level = 75, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(31-40)% increased Projectile Damage" }, } }, @@ -2537,19 +2537,19 @@ return { ["MarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "(28-34)% increased Critical Hit Chance", statOrder = { 976 }, level = 75, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(28-34)% increased Critical Hit Chance" }, } }, ["MarksmanInfluenceChanceToPierce1"] = { type = "Suffix", affix = "of the Hunt", "(25-50)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 45, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(25-50)% chance to Pierce an Enemy" }, } }, ["MarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "(51-100)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 75, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(51-100)% chance to Pierce an Enemy" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8817 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8817 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, + ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5512 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5512 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, + ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8822 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, + ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8822 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, ["MarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (13-23)% increased Use Speed", statOrder = { 1946 }, level = 45, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (13-23)% increased Use Speed" }, } }, ["MarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (24-39)% increased Use Speed", statOrder = { 1946 }, level = 75, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (24-39)% increased Use Speed" }, } }, - ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8818 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, - ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8818 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, + ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8823 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, + ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8823 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, ["MarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "+1 to Level of all Projectile Skills", statOrder = { 968 }, level = 45, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, ["MarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "+2 to Level of all Projectile Skills", statOrder = { 968 }, level = 65, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index cb829ddb9b..7159731ca2 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -3,7 +3,7 @@ return { ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 911 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage" }, } }, - ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5400 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, + ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5401 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-7) to Level of all Cold Spell Skills" }, } }, ["UniqueNearbyAlliesLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (50-100) Life per second", statOrder = { 921 }, level = 78, group = "AlliesInPresenceLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (50-100) Life per second" }, } }, ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 977 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-40)% increased Critical Hit Chance for Attacks" }, } }, @@ -16,10 +16,10 @@ return { ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (20-30)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-32)% of Evasion Rating" }, } }, - ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, - ["UniquePercentEvasionRatingAsExtraArmour1"] = { affix = "", "Gain (15-30)% of Evasion Rating as extra Armour", statOrder = { 6496 }, level = 1, group = "PercentEvasionRatingAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1546604934] = { "Gain (15-30)% of Evasion Rating as extra Armour" }, } }, + ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, + ["UniquePercentEvasionRatingAsExtraArmour1"] = { affix = "", "Gain (15-30)% of Evasion Rating as extra Armour", statOrder = { 6498 }, level = 1, group = "PercentEvasionRatingAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1546604934] = { "Gain (15-30)% of Evasion Rating as extra Armour" }, } }, ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["UniqueAdditionalArrowChance1"] = { affix = "", "+(250-330)% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(250-330)% Surpassing chance to fire an additional Arrow" }, } }, + ["UniqueAdditionalArrowChance1"] = { affix = "", "+(250-330)% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(250-330)% Surpassing chance to fire an additional Arrow" }, } }, ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "50% reduced Recovery rate" }, } }, ["UniqueFlaskIncreasedRecoverySpeed2"] = { affix = "", "(25-50)% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(25-50)% reduced Recovery rate" }, } }, ["UniqueFlaskIncreasedRecoverySpeed3"] = { affix = "", "70% reduced Recovery rate", statOrder = { 938 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "70% reduced Recovery rate" }, } }, @@ -58,7 +58,7 @@ return { ["AmuletImplicitPrefixSuffixAllowed7"] = { affix = "", "-1 Prefix Modifier allowed", statOrder = { 18 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, ["AmuletImplicitPrefixSuffixAllowed8"] = { affix = "", "-1 Suffix Modifier allowed", statOrder = { 19 }, level = 53, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "" }, } }, ["AmuletImplicitPrefixSuffixAllowed9"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 18, 19 }, level = 62, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [718638445] = { "-1 Suffix Modifier allowed" }, [3182714256] = { "-1 Prefix Modifier allowed" }, } }, - ["AmuletImplicitHelmetSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7738 }, level = 50, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, + ["AmuletImplicitHelmetSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7744 }, level = 50, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 4 Physical Damage to Attacks" }, } }, ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 892 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-30) to maximum Mana" }, } }, ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1014 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-30)% to Fire Resistance" }, } }, @@ -82,28 +82,28 @@ return { ["RingImplicitPercentMana"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 894 }, level = 50, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, ["RingImplicitPhysicalDamage2"] = { affix = "", "Adds (6-9) to (11-15) Physical Damage to Attacks", statOrder = { 858 }, level = 50, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-9) to (11-15) Physical Damage to Attacks" }, } }, ["RingImplicitChaosDamage"] = { affix = "", "(11-23)% increased Chaos Damage", statOrder = { 876 }, level = 59, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(11-23)% increased Chaos Damage" }, } }, - ["RingImplicitGloveSocket"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7737 }, level = 50, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, + ["RingImplicitGloveSocket"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7743 }, level = 50, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, ["RingImplicitFireColdResistance"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(12-16)% to Fire and Cold Resistances" }, } }, ["RingImplicitFireLightningResistance"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(12-16)% to Fire and Lightning Resistances" }, } }, ["RingImplicitColdLightningResistance"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(12-16)% to Cold and Lightning Resistances" }, } }, ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(20-30)% increased Life Recovery from Flasks" }, } }, ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(20-30)% increased Mana Recovery from Flasks" }, } }, - ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6635 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6637 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 900 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(15-20)% increased Charm Effect Duration" }, } }, ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(140-180) to Armour", statOrder = { 881 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(140-180) to Armour" }, } }, - ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5602 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, + ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5603 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-15)% reduced Charm Charges used" }, } }, ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1049 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, + ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5602 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6641 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, - ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6883 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, - ["BeltImplicitBootsSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7736 }, level = 50, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, + ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6643 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [462041840] = { "20% of Flask Recovery applied Instantly" }, } }, + ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6886 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain 0.17 charges per Second" }, } }, + ["BeltImplicitBootsSocket1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7742 }, level = 50, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, ["BeltImplicitCastSpeed1"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 987 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(8-12)% increased Cast Speed" }, } }, ["BeltImplicitStrength1"] = { affix = "", "+(15-20) to Strength", statOrder = { 992 }, level = 40, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(15-20) to Strength" }, } }, ["BeltImplicitLightningDamage1"] = { affix = "", "Adds 1 to (20-30) Lightning damage to Attacks", statOrder = { 861 }, level = 40, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (20-30) Lightning damage to Attacks" }, } }, - ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4772 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, - ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4772 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, - ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4772 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, + ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4773 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has 1 Charm Slot" }, } }, + ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4773 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-2) Charm Slot" }, } }, + ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4773 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1416292992] = { "Has (1-3) Charm Slot" }, } }, ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 689 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1691862754] = { "Used when you become Frozen" }, } }, ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 687 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3676540188] = { "Used when you start Bleeding" }, } }, ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 691 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1412682799] = { "Used when you become Poisoned" }, } }, @@ -120,7 +120,7 @@ return { ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(30-40)% increased Stun Threshold" }, } }, ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-2.5)% of maximum Life per second" }, } }, ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(30-40)% increased Elemental Ailment Threshold" }, } }, - ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(40-50)% faster start of Energy Shield Recharge" }, } }, ["BodyArmourImplicitEnergyShieldRate1"] = { affix = "", "(20-25)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-25)% increased Energy Shield Recharge Rate" }, } }, ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-50)% increased Mana Regeneration Rate" }, } }, @@ -133,70 +133,70 @@ return { ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(7-13)% to Chaos Resistance" }, } }, ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (15-25)% reduced Critical Damage Bonus" }, } }, - ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9148 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9153 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(10-20)% reduced Movement Speed Penalty from using Skills while moving" }, } }, ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(5-10)% of Damage is taken from Mana before Life" }, } }, ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(15-25)% of Armour also applies to Elemental Damage" }, } }, ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(8-14)% of Damage taken Recouped as Life" }, } }, ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1622 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "(10-15)% reduced Elemental Ailment Duration on you" }, } }, ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 951 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2251279027] = { "+1 to Level of all Corrupted Skill Gems" }, } }, - ["BodyArmourImplicitWardRegen1"] = { affix = "", "(30-40)% increased Runic Ward Regeneration Rate", statOrder = { 10513 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(30-40)% increased Runic Ward Regeneration Rate" }, } }, + ["BodyArmourImplicitWardRegen1"] = { affix = "", "(30-40)% increased Runic Ward Regeneration Rate", statOrder = { 10528 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(30-40)% increased Runic Ward Regeneration Rate" }, } }, ["BodyArmourImplicitLocalMaximumWardUnique1"] = { affix = "", "+(750-1000) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(750-1000) to maximum Runic Ward" }, } }, ["VerisiumHelmetImplicitIgniteMagnitudeUnique1"] = { affix = "", "(30-50)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-50)% increased Ignite Magnitude" }, } }, ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 1039 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 6% of Physical Damage as Life" }, } }, ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-25)% increased Rarity of Items found" }, } }, ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7700 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7917 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, + ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7706 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7923 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1050883682] = { "Has no Accuracy Penalty from Range" }, } }, ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1963 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3691641145] = { "10% increased Damage taken" }, } }, - ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7647 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, + ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7653 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1574531783] = { "Culling Strike" }, } }, ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (34-43) Life per enemy killed" }, } }, ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, - ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7632 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, + ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7638 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7919 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, + ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7925 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "40% chance to Daze on Hit" }, } }, ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (20-40)% increased Stun Buildup" }, } }, ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1779 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, - ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7695 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, - ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7645 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, - ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 10503 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7701 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, + ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7651 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, + ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 10517 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, ["MaceImplicitWardUnique1"] = { affix = "", "+(100-150) to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(100-150) to maximum Runic Ward" }, } }, ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, } }, ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1720 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, - ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6868 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, - ["TalismanImplicitMaximumRage1"] = { affix = "", "+(7-10) to Maximum Rage", statOrder = { 9603 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(7-10) to Maximum Rage" }, } }, + ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6871 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, + ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, + ["TalismanImplicitMaximumRage1"] = { affix = "", "+(7-10) to Maximum Rage", statOrder = { 9611 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(7-10) to Maximum Rage" }, } }, ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(10-20)% increased Effect of your Mark Skills" }, } }, ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(14-18)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(14-18)% to Block chance" }, } }, - ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7793 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, - ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7810 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, - ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, - ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7595 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, - ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6545 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, + ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7799 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-25)% chance to Maim on Hit" }, } }, + ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7816 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(25-35)% increased Projectile Speed with this Weapon" }, } }, + ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +(3-7)% of Damage from Deflected Hits" }, } }, + ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7601 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "25% increased Melee Strike Range with this weapon" }, } }, + ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6547 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3828375170] = { "Bleeding you inflict deals Damage (10-20)% faster" }, } }, ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1041 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 8 Life per Enemy Hit" }, } }, ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301191210] = { "(15-25)% chance to Blind Enemies on hit" }, } }, - ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, + ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(15-25)% chance to Poison on Hit with this weapon" }, } }, ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1508 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [640052854] = { "Grants 8 Mana per Enemy Hit" }, } }, ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches 4% of Physical Damage as Mana" }, } }, - ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10031 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, - ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7610 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, + ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10041 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, + ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7616 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4270348114] = { "Breaks (400-500) Armour on Critical Hit" }, } }, ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1356 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7619 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, - ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7595 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, + ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7625 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1137147997] = { "Unblockable" }, } }, + ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7601 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "16% increased Melee Strike Range with this weapon" }, } }, ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 1123 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(12-18)% to Block chance" }, } }, - ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7919 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, + ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7925 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "(20-50)% chance to Daze on Hit" }, } }, ["QuarterstaffImplicitRunicWard1"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(30-50) to maximum Runic Ward" }, } }, - ["BowImplicitLocalChanceToChain1"] = { affix = "", "(25-35)% chance to Chain an additional time", statOrder = { 7598 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5509 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, - ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 9533 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, + ["BowImplicitLocalChanceToChain1"] = { affix = "", "(25-35)% chance to Chain an additional time", statOrder = { 7604 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, + ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5510 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, + ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 9541 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1553 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1803308202] = { "(20-30)% increased Bolt Speed" }, } }, ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6940 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, + ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6944 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["CannonBowImplicitCannotUseAmmoSkills1"] = { affix = "", "Cannot load or fire Ammunition", statOrder = { 7644 }, level = 1, group = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3663551379] = { "Cannot load or fire Ammunition" }, } }, + ["CannonBowImplicitCannotUseAmmoSkills1"] = { affix = "", "Cannot load or fire Ammunition", statOrder = { 7650 }, level = 1, group = "CannotUseAmmoSkillsGrantsAlternateDefaultAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3663551379] = { "Cannot load or fire Ammunition" }, } }, ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3150 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(20-30)% increased Cooldown Recovery Rate for throwing Traps" }, } }, ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 1061 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [915769802] = { "+16 to Stun Threshold" }, } }, ["BootsImplicitMovementSpeedVerisium1"] = { affix = "", "5% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, } }, @@ -224,8 +224,8 @@ return { ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHashes = { [833138896] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Cold Damage" }, } }, ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHashes = { [852470634] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Lightning Damage" }, } }, ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHashes = { [2603051299] = { "Notable Passive Skills in Radius also grant Gain (2-4)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7752 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, } }, - ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7745 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, + ["UniqueJewelRadiusGrantStatsFromNonNotables"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7758 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [737702863] = { "Grants all bonuses of Unallocated Small Passive Skills in Radius" }, } }, + ["UniqueJewelRadiusAllocatedNonNotablesGrantNothing"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7751 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325204898] = { "Allocated Small Passive Skills in Radius grant nothing" }, } }, ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(30-50) to Strength" }, } }, ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-20) to Strength" }, } }, ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, @@ -867,7 +867,7 @@ return { ["UniqueLocalIncreasedArmourAndEvasion32"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(300-400)% increased Armour and Evasion" }, } }, ["UniqueLocalIncreasedArmourAndEvasion33"] = { affix = "", "(150-250)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(150-250)% increased Armour and Evasion" }, } }, ["UniqueLocalIncreasedArmourAndEvasion34"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 850 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(120-180)% increased Armour and Evasion" }, } }, - ["UniqueConvertAllArmourToEvasion1"] = { affix = "", "Convert All Armour to Evasion Rating", statOrder = { 10670 }, level = 1, group = "ConvertArmourToEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3351912431] = { "Convert All Armour to Evasion Rating" }, } }, + ["UniqueConvertAllArmourToEvasion1"] = { affix = "", "Convert All Armour to Evasion Rating", statOrder = { 10687 }, level = 1, group = "ConvertArmourToEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3351912431] = { "Convert All Armour to Evasion Rating" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-60)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(30-50)% increased Armour and Energy Shield" }, } }, @@ -977,15 +977,15 @@ return { ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, ["UniqueMovementVelocity29"] = { affix = "", "30% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 5311 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, - ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (32-49) Physical Thorns damage", statOrder = { 10254 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (32-49) Physical Thorns damage" }, } }, + ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 5312 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1536107934] = { "You cannot Sprint" }, } }, + ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(4-5) to (8-10) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(3-5) to (6-10) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(15-20) to (25-30) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(10-15) to (20-25) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(25-30) to (35-40) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, + ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (32-49) Physical Thorns damage", statOrder = { 10268 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(20-31) to (32-49) Physical Thorns damage" }, } }, ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds (1-4) to (8-12) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-4) to (8-12) Physical Damage to Attacks" }, } }, ["UniqueAddedPhysicalDamage1BigRange"] = { affix = "", "Adds (0-5) to (6-18) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (0-5) to (6-18) Physical Damage to Attacks" }, } }, ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 858 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (3-5) to (8-10) Physical Damage to Attacks" }, } }, @@ -1349,7 +1349,7 @@ return { ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-30)% increased Critical Spell Damage Bonus" }, } }, ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-50)% increased Critical Damage Bonus" }, } }, ["UniqueSpellCriticalStrikeMultiplierPerSpellCritRecently1"] = { affix = "", "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", statOrder = { 983 }, level = 1, group = "SpellCriticalStrikeMultiplierPerSpellCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [2972244965] = { "5% reduced Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently" }, } }, - ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9986 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueChanceForSpellCriticalHitsToBeLucky1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9996 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(40-50)% increased Rarity of Items found" }, } }, ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "10% increased Rarity of Items found" }, } }, @@ -1430,17 +1430,17 @@ return { ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 857 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(25-35)% increased Spirit" }, } }, ["UniqueLocalIncreasedSpiritPercent4"] = { affix = "", "(50-75)% increased Spirit", statOrder = { 857 }, level = 78, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3984865854] = { "(50-75)% increased Spirit" }, } }, ["UniqueIncreasedMaximumSpiritPercent1"] = { affix = "", "(10-15)% increased Spirit", statOrder = { 1417 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(10-15)% increased Spirit" }, } }, - ["UniqueSpiritReservationEfficiency1"] = { affix = "", "(30-50)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(30-50)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueSpiritReservationEfficiency1"] = { affix = "", "(30-50)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(30-50)% increased Spirit Reservation Efficiency" }, } }, ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-50)% reduced Ignite Duration on you" }, } }, ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 1066 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(30-50)% reduced Shock duration on you" }, } }, ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% reduced Chill Duration on you" }, } }, ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 1065 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(30-50)% reduced Freeze Duration on you" }, } }, ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, - ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-50)% reduced Duration of Bleeding on You" }, } }, + ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(40-60)% reduced Duration of Bleeding on You" }, } }, ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 1006 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "15% additional Physical Damage Reduction" }, } }, ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(3-5)% to Maximum Fire Resistance" }, } }, ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+5% to Maximum Fire Resistance" }, } }, @@ -1460,8 +1460,8 @@ return { ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(15-25)% chance to Pierce an Enemy" }, } }, ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 990 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 3 additional Arrows" }, } }, ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2580 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2720781168] = { "Attack Projectiles Return if they Pierced at least (2-4) times" }, } }, - ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 9558 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, - ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 9548 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, + ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 9566 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1163615092] = { "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced" }, } }, + ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 9556 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [883169830] = { "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced" }, } }, ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(30-50)% increased Flask Life Recovery rate" }, } }, ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(40-60)% increased Flask Life Recovery rate" }, } }, ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-30)% reduced Flask Life Recovery rate" }, } }, @@ -1473,17 +1473,17 @@ return { ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(-25-25)% reduced Flask Mana Recovery rate" }, } }, ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(20-30)% increased Flask Mana Recovery rate" }, } }, - ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, - ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "100% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "50% increased Flask Charges used" }, } }, ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-15)% reduced Flask Charges used" }, } }, - ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5601 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, - ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, - ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5602 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, - ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5602 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, + ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5602 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(-20-20)% reduced Charm Charges gained" }, } }, + ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5602 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(20-30)% increased Charm Charges gained" }, } }, + ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5603 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(10-30)% increased Charm Charges used" }, } }, + ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5603 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(-10-10)% reduced Charm Charges used" }, } }, ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(0-2) Charm Slot" }, } }, ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+(1-2) Charm Slot" }, } }, ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 989 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, @@ -1505,7 +1505,7 @@ return { ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (30-50)% increased Stun Buildup" }, } }, ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (150-200)% increased Stun Buildup" }, } }, ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [791928121] = { "Causes (40-60)% increased Stun Buildup" }, } }, - ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8915 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, + ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8920 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2677352961] = { "(35-50)% increased Melee Damage against Heavy Stunned enemies" }, } }, ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "100% increased Spell Damage" }, } }, ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-100)% increased Spell Damage" }, } }, @@ -1537,8 +1537,8 @@ return { ["UniquePresenceRadius6"] = { affix = "", "(20-40)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-40)% reduced Presence Area of Effect" }, } }, ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 968 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1202301673] = { "+(1-2) to Level of all Projectile Skills" }, } }, ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 966 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(1-2) to Level of all Melee Skills" }, } }, - ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9541 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8909 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9549 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1903 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2609822974] = { "Curses you inflict have infinite Duration" }, } }, ["UniqueCurseAreaOfEffect1"] = { affix = "", "(20-30)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(20-30)% increased Area of Effect of Curses" }, } }, ["UniqueReducedCurseEffectOnYou1"] = { affix = "", "(30-50)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(30-50)% reduced effect of Curses on you" }, } }, @@ -1551,7 +1551,7 @@ return { ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (20-30)% increased Damage" }, } }, ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, ["UniqueMinionDamage3"] = { affix = "", "Minions deal (80-120)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-120)% increased Damage" }, } }, - ["UniqueCompanionLife1"] = { affix = "", "Companions have (30-50)% increased maximum Life", statOrder = { 5722 }, level = 1, group = "CompanionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (30-50)% increased maximum Life" }, } }, + ["UniqueCompanionLife1"] = { affix = "", "Companions have (30-50)% increased maximum Life", statOrder = { 5723 }, level = 1, group = "CompanionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (30-50)% increased maximum Life" }, } }, ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1072 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(30-40)% increased Charges gained" }, } }, ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(30-40)% increased Charges" }, } }, ["UniqueFlaskExtraCharges2"] = { affix = "", "(50-60)% reduced Charges", statOrder = { 1075 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(50-60)% reduced Charges" }, } }, @@ -1565,109 +1565,109 @@ return { ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(15-25)% increased Duration" }, } }, ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(10-20)% increased Duration" }, } }, ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-50)% reduced Charm Effect Duration" }, } }, - ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 6197 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, + ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 6198 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1298316550] = { "Dodge Roll passes through Enemies" }, } }, ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 1% of maximum Life on Kill" }, } }, ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (2-4)% of maximum Life on Kill" }, } }, ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Lose 1% of maximum Mana on Kill" }, } }, - ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 10252 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, - ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 10251 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, + ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 10266 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1993950627] = { "25 to 35 Fire Thorns damage" }, } }, + ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 10265 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 2200 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "50% of Physical Damage taken as Fire Damage" }, } }, - ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7601 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, + ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7607 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 830 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, - ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7608 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, + ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7614 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4534 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, - ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9599 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, - ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 10669, 10669.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, + ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9607 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200678966] = { "(150-250)% increased bonuses gained from Equipped Quiver" }, } }, + ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 10686, 10686.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2894895028] = { "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life" }, } }, ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3980 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2356156926] = { "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life" }, } }, ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3981 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [65133983] = { "Drop Shocked Ground while moving, lasting 8 seconds" }, } }, ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3073 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5542 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, - ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 10053 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, + ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5543 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, } }, + ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 10064 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3148264775] = { "You have no Spirit" }, } }, ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1133 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "25% increased Block chance" }, } }, ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1133 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4147897060] = { "(10-15)% increased Block chance" }, } }, ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+(5-10)% to maximum Block chance" }, } }, ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-(20-10)% to maximum Block chance" }, } }, - ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 7454 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, + ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 7460 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335699483] = { "Leeches 1% of maximum Life when you Cast a Spell" }, } }, ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1552 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(50-100)% increased Arrow Speed" }, } }, ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2240 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [412462523] = { "40% less Attack Damage" }, } }, - ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6444 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, + ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6446 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1618482990] = { "20% chance for Energy Shield Recharge to start when you Kill an Enemy" }, } }, ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2261 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, } }, - ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, + ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "Always Poison on Hit with this weapon" }, } }, ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, ["UniqueCursesSpreadOnKill1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["UniqueGainDarkWhispers1"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6768 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, - ["UniqueHitDamageAgainstEnemiesInPresence1"] = { affix = "", "(20-40)% increased Damage with Hits against targets in your Presence", statOrder = { 7181 }, level = 1, group = "HitDamageAgainstEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4015438188] = { "(20-40)% increased Damage with Hits against targets in your Presence" }, } }, - ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6639 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, - ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7938 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, - ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7935 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, - ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5481 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, - ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 10425 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, - ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 10426 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, + ["UniqueGainDarkWhispers1"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6771 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, + ["UniqueHitDamageAgainstEnemiesInPresence1"] = { affix = "", "(20-40)% increased Damage with Hits against targets in your Presence", statOrder = { 7187 }, level = 1, group = "HitDamageAgainstEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4015438188] = { "(20-40)% increased Damage with Hits against targets in your Presence" }, } }, + ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6641 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [2310741722] = { "(30-40)% increased Life and Mana Recovery from Flasks" }, } }, + ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7944 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [356835700] = { "You are considered on Low Life while at 75% of maximum Life or below instead" }, } }, + ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7941 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1902409192] = { "Lose 5 Life when you use a Skill" }, } }, + ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5482 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1689729380] = { "50% chance to Avoid Death from Hits" }, } }, + ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 10439 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3154256486] = { "You count as on Low Life while at 35% of maximum Mana or below" }, } }, + ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 10440 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1143240184] = { "You count as on Low Mana while at 35% of maximum Life or below" }, } }, ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(100-150)% of Armour also applies to Elemental Damage" }, } }, ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2911 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4112450013] = { "Moving while Bleeding doesn't cause you to take extra damage" }, } }, ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2572 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2913235441] = { "When you kill a Rare monster, you gain its Modifiers for 60 seconds" }, } }, - ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6724, 6724.1, 6724.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, - ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 9483 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, + ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6727, 6727.1, 6727.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [885925163] = { "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift" }, } }, + ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 9491 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4195198267] = { "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage" }, } }, ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4141 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2161347476] = { "Accuracy Rating is Doubled" }, } }, - ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 10527 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, + ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 10542 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "10% increased Weapon Damage per 10 Strength" }, } }, ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4573 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, ["UniqueAdditionalGemQuality1"] = { affix = "", "+(2-5)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(2-5)% to Quality of all Skills" }, } }, ["UniqueAdditionalGemQuality1BigRange"] = { affix = "", "+(0-7)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(0-7)% to Quality of all Skills" }, } }, ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 1008 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (75-80)%" }, } }, ["UniqueMaximumResistancesOverride1BigRange"] = { affix = "", "Your Maximum Resistances are (50-82)%", statOrder = { 1008 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "elemental_resistance", "elemental", "chaos", "resistance" }, tradeHashes = { [798767971] = { "Your Maximum Resistances are (50-82)%" }, } }, - ["UniqueLoreweaveBlackheart1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5555 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, - ["UniqueLoreweaveBlackheart1BigRange"] = { affix = "", "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5555 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueLoreweaveBlackheart1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5556 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueLoreweaveBlackheart1BigRange"] = { affix = "", "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5556 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "(0-100)% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["UniqueLoreweaveBlackheart2"] = { affix = "", "+(10-20)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(10-20)% of Armour also applies to Chaos Damage" }, } }, ["UniqueLoreweaveBlackheart2BigRange"] = { affix = "", "+(0-30)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 1, group = "ArmourPercentAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3972229254] = { "+(0-30)% of Armour also applies to Chaos Damage" }, } }, ["UniqueLoreweaveIcefang1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4281 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, ["UniqueLoreweaveIcefang2"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4279 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1291285202] = { "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you" }, } }, ["UniqueLoreweaveVenopuncture1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4280 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, ["UniqueLoreweaveVenopuncture2"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4278 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2420248029] = { "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you" }, } }, - ["UniqueLoreweavePrizedPain1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10258 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLoreweavePrizedPain1BigRange"] = { affix = "", "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10258 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLoreweavePrizedPain1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10272 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLoreweavePrizedPain1BigRange"] = { affix = "", "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10272 }, level = 1, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(0-50)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, ["UniqueLoreweaveDoedres1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1909 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, ["UniqueLoreweaveCracklecreep1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, ["UniqueLoreweaveBlisteringBond1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2238 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueLoreweaveBlisteringBond2"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4804 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, + ["UniqueLoreweaveBlisteringBond2"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4805 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, ["UniqueLoreweaveBlisteringBond3"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2633 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, - ["UniqueLoreweavePolcirkeln1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5653 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueLoreweaveGlowswarm1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10429 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueLoreweaveGlowswarm1BigRange"] = { affix = "", "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", statOrder = { 10429 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueLoreweavePolcirkeln1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5654 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["UniqueLoreweaveGlowswarm1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10443 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueLoreweaveGlowswarm1BigRange"] = { affix = "", "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds", statOrder = { 10443 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to (1-200)% of Flask's recovery amount for 4 seconds" }, } }, ["UniqueLoreweaveDreamFragments1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, ["UniqueLoreweaveWhisperBrotherhood1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1716 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, ["UniqueLoreweaveCallBrotherhood1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["UniqueLoreweaveSeedOfCataclysm1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9986 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, - ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { affix = "", "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9986 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(0-60)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueLoreweaveSeedOfCataclysm1"] = { affix = "", "(15-30)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9996 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(15-30)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, + ["UniqueLoreweaveSeedOfCataclysm1BigRange"] = { affix = "", "(0-60)% chance for Spell Damage with Critical Hits to be Lucky", statOrder = { 9996 }, level = 1, group = "ChanceForSpellCriticalHitDamageToBeLucky", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1133346493] = { "(0-60)% chance for Spell Damage with Critical Hits to be Lucky" }, } }, ["UniqueLoreweaveMingsHeart1"] = { affix = "", "Gain (10-15)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (10-15)% of Damage as Extra Chaos Damage" }, } }, ["UniqueLoreweaveMingsHeart1BigRange"] = { affix = "", "Gain (0-25)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (0-25)% of Damage as Extra Chaos Damage" }, } }, ["UniqueLoreweaveBlackflameIgniteDealsChaosDamageInstead1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1076 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, - ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6391 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["UniqueLoreweaveBlackflameWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6393 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, ["UniqueLoreweaveBlackflameWitherAlsoIncreasesFireDamage1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4095 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, - ["UniqueLoreweaveOriginalSin1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9266 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, + ["UniqueLoreweaveOriginalSin1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9272 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, ["UniqueLoreweaveDeathRush1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueLoreweaveVigilantView1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6402 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, + ["UniqueLoreweaveVigilantView1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6404 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, ["UniqueLoreweaveThiefsTorment1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, ["UniqueLoreweaveThiefsTorment1BigRange"] = { affix = "", "(-100-100)% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "(-100-100)% reduced Duration of Curses on you" }, } }, ["UniqueLoreweaveEvergrasping1"] = { affix = "", "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (8-15)% of Damage as Extra Chaos Damage" }, } }, ["UniqueLoreweaveEvergrasping1BigRange"] = { affix = "", "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (1-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueLoreweaveSnakepit1"] = { affix = "", "Projectiles from Spells Fork", statOrder = { 9561 }, level = 1, group = "SpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1199718219] = { "Projectiles from Spells Fork" }, } }, - ["UniqueLoreweaveSnakepit2"] = { affix = "", "Projectiles from Spells Chain +1 times", statOrder = { 9315 }, level = 1, group = "SpellProjectilesChainXTimes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1517628125] = { "Projectiles from Spells Chain +1 times" }, } }, - ["UniqueLoreweaveSnakepit3"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9560 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["UniqueLoreweaveSnakepit1"] = { affix = "", "Projectiles from Spells Fork", statOrder = { 9569 }, level = 1, group = "SpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1199718219] = { "Projectiles from Spells Fork" }, } }, + ["UniqueLoreweaveSnakepit2"] = { affix = "", "Projectiles from Spells Chain +1 times", statOrder = { 9322 }, level = 1, group = "SpellProjectilesChainXTimes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1517628125] = { "Projectiles from Spells Chain +1 times" }, } }, + ["UniqueLoreweaveSnakepit3"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9568 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, ["UniqueLoreweaveHeartbound1"] = { affix = "", "(200-300) Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(200-300) Physical Damage taken on Minion Death" }, } }, ["UniqueLoreweaveHeartbound1BigRange"] = { affix = "", "(1-1000) Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "(1-1000) Physical Damage taken on Minion Death" }, } }, - ["UniqueLoreweaveHeartbound2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueLoreweaveHeartbound2BigRange"] = { affix = "", "Minions Revive (-25-25)% slower", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (-25-25)% slower" }, } }, - ["UniqueLoreweaveGiftsAbove1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6890 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, - ["UniqueLoreweavePerandusSeal1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueLoreweavePerandusSeal1BigRange"] = { affix = "", "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, - ["UniqueLoreweaveLevinstone1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7560 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, - ["UniqueLoreweaveBurrower1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6340 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueLoreweaveHeartbound2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, + ["UniqueLoreweaveHeartbound2BigRange"] = { affix = "", "Minions Revive (-25-25)% slower", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (-25-25)% slower" }, } }, + ["UniqueLoreweaveGiftsAbove1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6893 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, + ["UniqueLoreweavePerandusSeal1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueLoreweavePerandusSeal1BigRange"] = { affix = "", "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(-30-30)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueLoreweaveLevinstone1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7566 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, + ["UniqueLoreweaveBurrower1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6342 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, ["UniqueLoreweaveAndvarius1"] = { affix = "", "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(50-70)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, ["UniqueLoreweaveAndvarius1CombinedWithBaseGoldRing"] = { affix = "", "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(56-85)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, ["UniqueLoreweaveAndvarius1BigRange"] = { affix = "", "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 942, 942.1 }, level = 1, group = "LoreweaveAndvariusRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [2261942307] = { "(-100-100)% reduced Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, @@ -1675,34 +1675,34 @@ return { ["UniqueLoreweaveBurstingDecay1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, ["UniqueLoreweaveBurstingDecay1BigRange"] = { affix = "", "Attacks have added Physical damage equal to (0-5)% of maximum Life", statOrder = { 4464 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (0-5)% of maximum Life" }, } }, ["UniqueLoreweaveKulemak1"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4127 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, - ["UniqueLoreweaveKulemak2"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6740 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, - ["UniqueLoreweaveKulemak3"] = { affix = "", "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9680 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak3BigRange"] = { affix = "", "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9680 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak4"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9682 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak4BigRange"] = { affix = "", "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9682 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["UniqueLoreweaveKulemak5"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueLoreweaveKulemak5BigRange"] = { affix = "", "(0-20)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(0-20)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueLoreweaveKulemak6"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6819 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, - ["UniqueLoreweaveKulemak7"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10050 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["UniqueLoreweaveKulemak7BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Strength", statOrder = { 10050 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(0-40) to Spirit while you have at least 200 Strength" }, } }, - ["UniqueLoreweaveKulemak8"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10049 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, - ["UniqueLoreweaveKulemak8BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Intelligence", statOrder = { 10049 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(0-40) to Spirit while you have at least 200 Intelligence" }, } }, - ["UniqueLoreweaveKulemak9"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10048 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, - ["UniqueLoreweaveKulemak9BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Dexterity", statOrder = { 10048 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(0-40) to Spirit while you have at least 200 Dexterity" }, } }, - ["UniqueLoreweaveKulemak10"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["UniqueLoreweaveKulemak10BigRange"] = { affix = "", "Projectiles have (0-30)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (0-30)% chance to Chain an additional time from terrain" }, } }, - ["UniqueLoreweaveKulemak11"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10568 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["UniqueLoreweaveKulemak11BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", statOrder = { 10568 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate" }, } }, - ["UniqueLoreweaveKulemak12"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10567 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["UniqueLoreweaveKulemak12BigRange"] = { affix = "", "You and Allies in your Presence have +(1-37)% to Chaos Resistance", statOrder = { 10567 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(1-37)% to Chaos Resistance" }, } }, - ["UniqueLoreweaveKulemak13"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10566 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["UniqueLoreweaveKulemak13BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cast Speed", statOrder = { 10566 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (0-25)% increased Cast Speed" }, } }, - ["UniqueLoreweaveKulemak14"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10565 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["UniqueLoreweaveKulemak14BigRange"] = { affix = "", "You and Allies in your Presence have (0-20)% increased Attack Speed", statOrder = { 10565 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (0-20)% increased Attack Speed" }, } }, - ["UniqueLoreweaveKulemak15"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10563 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["UniqueLoreweaveKulemak15BigRange"] = { affix = "", "You and Allies in your Presence have (0-50)% increased Accuracy Rating", statOrder = { 10563 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (0-50)% increased Accuracy Rating" }, } }, + ["UniqueLoreweaveKulemak2"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6743 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["UniqueLoreweaveKulemak3"] = { affix = "", "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (3-5)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak3BigRange"] = { affix = "", "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (0-10)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak4"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9690 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak4BigRange"] = { affix = "", "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9690 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (0-10)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["UniqueLoreweaveKulemak5"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueLoreweaveKulemak5BigRange"] = { affix = "", "(0-20)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(0-20)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueLoreweaveKulemak6"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6822 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, + ["UniqueLoreweaveKulemak7"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10061 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, + ["UniqueLoreweaveKulemak7BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Strength", statOrder = { 10061 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(0-40) to Spirit while you have at least 200 Strength" }, } }, + ["UniqueLoreweaveKulemak8"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10060 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, + ["UniqueLoreweaveKulemak8BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Intelligence", statOrder = { 10060 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(0-40) to Spirit while you have at least 200 Intelligence" }, } }, + ["UniqueLoreweaveKulemak9"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10059 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, + ["UniqueLoreweaveKulemak9BigRange"] = { affix = "", "+(0-40) to Spirit while you have at least 200 Dexterity", statOrder = { 10059 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(0-40) to Spirit while you have at least 200 Dexterity" }, } }, + ["UniqueLoreweaveKulemak10"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, + ["UniqueLoreweaveKulemak10BigRange"] = { affix = "", "Projectiles have (0-30)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (0-30)% chance to Chain an additional time from terrain" }, } }, + ["UniqueLoreweaveKulemak11"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10584 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["UniqueLoreweaveKulemak11BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate", statOrder = { 10584 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (0-25)% increased Cooldown Recovery Rate" }, } }, + ["UniqueLoreweaveKulemak12"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10583 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, + ["UniqueLoreweaveKulemak12BigRange"] = { affix = "", "You and Allies in your Presence have +(1-37)% to Chaos Resistance", statOrder = { 10583 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(1-37)% to Chaos Resistance" }, } }, + ["UniqueLoreweaveKulemak13"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10582 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, + ["UniqueLoreweaveKulemak13BigRange"] = { affix = "", "You and Allies in your Presence have (0-25)% increased Cast Speed", statOrder = { 10582 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (0-25)% increased Cast Speed" }, } }, + ["UniqueLoreweaveKulemak14"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10581 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["UniqueLoreweaveKulemak14BigRange"] = { affix = "", "You and Allies in your Presence have (0-20)% increased Attack Speed", statOrder = { 10581 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (0-20)% increased Attack Speed" }, } }, + ["UniqueLoreweaveKulemak15"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10579 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, + ["UniqueLoreweaveKulemak15BigRange"] = { affix = "", "You and Allies in your Presence have (0-50)% increased Accuracy Rating", statOrder = { 10579 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (0-50)% increased Accuracy Rating" }, } }, ["UniqueLoreweaveVeilpiercer1"] = { affix = "", "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", statOrder = { 2684 }, level = 1, group = "CursesSpreadOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [986616727] = { "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies" }, } }, - ["UniqueLoreweaveVeilpiercer2"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6768 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, + ["UniqueLoreweaveVeilpiercer2"] = { affix = "", "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", statOrder = { 6771 }, level = 1, group = "UniqueDarkWhispers", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2482970488] = { "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence" }, } }, ["UniqueLoreweaveVeilpiercer3"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, ["UniqueLoreweaveSekhemasResolveFire1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, ["UniqueLoreweaveSekhemasResolveFire1BigRange"] = { affix = "", "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(-15-15)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, @@ -1713,68 +1713,68 @@ return { ["UniqueLoreweaveSekhemasResolveRuby1"] = { affix = "", "You can only Socket 1 Ruby Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionRuby", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Ruby Jewel in this item" }, } }, ["UniqueLoreweaveSekhemasResolveEmerald1"] = { affix = "", "You can only Socket 1 Emerald Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionEmerald", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Emerald Jewel in this item" }, } }, ["UniqueLoreweaveSekhemasResolveSapphire1"] = { affix = "", "You can only Socket 1 Sapphire Jewel in this item", statOrder = { 76 }, level = 1, group = "LoreweaveJewelRestrictionSapphire", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [853326030] = { "You can only Socket 1 Sapphire Jewel in this item" }, } }, - ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10536, 10536.1 }, level = 1, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, - ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10536, 10536.1 }, level = 1, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, - ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10536, 10536.1 }, level = 1, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, - ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10535, 10536, 10536.1 }, level = 1, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, - ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 9233 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, + ["UniqueLoreweaveBereksGripShockedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10552, 10552.1 }, level = 1, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, + ["UniqueLoreweaveBereksPassChilledGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10552, 10552.1 }, level = 1, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, + ["UniqueLoreweaveBereksRespiteIgnitedGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10552, 10552.1 }, level = 1, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, + ["UniqueLoreweaveTheTamingElementalGroundBoost1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10551, 10552, 10552.1 }, level = 1, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, + ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 9239 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [997343726] = { "Gain 5% of Damage as Chaos Damage per Undead Minion" }, } }, ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (25-40)% of damage from Blocked Hits" }, } }, ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take 50% of damage from Blocked Hits" }, } }, ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4663 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2905515354] = { "You take (0-20)% of damage from Blocked Hits" }, } }, - ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5906 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, + ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5907 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [381470861] = { "Enemies are Culled on Block" }, } }, ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4177 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3122852693] = { "+(15-25)% to Block Chance while holding a Focus" }, } }, - ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { affix = "", "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", statOrder = { 10391, 10391.1 }, level = 1, group = "FacebreakerUseMaceSkillsUnarmed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [627896047] = { "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" }, } }, + ["UniqueOneHandMaceSkillsUsableUnarmed1"] = { affix = "", "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", statOrder = { 10405, 10405.1 }, level = 1, group = "FacebreakerUseMaceSkillsUnarmed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [627896047] = { "Can Attack as though using a One Handed Mace while both of your hand slots are empty", "Unarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage" }, } }, ["UniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "1% more Unarmed Damage per 5 Strength", statOrder = { 2188 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3452816629] = { "1% more Unarmed Damage per 5 Strength" }, } }, ["UniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverride", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1955786041] = { "Has 8 to 12 Physical damage, +3 to +4 per Boss's Face Broken" }, } }, - ["UniqueGainArmourEqualToStrength1"] = { affix = "", "+1 to Armour per Strength", statOrder = { 6759 }, level = 1, group = "FacebreakerGainArmourFromStrength", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, } }, - ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6870 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, - ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6871 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, + ["UniqueGainArmourEqualToStrength1"] = { affix = "", "+1 to Armour per Strength", statOrder = { 6762 }, level = 1, group = "FacebreakerGainArmourFromStrength", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, } }, + ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6873 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, } }, + ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6874 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, } }, ["UniqueIgniteDuration1"] = { affix = "", "(60-75)% reduced Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(60-75)% reduced Ignite Duration on Enemies" }, } }, ["UniqueIgniteEffect1"] = { affix = "", "(80-100)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(80-100)% increased Ignite Magnitude" }, } }, ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "100% increased Ignite Magnitude" }, } }, ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(10-20)% increased Ignite Magnitude" }, } }, - ["UniqueCanBeInstilled"] = { affix = "", "Raven-Touched", statOrder = { 10758 }, level = 1, group = "CanBeInstilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198163869] = { "Raven-Touched" }, } }, + ["UniqueCanBeInstilled"] = { affix = "", "Raven-Touched", statOrder = { 10775 }, level = 1, group = "CanBeInstilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198163869] = { "Raven-Touched" }, } }, ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Ignite you inflict deals Chaos Damage instead of Fire Damage", statOrder = { 1076 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [983582600] = { "Ignite you inflict deals Chaos Damage instead of Fire Damage" }, } }, - ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6391 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, + ["UniqueWitherNeverExpiresOnIgnitedEnemies1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6393 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [279110104] = { "Withered does not expire on Enemies Ignited by you" }, } }, ["UniqueWitherInflictedAlsoIncreasesFireDamageTaken1"] = { affix = "", "Withered you inflict also increases Fire Damage taken", statOrder = { 4095 }, level = 1, group = "WitherInflictedAlsoIncreasesFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos" }, tradeHashes = { [1910297038] = { "Withered you inflict also increases Fire Damage taken" }, } }, - ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7595 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, - ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5959 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, + ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7601 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, + ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5960 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(30-50)% increased Damage" }, } }, ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3931 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, - ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Flasks do not recover Life", statOrder = { 4708 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Flasks do not recover Life" }, } }, - ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9355 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, + ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Flasks do not recover Life", statOrder = { 4709 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [265717301] = { "Flasks do not recover Life" }, } }, + ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9362 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9648 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, + ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9656 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "25% chance to be inflicted with Bleeding when Hit" }, } }, ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1593 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2996245527] = { "You cannot be Chilled or Frozen" }, } }, - ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5760 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, - ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9938 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, - ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6504 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, + ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5761 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3764198549] = { "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life" }, } }, + ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9948 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2592455368] = { "You have a Smoke Cloud around you while stationary" }, } }, + ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6506 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, } }, ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1555 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3393547195] = { "10% increased Movement Speed when on Full Life" }, } }, - ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7604 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, - ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7605 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, - ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7603 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, - ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7646 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, + ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7610 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, } }, + ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7611 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3761294489] = { "All Damage from Hits with this Weapon Contributes to Freeze Buildup" }, } }, + ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7609 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2156230257] = { "All Damage from Hits with this Weapon Contributes to Chill Magnitude" }, } }, + ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7652 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158324489] = { "Culling Strike against Frozen Enemies" }, } }, ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2244 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 100% increased Damage" }, } }, - ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "35% of Maximum Life Converted to Energy Shield" }, } }, ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3839 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [67637087] = { "20% less Damage taken if you have not been Hit Recently" }, } }, ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3840 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1073310669] = { "100% increased Evasion Rating if you have been Hit Recently" }, } }, - ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 10378 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, + ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 10392 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2308632835] = { "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions" }, } }, ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1467 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2929867083] = { "50% increased Rarity of Items found when on Low Life" }, } }, ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2651 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2306924373] = { "You cannot be Chilled for 6 seconds after being Chilled" }, } }, ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2653 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3612464552] = { "You cannot be Frozen for 6 seconds after being Frozen" }, } }, ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2654 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [947072590] = { "You cannot be Ignited for 6 seconds after being Ignited" }, } }, ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2655 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [215346464] = { "You cannot be Shocked for 6 seconds after being Shocked" }, } }, - ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5938 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, + ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5939 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% reduced Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(5-10)% increased Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(15-30)% increased Skill Speed" }, } }, ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(10-15)% increased Skill Speed" }, } }, - ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9817 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, - ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 9370 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, - ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6090 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, + ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9825 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2535267021] = { "Share Charges with Allies in your Presence" }, } }, + ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 9377 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, } }, + ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6091 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, ["UniqueOtherModifiersToRarityDoNotApply1"] = { affix = "", "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", statOrder = { 943, 943.1 }, level = 1, group = "GraveBindRarityWithExclusion", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [1602191394] = { "(15-20)% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, } }, ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4272 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4012215578] = { "All Damage from Hits Contributes to Poison Magnitude" }, } }, ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4169 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1435496528] = { "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana" }, } }, @@ -1782,11 +1782,11 @@ return { ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(15-25)% to Block chance" }, } }, ["UniqueBlockPercent3"] = { affix = "", "+12% to Block chance", statOrder = { 1123 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+12% to Block chance" }, } }, ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1971 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3612407781] = { "-10 Physical damage taken from Projectile Attacks" }, } }, - ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5644 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "20% reduced Mana Cost of Skills" }, } }, ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "10% increased Mana Cost of Skills" }, } }, - ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4712 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, - ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 10110 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, + ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4713 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1017648537] = { "Lightning damage from Hits Contributes to Electrocution Buildup" }, } }, + ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 10122 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2230687504] = { "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(10-20)% increased Area of Effect" }, } }, ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1630 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(8-15)% increased Area of Effect" }, } }, ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(5-15)% increased Strength" }, } }, @@ -1796,37 +1796,37 @@ return { ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-15)% increased Intelligence" }, } }, ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "10% reduced Intelligence" }, } }, ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 7256 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, + ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 7262 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(35-50)% reduced Magnitude of Ignite on you" }, } }, ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1495 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(35-50)% reduced Effect of Chill on you" }, } }, - ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9853 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, - ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 10256 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, - ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7682 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, - ["UniqueInflictGruelingMadnessOnHit1"] = { affix = "", "Hits with this Weapon inflict (2-5) Gruelling Madness", statOrder = { 7733 }, level = 1, group = "InflictGruelingMadnessOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2526112819] = { "Hits with this Weapon inflict (2-5) Gruelling Madness" }, } }, - ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { affix = "", "Enemies in your Presence have additional Power equal to their Gruelling Madness", statOrder = { 9127 }, level = 1, group = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827379101] = { "Enemies in your Presence have additional Power equal to their Gruelling Madness" }, } }, - ["UniqueCrystalLifePerColdResistance"] = { affix = "", "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", statOrder = { 7234 }, level = 69, group = "IceCrystalMaximumLifePerColdResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [740421489] = { "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have" }, } }, - ["UniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Incarnate when you Cull a target", statOrder = { 6927 }, level = 1, group = "GainFearIncarnate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3775736880] = { "Gain 1 Fear Incarnate when you Cull a target" }, } }, - ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { affix = "", "Gain Finality for 0.5 seconds per Combo expended when using Skills", statOrder = { 6780 }, level = 1, group = "GainFinalityForXSecondsPerComboLostBySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010198893] = { "Gain Finality for 0.5 seconds per Combo expended when using Skills" }, } }, - ["UniqueGainXGuardPerComboLostUsingSkills1"] = { affix = "", "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", statOrder = { 10393 }, level = 1, group = "GainXGuardPerComboLostUsingSkills1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443032293] = { "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills" }, } }, + ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9861 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(35-50)% reduced effect of Shock on you" }, } }, + ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 10270 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3414243317] = { "Thorns can Retaliate against all Hits" }, } }, + ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7688 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3371943724] = { "Trigger Decompose every 1.2 metres travelled" }, } }, + ["UniqueInflictGruelingMadnessOnHit1"] = { affix = "", "Hits with this Weapon inflict (2-5) Gruelling Madness", statOrder = { 7739 }, level = 1, group = "InflictGruelingMadnessOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2526112819] = { "Hits with this Weapon inflict (2-5) Gruelling Madness" }, } }, + ["UniqueEnemiesInPresenceGainPowerPerGruelingMadness1"] = { affix = "", "Enemies in your Presence have additional Power equal to their Gruelling Madness", statOrder = { 9132 }, level = 1, group = "UniqueEnemiesInPresenceGainPowerPerGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1827379101] = { "Enemies in your Presence have additional Power equal to their Gruelling Madness" }, } }, + ["UniqueCrystalLifePerColdResistance"] = { affix = "", "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have", statOrder = { 7240 }, level = 69, group = "IceCrystalMaximumLifePerColdResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [740421489] = { "Ice Crystals have (-3-3)% reduced maximum Life per 5% Cold Resistance you have" }, } }, + ["UniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Incarnate when you Cull a target", statOrder = { 6930 }, level = 1, group = "GainFearIncarnate", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3775736880] = { "Gain 1 Fear Incarnate when you Cull a target" }, } }, + ["UniqueGainFinalityForXSecondsPerComboLostUsingSkills1"] = { affix = "", "Gain Finality for 0.5 seconds per Combo expended when using Skills", statOrder = { 6783 }, level = 1, group = "GainFinalityForXSecondsPerComboLostBySkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4010198893] = { "Gain Finality for 0.5 seconds per Combo expended when using Skills" }, } }, + ["UniqueGainXGuardPerComboLostUsingSkills1"] = { affix = "", "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills", statOrder = { 10407 }, level = 1, group = "GainXGuardPerComboLostUsingSkills1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2443032293] = { "Gain (500-1000) Guard for 0.5 seconds per Combo expended when using Skills" }, } }, ["UniqueMinionChanceToApplyGruelingMadness1"] = { affix = "", "Minions have (10-20)% chance to inflict Gruelling Madness on Hit", statOrder = { 2901 }, level = 1, group = "MinionChanceToApplyGruelingMadness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1486714289] = { "Minions have (10-20)% chance to inflict Gruelling Madness on Hit" }, } }, - ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { affix = "", "Enemies in your Presence gain 1 Gruelling Madness each second", statOrder = { 6355 }, level = 1, group = "EnemiesInPresenceGainGruelingMadnessEachSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3628041050] = { "Enemies in your Presence gain 1 Gruelling Madness each second" }, } }, + ["UniqueEnemiesInPresenceGainGruelingMadness1"] = { affix = "", "Enemies in your Presence gain 1 Gruelling Madness each second", statOrder = { 6357 }, level = 1, group = "EnemiesInPresenceGainGruelingMadnessEachSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3628041050] = { "Enemies in your Presence gain 1 Gruelling Madness each second" }, } }, ["UniqueDeflectChanceLuckyOnLowLife1"] = { affix = "", "Chance to Deflect is Lucky while on Low Life", statOrder = { 1031 }, level = 1, group = "DeflectChanceLuckyOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1675120891] = { "Chance to Deflect is Lucky while on Low Life" }, } }, - ["UniqueCurseMagnitudeIsZero1"] = { affix = "", "Magnitudes of Curses you inflict are zero", statOrder = { 5666 }, level = 1, group = "UniqueCurseMagnitudeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2939415499] = { "Magnitudes of Curses you inflict are zero" }, } }, - ["UniqueCursesIgnoreLimit1"] = { affix = "", "Curses you inflict ignore Curse limit", statOrder = { 5927 }, level = 1, group = "CurseIgnoresCurseLimit", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1793470535] = { "Curses you inflict ignore Curse limit" }, } }, - ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", statOrder = { 9300 }, level = 1, group = "SpellDamageAsExtraChaosPerCurse", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster" }, tradeHashes = { [2653175601] = { "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target" }, } }, - ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", statOrder = { 9301 }, level = 1, group = "SpellDamageAsExtraPhysicalPerCurse", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [1548338404] = { "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target" }, } }, - ["UniqueDivineFragments1"] = { affix = "", "Create a Fragment of Divinity in your Presence every 4 seconds", statOrder = { 8028 }, level = 1, group = "DivineFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [891466814] = { "Create a Fragment of Divinity in your Presence every 4 seconds" }, } }, - ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { affix = "", "Life Leech recovers based on your Lightning damage as well as Physical damage", statOrder = { 7446 }, level = 1, group = "LifeLeechAlsoBasedOnLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1092555766] = { "Life Leech recovers based on your Lightning damage as well as Physical damage" }, } }, - ["UniqueMaceSkillFireDamageConvertedToCold1"] = { affix = "", "Convert 100% of Fire Damage with Mace Skills to Cold Damage", statOrder = { 10408 }, level = 1, group = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [1683568809] = { "Convert 100% of Fire Damage with Mace Skills to Cold Damage" }, } }, - ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { affix = "", "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", statOrder = { 7621 }, level = 1, group = "WeaponAddedColdDamagePerMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [566086661] = { "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana" }, } }, + ["UniqueCurseMagnitudeIsZero1"] = { affix = "", "Magnitudes of Curses you inflict are zero", statOrder = { 5667 }, level = 1, group = "UniqueCurseMagnitudeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2939415499] = { "Magnitudes of Curses you inflict are zero" }, } }, + ["UniqueCursesIgnoreLimit1"] = { affix = "", "Curses you inflict ignore Curse limit", statOrder = { 5928 }, level = 1, group = "CurseIgnoresCurseLimit", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1793470535] = { "Curses you inflict ignore Curse limit" }, } }, + ["UniqueSpellDamageAsExtraChaosPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target", statOrder = { 9306 }, level = 1, group = "SpellDamageAsExtraChaosPerCurse", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster" }, tradeHashes = { [2653175601] = { "Spell Hits Gain (23-31)% of Damage as Extra Chaos Damage per Curse on target" }, } }, + ["UniqueSpellDamageAsExtraPhysicalPerCurse1"] = { affix = "", "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target", statOrder = { 9307 }, level = 1, group = "SpellDamageAsExtraPhysicalPerCurse", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [1548338404] = { "Spell Hits Gain (23-31)% of Damage as Extra Physical Damage per Curse on target" }, } }, + ["UniqueDivineFragments1"] = { affix = "", "Create a Fragment of Divinity in your Presence every 4 seconds", statOrder = { 8034 }, level = 1, group = "DivineFragments", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [891466814] = { "Create a Fragment of Divinity in your Presence every 4 seconds" }, } }, + ["UniqueLifeLeechAlsoBasedOnLightningDamage1"] = { affix = "", "Life Leech recovers based on your Lightning damage as well as Physical damage", statOrder = { 7452 }, level = 1, group = "LifeLeechAlsoBasedOnLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1092555766] = { "Life Leech recovers based on your Lightning damage as well as Physical damage" }, } }, + ["UniqueMaceSkillFireDamageConvertedToCold1"] = { affix = "", "Convert 100% of Fire Damage with Mace Skills to Cold Damage", statOrder = { 10422 }, level = 1, group = "UniqueVerisiumMaceSkillFireDamageConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHashes = { [1683568809] = { "Convert 100% of Fire Damage with Mace Skills to Cold Damage" }, } }, + ["UniqueLocalAttacksHaveAddedColdDamageFromPercentMaxMana1"] = { affix = "", "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana", statOrder = { 7627 }, level = 1, group = "WeaponAddedColdDamagePerMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [566086661] = { "Attacks with this Weapon have Added Cold Damage equal to (6-8)% to (10-12)% of maximum Mana" }, } }, ["UniqueElementalDamageFromHitsContributesToCoreEleAilments1"] = { affix = "", "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2626 }, level = 1, group = "ElementalDamageContributesToCoreEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2678924815] = { "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance" }, } }, ["UniquePhysicalDamageFromHitsContributesToChillAndFreeze1"] = { affix = "", "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", statOrder = { 2641 }, level = 1, group = "PhysicalDamageFromHitsContributesToChillAndFreeze", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [905072977] = { "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup" }, } }, - ["UniqueHauntedByTheWendigo1"] = { affix = "", "The Bodach haunts your Presence", statOrder = { 10671 }, level = 1, group = "UniqueHauntedByTheWendigo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3783473032] = { "The Bodach haunts your Presence" }, } }, - ["UniqueBlindEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6350 }, level = 1, group = "UniqueBlindEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2080373320] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueBlasphemyHasNoReservation1"] = { affix = "", "DNT-UNUSED Blasphemy has no Reservation", statOrder = { 4799 }, level = 1, group = "BlasphemyHasNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3289261284] = { "DNT-UNUSED Blasphemy has no Reservation" }, } }, - ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9959 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { "unmutatable" }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, - ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 10032 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, + ["UniqueHauntedByTheWendigo1"] = { affix = "", "The Bodach haunts your Presence", statOrder = { 10688 }, level = 1, group = "UniqueHauntedByTheWendigo", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3783473032] = { "The Bodach haunts your Presence" }, } }, + ["UniqueBlindEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6352 }, level = 1, group = "UniqueBlindEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2080373320] = { "Enemies in your Presence are Blinded" }, } }, + ["UniqueBlasphemyHasNoReservation1"] = { affix = "", "DNT-UNUSED Blasphemy has no Reservation", statOrder = { 4800 }, level = 1, group = "BlasphemyHasNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3289261284] = { "DNT-UNUSED Blasphemy has no Reservation" }, } }, + ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9969 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { "unmutatable" }, tradeHashes = { [4106787208] = { "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target" }, } }, + ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 10042 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [1088082880] = { "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage" }, } }, ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 952 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2061237517] = { "+(3-5) to Level of all Corrupted Spell Skill Gems" }, } }, - ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 9368 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, + ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 9375 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2301852600] = { "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed" }, } }, ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, @@ -1838,38 +1838,38 @@ return { ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(10-20)% chance to Poison on Hit" }, } }, ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(20-30)% chance to Poison on Hit" }, } }, - ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 10030 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, - ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9321 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9785 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell" }, } }, + ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 10040 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHashes = { [1493211587] = { "100% chance to Poison on Hit with Spell Damage" }, } }, + ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9328 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, + ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9793 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [613752285] = { "Sacrifice (5-15)% of maximum Life to gain that much Energy Shield when you Cast a Spell" }, } }, ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 6095 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, + ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 6096 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3872034802] = { "Decimating Strike" }, } }, ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1595 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [331731406] = { "Cannot be Ignited" }, } }, ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-10 Physical Damage taken from Attack Hits" }, } }, ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1762 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4187571952] = { "Gain no inherent bonus from Intelligence" }, } }, ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2020 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [854225133] = { "You have no Life Regeneration" }, } }, - ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4059, 4060, 4061, 4062, 6865 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, + ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4059, 4060, 4061, 4062, 6868 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [344174146] = { "10% increased Mana Regeneration Rate per Fragile Regrowth" }, [1173537953] = { "Maximum 10 Fragile Regrowth" }, [3841984913] = { "Gain 1 Fragile Regrowth each second" }, [1306791873] = { "Lose all Fragile Regrowth when Hit" }, [3175722882] = { "0.5% of maximum Life Regenerated per second per Fragile Regrowth" }, } }, ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "30% slower start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "100% faster start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "80% faster start of Energy Shield Recharge" }, } }, ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(30-50)% faster start of Energy Shield Recharge" }, } }, - ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5642 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, + ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5643 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2955966707] = { "The Effect of Chill on you is reversed" }, } }, ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1092987622] = { "250% of Melee Physical Damage taken reflected to Attacker" }, } }, - ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 9445 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, + ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 9452 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, tradeHashes = { [1374654984] = { "50% of Physical Damage prevented Recouped as Life" }, } }, ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3422 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1419390131] = { "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently" }, } }, - ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, - ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, - ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, + ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% faster" }, } }, + ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-15)% faster" }, } }, + ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive 50% slower" }, } }, ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1437 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield" }, } }, ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1597 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, - ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 7226 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, - ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { affix = "", "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you", statOrder = { 9304, 9304.1, 9304.2, 9304.3 }, level = 1, group = "HuskOfDreamsLifeRegenFromFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen" }, tradeHashes = { [1580426064] = { "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you" }, } }, - ["UniqueLifeFlaskRecoveryAmount1"] = { affix = "", "(40-60)% less Life Flask Recovery", statOrder = { 10385 }, level = 1, group = "HuskOfDreamsLifeFlaskRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972661424] = { "(40-60)% less Life Flask Recovery" }, } }, - ["UniqueRemnantsAffectAlliesInPresence1"] = { affix = "", "Remnants you create affect Allies in your Presence as well as you when collected", statOrder = { 9735 }, level = 1, group = "RemnantsAlsoAffectAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [315717203] = { "Remnants you create affect Allies in your Presence as well as you when collected" }, } }, - ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { affix = "", "(80-100)% increased Reservation Efficiency of Remnant Skills", statOrder = { 9763 }, level = 1, group = "RemnantSkillSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1350127730] = { "(80-100)% increased Reservation Efficiency of Remnant Skills" }, } }, + ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 7232 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3749630567] = { "50% less Flask Charges used" }, } }, + ["UniqueLifeRegenerationFromLifeFlaskRecovery1"] = { affix = "", "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you", statOrder = { 9310, 9310.1, 9310.2, 9310.3 }, level = 1, group = "HuskOfDreamsLifeRegenFromFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen" }, tradeHashes = { [1580426064] = { "Cannot use Life Flasks", "Non-Unique Life Flasks apply their Effects constantly", "Recovery from Life Flasks cannot be Instant", "Recovery from your Life Flasks cannot be applied to anything other than you" }, } }, + ["UniqueLifeFlaskRecoveryAmount1"] = { affix = "", "(40-60)% less Life Flask Recovery", statOrder = { 10399 }, level = 1, group = "HuskOfDreamsLifeFlaskRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1972661424] = { "(40-60)% less Life Flask Recovery" }, } }, + ["UniqueRemnantsAffectAlliesInPresence1"] = { affix = "", "Remnants you create affect Allies in your Presence as well as you when collected", statOrder = { 9743 }, level = 1, group = "RemnantsAlsoAffectAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [315717203] = { "Remnants you create affect Allies in your Presence as well as you when collected" }, } }, + ["UniqueRemnantSkillSpiritReservationEfficiency1"] = { affix = "", "(80-100)% increased Reservation Efficiency of Remnant Skills", statOrder = { 9771 }, level = 1, group = "RemnantSkillSpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1350127730] = { "(80-100)% increased Reservation Efficiency of Remnant Skills" }, } }, ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2591 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1776968075] = { "You have no Elemental Resistances" }, } }, - ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9496 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9504 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2607 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746505085] = { "Reflects opposite Ring" }, } }, ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(100-200)% increased amount of Life Leeched" }, } }, ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1158 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2423248184] = { "(30-40)% less minimum Physical Attack Damage" }, } }, @@ -1878,87 +1878,87 @@ return { ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have 25% increased Attribute Requirements" }, } }, ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2332 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4245256219] = { "Skill Gems have no Attribute Requirements" }, } }, ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2331 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480151124] = { "Equipment has no Attribute Requirements" }, } }, - ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9422 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, - ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 7374 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, + ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9429 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, + ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 7380 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, } }, ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3278 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1520059289] = { "Onslaught" }, } }, - ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5555 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, + ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5556 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [78985352] = { "25% chance to Intimidate Enemies for 4 seconds on Hit" }, } }, ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "25% chance to gain a Power Charge on Critical Hit" }, } }, ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 828 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [295075366] = { "50% increased Strength Requirement" }, } }, - ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 10074 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, + ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 10085 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2402413437] = { "Energy Shield Recharge starts when you use a Mana Flask" }, } }, ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 617 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2980117882] = { "This Flask cannot be Used but applies its Effect constantly" }, } }, ["UniqueCannotDrinkFlaskManually1"] = { affix = "", "Cannot be Used manually", statOrder = { 684 }, level = 1, group = "CannotDrinkFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1237409891] = { "Cannot be Used manually" }, } }, ["UniqueFlaskUsedOnPerfectTiming1"] = { affix = "", "Used when you release a skill with Perfect Timing", statOrder = { 705 }, level = 1, group = "FlaskUseOnPerfectTiming", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3832076641] = { "Used when you release a skill with Perfect Timing" }, } }, ["UniquePerfectTimingWindowDuringFlaskEffect1"] = { affix = "", "Skills have (80-120)% longer Perfect Timing window during effect", statOrder = { 748 }, level = 1, group = "PerfectTimingWindowDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3982604001] = { "Skills have (80-120)% longer Perfect Timing window during effect" }, } }, - ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { affix = "", "Lose 5% Life per second while you have no Runic Ward during Effect", statOrder = { 7834 }, level = 1, group = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "runic_ward", "life" }, tradeHashes = { [1147913864] = { "Lose 5% Life per second while you have no Runic Ward during Effect" }, } }, - ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { affix = "", "Mana Recovery from Flasks can Overflow maximum Mana during Effect", statOrder = { 7836 }, level = 1, group = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4100842845] = { "Mana Recovery from Flasks can Overflow maximum Mana during Effect" }, } }, - ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5483 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, - ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 9142 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, + ["UniqueLosePercentLifeWhileNoRunicWardDuringEffect1"] = { affix = "", "Lose 5% Life per second while you have no Runic Ward during Effect", statOrder = { 7840 }, level = 1, group = "LosePercentLifeWhileNoRunicWardDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "runic_ward", "life" }, tradeHashes = { [1147913864] = { "Lose 5% Life per second while you have no Runic Ward during Effect" }, } }, + ["UniqueManaFlaskRecoveryCanOverflowManaDuringEffect1"] = { affix = "", "Mana Recovery from Flasks can Overflow maximum Mana during Effect", statOrder = { 7842 }, level = 1, group = "ManaFlaskRecoveryCanOverflowManaDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4100842845] = { "Mana Recovery from Flasks can Overflow maximum Mana during Effect" }, } }, + ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5484 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [892489594] = { "(80-100)% increased Chance to be afflicted by Ailments when Hit" }, } }, + ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 9147 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [610276769] = { "25% increased Movement Speed while affected by an Ailment" }, } }, ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3136 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "minion_damage", "damage", "chaos", "minion" }, tradeHashes = { [688802590] = { "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second" }, } }, - ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7690 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, - ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7611 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, + ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7696 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, } }, + ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7617 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289086688] = { "Hits Break (30-50) Armour" }, } }, ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4412 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHashes = { [2795257911] = { "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt" }, } }, - ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", statOrder = { 7613 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [359380213] = { "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" }, } }, + ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", statOrder = { 7619 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [359380213] = { "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour" }, } }, ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "20% reduced Stun Threshold" }, } }, - ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7823 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, - ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6868 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10649 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, - ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 10637 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, - ["UniqueLifeRecoupPerRage1"] = { affix = "", "Every 5 Rage also grants 5% of Damage taken Recouped as Life", statOrder = { 10555 }, level = 1, group = "LifeRecoupPerRage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, } }, - ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4733 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, + ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7829 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, } }, + ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6871 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10666 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, } }, + ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 10654 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995914769] = { "Every Rage also grants 1% increased Armour" }, } }, + ["UniqueLifeRecoupPerRage1"] = { affix = "", "Every 5 Rage also grants 5% of Damage taken Recouped as Life", statOrder = { 10571 }, level = 1, group = "LifeRecoupPerRage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, } }, + ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4734 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, } }, ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3908 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [3620731914] = { "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element" }, } }, - ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 9369 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, - ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 9208 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, - ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7609 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, - ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7607 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, + ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 9376 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1361645249] = { "Allies in your Presence have Block Chance equal to yours" }, } }, + ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 9213 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [585231074] = { "No Movement Speed Penalty while Shield is Raised" }, } }, + ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7615 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2895144208] = { "Maim on Critical Hit" }, } }, + ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7613 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214130968] = { "Always deals Critical Hits against Heavy Stunned Enemies" }, } }, ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 924 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4287671144] = { "50% of your Base Life Regeneration is granted to Allies in your Presence" }, } }, - ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 10382, 10382.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, + ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 10396, 10396.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603021645] = { "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana" }, } }, ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2977 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1465760952] = { "Cannot Block" }, } }, - ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8840 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, - ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 10618 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, - ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6693 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, + ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8845 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679696791] = { "Modifiers to Maximum Block Chance instead apply to Maximum Resistances" }, } }, + ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 10634 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [65135897] = { "Cannot use Shield Skills" }, } }, + ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6695 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [423304126] = { "You count as on Full Mana while at 90% of maximum Mana or above" }, } }, ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4559 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4145314483] = { "25% increased Attack Speed while on Full Mana" }, } }, ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2610 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHashes = { [2949096603] = { "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes" }, } }, ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2611 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [1261612903] = { "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup" }, } }, ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2612 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1011772129] = { "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance" }, } }, - ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills Gain 100% of Mana Cost as Extra Life Cost", statOrder = { 4744 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 100% of Mana Cost as Extra Life Cost" }, } }, - ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills Gain 10% of Mana Cost as Extra Life Cost", statOrder = { 4744 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 10% of Mana Cost as Extra Life Cost" }, } }, - ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4709 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, + ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills Gain 100% of Mana Cost as Extra Life Cost", statOrder = { 4745 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 100% of Mana Cost as Extra Life Cost" }, } }, + ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills Gain 10% of Mana Cost as Extra Life Cost", statOrder = { 4745 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605834869] = { "Skills Gain 10% of Mana Cost as Extra Life Cost" }, } }, + ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4710 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [782941180] = { "10% of Spell Damage Leeched as Life" }, } }, ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2217 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3205239847] = { "100% of Fire Damage from Hits taken as Physical Damage" }, } }, ["UniqueLightningDamageTakenAsCold1"] = { affix = "", "(10-20)% of Lightning damage taken as Cold damage", statOrder = { 2229 }, level = 1, group = "LightningHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3198708642] = { "(10-20)% of Lightning damage taken as Cold damage" }, } }, ["UniqueFireDamageTakenAsCold1"] = { affix = "", "(10-20)% of Fire damage taken as Cold damage", statOrder = { 2224 }, level = 1, group = "FireHitAndDoTDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4108426433] = { "(10-20)% of Fire damage taken as Cold damage" }, } }, - ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5866 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, - ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5834 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, - ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", statOrder = { 7254 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage" }, } }, + ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5867 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2516303866] = { "Your Critical Damage Bonus is 250%" }, } }, + ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5835 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4159551976] = { "Your Critical Hit Chance cannot be Rerolled" }, } }, + ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage", statOrder = { 7260 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1433051415] = { "Enemies in your Presence are Ignited as though dealt 200 Base Fire Damage" }, } }, ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1933 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1243237244] = { "Reflects 1 to 250 Lightning Damage to Melee Attackers" }, } }, ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 1460 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [93764325] = { "Damage cannot bypass Energy Shield" }, } }, ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4247 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [841429130] = { "Bleeding you inflict is Aggravated" }, } }, - ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4693 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, - ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6769 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, + ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4694 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2890401248] = { "Enemies in your Presence are Hindered" }, } }, + ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6772 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, } }, ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, } }, ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "(10-20)% chance to inflict Bleeding on Hit" }, } }, ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2174054121] = { "25% chance to inflict Bleeding on Hit" }, } }, ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4239 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2438634449] = { "Aggravate Bleeding on targets you Critically Hit with Attacks" }, } }, - ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 7457 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, - ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8902 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, - ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 9554 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, + ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 7463 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605721598] = { "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life" }, } }, + ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8907 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [796381300] = { "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again" }, } }, + ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 9562 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464380325] = { "Projectiles Split towards +2 targets" }, } }, ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1589 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1453197917] = { "20% chance to gain a Power Charge on Hit" }, } }, ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3284 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2135899247] = { "Lose all Power Charges on reaching maximum Power Charges" }, } }, ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3285 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4256314560] = { "Shocks you when you reach maximum Power Charges" }, } }, - ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8996 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, + ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 9001 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1403346025] = { "Minions deal 5% of your Life as additional Cold Damage with Attacks" }, } }, ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2191 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2685246061] = { "Reserves 15% of Life" }, } }, ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2215 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHashes = { [1175213674] = { "20% of Elemental damage from Hits taken as Chaos damage" }, } }, ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3074 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4250009622] = { "+25% chance to be Poisoned" }, } }, ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "25% reduced Endurance Charge Duration" }, } }, - ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9660 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, - ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5910 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, - ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9930 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, + ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9668 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, } }, + ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5911 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3563080185] = { "100% increased Culling Strike Threshold" }, } }, + ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9940 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, } }, ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3942946753] = { "Regenerate 3% of maximum Life per second while on Low Life" }, } }, ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1015 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [38301299] = { "+25% to Fire Resistance while on Low Life" }, } }, - ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 10011 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, - ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7468 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, + ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 10021 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2412053423] = { "(8-12)% increased Spell Damage per 10 Spirit" }, } }, + ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7474 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2812872407] = { "Life Recovery from Flasks also applies to Energy Shield" }, } }, ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "50% of Damage is taken from Mana before Life" }, } }, ["UniqueDamageRemovedFromManaBeforeLife2"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, ["UniqueDamageRemovedFromManaBeforeLife3"] = { affix = "", "100% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, unscalable = true, tradeHashes = { [458438597] = { "100% of Damage is taken from Mana before Life" }, } }, @@ -1969,66 +1969,66 @@ return { ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4280 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1717295693] = { "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude" }, } }, ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4281 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1375667591] = { "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude" }, } }, ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4650 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, tradeHashes = { [2134207902] = { "+100% of Armour also applies to Lightning Damage" }, } }, - ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7558 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, - ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 6361 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, + ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7564 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3999959974] = { "Lightning Resistance does not affect Lightning damage taken" }, } }, + ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 6363 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1546580830] = { "Enemies in your Presence have Lightning Resistance equal to yours" }, } }, ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(30-50)% of Physical damage from Hits taken as Lightning damage" }, } }, - ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8829 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, - ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 7432 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, - ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 7449 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 7431 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, - ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 10392 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, - ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 10390 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, - ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6887 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, - ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6887 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6888 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6888 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, - ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6888 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, - ["UniqueGuardFromManaFlask1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10429 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, - ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { affix = "", "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", statOrder = { 6800 }, level = 1, group = "GuardOnDodgeFromMissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [469006068] = { "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll" }, } }, - ["UniqueMaximumGuardBasedOnEnergyShield1"] = { affix = "", "Maximum amount of Guard is based on maximum Energy Shield instead", statOrder = { 8869 }, level = 1, group = "MaximumGuardInsteadBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1338406168] = { "Maximum amount of Guard is based on maximum Energy Shield instead" }, } }, - ["UniqueDivineFlight1"] = { affix = "", "Divine Flight", statOrder = { 10755 }, level = 1, group = "DivineFlight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2971398565] = { "Divine Flight" }, } }, - ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 1 charge per Second", statOrder = { 6884 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, } }, - ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10643 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, - ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10643 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, + ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8834 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2584264074] = { "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently" }, } }, + ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 7438 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [720388959] = { "Life Recovery from Flasks is instant" }, } }, + ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 7455 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, + ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 7437 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1245896889] = { "Life Recovery from Flasks can Overflow Maximum Life" }, } }, + ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 10406 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404607671] = { "Soul Eater" }, } }, + ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 10404 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1810907437] = { "Presence Radius is doubled" }, } }, + ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6890 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain 0.25 charges per Second" }, } }, + ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6890 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.17-0.25) charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6891 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain 0.25 charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6891 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.17-0.25) charges per Second" }, } }, + ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6891 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.25) charges per Second" }, } }, + ["UniqueGuardFromManaFlask1"] = { affix = "", "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds", statOrder = { 10443 }, level = 1, group = "GuardOnManaFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2777675751] = { "Using a Mana Flask grants Guard equal to 100% of Flask's recovery amount for 4 seconds" }, } }, + ["UniqueGuardFromMissingEnergyShieldOnDodge1"] = { affix = "", "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll", statOrder = { 6803 }, level = 1, group = "GuardOnDodgeFromMissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [469006068] = { "Gain Guard equal to (10-20)% of missing Energy Shield for 4 seconds when you Dodge Roll" }, } }, + ["UniqueMaximumGuardBasedOnEnergyShield1"] = { affix = "", "Maximum amount of Guard is based on maximum Energy Shield instead", statOrder = { 8874 }, level = 1, group = "MaximumGuardInsteadBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1338406168] = { "Maximum amount of Guard is based on maximum Energy Shield instead" }, } }, + ["UniqueDivineFlight1"] = { affix = "", "Divine Flight", statOrder = { 10772 }, level = 1, group = "DivineFlight", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2971398565] = { "Divine Flight" }, } }, + ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 1 charge per Second", statOrder = { 6887 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, } }, + ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10660 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, + ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10660 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2439129490] = { "Chaos Resistance is zero" }, } }, ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2792 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [2442647190] = { "Recover 4% of maximum Life when you Block" }, } }, - ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 6384 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, + ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 6386 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [147006673] = { "Enemies you Curse are Intimidated" }, } }, ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1622 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [1745952865] = { "50% increased Elemental Ailment Duration on you" }, } }, - ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 10413 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, - ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 9146, 9146.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, - ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7433 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, - ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7975 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, + ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 10427 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3751072557] = { "Curses have no Activation Delay" }, } }, + ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 9151, 9151.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3881997959] = { "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, } }, + ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7439 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1200347828] = { "Life Flasks used while on Low Life apply Recovery Instantly" }, } }, + ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7981 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1839832419] = { "Mana Flasks used while on Low Mana apply Recovery Instantly" }, } }, ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (5-10)% of Damage as Extra Fire Damage" }, } }, ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (5-10)% of Damage as Extra Cold Damage" }, } }, ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3398787959] = { "Gain (30-40)% of Damage as Extra Chaos Damage" }, } }, ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 1290 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHashes = { [261503687] = { "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage" }, } }, - ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6333 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, + ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6335 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2762 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4176970656] = { "300 Physical Damage taken on Minion Death" }, } }, ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2417 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1195849808] = { "You gain Onslaught for 4 seconds on Kill" }, } }, - ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 10389 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, + ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 10403 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, } }, ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4296 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2214228141] = { "Projectiles Pierce all Ignited enemies" }, } }, ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 1060 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2511217560] = { "200% increased Stun Recovery" }, } }, ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2458 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3811649872] = { "Increases and Reductions to Spell damage also apply to Attacks" }, } }, - ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4711 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, + ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4712 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3971919056] = { "Life Recharges" }, } }, ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(20-30)% reduced Totem Life" }, } }, ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1978 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429867172] = { "+1 to maximum number of Summoned Totems" }, } }, ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2330 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, - ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5776 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, + ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5777 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, } }, ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(20-30)% increased Warcry Speed" }, } }, - ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 10507 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, + ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 10521 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (20-30)% increased Area of Effect" }, } }, ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "25% increased Totem Placement speed" }, } }, ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3460 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1723061251] = { "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit" }, } }, ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1395 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [4237442815] = { "+(100-150)% to Melee Critical Damage Bonus" }, } }, ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1960 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [321765853] = { "-30 Physical Damage taken from Hits" }, } }, - ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6869 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, - ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9615 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, + ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6872 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3199910734] = { "Gain (5-10) Rage after Spending a total of 200 Mana" }, } }, + ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9623 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933909365] = { "Rage grants Spell damage instead of Attack damage" }, } }, ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "30% reduced Global Armour, Evasion and Energy Shield" }, } }, - ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2844 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "unmutatable", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7486 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, - ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 9112 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, - ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 6074 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, - ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6730, 6730.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, + ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7492 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3276271783] = { "Regenerate 0.05 Life per second per Maximum Energy Shield" }, } }, + ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 9117 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, + ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 6075 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, + ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6733, 6733.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 4092 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Repeatable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, } }, ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(30-50)% increased Skill Effect Duration" }, } }, ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, @@ -2036,33 +2036,33 @@ return { ["UniqueGlobalCooldownRecovery2"] = { affix = "", "(20-40)% reduced Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-40)% reduced Cooldown Recovery Rate" }, } }, ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3977 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1631928082] = { "Increases and Reductions to Minion Damage also affect you" }, } }, ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3428 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2293111154] = { "Increases and Reductions to Minion Attack Speed also affect you" }, } }, - ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5947 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, + ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5948 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3399499561] = { "(5-8)% increased Damage per Minion" }, } }, ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "40% increased Mana Regeneration Rate while stationary" }, } }, ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (10-15)% of maximum Life as Extra maximum Energy Shield" }, } }, ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "10% of Damage taken bypasses Energy Shield" }, } }, - ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6427 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, - ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 7450 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, - ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 10410, 10410.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, + ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6429 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2350411833] = { "You lose 5% of maximum Energy Shield per second" }, } }, + ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 7456 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [999436592] = { "Excess Life Recovery from Leech is applied to Energy Shield" }, } }, + ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 10424, 10424.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2247039371] = { "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life" }, } }, ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1947 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314057862] = { "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second" }, } }, ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, ["UniqueNoCriticalStrikeMultiplier2"] = { affix = "", "You have no Critical Damage Bonus", statOrder = { 1405 }, level = 1, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4058681894] = { "You have no Critical Damage Bonus" }, } }, ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1384 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, ["UniqueLocalNoCriticalStrikeMultiplier2"] = { affix = "", "Hits with this Weapon have no Critical Damage Bonus", statOrder = { 1384 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "unmutatable", "damage", "critical" }, tradeHashes = { [1508661598] = { "Hits with this Weapon have no Critical Damage Bonus" }, } }, - ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { affix = "", "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", statOrder = { 6858, 6858.1 }, level = 1, group = "UniqueGainDisorderlyConductBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4128965096] = { "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" }, } }, - ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4755 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, - ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7919 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, - ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 10619 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, + ["UniqueGainDisorderlyConductEveryXGrenadeSkills"] = { affix = "", "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", statOrder = { 6861, 6861.1 }, level = 1, group = "UniqueGainDisorderlyConductBuff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4128965096] = { "Gain 1 Explosive Rhythm every (2-3) times you use a Grenade Skill", " Remove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds" }, } }, + ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4756 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [2715190555] = { "+25% to Thorns Critical Hit Chance" }, } }, + ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7925 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933846633] = { "Dazes on Hit" }, } }, + ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 10635 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2045949233] = { "Slam Skills you use yourself cause an additional Aftershock" }, } }, ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 2184, 2184.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2224139044] = { "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted" }, } }, - ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 6410 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, - ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10031 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, + ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 6412 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [793801176] = { "Energy Generation is doubled" }, } }, + ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 10041 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [3544050945] = { "25% of Spell Mana Cost Converted to Life Cost" }, } }, ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "30% reduced Reload Speed" }, } }, ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(7-14)% increased Reload Speed" }, } }, - ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5900, 5900.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, - ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 10421 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, + ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5901, 5901.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [842299438] = { "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently" }, } }, + ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 10435 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2838161567] = { "Skills reserve 50% less Spirit" }, } }, ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3466 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3384885789] = { "This Weapon's Critical Hit Chance is 100%" }, } }, ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3783 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["UniqueLightningSpellsChain1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7560 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, + ["UniqueLightningSpellsChain1"] = { affix = "", "Lightning Skills Chain +1 times", statOrder = { 7566 }, level = 1, group = "LightningSpellAdditionalChain", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [4123841473] = { "Lightning Skills Chain +1 times" }, } }, ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "-15 Strength Requirement" }, } }, ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+100 Strength Requirement" }, } }, ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 827 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2833226514] = { "+150 Strength Requirement" }, } }, @@ -2071,180 +2071,180 @@ return { ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 818 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1133453872] = { "+50 Dexterity Requirement" }, } }, ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+100 Intelligence Requirement" }, } }, ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+200 Intelligence Requirement" }, } }, - ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5653 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7684 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, - ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7687 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, - ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7686 }, level = 69, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, + ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5654 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7690 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [826162720] = { "Trigger Ember Fusillade Skill on casting a Spell" }, } }, + ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7693 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [811217923] = { "Trigger Spark Skill on killing a Shocked Enemy" }, } }, + ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7692 }, level = 69, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [704919631] = { "Trigger Lightning Bolt Skill on Critical Hit" }, } }, ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 73 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [4031148736] = { "You can only Socket Ruby Jewels in this item" }, } }, ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 74 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3598729471] = { "You can only Socket Emerald Jewels in this item" }, } }, ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 75 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [21302430] = { "You can only Socket Sapphire Jewels in this item" }, } }, - ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6582 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, - ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5700 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, - ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7557 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, + ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6584 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3247805335] = { "Fire Resistance is unaffected by Area Penalties" }, } }, + ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5701 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4207433208] = { "Cold Resistance is unaffected by Area Penalties" }, } }, + ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7563 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3631920880] = { "Lightning Resistance is unaffected by Area Penalties" }, } }, ["UniqueColdAndLightningResPerFireResItem1"] = { affix = "", "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", statOrder = { 1022 }, level = 1, group = "UniqueSekhemaFireRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [2381897042] = { "+(5-10)% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier" }, } }, ["UniqueFireAndColdResPerLightningResItem1"] = { affix = "", "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", statOrder = { 1017 }, level = 1, group = "UniqueSekhemaLightningRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [4032948616] = { "+(5-10)% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier" }, } }, ["UniqueFireAndLightningRestPerColdResItem1"] = { affix = "", "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", statOrder = { 1019 }, level = 1, group = "UniqueSekhemaColdRingResMod", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3753008264] = { "+(5-10)% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier" }, } }, - ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7685 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, - ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7683 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, - ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6573 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 6195 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, - ["UniqueDodgeRollSpeed1"] = { affix = "", "(20-30)% faster Dodge Roll", statOrder = { 6198 }, level = 1, group = "DodgeRollSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [504054855] = { "(20-30)% faster Dodge Roll" }, } }, + ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7691 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1652674074] = { "Triggers Gas Cloud on Hit" }, } }, + ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7689 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1524904258] = { "Trigger Detonation on Hit" }, } }, + ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6575 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 6196 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258119672] = { "+1 metre to Dodge Roll distance" }, } }, + ["UniqueDodgeRollSpeed1"] = { affix = "", "(20-30)% faster Dodge Roll", statOrder = { 6199 }, level = 1, group = "DodgeRollSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [504054855] = { "(20-30)% faster Dodge Roll" }, } }, ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 4090, 4091 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3350232544] = { "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently" }, [57896763] = { "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently" }, } }, - ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6501 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, + ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6503 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1040569494] = { "50% increased Evasion Rating if you've Dodge Rolled Recently" }, } }, ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3144 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1094937621] = { "Critical Hits ignore Enemy Monster Elemental Resistances" }, } }, - ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9721 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9729 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1431 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield" }, } }, - ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5514 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, + ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5515 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555237944] = { "Gain an additional Charge when you gain a Charge" }, } }, ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 14 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1161337167] = { "Can be modified while Corrupted" }, } }, ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of Charges consumed by used Charms are granted to your Life Flasks", statOrder = { 903 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2369960685] = { "50% of Charges consumed by used Charms are granted to your Life Flasks" }, } }, ["UniqueLifeFlaskChargesToCharms1"] = { affix = "", "50% of Charges consumed by used Life Flasks are granted to your Charms", statOrder = { 904 }, level = 70, group = "LifeFlaskChargesToCharms", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2020463573] = { "50% of Charges consumed by used Life Flasks are granted to your Charms" }, } }, ["UniqueCorruptedSkillCostEfficiencyDuringFlaskEffect1"] = { affix = "", "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect", statOrder = { 3006 }, level = 70, group = "CorruptedSkillCostEfficiencyDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2638381947] = { "Skills from Corrupted Gems have (15-25)% increased Cost Efficiency during any Flask Effect" }, } }, ["UniqueCorruptedCharmDuration1"] = { affix = "", "(25-50)% increased Corrupted Charms effect duration", statOrder = { 901 }, level = 70, group = "CorruptedCharmDuration", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1571268546] = { "(25-50)% increased Corrupted Charms effect duration" }, } }, - ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5268 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5269 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 179 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4065505214] = { "(66-333)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9603 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, - ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6704 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, - ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7928 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4697 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, - ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7473 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, - ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9672 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, - ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4713 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, - ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 7342 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, - ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 7338 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, + ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9611 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, + ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6706 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2284588585] = { "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds" }, } }, + ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7934 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, + ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4698 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (3-6) Rage on Hit" }, } }, + ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7479 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3947672598] = { "Life Recovery from Regeneration is not applied" }, } }, + ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9680 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457411584] = { "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration" }, } }, + ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4714 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2942704390] = { "Skills have +1 to Limit" }, } }, + ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 7348 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1538879632] = { "Inflict Fire Exposure on Shocking an Enemy" }, } }, + ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 7344 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3314536008] = { "Inflict Cold Exposure on Igniting an Enemy" }, } }, ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4282 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%" }, } }, - ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5692 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, - ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 7344 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, - ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 6356 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, - ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6349 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, - ["UniqueBlinded1"] = { affix = "", "You are Blind", statOrder = { 10623 }, level = 1, group = "Blinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3774577097] = { "You are Blind" }, } }, - ["UniqueBlindEffectsReversed1"] = { affix = "", "The Effect of Blind on you is reversed", statOrder = { 10624 }, level = 1, group = "BlindEffectsReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1010703902] = { "The Effect of Blind on you is reversed" }, } }, - ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 10387 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, - ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5558 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, + ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5693 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2243456805] = { "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%" }, } }, + ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 7350 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2665488635] = { "Inflict Lightning Exposure on Critical Hit" }, } }, + ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 6358 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052498387] = { "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds" }, } }, + ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 6351 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1464727508] = { "Enemies in your Presence are Blinded" }, } }, + ["UniqueBlinded1"] = { affix = "", "You are Blind", statOrder = { 10639 }, level = 1, group = "Blinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3774577097] = { "You are Blind" }, } }, + ["UniqueBlindEffectsReversed1"] = { affix = "", "The Effect of Blind on you is reversed", statOrder = { 10640 }, level = 1, group = "BlindEffectsReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1010703902] = { "The Effect of Blind on you is reversed" }, } }, + ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 10401 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [396200591] = { "Skills have -(2-1) seconds to Cooldown" }, } }, + ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5559 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [965913123] = { "25% chance to not destroy Corpses when Consuming Corpses" }, } }, ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1473 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [64726306] = { "Can't use other Rings" }, } }, ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "50% reduced Duration of Curses on you" }, } }, - ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7788 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, - ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7787 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, - ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7817 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, - ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7818 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, - ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9560 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, - ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7835 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, - ["UniqueFlaskWardGainedAsGuard1"] = { affix = "", "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", statOrder = { 7697, 7833 }, level = 1, group = "FlaskWardGainedAsGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1106321864] = { "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect" }, [3069759106] = { "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends" }, } }, - ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6960, 6960.1, 6960.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, + ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7794 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2437476305] = { "Left ring slot: Projectiles from Spells Fork" }, } }, + ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7793 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3647242059] = { "Left ring slot: Projectiles from Spells cannot Chain" }, } }, + ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7823 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1555918911] = { "Right ring slot: Projectiles from Spells Chain +1 times" }, } }, + ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7824 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2933024469] = { "Right ring slot: Projectiles from Spells cannot Fork" }, } }, + ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9568 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3826125995] = { "Projectiles from Spells cannot Pierce" }, } }, + ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7841 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [636464211] = { "Excess Life Recovery added as Guard for 20 seconds" }, } }, + ["UniqueFlaskWardGainedAsGuard1"] = { affix = "", "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect", "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends", statOrder = { 7703, 7839 }, level = 1, group = "FlaskWardGainedAsGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1106321864] = { "Regenerate (2.5-5)% of maximum Runic Ward per second during Effect" }, [3069759106] = { "Gain Guard equal to Current Runic Ward for 10 seconds when Effect ends" }, } }, + ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6964, 6964.1, 6964.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time" }, } }, ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4662 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2957287092] = { "Chance to Block Damage is Lucky" }, } }, ["UniqueLocalRunicWard1"] = { affix = "", "+(50-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(50-100) to maximum Runic Ward" }, } }, - ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5631 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, + ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5632 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2620375641] = { "Charms use no Charges" }, } }, ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4242 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [874646180] = { "Aggravate Bleeding on Enemies when they Enter your Presence" }, } }, - ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 10247 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, - ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 9227 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, - ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7827 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, - ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7799 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, - ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7801 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, - ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", statOrder = { 7703 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [933768533] = { "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled" }, } }, - ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7741 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, - ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7815 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, - ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7602 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, - ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7627 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, - ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7628 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, - ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7625 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, - ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7600 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, - ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7829 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, - ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7626 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, - ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7629 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, - ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7795, 7795.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, - ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7575 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, - ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5902 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 10388 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, - ["UniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(30-50)% increased Damage against Immobilised Enemies", statOrder = { 5954 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3120508478] = { "(30-50)% increased Damage against Immobilised Enemies" }, } }, - ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 6196 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, - ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 10412 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, + ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "100% increased Thorns damage" }, } }, + ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "10% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 9232 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4117005593] = { "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost" }, } }, + ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7833 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163415912] = { "+(10-14) to Spirit per Socket filled" }, } }, + ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7805 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2702182380] = { "5% increased Maximum Life per Socket filled" }, } }, + ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7807 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [911712882] = { "5% increased Maximum Mana per Socket filled" }, } }, + ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled", statOrder = { 7709 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [933768533] = { "(9-12)% increased Global Armour, Evasion and Energy Shield per Socket filled" }, } }, + ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7747 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [313223231] = { "10% increased Rarity of Items found per Socket filled" }, } }, + ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7821 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2593651571] = { "+(8-10)% to all Elemental Resistances per Socket filled" }, } }, + ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7608 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2513318031] = { "5% increased Attributes per Socket filled" }, } }, + ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7633 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [150391334] = { "+(45-60) to maximum Life per Socket filled" }, } }, + ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7634 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1036267537] = { "+(50-60) to maximum Mana per Socket filled" }, } }, + ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7631 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1123023256] = { "+(10-13)% to Chaos Resistance per Socket filled" }, } }, + ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7606 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3474271079] = { "+(5-7) to all Attributes per Socket filled" }, } }, + ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7835 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3679769182] = { "+(70-90) to Stun Threshold per Socket filled" }, } }, + ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7632 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [332337290] = { "(8-12) Life Regeneration per second per Socket filled" }, } }, + ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7635 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [701923421] = { "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled" }, } }, + ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7801, 7801.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500" }, } }, + ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7581 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [664024640] = { "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills" }, } }, + ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5903 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, + ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 10402 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1613322341] = { "Enemies Immobilised by you take 20% more Damage" }, } }, + ["UniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(30-50)% increased Damage against Immobilised Enemies", statOrder = { 5955 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3120508478] = { "(30-50)% increased Damage against Immobilised Enemies" }, } }, + ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 6197 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3518087336] = { "Dodge Roll avoids all Hits" }, } }, + ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 10426 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3156445245] = { "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds" }, } }, ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4285 }, level = 69, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [2173791158] = { "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage" }, } }, ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 922 }, level = 69, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHashes = { [3081479811] = { "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second" }, } }, - ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 6354 }, level = 69, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, - ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 6351 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, + ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 6356 }, level = 69, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHashes = { [2786852525] = { "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance" }, } }, + ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 6353 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [3491722585] = { "Enemies in your Presence are Intimidated" }, } }, ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 3075 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2415497478] = { "(10-30)% chance to Avoid Physical Damage from Hits" }, } }, ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 3080 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1563503803] = { "(10-30)% chance to Avoid Chaos Damage from Hits" }, } }, ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 3077 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [42242677] = { "(10-30)% chance to Avoid Fire Damage from Hits" }, } }, ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 3078 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3743375737] = { "(10-30)% chance to Avoid Cold Damage from Hits" }, } }, ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 3079 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2889664727] = { "(10-30)% chance to Avoid Lightning Damage from Hits" }, } }, - ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 9418 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, - ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7839 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, - ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7838 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, - ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7840 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, + ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 9425 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373370443] = { "Skills have a (100-150)% longer Perfect Timing window" }, } }, + ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7845 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, + ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7844 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, + ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7846 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 639, 932 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, - ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 10313 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, - ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6466 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, - ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6464 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, - ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6465 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, - ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 6358 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, - ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5895 }, level = 69, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, + ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 10327 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, + ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6468 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, + ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6466 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, + ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6467 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3885501357] = { "(20-30)% increased bonuses gained from right Equipped Ring" }, } }, + ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 6360 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [990363519] = { "Enemies in your Presence have -25% to Fire Resistance" }, } }, + ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5896 }, level = 69, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHashes = { [1289045485] = { "Critical Hits Ignore Enemy Monster Lightning Resistance" }, } }, ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2725 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 75% Cold Resistance" }, } }, - ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4922 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, + ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4923 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4419 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6494 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, - ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6426 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, + ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6496 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [419098854] = { "Evasion Rating is increased by Uncapped Lightning Resistance" }, } }, + ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6428 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2147773348] = { "Energy Shield is increased by Uncapped Cold Resistance" }, } }, ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4263 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000566389] = { "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance" }, } }, ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2622 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHashes = { [2973498992] = { "Chaos Damage from Hits also Contributes to Freeze Buildup" }, } }, ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4673 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2315177528] = { "Chaos Damage from Hits also Contributes to Electrocute Buildup" }, } }, - ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8968 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, + ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8973 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3111921451] = { "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence" }, } }, ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2324 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 9077 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "minion_resistance", "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, + ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 9082 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "minion_resistance", "resistance", "minion" }, tradeHashes = { [3045072899] = { "Minions' Resistances are equal to yours" }, } }, ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2238 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2022332470] = { "You take Fire Damage instead of Physical Damage from Bleeding" }, } }, - ["UniqueInflictBleedFireDamage1"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4804 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, + ["UniqueInflictBleedFireDamage1"] = { affix = "", "Bleeding you inflict deals Fire Damage instead of Physical Damage", statOrder = { 4805 }, level = 1, group = "InflictBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1016759424] = { "Bleeding you inflict deals Fire Damage instead of Physical Damage" }, } }, ["UniqueFireDamageAlsoContributesToBleed1"] = { affix = "", "Fire Damage also Contributes to Bleeding Magnitude", statOrder = { 2633 }, level = 1, group = "FireDamageAlsoContributesToBleed", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1221641885] = { "Fire Damage also Contributes to Bleeding Magnitude" }, } }, - ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6340 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, - ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6342 }, level = 1, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 6342 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Unlucky" }, } }, + ["UniqueEnemyExtraDamageRollsWithPhysicalDamage1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6344 }, level = 1, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2424163939] = { "Physical Damage of Enemies Hitting you is Unlucky" }, } }, ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, - ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 9310 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+(1-2) Charm Slot" }, } }, + ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 9317 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [554899692] = { "+(1-2) Charm Slot" }, } }, ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(17-23)% to Chaos Resistance" }, } }, ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2338 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4264 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(30-50) to Ailment Threshold" }, } }, ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4264 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1488650448] = { "+(200-300) to Ailment Threshold" }, } }, - ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6255, 6255.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7261 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 10418 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, - ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6402 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, - ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8843 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, - ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 6206 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, - ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8894 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, - ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 10419, 10419.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, - ["UniqueRaiseShieldAncientsChallenge1"] = { affix = "", "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", statOrder = { 10560, 10561 }, level = 1, group = "AncientsChallengeOnShieldRaise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [774222208] = { "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds" }, [343703314] = { "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" }, } }, - ["UniqueAncientsChallengeOnOffHandDamage1"] = { affix = "", "Off-hand Hits inflict Runefather's Challenge", statOrder = { 10559 }, level = 1, group = "AncientsChallengeOnOffHandDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, } }, + ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6257, 6257.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7267 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 10432 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHashes = { [932661147] = { "Using a Mana Flask revives one of your Persistent Minions" }, } }, + ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 6404 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3868746097] = { "Enemies have an Accuracy Penalty against you based on Distance" }, } }, + ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8848 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1500744699] = { "Maximum Chance to Evade is 50%" }, } }, + ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 6207 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3387008487] = { "Defend with 200% of Armour" }, } }, + ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8899 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3960211755] = { "Maximum Physical Damage Reduction is 50%" }, } }, + ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 10433, 10433.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [223138829] = { "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised" }, } }, + ["UniqueRaiseShieldAncientsChallenge1"] = { affix = "", "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds", "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", statOrder = { 10576, 10577 }, level = 1, group = "AncientsChallengeOnShieldRaise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [774222208] = { "Inflicts Runefather's Challenge on enemies 6 metres in front of you when raised, no more than once every 2 seconds" }, [343703314] = { "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill" }, } }, + ["UniqueAncientsChallengeOnOffHandDamage1"] = { affix = "", "Off-hand Hits inflict Runefather's Challenge", statOrder = { 10575 }, level = 1, group = "AncientsChallengeOnOffHandDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, } }, ["UniqueAttacksDealPercentIncreasedDamagePerTargetPower1UNUSED"] = { affix = "", "(3-5)% increased Attack damage per Power of target", statOrder = { 4513 }, level = 1, group = "IncreasedAttackDamagePerTargetPower", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [954571961] = { "(3-5)% increased Attack damage per Power of target" }, } }, - ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 7426 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, + ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 7432 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [932866937] = { "Life and Mana Flasks can be equipped in either slot" }, } }, ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 2214 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHashes = { [2340750293] = { "(20-30)% of Elemental damage from Hits taken as Physical damage" }, } }, - ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4939 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, + ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4940 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHashes = { [2393355605] = { "You take 100% of Elemental damage from Blocked Hits" }, } }, ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2364 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, - ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 5249 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, + ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 5250 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635316831] = { "You can wield Two-Handed Axes, Maces and Swords in one hand" }, } }, ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2416 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [21824003] = { "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit" }, } }, - ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6890 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, + ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6893 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1736538865] = { "You have Consecrated Ground around you while stationary" }, } }, ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4288 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4258251165] = { "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 6362 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 10384 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1953536251] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, - ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 6353 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, - ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 10416 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, - ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 6359 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, - ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 6023 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, - ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7963 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, + ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 6364 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [1224838456] = { "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 10398 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1953536251] = { "Enemies in your Presence have at least 10% of Life Reserved" }, } }, + ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 6355 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [1285684287] = { "Enemies in your Presence count as being on Low Life" }, } }, + ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 10430 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2836928993] = { "Enemies in your Presence count as having double Power" }, } }, + ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 6361 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance", "aura" }, tradeHashes = { [83011992] = { "Enemies in your Presence have no Elemental Resistances" }, } }, + ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 6024 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (50-100)% increased Damage" }, } }, + ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7969 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [514290151] = { "Gain (30-50)% of Maximum Mana as Armour" }, } }, ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4234, 4234.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mana" }, tradeHashes = { [3407300125] = { "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate" }, } }, ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4424 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [679087890] = { "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield" }, } }, - ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { affix = "", "Defend with (150-200)% of Armour while you have Energy Shield", statOrder = { 6107 }, level = 1, group = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1539671749] = { "Defend with (150-200)% of Armour while you have Energy Shield" }, } }, + ["UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield1"] = { affix = "", "Defend with (150-200)% of Armour while you have Energy Shield", statOrder = { 6108 }, level = 1, group = "UniqueDefendWithXPercentArmourWhileYouHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1539671749] = { "Defend with (150-200)% of Armour while you have Energy Shield" }, } }, ["UniqueMaxLifeToConvertToArmourPerChaosResistance1"] = { affix = "", "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", statOrder = { 1434 }, level = 1, group = "UniqueMaxLifeToConvertToArmourPerChaosResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4274637468] = { "Convert 1% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%" }, } }, - ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { affix = "", "Damage over Time cannot bypass your Energy Shield", statOrder = { 10386 }, level = 1, group = "UniqueDamageOvertimeDoesNotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2886108529] = { "Damage over Time cannot bypass your Energy Shield" }, } }, - ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9913 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, - ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4689 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 5299 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, - ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 7266 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, - ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 10220 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, - ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 9207 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 8011 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, - ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 6089 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, - ["UniqueChanceToDealThornsDamageOnHit1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10258 }, level = 60, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, - ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7466 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, - ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6860 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, - ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7929 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, - ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 9228 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3170380905] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, + ["UniqueDamageOvertimeDoesNotBypassEnergyShield1"] = { affix = "", "Damage over Time cannot bypass your Energy Shield", statOrder = { 10400 }, level = 1, group = "UniqueDamageOvertimeDoesNotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2886108529] = { "Damage over Time cannot bypass your Energy Shield" }, } }, + ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9922 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3181887481] = { "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage" }, } }, + ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4690 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 5300 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4062529591] = { "Cannot Immobilise enemies" }, } }, + ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 7272 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2583483800] = { "Ignore Strength Requirement of Melee Weapons and Melee Skills" }, } }, + ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 10234 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3887716633] = { "Take Physical Damage per total unmet Strength Requirement when you Attack" }, } }, + ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 9212 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1458880585] = { "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently" }, } }, + ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 8017 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [1659564104] = { "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently" }, } }, + ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 6090 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2107791433] = { "Deal your Thorns Damage to Enemies you Stun with Melee Attacks" }, } }, + ["UniqueChanceToDealThornsDamageOnHit1"] = { affix = "", "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", statOrder = { 10272 }, level = 60, group = "ChanceToDealThornsDamageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2880019685] = { "(15-25)% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks" }, } }, + ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7472 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life" }, tradeHashes = { [2432200638] = { "Damage taken Recouped as Life is also Recouped as Energy Shield" }, } }, + ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6863 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2459662130] = { "Gain Tailwind on Critical Hit, no more than once per second" }, } }, + ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7935 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [367897259] = { "Lose all Tailwind when Hit" }, } }, + ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 9233 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2771095426] = { "Gain 1% of damage as Fire damage per 1% Chance to Block" }, } }, ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [4095671657] = { "+1% to Maximum Fire Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 1009, 1010, 1011 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [4095671657] = { "+2% to Maximum Fire Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, @@ -2259,127 +2259,127 @@ return { ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+3 to Level of all Fire Skills", "+1 to Level of all Cold Skills", "+2 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+2 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+1 to Level of all Cold Skills" }, } }, ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+3 to Level of all Fire Skills", "+2 to Level of all Cold Skills", "+1 to Level of all Lightning Skills", statOrder = { 958, 960, 962 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1147690586] = { "+1 to Level of all Lightning Skills" }, [599749213] = { "+3 to Level of all Fire Skills" }, [1078455967] = { "+2 to Level of all Cold Skills" }, } }, ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4321 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [1550131834] = { "Critical Hits with Spells apply (1-3) Stack of Critical Weakness" }, } }, - ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9766, 9766.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds" }, } }, + ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9774, 9774.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777740627] = { "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds" }, } }, ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3265 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2421436896] = { "Arrows Fork" }, } }, ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4439 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2138799639] = { "Arrows Pierce all targets after Forking" }, } }, ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1779 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [4126210832] = { "Always Hits" }, } }, ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1415 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3739186583] = { "Knocks Back Enemies on Hit" }, } }, - ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10033 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, + ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10043 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2348696937] = { "Spells have a 25% chance to inflict Withered for 4 seconds on Hit" }, } }, ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 4093 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1354656031] = { "Withered you inflict has infinite Duration" }, } }, - ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7702 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, - ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6964 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, - ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6965 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, - ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6963 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, - ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6962 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, + ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7708 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2879778895] = { "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds" }, } }, + ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6968 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917429943] = { "Grants effect of Guided Meteoric Shrine" }, } }, + ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6969 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800412928] = { "Grants effect of Guided Tempest Shrine" }, } }, + ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6967 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [234657505] = { "Grants effect of Guided Freezing Shrine" }, } }, + ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6966 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3742268652] = { "Grants effect of Dreaming Gloom Shrine" }, } }, ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4634 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1896726125] = { "-20 to maximum Valour" }, } }, ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4639 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1761741119] = { "Banners always have maximum Valour" }, } }, ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-20)% chance to cause Bleeding on Hit" }, } }, ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(15-25)% chance to cause Bleeding on Hit" }, } }, ["UniqueLocalChanceToBleed3"] = { affix = "", "(20-30)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(20-30)% chance to cause Bleeding on Hit" }, } }, - ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 5317 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, + ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 5318 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2598171606] = { "Cannot use Warcries" }, } }, ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4268 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1952324525] = { "All Attacks count as Empowered Attacks" }, } }, - ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 9469 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, - ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 10022, 10022.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, - ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 5269 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, - ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 5270 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, - ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4722 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, + ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 9476 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3063814459] = { "Pin Enemies which are Primed for Pinning" }, } }, + ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 10032, 10032.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1013492127] = { "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle" }, } }, + ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 5270 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1000739259] = { "Cannot be Light Stunned" }, } }, + ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 5271 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2252419505] = { "Cannot be Light Stunned by Deflected Hits" }, } }, + ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4723 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [3199954470] = { "Non-Channelling Attacks cost an additional 6% of your maximum Mana" }, } }, ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4582 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2157692677] = { "Attacks cost an additional 6% of your maximum Mana" }, } }, - ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 9210 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, - ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 10626 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, - ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10664 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, + ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 9215 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [4252580517] = { "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana" }, } }, + ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 10642 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [1835420624] = { "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana" }, } }, + ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10681 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [3258071686] = { "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana" }, } }, ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2315 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, - ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5726 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, - ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4707 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, - ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 10009 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, - ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9989 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, + ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5727 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1150343007] = { "15% of Damage from Hits is taken from your Damageable Companion's Life before you" }, } }, + ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4708 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [1920747151] = { "Non-Channelling Spells cost an additional 6% of your maximum Life" }, } }, + ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 10019 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1027889455] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life" }, } }, + ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9999 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [170426423] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life" }, } }, ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "50% increased Life Regeneration rate" }, } }, ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(-30-30)% reduced Life Regeneration rate" }, } }, - ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 10414 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, - ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 5235 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, - ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 9102 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, - ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 6211 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, - ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5767 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, + ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 10428 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1345486764] = { "+1 to Maximum Spirit per 50 Maximum Life" }, } }, + ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 5236 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3581035970] = { "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life" }, } }, + ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 9107 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3893509584] = { "Minions have Unholy Might" }, } }, + ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 6212 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1272938854] = { "Evasion Rating is doubled if you have not been Hit Recently" }, } }, + ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5768 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, ["UniqueIgnoreHexproof2"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2379 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, - ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6432 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, - ["UniqueShockEffect1"] = { affix = "", "(10-20)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-20)% increased Magnitude of Shock you inflict" }, } }, + ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6434 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3091132047] = { "Your base Energy Shield Recharge Delay is 10 seconds" }, } }, + ["UniqueShockEffect1"] = { affix = "", "(10-20)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-20)% increased Magnitude of Shock you inflict" }, } }, ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4572 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2958220558] = { "1% increased Attack Speed per Overcapped Block chance" }, } }, - ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 9213 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, - ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { affix = "", "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", statOrder = { 6409 }, level = 1, group = "EnergyGainPercentPerCritRecently", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1049590848] = { "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently" }, } }, - ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4933 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, - ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5929 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, - ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 9374 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, - ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 9384 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, - ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 9382 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, + ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 9218 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, + ["UniqueIncreasedEnergyGenPerCritRecently1UNUSED"] = { affix = "", "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently", statOrder = { 6411 }, level = 1, group = "EnergyGainPercentPerCritRecently", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1049590848] = { "Meta Skills gain (5-10)% increased Energy for each Critical Hit you've dealt with Spells Recently" }, } }, + ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4934 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, + ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5930 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, + ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 9381 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, + ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 9391 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, + ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 9389 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, - ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 9373 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, + ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 9380 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, } }, ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4323 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [2104138899] = { "Parrying applies 10 Stacks of Critical Weakness" }, } }, - ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 9378 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, - ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 7218 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, - ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 7217 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, - ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 7219 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, - ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10551 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, + ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 9385 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "100% increased Parry Damage" }, } }, + ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 7224 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3924583393] = { "Hits are Resisted by (15-30)% Fire Resistance instead of target's value" }, } }, + ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 7223 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [3455898738] = { "Hits are Resisted by (15-30)% Cold Resistance instead of target's value" }, } }, + ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 7225 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [3144953722] = { "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value" }, } }, + ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 10567 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [695624915] = { "(20-30)% chance to inflict Withered for 4 seconds on Hit" }, } }, ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4057, 4057.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3507915723] = { "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them" }, } }, ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1758 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602694371] = { "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead" }, } }, ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1759 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [597008938] = { "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead" }, } }, ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1760 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405948943] = { "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead" }, } }, - ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 10383, 10383.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, - ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5761 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, - ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5817 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, - ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5819 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, - ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 5307 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, + ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 10397, 10397.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, + ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5762 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, + ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5818 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, + ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5820 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, + ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 5308 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, ["UniqueRegeneratePercentLifeIfHitRecently1"] = { affix = "", "Regenerate 5% of maximum Life per second if you have been Hit Recently", statOrder = { 1035 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2201614328] = { "Regenerate 5% of maximum Life per second if you have been Hit Recently" }, } }, - ["UniqueGainPercentLifeAsThorns1"] = { affix = "", "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", statOrder = { 6814 }, level = 1, group = "PercentOfMaximumLifeAsPhysicalThorns", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2163764037] = { "Gain Physical Thorns damage equal to 8% - 12% of maximum Life" }, } }, + ["UniqueGainPercentLifeAsThorns1"] = { affix = "", "Gain Physical Thorns damage equal to 8% - 12% of maximum Life", statOrder = { 6817 }, level = 1, group = "PercentOfMaximumLifeAsPhysicalThorns", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2163764037] = { "Gain Physical Thorns damage equal to 8% - 12% of maximum Life" }, } }, ["UniqueLifeRecoveryRate1"] = { affix = "", "(25-50)% increased Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "(25-50)% increased Life Recovery rate" }, } }, ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, ["UniqueLifeRecoveryRate3"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3240073117] = { "30% reduced Life Recovery rate" }, } }, - ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 7456 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, - ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6714 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, + ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 7462 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [825825364] = { "Life Leech recovers based on your Chaos damage instead of Physical damage" }, } }, + ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6716 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [447757144] = { "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges" }, } }, ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4501 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3550545679] = { "Attacks consume an Endurance Charge to Critically Hit" }, } }, - ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9799 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, - ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9960 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, + ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9807 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3164544692] = { "Take 100 Chaos damage per second per Endurance Charge" }, } }, + ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9970 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980858462] = { "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles" }, } }, ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1356 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1451444093] = { "Bifurcates Critical Hits" }, } }, - ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7606 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, - ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9820 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, - ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 5244 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, + ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7612 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4142786792] = { "All Damage from Hits with this Weapon Contributes to Pin Buildup" }, } }, + ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9828 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3278008231] = { "Fully Armour Broken enemies you kill with Hits Shatter" }, } }, + ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 5245 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4237042051] = { "Can Block from all Directions while Shield is Raised" }, } }, ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4248 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2312741059] = { "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target" }, } }, - ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7599 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, - ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7632 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, + ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7605 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1009412152] = { "(25-40)% chance to Aggravate Bleeding on Hit" }, } }, + ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7638 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1961849903] = { "Cannot use Projectile Attacks" }, } }, ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2249 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, tradeHashes = { [3681057026] = { "Recover Energy Shield equal to 2% of Armour when you Block" }, } }, ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2499 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2353201291] = { "You have Unholy Might while you have no Energy Shield" }, } }, - ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7615 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, - ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 9386 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, - ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 9386 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, - ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 7333 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, - ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7810 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, + ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7621 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, + ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 9393 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, + ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 9393 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, + ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 7339 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, + ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7816 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1920 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2397460217] = { "Your Life Flask also applies to your Minions" }, } }, ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1921 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4046380260] = { "Minions cannot Die while affected by a Life Flask" }, } }, ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3442 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [797833282] = { "Minions deal (5-8) to (10-12) additional Attack Physical Damage" }, } }, ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 614 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 200%" }, } }, ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 614 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, } }, - ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 9277 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, - ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 10667 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, - ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5915 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, - ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4929 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, + ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 9283 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2469544361] = { "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy" }, } }, + ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 10684 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1888024332] = { "You can have two Companions of different types" }, } }, + ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5916 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2342939473] = { "Current Energy Shield also grants Elemental Damage reduction" }, } }, + ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4930 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [60826109] = { "Blind Targets when you Poison them" }, } }, ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-20)% increased Poison Duration" }, } }, - ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 7257 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, - ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 7186 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, - ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6715, 6715.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, - ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7651 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, - ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6294 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, + ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 7263 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, + ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 7192 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, + ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6717, 6717.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, + ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7657 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, + ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6296 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 10% Elemental Resistances" }, } }, ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4006 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4005 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 5309 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, + ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 5310 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3593063598] = { "Mana Recovery other than Regeneration cannot Recover Mana" }, } }, ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1661347488] = { "Lose 5% of maximum Life per second" }, } }, - ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7726 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, - ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4739 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9206 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, + ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7732 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4021234281] = { "Any number of Poisons from this Weapon can affect a target at the same time" }, } }, + ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4740 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, + ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9211 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4463 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to 3% of maximum Life" }, } }, ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4464 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to 3% of maximum Life" }, } }, ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1983 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3709513762] = { "+4 to Level of Elemental Weakness Skills" }, } }, @@ -2390,90 +2390,90 @@ return { ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1982 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [2157870819] = { "+4 to Level of Despair Skills" }, } }, ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1984 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [3948285912] = { "+4 to Level of Enfeeble Skills" }, } }, ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 2008 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1042153418] = { "+4 to Level of Temporal Chains Skills" }, } }, - ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5614 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "charm", "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, - ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5613 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, - ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5612 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, - ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5604 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, - ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5611 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, - ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5610 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, - ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5603 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, - ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5626 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, - ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5627 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, - ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5615 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "charm", "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, - ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5609 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "charm", "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, - ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5628 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, - ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5622 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, - ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5619 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, - ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5623 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, - ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5621 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, - ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5616 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, - ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5617 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, - ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5620 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, - ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5625 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, - ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5624 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, - ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5618 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, + ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5615 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "charm", "attack" }, tradeHashes = { [1509210032] = { "Grants up to your maximum Rage on use" }, } }, + ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5614 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "power_charge" }, tradeHashes = { [2566921799] = { "Grants a Power Charge on use" }, } }, + ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5613 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "charm", "frenzy_charge" }, tradeHashes = { [280890192] = { "Grants a Frenzy Charge on use" }, } }, + ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5605 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "charm", "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, + ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5612 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, + ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5611 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, + ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5604 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, + ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5627 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, + ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5628 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, + ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5616 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "charm", "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, + ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5610 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "charm", "elemental", "lightning" }, tradeHashes = { [3246948616] = { "Lightning Damage of Enemies Hitting you is Unlucky during effect" }, } }, + ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5629 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "charm", "resource", "life", "mana", "chaos" }, tradeHashes = { [2678930256] = { "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect" }, } }, + ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5623 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1280492469] = { "Possessed by a random Spirit for 20 seconds on use" }, } }, + ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5620 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [300107724] = { "Possessed by Spirit Of The Owl for (10-20) seconds on use" }, } }, + ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5624 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3181677174] = { "Possessed by Spirit Of The Serpent for (10-20) seconds on use" }, } }, + ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5622 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3763491818] = { "Possessed by Spirit Of The Primate for (10-20) seconds on use" }, } }, + ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5617 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3403424702] = { "Possessed by Spirit Of The Bear for (10-20) seconds on use" }, } }, + ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5618 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1685559578] = { "Possessed by Spirit Of The Boar for (10-20) seconds on use" }, } }, + ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5621 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3463873033] = { "Possessed by Spirit Of The Ox for (10-20) seconds on use" }, } }, + ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5626 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, + ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5625 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, + ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5619 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3816 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, } }, ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3815 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 10056 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, - ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 9270 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, - ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9271 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, + ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 10067 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, + ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 9276 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, + ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9277 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1716 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1686824704] = { "100% of Cold Damage Converted to Lightning Damage" }, } }, ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 9268 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, - ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 9267 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, - ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 9269 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, - ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9266 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, - ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10718 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, - ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10712 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10686 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, - ["UniqueVaalPact1"] = { affix = "", "Vaal Pact", statOrder = { 10726 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, - ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10698 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, - ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10705 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, - ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10725 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, - ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10711 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, - ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10713 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, - ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10703 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, - ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10673 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, - ["UniqueZealotsOath1"] = { affix = "", "Zealot's Oath", statOrder = { 10729 }, level = 1, group = "ZealotsOathKeystone1", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1315418254] = { "Zealot's Oath" }, } }, - ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10464 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10465 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10463 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, - ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10467 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10466 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 10462 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, + ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 9274 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [40154188] = { "33% of Elemental Damage Converted to Fire Damage" }, } }, + ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 9273 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [210092264] = { "33% of Elemental Damage Converted to Cold Damage" }, } }, + ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 9275 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [289540902] = { "33% of Elemental Damage Converted to Lightning Damage" }, } }, + ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 9272 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, + ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10735 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10729 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10703 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, + ["UniqueVaalPact1"] = { affix = "", "Vaal Pact", statOrder = { 10743 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2257118425] = { "Vaal Pact" }, } }, + ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10715 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, + ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10722 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, + ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10742 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10728 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [3528245713] = { "Iron Grip" }, } }, + ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10730 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, + ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10720 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHashes = { [145598447] = { "Everlasting Sacrifice" }, } }, + ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10690 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3831171903] = { "(1-33)" }, } }, + ["UniqueZealotsOath1"] = { affix = "", "Zealot's Oath", statOrder = { 10746 }, level = 1, group = "ZealotsOathKeystone1", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1315418254] = { "Zealot's Oath" }, } }, + ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10478 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, + ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10479 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, + ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10477 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, + ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10481 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, + ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10480 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, + ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 10476 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 16 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1135194732] = { "Can have 3 additional Instilled Modifiers" }, } }, - ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 9262 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, - ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 9260 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, - ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 9264 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, + ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 9268 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [701564564] = { "Gain (5-10)% of Elemental Damage as Extra Fire Damage" }, } }, + ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 9266 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1158842087] = { "Gain (5-10)% of Elemental Damage as Extra Cold Damage" }, } }, + ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 9270 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3550887155] = { "Gain (5-10)% of Elemental Damage as Extra Lightning Damage" }, } }, ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1657 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [474452755] = { "Cannot Evade Enemy Attacks" }, } }, - ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7505 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, - ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9757 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, + ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7511 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2002533190] = { "Regenerate 5% of maximum Life per second while Surrounded" }, } }, + ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9765 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2267564181] = { "Require (2-4) fewer enemies to be Surrounded" }, } }, ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "30% increased Chill Duration on Enemies" }, } }, ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, - ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, - ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, + ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(15-25)% increased Magnitude of Bleeding you inflict" }, } }, + ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(15-25)% increased Magnitude of Poison you inflict" }, } }, ["UniqueBlockChanceFromArmourOnEquipment1"] = { affix = "", "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items", statOrder = { 1134 }, level = 1, group = "UniqueBlockChancePerBaseArmour", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2531622767] = { "(3-5)% increased Block chance per 100 total Item Armour on Equipped Armour Items" }, } }, ["UniqueProjectilesReturnIfPiercedArmourBroken1"] = { affix = "", "Arrows Return if they have Pierced a target which had Fully Broken Armour", statOrder = { 4437 }, level = 1, group = "UniqueProjectilesReturnIfPiercedArmourBroken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1243721142] = { "Arrows Return if they have Pierced a target which had Fully Broken Armour" }, } }, - ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, - ["UniqueOverencumbranceOnDodge1"] = { affix = "", "Gain Overencumbrance for 4 seconds when you Dodge Roll", statOrder = { 9367 }, level = 1, group = "UniqueOvercumbranceOnDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2148576938] = { "Gain Overencumbrance for 4 seconds when you Dodge Roll" }, } }, - ["UniqueUnaffectedBySlowsWhileSprinting1"] = { affix = "", "Your speed is Unaffected by Slows while Sprinting", statOrder = { 9932 }, level = 1, group = "UniqueAvoidSlowsWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, } }, + ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(20-40)% increased Mana Cost Efficiency" }, } }, + ["UniqueOverencumbranceOnDodge1"] = { affix = "", "Gain Overencumbrance for 4 seconds when you Dodge Roll", statOrder = { 9374 }, level = 1, group = "UniqueOvercumbranceOnDodge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2148576938] = { "Gain Overencumbrance for 4 seconds when you Dodge Roll" }, } }, + ["UniqueUnaffectedBySlowsWhileSprinting1"] = { affix = "", "Your speed is Unaffected by Slows while Sprinting", statOrder = { 9942 }, level = 1, group = "UniqueAvoidSlowsWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, } }, ["UniqueFireColdResistance1"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 1016 }, level = 1, group = "FireColdResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "cold", "resistance" }, tradeHashes = { [2915988346] = { "+(10-20)% to Fire and Cold Resistances" }, } }, ["UniqueFireLightningResistance1"] = { affix = "", "+(10-20)% to Fire and Lightning Resistances", statOrder = { 1018 }, level = 1, group = "FireLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "lightning", "resistance" }, tradeHashes = { [3441501978] = { "+(10-20)% to Fire and Lightning Resistances" }, } }, ["UniqueColdLightningResistance1"] = { affix = "", "+(10-20)% to Cold and Lightning Resistances", statOrder = { 1021 }, level = 1, group = "ColdLightningResistance", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "lightning_resistance", "elemental", "cold", "lightning", "resistance" }, tradeHashes = { [4277795662] = { "+(10-20)% to Cold and Lightning Resistances" }, } }, - ["UniqueLifeRegenerationWhileIgnited1"] = { affix = "", "Regenerate (1-2)% of maximum Life per second while Ignited", statOrder = { 7483 }, level = 1, group = "LifeRegenerationWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [302024054] = { "Regenerate (1-2)% of maximum Life per second while Ignited" }, } }, - ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { affix = "", "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", statOrder = { 6401 }, level = 1, group = "ReducedCriticalDamageTakenWhileChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3923947492] = { "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled" }, } }, - ["UniqueCriticalDamageBonusWhileShocked1"] = { affix = "", "(15-25)% increased Critical Damage Bonus while Shocked", statOrder = { 5804 }, level = 1, group = "CriticalDamageBonusWhileShocked", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2408983956] = { "(15-25)% increased Critical Damage Bonus while Shocked" }, } }, - ["UniqueDamagePerElementalAilment1"] = { affix = "", "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", statOrder = { 5949 }, level = 1, group = "DamagePerElementalAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3388405805] = { "(10-20)% increased Damage for each type of Elemental Ailment on Enemy" }, } }, - ["UniqueWindSkillsBoostedByShockedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10536, 10536.1 }, level = 53, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, - ["UniqueWindSkillsBoostedByChilledGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10536, 10536.1 }, level = 53, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, - ["UniqueWindSkillsBoostedByIgnitedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10536, 10536.1 }, level = 53, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, - ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10535, 10536, 10536.1 }, level = 53, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, + ["UniqueLifeRegenerationWhileIgnited1"] = { affix = "", "Regenerate (1-2)% of maximum Life per second while Ignited", statOrder = { 7489 }, level = 1, group = "LifeRegenerationWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [302024054] = { "Regenerate (1-2)% of maximum Life per second while Ignited" }, } }, + ["UniqueReducedCriticalDamageTakenWhileChilled1"] = { affix = "", "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled", statOrder = { 6403 }, level = 1, group = "ReducedCriticalDamageTakenWhileChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3923947492] = { "Hits against you have (35-50)% reduced Critical Hit Chance while you are Chilled" }, } }, + ["UniqueCriticalDamageBonusWhileShocked1"] = { affix = "", "(15-25)% increased Critical Damage Bonus while Shocked", statOrder = { 5805 }, level = 1, group = "CriticalDamageBonusWhileShocked", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2408983956] = { "(15-25)% increased Critical Damage Bonus while Shocked" }, } }, + ["UniqueDamagePerElementalAilment1"] = { affix = "", "(10-20)% increased Damage for each type of Elemental Ailment on Enemy", statOrder = { 5950 }, level = 1, group = "DamagePerElementalAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3388405805] = { "(10-20)% increased Damage for each type of Elemental Ailment on Enemy" }, } }, + ["UniqueWindSkillsBoostedByShockedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground", statOrder = { 10552, 10552.1 }, level = 53, group = "WindSkillsBoostedByShockedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Shocked Ground" }, } }, + ["UniqueWindSkillsBoostedByChilledGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground", statOrder = { 10552, 10552.1 }, level = 53, group = "WindSkillsBoostedByChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Chilled Ground" }, } }, + ["UniqueWindSkillsBoostedByIgnitedGround1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground", statOrder = { 10552, 10552.1 }, level = 53, group = "WindSkillsBoostedByIgnitedGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited Ground" }, } }, + ["UniqueWindSkillsBoostedByAllElementalGrounds1"] = { affix = "", "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces", "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground", statOrder = { 10551, 10552, 10552.1 }, level = 53, group = "WindSkillsBoostedByElementalGrounds", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2626360934] = { "Wind Skills which can be boosted by Elemental Ground Surfaces count", "as being boosted by Ignited, Shocked, and Chilled Ground" }, [2070837434] = { "Wind Skills which can be boosted by Elemental Ground Surfaces can be boosted by multiple Elemental Ground Surfaces" }, } }, ["UniqueCannotInflictElementalAilments1"] = { affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1618 }, level = 1, group = "CannotApplyElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [4056809290] = { "Cannot inflict Elemental Ailments" }, } }, - ["UniqueRevealWeakness1"] = { affix = "", "Reveal Weaknesses against Rare and Unique enemies", statOrder = { 10651 }, level = 1, group = "UniqueRevealWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [110659965] = { "Reveal Weaknesses against Rare and Unique enemies" }, } }, - ["UniqueSoulEaterOpenWeakness1"] = { affix = "", "Eat a Soul when you Hit an enemy with an Open Weakness", statOrder = { 10653 }, level = 1, group = "UniqueSoulEaterAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1393838912] = { "Eat a Soul when you Hit an enemy with an Open Weakness" }, } }, - ["UniqueRecoupLifeOpenWeakness1"] = { affix = "", "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life", statOrder = { 10654 }, level = 1, group = "UniqueRecoupLifeAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2285766967] = { "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life" }, } }, - ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10675 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, + ["UniqueRevealWeakness1"] = { affix = "", "Reveal Weaknesses against Rare and Unique enemies", statOrder = { 10668 }, level = 1, group = "UniqueRevealWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [110659965] = { "Reveal Weaknesses against Rare and Unique enemies" }, } }, + ["UniqueSoulEaterOpenWeakness1"] = { affix = "", "Eat a Soul when you Hit an enemy with an Open Weakness", statOrder = { 10670 }, level = 1, group = "UniqueSoulEaterAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1393838912] = { "Eat a Soul when you Hit an enemy with an Open Weakness" }, } }, + ["UniqueRecoupLifeOpenWeakness1"] = { affix = "", "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life", statOrder = { 10671 }, level = 1, group = "UniqueRecoupLifeAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2285766967] = { "(80-100)% of damage taken from enemies with an Open Weakness Recouped as Life" }, } }, + ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10692 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1132041585] = { "Virtuous" }, } }, ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 941 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "25% increased Rarity of Items found" }, } }, ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [970213192] = { "10% increased Skill Speed" }, } }, @@ -2509,8 +2509,8 @@ return { ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "50% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "30% of Physical Damage Converted to Fire Damage" }, } }, ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1702 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [178327868] = { "(0-50)% of Physical Damage Converted to Fire Damage" }, } }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "30% reduced Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(15-25)% increased Flask Charges gained" }, } }, ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(10-20)% increased Flask Charges used" }, } }, ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 1049 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(7-10)% reduced Flask Charges used" }, } }, ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "60% increased Flask Effect Duration" }, } }, @@ -2532,13 +2532,13 @@ return { ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 898 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "10% reduced Flask Life Recovery rate" }, } }, ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "50% increased Flask Mana Recovery rate" }, } }, ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 899 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(30-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "50% increased Flask Charges gained" }, } }, ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "20% increased Flask Effect Duration" }, } }, ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "25% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "150% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(30-40)% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10677 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10694 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 55 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1597 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 905 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, @@ -2561,7 +2561,7 @@ return { ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 905 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects 4 Physical Damage to Melee Attackers" }, } }, ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1930 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2970307386] = { "Reflects 100 to 150 Physical Damage to Melee Attackers" }, } }, ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3441651621] = { "+25 Physical Damage taken from Attack Hits" }, } }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10718 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, + ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10735 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "5% increased Experience gain" }, } }, ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "(30-50)% reduced Experience gain" }, } }, ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1471 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3666934677] = { "3% increased Experience gain" }, } }, @@ -2619,7 +2619,7 @@ return { ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1707 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "lightning" }, tradeHashes = { [4121092210] = { "(0-50)% of Physical Damage Converted to Lightning Damage" }, } }, ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "30% increased Attack Speed when on Full Life" }, } }, ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1178 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "15% increased Attack Speed when on Full Life" }, } }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10691 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, + ["Conduit"] = { affix = "", "Conduit", statOrder = { 10708 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1994392904] = { "Conduit" }, } }, ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-4 Physical Damage taken from Attack Hits" }, } }, ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-2 Physical Damage taken from Attack Hits" }, } }, ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1959 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3441651621] = { "-(15-10) Physical Damage taken from Attack Hits" }, } }, @@ -2689,7 +2689,7 @@ return { ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 182 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 20 Increased Area of Effect" }, } }, ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 182 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3720936304] = { "Socketed Gems are Supported by Level 5 Increased Area of Effect" }, } }, ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 288 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3561676020] = { "Socketed Gems are Supported by Level 10 Intensify" }, } }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10756 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, + ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10773 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3403461239] = { "Extra gore" }, } }, ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 63 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3146680230] = { "Has one socket of each colour" }, } }, ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+12% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+(8-12)% Chance to Block Attack Damage while Dual Wielding" }, } }, @@ -2698,18 +2698,18 @@ return { ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+10% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+18% Chance to Block Attack Damage while Dual Wielding" }, } }, ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1477, 1478 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "+1 to Level of all Raise Zombie Gems" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9335 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9342 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9335 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9342 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9880, 9881, 9884 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9888, 9889, 9892 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1900 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9884 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9880 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, - ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9881 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, + ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9892 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, + ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9888 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, + ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9889 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 389 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [1104246401] = { "Socketed Gems Cost and Reserve Life instead of Mana" }, } }, @@ -2721,8 +2721,8 @@ return { ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 9276 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9335 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 9282 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 9342 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1900, 1901 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 119 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2290 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [133168938] = { "Chaos Damage taken does not cause double loss of Energy Shield" }, } }, @@ -2754,7 +2754,7 @@ return { ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4651 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1829238593] = { "Arrows Pierce all Targets" }, } }, ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5767 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, + ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5768 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [3314050176] = { "Life Leech is Converted to Energy Shield Leech" }, } }, ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1130 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2538694749] = { "+8% Chance to Block Attack Damage while Dual Wielding Claws" }, } }, ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2245 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+25% chance to Block Projectile Attack Damage" }, } }, ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2246 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "mana", "energy_shield" }, tradeHashes = { [1336164384] = { "Cannot Leech" }, } }, @@ -2811,8 +2811,8 @@ return { ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2262 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1401349154] = { "25% chance to cause Bleeding on Hit" }, } }, ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "25% chance to cause Bleeding on Hit" }, } }, - ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7630 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7633 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, + ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7636 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHashes = { [513681673] = { "50% chance to Cause Bleeding on Critical Hit" }, } }, + ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7639 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2260 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2992817550] = { "Attacks deal no Physical Damage" }, } }, ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2276 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3636414626] = { "Golden Radiance" }, } }, ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1915 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1472543401] = { "Cannot be Stunned when on Low Life" }, } }, @@ -2862,7 +2862,7 @@ return { ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1070 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2301 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3804297142] = { "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit" }, } }, ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2291 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Hit" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6944 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6948 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2312 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3238189103] = { "Your Spells have Culling Strike" }, } }, ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2315 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2318 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, @@ -2905,7 +2905,7 @@ return { ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-1 to Maximum Frenzy Charges" }, } }, ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "-2 to Maximum Frenzy Charges" }, } }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 10527 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, + ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 10542 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1791136590] = { "1% increased Weapon Damage per 10 Strength" }, } }, ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4573 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [889691035] = { "1% increased Attack Speed per 10 Dexterity" }, } }, ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4494 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "16% increased Area of Effect for Attacks per 10 Intelligence" }, } }, ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "40% reduced Frenzy Charge Duration" }, } }, @@ -2919,10 +2919,10 @@ return { ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2330 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2918129907] = { "Inflicts a random Curse on you when your Totems die, ignoring Curse limit" }, } }, ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 343 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 18 Added Lightning Damage" }, } }, ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 343 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1647529598] = { "Socketed Gems are Supported by Level 30 Added Lightning Damage" }, } }, - ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7529 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, - ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7529 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7535 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7535 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "100% increased Duration of Lightning Ailments" }, } }, ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "10000% increased Shock Duration" }, } }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7529 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, + ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7535 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1484471543] = { "(1-100)% increased Duration of Lightning Ailments" }, } }, ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "(40-50)% increased Physical Damage taken" }, } }, ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "10% increased Physical Damage taken" }, } }, ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1966 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3853018505] = { "20% increased Physical Damage taken" }, } }, @@ -2957,9 +2957,9 @@ return { ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 1863 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "20% chance to gain an Endurance Charge when you Block" }, } }, ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1863 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHashes = { [417188801] = { "50% chance to gain an Endurance Charge when you Block" }, } }, ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2338 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3753748365] = { "Damage of Enemies Hitting you is Unlucky while you are on Low Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6400 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6400 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, - ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6340 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, + ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6402 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, + ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6402 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3629143471] = { "Damage of Enemies Hitting you is Unlucky while you are on Full Life" }, } }, + ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6342 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4224965099] = { "Lightning Damage of Enemies Hitting you is Lucky" }, } }, ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2340 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524282232] = { "Item drops on death" }, } }, ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2339 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2528932950] = { "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge" }, } }, ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1938 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [189451991] = { "Reflects 30 Chaos Damage to Melee Attackers" }, } }, @@ -2987,7 +2987,7 @@ return { ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per enemy killed", statOrder = { 2353 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (10-15) Energy Shield per enemy killed" }, } }, ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per enemy killed", statOrder = { 2353 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2528955616] = { "Gain (15-25) Energy Shield per enemy killed" }, } }, ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2365 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1081444608] = { "100% increased Claw Physical Damage when on Low Life" }, } }, - ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5660 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, + ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5661 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1629782265] = { "200% increased Damage with Claws while on Low Life" }, } }, ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2366 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [347697569] = { "100% increased Accuracy Rating when on Low Life" }, } }, ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1177 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1177 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1921572790] = { "25% increased Attack Speed when on Low Life" }, } }, @@ -3057,7 +3057,7 @@ return { ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1520 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(18-24) Mana gained when you Block" }, } }, ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1520 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(30-50) Mana gained when you Block" }, } }, ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2370 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [4116579804] = { "Raised Zombies have +5000 to maximum Life" }, } }, - ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10645 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, + ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10662 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [568070507] = { "Raised Zombies deal (100-125)% more Physical Damage" }, } }, ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2371 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "chaos_resistance", "elemental_resistance", "minion_resistance", "elemental", "chaos", "resistance", "minion" }, tradeHashes = { [3150000576] = { "Raised Zombies have +(25-30)% to all Resistances" }, } }, ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2451 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion" }, tradeHashes = { [3563667308] = { "25% increased Raised Zombie Size" }, } }, ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2453 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "elemental_damage", "minion_damage", "damage", "elemental", "fire", "minion" }, tradeHashes = { [2857427872] = { "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage" }, } }, @@ -3092,12 +3092,12 @@ return { ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1694 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2471 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2797075304] = { "Counts as Dual Wielding" }, } }, ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2466 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4031081471] = { "You take 450 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10752 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10769 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2465 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 450 Chaos Damage per second to nearby Enemies" }, } }, ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2465 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 50 Chaos Damage per second to nearby Enemies" }, } }, - ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10752 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10759 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10752 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10769 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10776 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10769 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1734 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-10% to maximum Block chance" }, } }, ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2346 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, @@ -3110,7 +3110,7 @@ return { ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(20-25)% increased Melee Damage" }, } }, ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(25-40)% increased Melee Damage" }, } }, ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1150 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "50% increased Damage" }, } }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10712 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, + ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10729 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2473 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [637766438] = { "You and nearby allies gain 50% increased Damage" }, } }, ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1271 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (75-100) to (165-200) Fire Damage in Main Hand" }, } }, ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1271 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [169657426] = { "Adds (255-285) to (300-330) Fire Damage in Main Hand" }, } }, @@ -3120,9 +3120,9 @@ return { ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2623 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHashes = { [2418601510] = { "Chaos Damage from Hits also Contributes to Shock Chance" }, } }, ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1714 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2109189637] = { "100% of Lightning Damage Converted to Chaos Damage" }, } }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10424 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, - ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7727 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, - ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7727 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, + ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10438 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [4007740198] = { "+40% to Maximum Effect of Shock" }, } }, + ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7733 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, + ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7733 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHashes = { [1386792919] = { "Hits with this Weapon Shock Enemies as though dealing 300% more Damage" }, } }, ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2477 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3457687358] = { "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage" }, } }, ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 361 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1866911844] = { "Socketed Gems are Supported by Level 10 Inspiration" }, } }, ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 366 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2169938251] = { "Socketed Gems are Supported by Level 10 Faster Casting" }, } }, @@ -3202,9 +3202,9 @@ return { ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2593 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3598983877] = { "Gain a Frenzy Charge if an Attack Ignites an Enemy" }, } }, ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2592 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1777334641] = { "Culling Strike against Burning Enemies" }, } }, ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2595 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [496011033] = { "-(40-30) Chaos Damage taken" }, } }, - ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5930 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5930 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, - ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5930 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, + ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5931 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, + ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5931 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have 100% increased Skill Effect Duration" }, } }, + ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5931 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1435748744] = { "Curse Skills have (30-50)% increased Skill Effect Duration" }, } }, ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+3 to Level of Socketed Curse Gems" }, } }, ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 144 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [3691695237] = { "+2 to Level of Socketed Curse Gems" }, } }, @@ -3248,7 +3248,7 @@ return { ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2681 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3693130674] = { "(15-20)% increased Lightning Damage per Frenzy Charge" }, } }, ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2682 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1269609669] = { "20 Life gained on Kill per Frenzy Charge" }, } }, ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1410 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4212255859] = { "Cannot be Knocked Back" }, } }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10725 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, + ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10742 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1032 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "40% reduced Energy Shield Recharge Rate" }, } }, ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 644 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2629106530] = { "Recover (75-100)% of maximum Life on use" }, } }, ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 645 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "flask", "damage", "chaos" }, tradeHashes = { [3232201443] = { "25% of Maximum Life taken as Chaos Damage per second" }, } }, @@ -3262,12 +3262,12 @@ return { ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2690 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [3660039923] = { "(10-20)% increased Cast Speed while Ignited" }, } }, ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2694 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2694 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1618339429] = { "+25% chance to be Ignited" }, } }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7807 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, + ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7813 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [374737750] = { "50% chance to Cause Poison on Critical Hit" }, } }, ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2533 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [2635385320] = { "Melee Critical Hits Poison the Enemy" }, } }, ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 775 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(8-12)% Chance to Block Attack Damage during Effect" }, } }, ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 775 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHashes = { [2519106214] = { "+(35-50)% Chance to Block Attack Damage during Effect" }, } }, ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2692 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [93696421] = { "1% increased Attack Damage per 450 Evasion Rating" }, } }, - ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 7182 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, + ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 7188 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3585754616] = { "(25-40)% increased Damage with Hits against Ignited Enemies" }, } }, ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2714 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2825197711] = { "20% increased Movement Speed while on Full Energy Shield" }, } }, ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2705 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3212461220] = { "100% Chance to Cause Monster to Flee on Block" }, } }, ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-80)% increased Chaos Damage" }, } }, @@ -3293,7 +3293,7 @@ return { ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of maximum Life on Rampage", statOrder = { 2699 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2737492258] = { "Recover 20% of maximum Life on Rampage" }, } }, ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2700 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [627889781] = { "Removes Elemental Ailments on Rampage" }, } }, ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2701 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3100457893] = { "Gain Immunity to Physical Damage for 1.5 seconds on Rampage" }, } }, - ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6738 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, + ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6741 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [3271016161] = { "Kills grant an additional Vaal Soul if you have Rampaged Recently" }, } }, ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2712 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3321583955] = { "Creates a Smoke Cloud on Rampage" }, } }, ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2713 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [376956212] = { "Enemies do not block your movement for 4 seconds on Rampage" }, } }, ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2221570601] = { "10% Global chance to Blind Enemies on Hit" }, } }, @@ -3303,12 +3303,12 @@ return { ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2709 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2710 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Hit" }, } }, ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2715 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you" }, } }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10666 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10666 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10666 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10665, 10665.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10666 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10666 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10683 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10683 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10683 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10682, 10682.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2889807051] = { "Melee Hits count as Rampage Kills", "Rampage" }, } }, + ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10683 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, + ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10683 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2719 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2717 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1064067689] = { "Gain 1 Mana on Kill per Level" }, } }, @@ -3319,7 +3319,7 @@ return { ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2716 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 443 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 445 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHashes = { [4051493629] = { "Socketed Gems have Secrets of Suffering" }, } }, - ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10361 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, + ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10375 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1485 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1491 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance", "gem" }, tradeHashes = { [289814996] = { "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem" }, } }, ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1488 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance", "gem" }, tradeHashes = { [1064331314] = { "+(75-100)% to Cold Resistance when Socketed with a Green Gem" }, } }, @@ -3327,8 +3327,8 @@ return { ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 20% Lightning Resistance" }, } }, ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2724 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 10% Fire Resistance" }, } }, ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 396 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [85122299] = { "Enemies slain by Socketed Gems drop 10% increased item quantity" }, } }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 7193 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 7193 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 7199 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(40-60)% increased Damage with Hits against Blinded Enemies" }, } }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 7199 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2242791457] = { "(25-40)% increased Damage with Hits against Blinded Enemies" }, } }, ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2358 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [953314356] = { "25% chance to create a Smoke Cloud when Hit" }, } }, ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2519 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental", "attack" }, tradeHashes = { [782323220] = { "30% increased Elemental Damage with Attack Skills during any Flask Effect" }, } }, ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1967 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHashes = { [3743301799] = { "20% increased Fire Damage taken" }, } }, @@ -3357,7 +3357,7 @@ return { ["FreezeDurationUnique__1"] = { affix = "", "25% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "25% increased Freeze Duration on Enemies" }, } }, ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2723 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 6357 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, + ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 6359 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1703 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4287372938] = { "Bear Skills Convert 80% of Physical Damage to Fire Damage" }, } }, ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 4110 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, @@ -3367,7 +3367,7 @@ return { ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2550 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3900877792] = { "Deal no Physical Damage" }, } }, ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2551 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [282353000] = { "Deal no Non-Physical Damage" }, } }, ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4581 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [591162856] = { "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard" }, } }, - ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9914, 9914.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, + ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9923, 9923.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2511521167] = { "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards" }, } }, ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2348 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHashes = { [1420236871] = { "Ignites you inflict with Attacks deal Damage 35% faster" }, } }, ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 448 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [967556848] = { "Socketed Gems fire Projectiles in a circle" }, } }, ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 449 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3235941702] = { "Socketed Projectile Spells fire Projectiles in a circle" }, } }, @@ -3391,7 +3391,7 @@ return { ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1691 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 3% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 10578 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 10594 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1496370423] = { "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem" }, } }, ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 2% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 10% of maximum Life per second" }, } }, ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 1% of maximum Life per second" }, } }, @@ -3400,10 +3400,10 @@ return { ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(40-60)% increased Mine Throwing Speed" }, } }, ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1668 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1896971621] = { "(10-15)% reduced Mine Throwing Speed" }, } }, - ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8944 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, + ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8949 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3085465082] = { "Mines have (40-50)% increased Detonation Speed" }, } }, ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1155 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3298440988] = { "35% less Mine Damage" }, } }, ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 364 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1710508327] = { "Socketed Gems are Supported by Level 10 Blastchain Mine" }, } }, - ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5688 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, + ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5689 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [860668586] = { "(30-40)% increased Cold Damage with Attack Skills" }, } }, ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2189 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits" }, } }, ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2189 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3835522656] = { "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits" }, } }, ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2190 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [3597806437] = { "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed" }, } }, @@ -3438,11 +3438,11 @@ return { ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2531 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1599 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "10% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9557 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10713 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, + ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9565 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1457679290] = { "Enemy Projectiles Pierce you" }, } }, + ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10730 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [281311123] = { "Iron Will" }, } }, ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 479 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3321235265] = { "Grants Level 10 Gluttony of Elements Skill" }, } }, ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 375 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [254728692] = { "Socketed Gems are Supported by Level 15 Pierce" }, } }, - ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7485 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, + ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7491 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [996053100] = { "Regenerate (12-20) Life per second per Buff on you" }, } }, ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "jewel", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(14-16)% increased Damage with Maces" }, } }, ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1233 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(14-16)% increased Damage with Axes" }, } }, ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "jewel", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(14-16)% increased Damage with Swords" }, } }, @@ -3609,7 +3609,7 @@ return { ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "(3-5)% reduced Mana Cost of Skills" }, } }, ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "3% reduced Mana Cost of Skills" }, } }, ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1633 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [474294393] = { "50% increased Mana Cost of Skills" }, } }, - ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6063 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, + ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (4-6)% faster" }, } }, ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1949 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [895264825] = { "(10-15)% increased Area of Effect of Aura Skills" }, } }, ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-10)% increased Area of Effect of Curses" }, } }, ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1602 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(6-8)% chance to Avoid being Ignited" }, } }, @@ -3627,16 +3627,16 @@ return { ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1129 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "jewel", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+1% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1125 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "jewel", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHashes = { [4061558269] = { "+1% Chance to Block Attack Damage while holding a Shield" }, } }, ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1128 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "jewel", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHashes = { [1778298516] = { "+1% Chance to Block Attack Damage while wielding a Staff" }, } }, - ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5638 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, + ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5639 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1308198396] = { "(12-16)% increased Chill and Freeze Duration on Enemies" }, } }, ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, } }, ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1615 }, level = 1, group = "BurnDurationForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(3-5)% increased Ignite Duration on Enemies" }, } }, - ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9851 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, + ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9859 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHashes = { [1984113628] = { "15% reduced effect of Chill and Shock on you" }, } }, ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1911 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "curse" }, tradeHashes = { [3407849389] = { "(25-30)% reduced effect of Curses on you" }, } }, ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(30-35)% reduced Ignite Duration on you" }, } }, ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1495 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1478653032] = { "(30-35)% reduced Effect of Chill on you" }, } }, - ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9853 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, + ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9861 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(30-35)% reduced effect of Shock on you" }, } }, ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(30-35)% reduced Poison Duration on you" }, } }, - ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, + ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1953 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "jewel", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 1056, 1614 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "jewel", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, @@ -3651,7 +3651,7 @@ return { ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2661 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHashes = { [3374054207] = { "Minions have +(2-4)% Chance to Block Attack Damage" }, } }, ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (8-12)% increased maximum Life" }, } }, ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(11-15)% to all Elemental Resistances" }, } }, - ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8991 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, + ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "jewel", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(22-26)% increased Minion Accuracy Rating" }, } }, ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "minion_resistance", "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-10)% to all Elemental Resistances" }, } }, ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "jewel", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(12-16)% increased Totem Damage" }, } }, ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(30-50)% reduced Totem Damage" }, } }, @@ -3683,7 +3683,7 @@ return { ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1642 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [4080656180] = { "Your Attacks do not cost Mana" }, } }, ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2351 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2351 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10731 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10748 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 814 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Very Small Ring" }, } }, ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 15 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Medium-Large Ring" }, } }, @@ -3735,16 +3735,16 @@ return { ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2815 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1212897608] = { "4% increased Attributes per allocated Keystone" }, } }, ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2804 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHashes = { [1609999275] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks" }, } }, ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2805 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHashes = { [622657842] = { "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells" }, } }, - ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10634 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10634 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, - ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10634 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10650 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10650 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, + ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10650 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2995661301] = { "Survival" }, } }, ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2313 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1560540713] = { "Nearby Allies have Culling Strike" }, } }, ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1465 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1722463112] = { "Nearby Allies have 30% increased Item Rarity" }, } }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7665 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7667 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7671 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3152714748] = { "Nearby Allies have +50% to Critical Damage Bonus" }, } }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7673 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [244825991] = { "Nearby Allies have +10 Fortification" }, } }, ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2832 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [1962922582] = { "(20-30)% chance to gain an additional Vaal Soul on Kill" }, } }, ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2833 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [547412107] = { "(15-20)% increased Vaal Skill Effect Duration" }, } }, - ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10436 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10450 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHashes = { [2833218772] = { "Vaal Skills have (15-20)% chance to regain consumed Souls when used" }, } }, ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2835 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHashes = { [3165492062] = { "(80-120)% increased Vaal Skill Critical Hit Chance" }, } }, ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2836 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHashes = { [2070982674] = { "+(22-30)% to Vaal Skill Critical Damage Bonus" }, } }, ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1156 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "10% increased Attack Damage" }, } }, @@ -3796,7 +3796,7 @@ return { ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-30) to 40 Fire Damage to Spells" }, } }, ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (20-24) to (38-46) Fire Damage to Spells" }, } }, ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (2-3) to (5-6) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10685 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10702 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (14-16) to (30-32) Fire Damage to Spells" }, } }, ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (25-30) to (40-50) Cold Damage to Spells" }, } }, ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 100 to 100 Cold Damage to Spells" }, } }, @@ -3830,7 +3830,7 @@ return { ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3049 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2614654450] = { "100% increased Global Physical Damage while Frozen" }, } }, ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2265 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1454946771] = { "Hits that Stun inflict Bleeding" }, } }, ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3083 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1924591908] = { "5% chance to grant Onslaught to nearby Enemies on Kill" }, } }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5531 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on kill" }, } }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5532 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2453026567] = { "10% chance to gain Onslaught for 10 seconds on kill" }, } }, ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-3)% of maximum Life on Kill" }, } }, ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (3-5)% of maximum Life on Kill" }, } }, @@ -3927,7 +3927,7 @@ return { ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3368 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "+3 to maximum number of Summoned Golems" }, } }, ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3368 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2821079699] = { "-1 to maximum number of Summoned Golems" }, } }, ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 462 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "skill" }, tradeHashes = { [3056188914] = { "Grants Level 12 Summon Stone Golem Skill" }, } }, - ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9721 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9729 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3453 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1524882321] = { "Counts as all One Handed Melee Weapon Types" }, } }, ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 363 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [107118693] = { "Socketed Gems are Supported by Level 12 Fortify" }, } }, ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3073 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, @@ -3952,13 +3952,13 @@ return { ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 453 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 30% increased Reservation Efficiency" }, } }, ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 453 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHashes = { [1471600638] = { "Socketed Curse Gems have 80% increased Reservation Efficiency" }, } }, ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3084 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2367680009] = { "10% chance to grant a Power Charge to nearby Allies on Kill" }, } }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", statOrder = { 5538 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, } }, + ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit", statOrder = { 5539 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [991168463] = { "5% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, } }, ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 568 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion" }, tradeHashes = { [3751996449] = { "25% chance to Trigger Level 10 Summon Raging Spirit on Kill" }, } }, ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1710 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "50% of Physical Damage Converted to Chaos Damage" }, } }, ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3782 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [931560398] = { "Glows while in an Area containing a Unique Fish" }, } }, ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3786 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3418949024] = { "Attacks with this Weapon Maim on hit" }, } }, - ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7793 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, + ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7799 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "25% chance to Maim on Hit" }, } }, ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3789 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3481428688] = { "Always Critical Hit Shocked Enemies" }, } }, ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3790 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3344493315] = { "You cannot deal Critical Hits against non-Shocked Enemies" }, } }, ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3808 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2939409392] = { "Minions have 15% chance to Blind Enemies on hit" }, } }, @@ -3978,42 +3978,42 @@ return { ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3819 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1580 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1580 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, - ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9675 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, + ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9683 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on killing a Frozen enemy", statOrder = { 1579 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3607154250] = { "Gain a Power Charge on killing a Frozen enemy" }, } }, - ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5987 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, + ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5988 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1064477264] = { "60% increased Damage if you've Frozen an Enemy Recently" }, } }, ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4542 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4542 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3390848861] = { "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence" }, } }, ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2324 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [720908147] = { "1% increased Attack Speed per 20 Dexterity" }, } }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9167 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, + ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9172 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [696659555] = { "20% increased Movement Speed while Bleeding" }, } }, ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3985 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [4052714663] = { "10% increased Physical Damage taken while moving" }, } }, ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3983 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [2181129193] = { "10% additional Physical Damage Reduction while stationary" }, } }, - ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8967 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, - ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5694 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, - ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9673 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, - ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9673 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, - ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9709 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5577 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6789 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5679 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5679 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, - ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4922 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, + ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8972 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [4222857095] = { "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently" }, } }, + ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5695 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1477032229] = { "Damage Penetrates 20% Cold Resistance against Chilled Enemies" }, } }, + ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9681 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (40-60) Life when you Ignite an Enemy" }, } }, + ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9681 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4045269075] = { "Recover (20-30) Life when you Ignite an Enemy" }, } }, + ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9717 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3291999509] = { "Shock Reflection" }, } }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5578 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2319040925] = { "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life" }, } }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6792 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2977774856] = { "Gain a Frenzy Charge on Hit while Bleeding" }, } }, + ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5680 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, + ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5680 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [329974315] = { "(15-20)% increased Cold Damage per Frenzy Charge" }, } }, + ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4923 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3450276548] = { "Blind Chilled enemies on Hit" }, } }, ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1522 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHashes = { [1678831767] = { "Recover (250-500) Life when you Block" }, } }, ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 489 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2434330144] = { "Grants Level 30 Reckoning Skill" }, } }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9107 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9112 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2602664175] = { "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy" }, } }, ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3286 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2732344760] = { "Gain a Frenzy Charge on reaching Maximum Power Charges" }, } }, ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 488 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 25 Envy Skill" }, } }, ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 488 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [52953650] = { "Grants Level 15 Envy Skill" }, } }, ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4106 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [4091848539] = { "+(1500-3000) Armour if you've Blocked Recently" }, } }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9422 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, + ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 9429 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2930706364] = { "Permanently Intimidate enemies on Block" }, } }, ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2900 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHashes = { [1974445926] = { "Minions have 60% chance to Poison Enemies on Hit" }, } }, ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 553 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [2634885412] = { "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy" }, } }, ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 590 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHashes = { [1357672429] = { "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy" }, } }, ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4586 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2591028853] = { "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies" }, } }, - ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9648 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, + ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9656 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3423694372] = { "50% chance to be inflicted with Bleeding when Hit" }, } }, ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4419 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [713266390] = { "Armour is increased by Uncapped Fire Resistance" }, } }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6493 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5836 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6495 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2358015838] = { "Evasion Rating is increased by Overcapped Cold Resistance" }, } }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5837 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2478752719] = { "Critical Hit Chance is increased by Overcapped Lightning Resistance" }, } }, ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4327 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3748879662] = { "Cover Enemies in Ash when they Hit you" }, } }, ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 875 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "50% increased Lightning Damage" }, } }, ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 1435 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1228337241] = { "Gain (4-6)% of maximum Life as Extra maximum Energy Shield" }, } }, @@ -4021,10 +4021,10 @@ return { ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2867 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2459809121] = { "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%" }, } }, ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 59 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [608438307] = { "You can only Socket Corrupted Gems in this item" }, } }, ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2304 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, - ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7874, 7874.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7875, 7875.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7852, 7852.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7888, 7888.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, + ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7880, 7880.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7881, 7881.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7858, 7858.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7894, 7894.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 559 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Hit" }, } }, ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 559 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Hit" }, } }, ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3679 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, @@ -4074,7 +4074,7 @@ return { ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3854 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2217962305] = { "(8-12)% increased Maximum Life if no Equipped Items are Corrupted" }, } }, ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3855 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2497198283] = { "Regenerate 400 Life per second if no Equipped Items are Corrupted" }, } }, ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3856 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4156715241] = { "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted" }, } }, - ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7987 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, + ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7993 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2760138143] = { "Regenerate 35 Mana per second if all Equipped Items are Corrupted" }, } }, ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (29-37) Chaos Damage" }, } }, ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (13-17) to (23-29) Chaos Damage" }, } }, ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1287 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3531280422] = { "Adds (17-19) to (23-29) Chaos Damage" }, } }, @@ -4109,7 +4109,7 @@ return { ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 3862 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4151190513] = { "(80-100)% increased Rarity of Items found with a Normal Item Equipped" }, } }, ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3895 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3266394681] = { "Attack Skills have +1 to maximum number of Summoned Totems" }, } }, ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3841 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "minion_resistance", "elemental", "cold", "resistance", "minion" }, tradeHashes = { [2200407711] = { "Minions have +40% to Cold Resistance" }, } }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9050 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "minion_resistance", "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, + ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9055 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "minion_resistance", "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3843 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "minion_damage", "physical_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [351413557] = { "Minions gain 20% of their Physical Damage as Extra Cold Damage" }, } }, ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 740 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3891 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144887967] = { "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, } }, @@ -4147,7 +4147,7 @@ return { ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Hits", statOrder = { 3922 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHashes = { [3243534964] = { "Cannot Leech Life from Critical Hits" }, } }, ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3923 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "30% chance to Blind Enemies on Critical Hit" }, } }, ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3923 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3983981705] = { "(40-50)% chance to Blind Enemies on Critical Hit" }, } }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7633 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7639 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2743246999] = { "50% chance to cause Bleeding on Critical Hit" }, } }, ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3921 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2562665460] = { "Stun Threshold is based on Energy Shield instead of Life" }, } }, ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3931 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4294267596] = { "Take no Extra Damage from Critical Hits" }, } }, ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3932 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4107150355] = { "Enemies you Shock have 30% reduced Cast Speed" }, } }, @@ -4155,173 +4155,173 @@ return { ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 3969 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3919557483] = { "100% increased Burning Damage if you've Ignited an Enemy Recently" }, } }, ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3970 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3112776239] = { "Recover 1% of maximum Life when you Ignite an Enemy" }, } }, ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3971 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1332534089] = { "100% increased Melee Physical Damage against Ignited Enemies" }, } }, - ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9305 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, - ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7944 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, - ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5399, 8311 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, - ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8307, 8308 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, - ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6160, 8312 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8309, 8310 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, + ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9311 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1342790450] = { "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies" }, } }, + ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7950 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, + ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5400, 8316 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, + ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8312, 8313 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, + ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6161, 8317 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, + ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8314, 8315 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3972 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Hit Chance with arrows that Fork" }, } }, ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3975 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1997151732] = { "Arrows Pierce all Targets after Chaining" }, } }, ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3974 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1812251528] = { "Arrows that Pierce have 50% chance to inflict Bleeding" }, } }, ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3978 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [4157767905] = { "1% increased Projectile Attack Damage per 200 Accuracy Rating" }, } }, ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3976 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1011373762] = { "Spells fire an additional Projectile" }, } }, - ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9034 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, + ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal 70% increased Damage if you've Hit Recently" }, } }, ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4232 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1433144735] = { "Increases and Reductions to Minion Damage also affect you at 150% of their value" }, } }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6897 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6900 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3699490848] = { "60% increased Critical Hit Chance against Chilled Enemies" }, } }, ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 606 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHashes = { [2295303426] = { "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown" }, } }, ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "20% increased Area of Effect for Attacks" }, } }, ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(-40-40)% reduced Area of Effect for Attacks" }, } }, ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2640 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3848047105] = { "Physical Damage from Hits also Contributes to Shock Chance" }, } }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6083 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6083 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6083 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, - ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6573 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7908 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9135 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, - ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6832 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, + ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6084 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6084 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6084 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, + ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6575 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7914 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, + ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9140 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, + ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6835 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3161 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3086866381] = { "Movement Skills Cost no Mana" }, } }, ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1739 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [2162876159] = { "(14-18)% increased Projectile Attack Damage" }, } }, ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1766 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [507075051] = { "+1 Mana per 4 Strength" }, } }, - ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6429 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, + ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6431 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [506942497] = { "1% increased Energy Shield per 10 Strength" }, } }, ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1765 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2042405614] = { "+1 Life per 4 Dexterity" }, } }, - ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8919 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, + ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8924 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2355151849] = { "2% increased Melee Physical Damage per 10 Dexterity" }, } }, ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1764 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2196657026] = { "+4 Accuracy Rating per 2 Intelligence" }, } }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6480 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, - ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5527 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9566 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, - ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9567 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, + ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6482 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [810772344] = { "2% increased Evasion Rating per 10 Intelligence" }, } }, + ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5528 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1695720239] = { "15% chance to gain a Frenzy Charge when you Stun an Enemy" }, } }, + ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9574 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2636403786] = { "Projectiles Pierce all Targets while you have Phasing" }, } }, + ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9575 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [97250660] = { "Projectiles Pierce 5 additional Targets while you have Phasing" }, } }, ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4615 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3635120731] = { "20% chance to Avoid Projectiles while Phasing" }, } }, ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 761 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [323705912] = { "Skills fire 2 additional Projectiles during Effect" }, } }, ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 738 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [215882879] = { "(10-20)% increased Area of Effect during Effect" }, } }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10753 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, + ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10770 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [50381303] = { "Celestial Footprints" }, } }, ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2664 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3375935924] = { "Minions have (10-15)% increased Attack Speed" }, } }, - ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9331 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, - ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10636 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10636 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10636 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10636 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, - ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6918 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, - ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6917 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, + ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9338 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [920385757] = { "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped" }, } }, + ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10652 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10652 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10652 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10652 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1089165168] = { "Primordial" }, } }, + ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6921 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1750735210] = { "Golems have (18-22)% increased Maximum Life" }, } }, + ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6920 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [2235163762] = { "Summoned Golems Regenerate 2% of their maximum Life per second" }, } }, ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3376 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3384291300] = { "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds" }, } }, ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3377 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage" }, } }, ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3377 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [2869193493] = { "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage" }, } }, ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3036 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [729180395] = { "Golem Skills have (20-30)% increased Cooldown Recovery Rate" }, } }, ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 3037 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3246099900] = { "Summoned Golems have (30-45)% increased Cooldown Recovery Rate" }, } }, - ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6915 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, - ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6913 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, - ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6921 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, + ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6918 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2109043683] = { "30% increased Effect of Buffs granted by your Golems" }, } }, + ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6916 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [56225773] = { "Golems have (16-20)% increased Attack and Cast Speed" }, } }, + ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6924 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, tradeHashes = { [1020786773] = { "Golems have +(800-1000) to Armour" }, } }, ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4107 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1429385513] = { "+300 Armour per Summoned Totem" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 10006 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9996 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5892 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 10016 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [467806158] = { "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds" }, } }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 10006 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1550015622] = { "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently" }, } }, + ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5893 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3245481061] = { "Critical Hits deal no Damage" }, } }, ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3308030688] = { "60% increased Mana Regeneration Rate while stationary" }, } }, ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3984 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2551779822] = { "+1500 Armour while stationary" }, } }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5650 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9214 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9214 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5863 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5863 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 6338 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5651 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [358040686] = { "15% chance to create Chilled Ground when Hit with an Attack" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9219 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 9219 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2511969244] = { "Non-Critical Hits deal no Damage" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5864 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5864 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1626712767] = { "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently" }, } }, + ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 6340 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, } }, ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2908 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [956384511] = { "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage" }, } }, ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4524 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1358422215] = { "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating" }, } }, - ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5512 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6830 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7744 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, + ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5513 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3206381437] = { "Melee Hits which Stun Fortify" }, } }, + ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6833 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493590317] = { "You have Onslaught while Fortified" }, } }, + ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7750 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [202275580] = { "Properties are doubled while in a Breach" }, } }, ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 567 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, tags = { "minion_unique_weapon", }, modTags = { "skill" }, tradeHashes = { [3844016207] = { "100% chance to Trigger Level 1 Raise Spiders on Kill" }, } }, - ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5288 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10026 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10757 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6563 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, - ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10658 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, + ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5289 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3965442551] = { "Cannot Cast Spells" }, } }, + ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10036 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [291644318] = { "Spell Skills deal no Damage" }, } }, + ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10774 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3576153145] = { "Burning Hoofprints" }, } }, + ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6565 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2241902512] = { "1% increased Fire Damage per 20 Strength" }, } }, + ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10675 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3630426972] = { "Summoned Golems are Aggressive" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "20% of Maximum Life Converted to Energy Shield" }, } }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "50% of Maximum Life Converted to Energy Shield" }, } }, + ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "60% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, + ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "20% chance to Poison on Hit with this weapon" }, } }, ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [795138349] = { "25% chance to Poison on Hit" }, } }, - ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10016 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, + ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10026 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2088288068] = { "50% increased Spell Damage while Shocked" }, } }, ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4206 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3635566977] = { "+2% to all maximum Resistances while you have no Endurance Charges" }, } }, - ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6826 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, - ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9098 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, - ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9338 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, + ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6829 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3101915418] = { "You have Onslaught while at maximum Endurance Charges" }, } }, + ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9103 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHashes = { [2195137717] = { "Half of your Strength is added to your Minions" }, } }, + ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9345 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4056985119] = { "+1 to maximum number of Raised Zombies per 500 Strength" }, } }, ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "25% reduced Bleeding Duration" }, } }, - ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7388 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, - ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7277 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, - ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8876 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, - ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7494 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, - ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10620 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, - ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8878 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, - ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5997 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, - ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7387 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9161 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, - ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10498 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, + ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7394 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4260403588] = { "1% increased Rarity of Items found per 15 Rampage Kills" }, } }, + ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7283 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3705740723] = { "Immune to Burning Ground, Shocked Ground and Chilled Ground" }, } }, + ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8881 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3806100539] = { "+2 to Maximum Life per 10 Dexterity" }, } }, + ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7500 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2841027131] = { "Regenerate 100 Life per second while moving" }, } }, + ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10636 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1981749265] = { "Your Spells are disabled" }, } }, + ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8883 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1457265483] = { "+1 Life per 2% increased Rarity of Items found" }, } }, + ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5998 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2675627948] = { "Your Increases and Reductions to Quantity of Items found also apply to Damage" }, } }, + ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7393 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3729758391] = { "2% increased Quantity of Items found per Chest opened Recently" }, } }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9166 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [718844908] = { "2% reduced Movement Speed per Chest opened Recently" }, } }, + ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10512 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [519622288] = { "Warcries Knock Back and Interrupt Enemies in a smaller Area" }, } }, ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3162 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2831922878] = { "15% increased Attack and Cast Speed if you've used a Movement Skill Recently" }, } }, ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2913 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [628716294] = { "Action Speed cannot be modified to below base value" }, } }, ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2914 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3875592188] = { "Movement Speed cannot be modified to below base value" }, } }, - ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10073 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, + ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10084 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2342431054] = { "Your Energy Shield starts at zero" }, } }, ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 807 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [2444301311] = { "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest" }, } }, ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 806 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1869678332] = { "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest" }, } }, ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 388 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3375208082] = { "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun" }, } }, - ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 7194 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, + ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 7200 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2097550886] = { "(15-20)% increased Damage with Hits against Chilled Enemies" }, } }, ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "100% increased Fire Damage" }, } }, - ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7289 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, - ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6580 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, + ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7295 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1512695141] = { "Immune to Freeze and Chill while Ignited" }, } }, + ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6582 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2341811700] = { "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently" }, } }, ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 502 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3985468650] = { "Grants Level 15 Blood Offering Skill" }, } }, ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 497 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 497 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1010340836] = { "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy" }, } }, ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4294 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2636728487] = { "You always Ignite while Burning" }, } }, ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4182 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3619054484] = { "+10% Chance to Block Attack Damage while not Cursed" }, } }, - ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7465 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, - ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7985 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6428 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, + ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7471 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1982144275] = { "+1 Maximum Life per Level" }, } }, + ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7991 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2563691316] = { "+1 Maximum Mana per Level" }, } }, + ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6430 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3864993324] = { "+1 Maximum Energy Shield per Level" }, } }, ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 495 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [825352061] = { "Trigger Level 20 Death Aura when Equipped" }, } }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7138 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, + ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7143 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [262773569] = { "Mana Reservation of Herald Skills is always 45%" }, } }, ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4617 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493090598] = { "35% chance to avoid being Stunned for each Herald Buff affecting you" }, } }, - ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5988 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, - ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9854, 9854.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, - ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10364 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10364 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, - ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9005 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9064 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9103 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, + ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5989 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [908650225] = { "(20-50)% increased Damage if you have Shocked an Enemy Recently" }, } }, + ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9862, 9862.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2706994884] = { "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock" }, } }, + ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10378 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10378 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1473289174] = { "Unaffected by Shock" }, } }, + ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9010 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [4047895119] = { "2% increased Minion Attack Speed per 50 Dexterity" }, } }, + ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9069 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [4017879067] = { "2% increased Minion Movement Speed per 50 Dexterity" }, } }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9108 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1736403946] = { "Minions' Hits can only Kill Ignited Enemies" }, } }, ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+2 to Level of Socketed Herald Gems" }, } }, ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [1344805487] = { "+4 to Level of Socketed Herald Gems" }, } }, ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1791 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4180687797] = { "15% increased Area of Effect while you have no Frenzy Charges" }, } }, ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1790 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3062763405] = { "+50% Global Critical Damage Bonus while you have no Frenzy Charges" }, } }, ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4149 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3213407110] = { "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges" }, } }, - ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9132 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, - ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5675 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, - ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6562 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, - ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6004 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6811, 6811.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, + ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9137 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1176492594] = { "Movement Attack Skills have 40% reduced Attack Speed" }, } }, + ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5676 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3612256591] = { "(20-30)% increased Cold Damage if you have used a Fire Skill Recently" }, } }, + ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6564 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4167600809] = { "(20-30)% increased Fire Damage if you have used a Cold Skill Recently" }, } }, + ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6005 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6814, 6814.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2619 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1985969957] = { "Fire Damage from Hits also Contributes to Poison Magnitude" }, } }, ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2618 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1917124426] = { "Cold Damage from Hits also Contributes to Poison Magnitude" }, } }, ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2620 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1604984482] = { "Lightning Damage from Hits also Contributes to Poison Magntiude" }, } }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6584 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, - ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5702 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, - ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7563 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, + ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6586 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2424717327] = { "Fire Skills have 20% chance to Poison on Hit" }, } }, + ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5703 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2373079502] = { "Cold Skills have 20% chance to Poison on Hit" }, } }, + ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7569 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [949718413] = { "Lightning Skills have 20% chance to Poison on Hit" }, } }, ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1431 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3027830452] = { "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield" }, } }, ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 493 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2498303876] = { "Grants Level 20 Doryani's Touch Skill" }, } }, ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Rhoa Skill" }, } }, ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Ursa Skill" }, } }, ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 466 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2878779644] = { "Grants Level 20 Summon Bestial Snake Skill" }, } }, - ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5586 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10730 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9081 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, - ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9081 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, + ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5587 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1573646535] = { "Chaos Resistance is doubled" }, } }, + ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10747 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, + ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9086 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, + ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9086 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 604 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 542 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3661 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, - ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10165 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6442 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, + ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10178 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, + ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6444 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3150 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3417757416] = { "(10-15)% increased Cooldown Recovery Rate for throwing Traps" }, } }, - ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6539 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges" }, } }, + ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6541 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3544527742] = { "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges" }, } }, ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3160 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [3655758456] = { "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges" }, } }, ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 486 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1540840] = { "Grants Level 25 Scorching Ray Skill" }, } }, ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 490 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1198418726] = { "Grants Level 22 Blight Skill" }, } }, @@ -4337,7 +4337,7 @@ return { ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Directions Skill" }, } }, ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Storms Skill" }, } }, ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 469 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3872739249] = { "Grants Summon Greater Harbinger of Brutality Skill" }, } }, - ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5574 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, + ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5575 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2733285506] = { "Channelling Skills deal (50-70)% increased Damage" }, } }, ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2897 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [1237693206] = { "50% less Poison Duration" }, } }, ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3987 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4095169720] = { "Projectile Attack Skills have (40-60)% increased Critical Hit Chance" }, } }, ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 385 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [228165595] = { "Socketed Gems are Supported by Level 10 Chance to Poison" }, } }, @@ -4346,20 +4346,20 @@ return { ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 383 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1106668565] = { "Socketed Gems are Supported by Level 15 Innervate" }, } }, ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 377 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1384629003] = { "Socketed Gems are Supported by Level 18 Ice Bite" }, } }, ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 541 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1869144397] = { "Trigger Level 10 Void Gaze when you use a Skill" }, } }, - ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8953, 8953.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, - ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9488 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6793 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, - ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6841 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, - ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9489 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10584 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10584 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, - ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7793 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, - ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4877 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, + ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8958, 8958.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3829706447] = { "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons" }, } }, + ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9496 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3491499175] = { "3% increased Poison Duration per Power Charge" }, } }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6796 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [496822696] = { "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons" }, } }, + ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6844 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [352612932] = { "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons" }, } }, + ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9497 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2771181375] = { "(15-25)% increased Poison Duration if you have at least 150 Intelligence" }, } }, + ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10600 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10600 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHashes = { [721014846] = { "You cannot be Hindered" }, } }, + ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7799 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(15-20)% chance to Maim on Hit" }, } }, + ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4878 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [4170725899] = { "Blight has (20-30)% increased Hinder Duration" }, } }, ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-20)% increased Cooldown Recovery Rate" }, } }, ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-30)% increased Cooldown Recovery Rate" }, } }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6094 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, - ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6094 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, - ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6094 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, + ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (15-20)% faster" }, } }, + ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (80-100)% faster" }, } }, + ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire 100% faster" }, } }, ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1440, 1445 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, [3240073117] = { "(10-15)% increased Life Recovery rate" }, } }, ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 543 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, modTags = { "skill" }, tradeHashes = { [818329660] = { "Trigger Level 20 Storm Cascade when you Attack" }, } }, ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3988, 3988.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [4058504226] = { "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion" }, } }, @@ -4369,10 +4369,10 @@ return { ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3992 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2152491486] = { "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion" }, } }, ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3993 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3597737983] = { "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion" }, } }, ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 540 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3670477918] = { "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell" }, } }, - ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7531 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, - ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7531 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, - ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7531 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, + ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, + ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7537 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "(1-50)% increased Effect of Lightning Ailments" }, } }, + ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7537 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "30% increased Effect of Lightning Ailments" }, } }, + ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7537 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3081816887] = { "100% increased Effect of Lightning Ailments" }, } }, ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 77 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [899329924] = { "Gems can be Socketed in this Item ignoring Socket Colour" }, } }, ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 823 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739148464] = { "Has no Attribute Requirements" }, } }, @@ -4381,22 +4381,22 @@ return { ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 126 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2886998024] = { "Gems Socketed in Red Sockets have +2 to Level" }, } }, ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 127 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [3799930101] = { "Gems Socketed in Green Sockets have +30% to Quality" }, } }, ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 128 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [2236460050] = { "Gems Socketed in Blue Sockets gain 100% increased Experience" }, } }, - ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10241 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, - ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6555 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, + ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10255 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2918150296] = { "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence" }, } }, + ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6557 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [702909553] = { "10% increased Scorching Ray beam length" }, } }, ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 459 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3970432307] = { "Grants Level 25 Purity of Fire Skill" }, } }, ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 465 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [4193390599] = { "Grants Level 25 Purity of Ice Skill" }, } }, ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 467 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3822878124] = { "Grants Level 25 Purity of Lightning Skill" }, } }, ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 534 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2700934265] = { "Grants Level 25 Vaal Impurity of Fire Skill" }, } }, ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 535 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1300125165] = { "Grants Level 25 Vaal Impurity of Ice Skill" }, } }, ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 536 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2959369472] = { "Grants Level 25 Vaal Impurity of Lightning Skill" }, } }, - ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9973 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, + ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9983 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3111456397] = { "+1000 to Spectre maximum Life" }, } }, ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1529 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3035514623] = { "Spectres have (50-100)% increased maximum Life" }, } }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7660 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, + ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7666 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3269060224] = { "Gain a Power Charge after Spending a total of 200 Mana" }, } }, ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1349 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, tags = { "caster_unique_weapon", }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [1604393896] = { "2% increased Cast Speed per Power Charge" }, } }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8002 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, - ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6848 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, - ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7925 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7897, 7898 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8008 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, + ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6851 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, + ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7931 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7903, 7904 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 803, 804 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 557 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1128763150] = { "Triggers Level 20 Fire Aegis when Equipped" }, } }, ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 555 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, @@ -4406,74 +4406,74 @@ return { ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 382 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHashes = { [539747809] = { "Socketed Gems are Supported by Level 20 Blasphemy" }, } }, ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 503, 503.1, 503.2, 503.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1757548756] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills" }, } }, ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 504, 504.1, 504.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1517357911] = { "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses" }, } }, - ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you", statOrder = { 9497 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4817 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, - ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5587 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6003 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, - ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9164 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10308, 10308.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, + ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you", statOrder = { 9505 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, } }, + ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4818 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2658399404] = { "Bleeding you inflict is Reflected to you" }, } }, + ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5588 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [175362265] = { "+1% to Chaos Resistance per Poison on you" }, } }, + ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6004 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1034580601] = { "15% increased Damage for each Poison on you up to a maximum of 75%" }, } }, + ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9169 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1360723495] = { "10% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, + ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10322, 10322.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [130616495] = { "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you" }, } }, ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4430 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2466912132] = { "(30-40)% increased Armour while Bleeding" }, } }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5267 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, - ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5262 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, - ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5280 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, - ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5998 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5268 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [676883595] = { "Cannot be Ignited if Strength is higher than Dexterity" }, } }, + ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5263 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3881126302] = { "Cannot be Frozen if Dexterity is higher than Intelligence" }, } }, + ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5281 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3024242403] = { "Cannot be Shocked if Intelligence is higher than Strength" }, } }, + ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5999 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [35476451] = { "1% increased Damage per 5 of your lowest Attribute" }, } }, ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "40% increased Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1616 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "30% reduced Duration of Ailments on Enemies" }, } }, ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1616 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-20)% increased Duration of Ailments on Enemies" }, } }, ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 594 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [208447205] = { "Trigger Level 20 Fog of War when your Trap is triggered" }, } }, - ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6630 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, - ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6683 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, - ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5739 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, - ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10488 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, - ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6128 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10238 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10238 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, - ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9570 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, - ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6458 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, - ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6308 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5683 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, - ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10742 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, - ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10747 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, - ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10751 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, - ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10750 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, + ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6632 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1195140808] = { "Flammability has no Reservation if Cast as an Aura" }, } }, + ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6685 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3062707366] = { "Frostbite has no Reservation if Cast as an Aura" }, } }, + ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5740 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1233358566] = { "Conductivity has no Reservation if Cast as an Aura" }, } }, + ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10502 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [531868030] = { "Vulnerability has no Reservation if Cast as an Aura" }, } }, + ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6129 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [450601566] = { "Despair has no Reservation if Cast as an Aura" }, } }, + ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10252 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, + ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10252 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2100165275] = { "Temporal Chains has no Reservation if Cast as an Aura" }, } }, + ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9578 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2097195894] = { "Punishment has no Reservation if Cast as an Aura" }, } }, + ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6460 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [56919069] = { "Enfeeble has no Reservation if Cast as an Aura" }, } }, + ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6310 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3416664215] = { "Elemental Weakness has no Reservation if Cast as an Aura" }, } }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5684 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3520048646] = { "(100-200)% increased Cold Damage while your Off Hand is empty" }, } }, + ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10759 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2200114771] = { "Every 16 seconds you gain Iron Reflexes for 8 seconds" }, } }, + ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10764 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [304032021] = { "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes" }, } }, + ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10768 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3284029342] = { "You have Far Shot while you do not have Iron Reflexes" }, } }, + ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10767 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3476327198] = { "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes" }, } }, ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2630 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2933625540] = { "All Elemental Damage from Hits Contributes to Shock Chance" }, } }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6255, 6255.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6257, 6257.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 573 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [651875072] = { "Triggers Level 20 Death Walk when Equipped" }, } }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7623 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, - ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7701 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, - ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7699 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7624 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, - ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7631 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, - ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7620 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6086 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7629 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [642457541] = { "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks" }, } }, + ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7707 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [186482813] = { "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify" }, } }, + ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7705 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3892691596] = { "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second" }, } }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7630 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2750004091] = { "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks" }, } }, + ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7637 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2044840211] = { "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks" }, } }, + ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7626 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2863332749] = { "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill" }, } }, + ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6087 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "physical_damage", "damage", "physical", "chaos" }, tradeHashes = { [4031851097] = { "Deal no Non-Elemental Damage" }, } }, ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 208 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 25 Elemental Penetration" }, } }, ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 208 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1994143317] = { "Socketed Gems are Supported by Level 1 Elemental Penetration" }, } }, ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4044 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [570644802] = { "Gain a Spirit Charge on Kill" }, } }, ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 4046 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [305634887] = { "Recover (2-3)% of maximum Life when you lose a Spirit Charge" }, } }, ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 4047 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1996775727] = { "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge" }, } }, - ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9292 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, + ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9298 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHashes = { [3137640399] = { "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge" }, } }, ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 595 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1992516007] = { "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge" }, } }, ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 4043 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [328131617] = { "Gain a Spirit Charge every second" }, } }, ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 4045 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2663792764] = { "You lose all Spirit Charges when taking a Savage Hit" }, } }, ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4041 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4041 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4053097676] = { "+1 to Maximum Spirit Charges per Abyss Jewel affecting you" }, } }, - ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10630 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, + ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10646 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3442107889] = { "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy" }, } }, ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 578 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3308936917] = { "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill" }, } }, ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 579 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2603798371] = { "Trigger Level 20 Shade Form when Hit" }, } }, - ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8972 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, - ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5585 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6279 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, - ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9455 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, + ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8977 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [173438493] = { "Adds 5 to 8 Physical Damage per Endurance Charge" }, } }, + ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5586 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6281 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1686913105] = { "1% reduced Elemental Damage taken from Hits per Endurance Charge" }, } }, + ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9462 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [513221334] = { "+500 to Armour per Endurance Charge" }, } }, ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3918 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "12 to 14 Added Cold Damage per Frenzy Charge" }, } }, ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3076 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1649883131] = { "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge" }, } }, ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "4% increased Movement Speed per Frenzy Charge" }, } }, ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "6% increased Movement Speed per Frenzy Charge" }, } }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8969 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8974 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [4085417083] = { "Adds 3 to 9 Lightning Damage to Spells per Power Charge" }, } }, ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4187 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1818900806] = { "+0.3% Critical Hit Chance per Power Charge" }, } }, ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "(6-10)% increased Critical Damage Bonus per Power Charge" }, } }, - ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9628 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, + ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9636 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [262301496] = { "(40-50)% reduced Mana Cost of Raise Spectre" }, } }, ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 598 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3262369040] = { "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill" }, } }, - ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4016, 6930 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, + ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4016, 6933 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34273389] = { "Gain a Void Charge every 0.5 seconds" }, [1209237645] = { "5 Maximum Void Charges" }, } }, ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3997 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2926399803] = { "Cannot be Stunned by Attacks if your other Ring is an Elder Item" }, } }, ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3994 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [1555962658] = { "(60-80)% increased Attack Damage if your other Ring is a Shaper Item" }, } }, ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3995 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2921373173] = { "(60-80)% increased Spell Damage if your other Ring is an Elder Item" }, } }, @@ -4482,7 +4482,7 @@ return { ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 4004 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2262007777] = { "Non-instant Recovery from Mana Flasks also applies to Life" }, } }, ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 4006 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [347220474] = { "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently" }, } }, ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4005 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2650053239] = { "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently" }, } }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10685 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, + ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10702 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448903047] = { "Battlemage" }, } }, ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "physical_damage", "damage", "physical", "caster" }, tradeHashes = { [2435536961] = { "Adds (6-8) to (10-12) Physical Damage to Spells" }, } }, ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 602 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "green_herring", "skill" }, tradeHashes = { [1350938937] = { "20% chance to Trigger Level 20 Tentacle Whip on Kill" }, } }, ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 601 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3141831683] = { "Trigger Level 20 Glimpse of Eternity when Hit" }, } }, @@ -4494,96 +4494,96 @@ return { ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 524 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [989878105] = { "Grants Level 20 Intimidating Cry Skill" }, } }, ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 513 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1462 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [760855772] = { "(10-16)% increased Quantity of Items found when on Low Life" }, } }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5993 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5993 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, - ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7493 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, - ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6260 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, - ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5501 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, - ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8671 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, - ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9623 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, + ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5994 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5994 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2062174346] = { "1% increased Damage per 15 Dexterity" }, } }, + ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7499 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [952897668] = { "Regenerate (75-125) Life per second while Ignited" }, } }, + ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6262 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [850820277] = { "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently" }, } }, + ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5502 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [4104492115] = { "6% chance to deal Double Damage per 500 Strength" }, } }, + ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8676 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1158543967] = { "Areas contain Beasts to hunt" }, } }, + ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9631 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2761732967] = { "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy" }, } }, ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 4037 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [637690626] = { "Gain a Frenzy Charge on every 50th Rampage Kill" }, } }, ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 4036 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4119032338] = { "2% increased Area of Effect per 25 Rampage Kills" }, } }, ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2259 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3809896400] = { "Unaffected by Curses" }, } }, - ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5639 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5639 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9836 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, - ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9836 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, + ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5640 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "(30-40)% chance to Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5640 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHashes = { [864879045] = { "Chill Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9844 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "(30-40)% chance to Shock Attackers for 4 seconds on Block" }, } }, + ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9844 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHashes = { [575111651] = { "Shock Attackers for 4 seconds on Block" }, } }, ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 334 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3814066599] = { "Socketed Gems are Supported by Level 16 Trap And Mine Damage" }, } }, ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 332 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [2854183975] = { "Socketed Gems are Supported by Level 16 Cluster Trap" }, } }, - ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8959 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, - ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8970 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, + ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8964 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3485231932] = { "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might" }, } }, + ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8975 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [855634301] = { "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might" }, } }, ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4599 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251945210] = { "+(-2-2) seconds to Avian's Might Duration" }, } }, ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4460 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2544408546] = { "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies" }, } }, ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4459 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1746347097] = { "100% increased Aspect of the Avian Buff Effect" }, } }, - ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7495 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, - ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8010 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, + ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7501 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2589482056] = { "Regenerate 100 Life per Second while you have Avian's Flight" }, } }, + ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8016 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1495376076] = { "Regenerate 12 Mana per Second while you have Avian's Flight" }, } }, ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4598 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 580 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7867, 7870 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7866, 7869 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7868, 7871 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7873, 7876 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7872, 7875 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7874, 7877 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1864 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(20-40)% increased Endurance Charge Duration" }, } }, ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1866 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(20-40)% increased Frenzy Charge Duration" }, } }, ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(20-40)% increased Power Charge Duration" }, } }, ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on kill", statOrder = { 2403 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1054322244] = { "10% chance to gain an Endurance Charge on kill" }, } }, ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2405 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [1826802197] = { "10% chance to gain a Frenzy Charge on kill" }, } }, ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2407 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2483795307] = { "10% chance to gain a Power Charge on kill" }, } }, - ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9162 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, + ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9167 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2116250000] = { "1% increased Movement Speed per Endurance Charge" }, } }, ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1557 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1541516339] = { "1% increased Movement Speed per Frenzy Charge" }, } }, - ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9165 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, + ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9170 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3774108776] = { "1% increased Movement Speed per Power Charge" }, } }, ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1444 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [989800292] = { "Regenerate 0.3% of maximum Life per second per Endurance Charge" }, } }, ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2402 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2828673491] = { "Regenerate 0.3% of maximum Life per second per Frenzy Charge" }, } }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7515 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7521 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3961213398] = { "Regenerate 0.3% of maximum Life per second per Power Charge" }, } }, ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2917 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3515686789] = { "5% increased Damage per Endurance Charge" }, } }, ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2994 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [902747843] = { "5% increased Damage per Frenzy Charge" }, } }, - ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6004 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, - ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8962 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, + ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6005 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2034658008] = { "5% increased Damage per Power Charge" }, } }, + ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8967 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1073447019] = { "(7-9) to (13-14) Fire Damage per Endurance Charge" }, } }, ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3918 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "(6-8) to (12-13) Added Cold Damage per Frenzy Charge" }, } }, - ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8966 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, + ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8971 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1917107159] = { "(1-2) to (18-20) Lightning Damage per Power Charge" }, } }, ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4171 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2355741828] = { "+1% Chance to Block Attack Damage per Endurance Charge" }, } }, ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4172 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2148784747] = { "+1% Chance to Block Attack Damage per Frenzy Charge" }, } }, ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4173 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2856326982] = { "+1% Chance to Block Attack Damage per Power Charge" }, } }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 9280 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, - ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 9279 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 9282 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9457 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 9286 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "fire", "chaos" }, tradeHashes = { [700405539] = { "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge" }, } }, + ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 9285 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "cold", "chaos" }, tradeHashes = { [2764080642] = { "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge" }, } }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 9288 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "lightning", "chaos" }, tradeHashes = { [2650222338] = { "Gain 1% of Lightning Damage as Chaos Damage per Power Charge" }, } }, + ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9464 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [1447080724] = { "6% increased Armour per Endurance Charge" }, } }, ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1426 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [660404777] = { "8% increased Evasion Rating per Frenzy Charge" }, } }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6430 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, + ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6432 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2189382346] = { "3% increased Energy Shield per Power Charge" }, } }, ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3888 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2713233613] = { "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges" }, } }, - ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6810 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, - ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6811, 6811.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, - ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6775 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, + ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6813 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2119664154] = { "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges" }, } }, + ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6814, 6814.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [1232004574] = { "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges" }, } }, + ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6778 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2894476716] = { "Gain 1 Endurance Charge every second if you've been Hit Recently" }, } }, ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1588 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [2323242761] = { "10% chance to gain a Frenzy Charge on Hit" }, } }, ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1585 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "20% chance to gain a Power Charge on Critical Hit" }, } }, ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4473 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [3618888098] = { "1% increased Attack and Cast Speed per Endurance Charge" }, } }, ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1785 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3700381193] = { "10% increased Accuracy Rating per Frenzy Charge" }, } }, ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4474 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [987588151] = { "1% increased Attack and Cast Speed per Power Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5850 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5851 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5851 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2547511866] = { "6% increased Critical Hit Chance per Endurance Charge" }, } }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5852 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [707887043] = { "6% increased Critical Hit Chance per Frenzy Charge" }, } }, ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2990 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [4164870816] = { "3% increased Critical Damage Bonus per Power Charge" }, } }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5585 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9448 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, - ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9450 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5586 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [4210011075] = { "+4% to Chaos Resistance per Endurance Charge" }, } }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9455 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1226049915] = { "1% additional Physical Damage Reduction per Frenzy Charge" }, } }, + ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9457 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3986347319] = { "1% additional Physical Damage Reduction per Power Charge" }, } }, ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7376 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, - ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6823 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6744 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, + ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7382 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2877370216] = { "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges" }, } }, + ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6826 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2408544213] = { "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges" }, } }, + ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6747 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [813119588] = { "Gain Arcane Surge on Hit with Spells while at maximum Power Charges" }, } }, ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3708 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3780437763] = { "You cannot be Stunned while at maximum Endurance Charges" }, } }, - ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6782 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9317 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10736 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10737 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, + ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6785 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3371432622] = { "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges" }, } }, + ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9324 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [761598374] = { "You can apply an additional Curse while at maximum Power Charges" }, } }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10753 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [1990354706] = { "You have Iron Reflexes while at maximum Frenzy Charges" }, } }, + ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10754 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1876857497] = { "You have Mind over Matter while at maximum Power Charges" }, } }, ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (10-20)% increased Cast Speed" }, } }, ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1944 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed", "curse" }, tradeHashes = { [2378065031] = { "Curse Skills have (8-12)% increased Cast Speed" }, } }, ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 600 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHashes = { [3657377047] = { "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown" }, } }, ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4001 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "elemental_damage", "damage", "elemental", "chaos" }, tradeHashes = { [1860646468] = { "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped" }, } }, - ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7212 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, - ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7211 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, - ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5674 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, - ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7542 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, + ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7218 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4234677275] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items" }, } }, + ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7217 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, + ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5675 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, + ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7548 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 932 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(15-30)% reduced Duration" }, } }, ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 648 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [806698863] = { "Consecrated Ground created by this Flask has Tripled Radius" }, } }, ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 745 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, @@ -4592,125 +4592,125 @@ return { ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1655 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [209387074] = { "Enemies you kill are Shocked" }, } }, ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 4048, 4049 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [108334292] = { "Gain a Divine Charge on Hit" }, [3997368968] = { "+10 to maximum Divine Charges" }, } }, ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 4051, 4051.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1174243390] = { "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity" }, } }, - ["UniqueIncreasedMaximumDivinity1"] = { affix = "", "(0-100)% increased maximum Divinity", statOrder = { 8851 }, level = 1, group = "IncreasedMaximumDivinity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878697053] = { "(0-100)% increased maximum Divinity" }, } }, - ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { affix = "", "20% reduced maximum Divinity per Corrupted Item Equipped", statOrder = { 8852 }, level = 1, group = "ReducedMaximumDivinityPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2189090852] = { "20% reduced maximum Divinity per Corrupted Item Equipped" }, } }, - ["UniqueEnergyShieldConvertedToDivinity1"] = { affix = "", "Convert 100% of maximum Energy Shield to maximum Divinity", statOrder = { 5766 }, level = 1, group = "EnergyShieldConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2896801635] = { "Convert 100% of maximum Energy Shield to maximum Divinity" }, } }, - ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { affix = "", "Skills Cost Divinity instead of Mana or Life", statOrder = { 9911 }, level = 1, group = "SkillAndLifeCostsConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [467146530] = { "Skills Cost Divinity instead of Mana or Life" }, } }, + ["UniqueIncreasedMaximumDivinity1"] = { affix = "", "(0-100)% increased maximum Divinity", statOrder = { 8856 }, level = 1, group = "IncreasedMaximumDivinity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [878697053] = { "(0-100)% increased maximum Divinity" }, } }, + ["UniqueReducedMaximumDivinityPerCorruptedItem1"] = { affix = "", "20% reduced maximum Divinity per Corrupted Item Equipped", statOrder = { 8857 }, level = 1, group = "ReducedMaximumDivinityPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2189090852] = { "20% reduced maximum Divinity per Corrupted Item Equipped" }, } }, + ["UniqueEnergyShieldConvertedToDivinity1"] = { affix = "", "Convert 100% of maximum Energy Shield to maximum Divinity", statOrder = { 5767 }, level = 1, group = "EnergyShieldConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2896801635] = { "Convert 100% of maximum Energy Shield to maximum Divinity" }, } }, + ["UniqueSkillAndLifeCostsConvertedToDivinity1"] = { affix = "", "Skills Cost Divinity instead of Mana or Life", statOrder = { 9920 }, level = 1, group = "SkillAndLifeCostsConvertedToDivinity", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [467146530] = { "Skills Cost Divinity instead of Mana or Life" }, } }, ["UniqueCannotHaveEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2844 }, level = 1, group = "CannotHaveEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [410952253] = { "Cannot have Energy Shield" }, } }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1917, 7671 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2913, 7664 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below base value" }, [628716294] = { "Action Speed cannot be modified to below base value" }, } }, - ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8020 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, - ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8021 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, + ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1917, 7677 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1177959871] = { "Nearby Enemies cannot deal Critical Hits" }, [3638599682] = { "Never deal Critical Hits" }, } }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2913, 7670 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1356468153] = { "Nearby Allies' Action Speed cannot be modified to below base value" }, [628716294] = { "Action Speed cannot be modified to below base value" }, } }, + ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8026 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2676451350] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, + ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8027 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1212083058] = { "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes" }, } }, ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have", statOrder = { 2738 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1879586312] = { "Nearby Allies have (4-6)% increased Armour, Evasion and Energy Shield per 100 Strength you have" }, } }, ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2737 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3941641418] = { "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have" }, } }, ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2739 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [1438488526] = { "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have" }, } }, ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2740 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2373999301] = { "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have" }, } }, ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 507 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2721815210] = { "Grants Level 30 Precision Skill" }, } }, - ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9509 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, - ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9510 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, + ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9517 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [1291925008] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, + ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9518 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHashes = { [3859865977] = { "Precision has 100% increased Mana Reservation Efficiency" }, } }, ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 185 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3274973940] = { "Socketed Gems are Supported by Level 25 Divine Blessing" }, } }, ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 549 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHashes = { [3171958921] = { "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown" }, } }, ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 607, 607.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHashes = { [1378815167] = { "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown" }, } }, ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2928 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "5% chance to Blind Enemies on Hit with Attacks" }, } }, ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10632 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10632 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10632 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10632 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10632 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, - ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7158 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7159 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7543 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7157 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8885 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7545 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7145 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7146 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6568 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, - ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7144 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8862 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6569 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7148 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7149 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5682 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, - ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7147 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8845 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5684 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7153 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7154 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9443 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, - ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7151 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, - ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9814 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9451 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, - ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7141 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7142 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, - ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5584 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, - ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7140 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10648 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10648 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10648 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10648 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10648 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3461563650] = { "When used in the Synthesiser, the new item will have an additional Herald Modifier" }, } }, + ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7163 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3959101898] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7164 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3817220109] = { "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7549 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [536957] = { "(40-60)% increased Lightning Damage while affected by Herald of Thunder" }, } }, + ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7162 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3814686091] = { "Herald of Thunder has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8890 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [3259396413] = { "+1% to maximum Lightning Resistance while affected by Herald of Thunder" }, } }, + ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7551 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [2687017988] = { "+(50-60)% to Lightning Resistance while affected by Herald of Thunder" }, } }, + ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7150 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3819451758] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7151 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2500442851] = { "Herald of Ash has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6570 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2775776604] = { "(40-60)% increased Fire Damage while affected by Herald of Ash" }, } }, + ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7149 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2154349925] = { "Herald of Ash has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8867 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3716758077] = { "+1% to maximum Fire Resistance while affected by Herald of Ash" }, } }, + ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6571 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [2675641469] = { "+(50-60)% to Fire Resistance while affected by Herald of Ash" }, } }, + ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7153 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3059700363] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7154 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3395872960] = { "Herald of Ice has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5683 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1970606344] = { "(40-60)% increased Cold Damage while affected by Herald of Ice" }, } }, + ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7152 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1862926389] = { "Herald of Ice has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8850 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [950661692] = { "+1% to maximum Cold Resistance while affected by Herald of Ice" }, } }, + ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5685 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [2494069187] = { "+(50-60)% to Cold Resistance while affected by Herald of Ice" }, } }, + ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7158 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1542765265] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7159 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2189040439] = { "Herald of Purity has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9450 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3294232483] = { "(40-60)% increased Physical Damage while affected by Herald of Purity" }, } }, + ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7156 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2126027382] = { "Herald of Purity has (40-60)% increased Buff Effect" }, } }, + ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9822 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [650630047] = { "Sentinels of Purity deal (70-100)% increased Damage" }, } }, + ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9458 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [3163114700] = { "4% additional Physical Damage Reduction while affected by Herald of Purity" }, } }, + ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7146 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1284151528] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7147 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1133703802] = { "Herald of Agony has (30-40)% increased Mana Reservation Efficiency" }, } }, + ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5585 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [739274558] = { "(40-60)% increased Chaos Damage while affected by Herald of Agony" }, } }, + ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7145 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4249 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5589 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 13, 13.1, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 13, 13.1, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 13, 13.1, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 13, 13.1, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 13, 13.1, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 13, 13.1, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 13, 13.1, 13.2, 10633 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10279 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, - ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9871 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, - ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5575 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, + ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5590 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 13, 13.1, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 13, 13.1, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 13, 13.1, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 13, 13.1, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 13, 13.1, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 13, 13.1, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 13, 13.1, 13.2, 10649 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, + ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10293 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, + ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9879 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, + ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5576 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4357 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1724614884] = { "4% increased Area Damage per 10 Devotion" }, } }, - ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6266 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, - ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6301 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 9221 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9804 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, - ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9803 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, - ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9000 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8990 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, - ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8001 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, - ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7969 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, - ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9215 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", statOrder = { 9834 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2398058229] = { "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, } }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7822 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, - ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7820 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, + ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6268 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3103189267] = { "4% increased Elemental Damage per 10 Devotion" }, } }, + ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6303 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "elemental", "resistance" }, tradeHashes = { [1910205563] = { "+2% to all Elemental Resistances per 10 Devotion" }, } }, + ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 9226 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [1810368194] = { "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion" }, } }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9812 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [730530528] = { "4% reduced Elemental Ailment Duration on you per 10 Devotion" }, } }, + ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9811 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [4235333770] = { "4% reduced Duration of Curses on you per 10 Devotion" }, } }, + ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9005 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3808469650] = { "1% increased Minion Attack and Cast Speed per 10 Devotion" }, } }, + ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8995 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHashes = { [2830135449] = { "Minions have +60 to Accuracy Rating per 10 Devotion" }, } }, + ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8007 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2042813020] = { "Regenerate 0.6 Mana per Second per 10 Devotion" }, } }, + ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7975 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3293275880] = { "1% reduced Mana Cost of Skills per 10 Devotion" }, } }, + ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9220 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [2585926696] = { "1% increased effect of Non-Curse Auras per 10 Devotion" }, } }, + ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion", statOrder = { 9842 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2398058229] = { "3% increased Armour, Evasion and Energy Shield from Equipped Shield per 10 Devotion" }, } }, + ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7828 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, + ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7826 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 932 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 625, 7642 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 625, 7597 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 625, 7618 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 625, 7920 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 625, 7692 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 625, 7614 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 625, 7648 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 625, 7603 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 625, 7624 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 625, 7926 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2967267655] = { "+1 Weapon Range per 10% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 625, 7698 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "attack" }, tradeHashes = { [1482025771] = { "Grants 1% increased Elemental Damage per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 625, 7620 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [334333797] = { "Grants 1% increased Area of Effect per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4548 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4549 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10659 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, + ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10676 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 91, 280 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 941, 1466 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7753 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7759 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 1457 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1552907959] = { "33% of Chaos Damage taken bypasses Energy Shield" }, } }, ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 1456 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "33% of Damage taken bypasses Energy Shield" }, } }, - ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7785 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, - ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7732 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, + ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7791 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, + ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7738 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1109900829] = { "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant" }, } }, ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 439 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3784504781] = { "Socketed Warcry Skills have +1 Cooldown Use" }, } }, - ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9806, 9806.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 10395 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, + ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9814, 9814.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1615324731] = { "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack" }, } }, + ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 10409 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2023285759] = { "Skills deal (10-15)% more Damage for each Warcry Empowering them" }, } }, ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2617 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2617 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1705072014] = { "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you" }, } }, ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4275 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405089557] = { "All Damage Taken from Hits can Ignite you" }, } }, - ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5653 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, - ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6333 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, - ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7669 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7900, 7900.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, - ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 10405 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, - ["UniqueJewelSpecificSkillLevelBonus2"] = { affix = "", "+(1-2) to Level of all 0 Skills", statOrder = { 10405 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-2) to Level of all 0 Skills" }, } }, + ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5654 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3119292058] = { "Enemies Chilled by your Hits can be Shattered as though Frozen" }, } }, + ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 6335 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, + ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7675 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, + ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7906, 7906.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, + ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 10419 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, + ["UniqueJewelSpecificSkillLevelBonus2"] = { affix = "", "+(1-2) to Level of all 0 Skills", statOrder = { 10419 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-2) to Level of all 0 Skills" }, } }, ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 947 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(40-60)% reduced Reload Speed" }, } }, ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 947 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(15-25)% increased Reload Speed" }, } }, - ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5557 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, - ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5758 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, + ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5558 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, + ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5759 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 1039 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-10)% of Physical Damage as Life" }, } }, ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 946 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, - ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 6244 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, + ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 6246 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2902 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4127 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2646093132] = { "Inflict Abyssal Wasting on Hit" }, } }, ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(20-30)% reduced Presence Area of Effect" }, } }, @@ -4719,27 +4719,27 @@ return { ["PassageUniqueAmanamuHybridStrengthPercentGainAsFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", "(4-6)% increased Strength", statOrder = { 863, 999 }, level = 1, group = "UniqueHybridStrengthPercentGainAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, [3015669065] = { "Gain (8-12)% of Damage as Extra Fire Damage" }, } }, ["PassageUniqueKurgalHybridManaPercentTakenBeforeLife"] = { affix = "", "(5-10)% increased maximum Mana", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 894, 2472 }, level = 1, group = "UniqueHybridManaPercentTakenBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, [2748665614] = { "(5-10)% increased maximum Mana" }, } }, ["PassageUniqueKurgalHybridEnergyShieldAndDelay"] = { affix = "", "(30-40)% increased maximum Energy Shield", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 886, 1033 }, level = 1, group = "UniqueHybridEnergyShieldAndDelay", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, - ["PassageUniqueKurgalHybridCastSpeedAndArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 6740, 10566 }, level = 1, group = "UniqueHybridCastSpeedAndArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "minion" }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["PassageUniqueKurgalHybridCastSpeedAndArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 6743, 10582 }, level = 1, group = "UniqueHybridCastSpeedAndArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "minion" }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, ["PassageUniqueKurgalHybridIntelligencePercentGainAsCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", "(4-6)% increased Intelligence", statOrder = { 866, 1001 }, level = 1, group = "UniqueHybridIntelligencePercentGainAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, - ["PassageUniqueUlamanHybridLifeRecoverLifeOnDeath"] = { affix = "", "(5-10)% increased maximum Life", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 889, 9680 }, level = 1, group = "UniqueHybridLifeRecoverLifeOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, [983749596] = { "(5-10)% increased maximum Life" }, } }, + ["PassageUniqueUlamanHybridLifeRecoverLifeOnDeath"] = { affix = "", "(5-10)% increased maximum Life", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 889, 9688 }, level = 1, group = "UniqueHybridLifeRecoverLifeOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, [983749596] = { "(5-10)% increased maximum Life" }, } }, ["PassageUniqueUlamanHybridEvasionAndDeflection"] = { affix = "", "(30-40)% increased Evasion Rating", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 884, 1028 }, level = 1, group = "UniqueHybridEvasionAndDeflection", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, [3033371881] = { "Gain Deflection Rating equal to (10-20)% of Evasion Rating" }, } }, - ["PassageUniqueUlamanHybridChainTerrainAndFork"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", "Projectiles have (15-20)% chance to Chain an additional time from terrain", statOrder = { 5511, 9537 }, level = 1, group = "UniqueHybridChainTerrainAndFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, [4081947835] = { "Projectiles have (15-20)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanHybridAttackSpeedAndOnslaughtOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 6819, 10565 }, level = 1, group = "UniqueHybridAttackSpeedAndOnslaughtOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["PassageUniqueUlamanHybridChainTerrainAndFork"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", "Projectiles have (15-20)% chance to Chain an additional time from terrain", statOrder = { 5512, 9545 }, level = 1, group = "UniqueHybridChainTerrainAndFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, [4081947835] = { "Projectiles have (15-20)% chance to Chain an additional time from terrain" }, } }, + ["PassageUniqueUlamanHybridAttackSpeedAndOnslaughtOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 6822, 10581 }, level = 1, group = "UniqueHybridAttackSpeedAndOnslaughtOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "minion_speed", "attack", "speed", "minion" }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, ["PassageUniqueUlamanHybridDexterityAndGainAsLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", "(4-6)% increased Dexterity", statOrder = { 869, 1000 }, level = 1, group = "UniqueHybridDexterityAndGainAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, - ["PassageUniqueAmanamuHybridSlowAndSlowOnSelf"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4689, 4745 }, level = 1, group = "UniqueHybridSlowAndSlowOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["PassageUniqueAmanamuHybridSlowAndSlowOnSelf"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4690, 4746 }, level = 1, group = "UniqueHybridSlowAndSlowOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, + ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1417 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1416406066] = { "(6-10)% increased Spirit" }, } }, ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(30-40)% increased Armour" }, } }, - ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10568 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, - ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10567 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, - ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9148 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10584 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [36954843] = { "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate" }, } }, + ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 10583 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1404134612] = { "You and Allies in your Presence have +(17-23)% to Chaos Resistance" }, } }, + ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9153 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-8)% reduced Movement Speed Penalty from using Skills while moving" }, } }, ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 10243 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, + ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 10257 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [806994543] = { "(80-100)% increased Thorns damage if you've consumed an Endurance Charge Recently" }, } }, ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 1005 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (20-30)% reduced Critical Damage Bonus" }, } }, - ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4689 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, - ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4690 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (12-20)% increased Slow Magnitude" }, } }, + ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [924253255] = { "(10-20)% reduced Slowing Potency of Debuffs on You" }, } }, ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-16)% increased Skill Effect Duration" }, } }, - ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5920 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5921 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(30-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(30-40)% increased Ignite Magnitude" }, } }, ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(4-6)% increased Strength" }, } }, ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(15-25)% increased Area of Effect of Curses" }, } }, @@ -4748,43 +4748,43 @@ return { ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies -(15-10)% to Fire Resistance", statOrder = { 4122 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2991563371] = { "Abyssal Wasting also applies -(15-10)% to Fire Resistance" }, } }, ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4121 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4043376133] = { "(60-100)% increased Magnitude of Abyssal Wasting you inflict" }, } }, ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4123 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1679776108] = { "Abyssal Wasting you inflict has Infinite Duration" }, } }, - ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10050 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, - ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 5329 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, + ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 10061 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3044685077] = { "+(20-25) to Spirit while you have at least 200 Strength" }, } }, + ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 5330 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [34174842] = { "2% increased Cast Speed per 20 Spirit" }, } }, ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-10)% increased maximum Mana" }, } }, ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(30-40)% increased maximum Energy Shield" }, } }, ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-14)% of Damage is taken from Mana before Life" }, } }, - ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7998 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, - ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10566 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, - ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9682 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6740 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, + ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 8004 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1895238057] = { "(40-60)% increased Mana Regeneration Rate while Surrounded" }, } }, + ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 10582 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281990982] = { "You and Allies in your Presence have (11-16)% increased Cast Speed" }, } }, + ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9690 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6743 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3625518318] = { "Gain Arcane Surge when a Minion Dies" }, } }, ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9891 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, + ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9899 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2369495153] = { "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently" }, } }, ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-40)% increased Critical Hit Chance" }, } }, - ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 6405 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, - ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 10316 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, - ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(30-40)% increased Magnitude of Chill you inflict" }, } }, + ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 6407 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (10-16)% increased Energy" }, } }, + ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 10330 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (25-40)% increased Spell Damage" }, } }, + ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Chill you inflict", statOrder = { 5644 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(30-40)% increased Magnitude of Chill you inflict" }, } }, ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(4-6)% increased Intelligence" }, } }, - ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (12-18)% increased Area of Effect", statOrder = { 9984 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-18)% increased Area of Effect" }, } }, + ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (12-18)% increased Area of Effect", statOrder = { 9994 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-18)% increased Area of Effect" }, } }, ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (8-12)% of Damage as Extra Cold Damage" }, } }, ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(15-25)% faster start of Energy Shield Recharge" }, } }, ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies -(15-10)% to Cold Resistance", statOrder = { 4120 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3979226081] = { "Abyssal Wasting also applies -(15-10)% to Cold Resistance" }, } }, ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4125 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [546201303] = { "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant" }, } }, ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4132 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4255854327] = { "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10049 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, + ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 10060 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1282318918] = { "+(20-25) to Spirit while you have at least 200 Intelligence" }, } }, ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4553 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [324579579] = { "1% increased Attack Speed per 20 Spirit" }, } }, ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(30-40)% increased Evasion Rating" }, } }, - ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, - ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, - ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7500 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, - ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10565 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, - ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10563 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, - ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9680 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, - ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6819 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, + ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-16)% chance to Chain an additional time from terrain" }, } }, + ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5512 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (40-50)% chance for an additional Projectile when Forking" }, } }, + ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7506 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3084372306] = { "(30-40)% increased Life Regeneration rate while Surrounded" }, } }, + ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 10581 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408222535] = { "You and Allies in your Presence have (7-12)% increased Attack Speed" }, } }, + ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 10579 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3429986699] = { "You and Allies in your Presence have (20-28)% increased Accuracy Rating" }, } }, + ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9688 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503117295] = { "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence" }, } }, + ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6822 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3605616594] = { "Gain Onslaught for 4 seconds when a Minion Dies" }, } }, ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 7447 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, + ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 7453 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3843204146] = { "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently" }, } }, ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-25)% increased Critical Damage Bonus" }, } }, - ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(30-40)% increased Magnitude of Shock you inflict" }, } }, + ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(30-40)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(30-40)% increased Magnitude of Shock you inflict" }, } }, ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(4-6)% increased Dexterity" }, } }, ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(12-18)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(12-18)% increased Area of Effect for Attacks" }, } }, ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (8-12)% of Damage as Extra Lightning Damage" }, } }, @@ -4792,28 +4792,28 @@ return { ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies -(15-10)% to Lightning Resistance", statOrder = { 4126 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1726353460] = { "Abyssal Wasting also applies -(15-10)% to Lightning Resistance" }, } }, ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4124 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3658708511] = { "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant" }, } }, ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4252 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2760643568] = { "(40-50)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10048 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, + ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 10059 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2694614739] = { "+(20-25) to Spirit while you have at least 200 Dexterity" }, } }, ["PassageUniqueAmanamuAbyssalWastingPreventsCrits"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits", statOrder = { 4119 }, level = 1, group = "UniqueAbyssalWastingPreventsCrits", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1986082444] = { "Abyssal Wasting you inflict also prevents targets from dealing Critical Hits" }, } }, ["PassageUniqueKurgalAbyssalWastingPreventsEleAilments"] = { affix = "", "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments", statOrder = { 4118 }, level = 1, group = "UniqueAbyssalWastingPreventsEleAilments", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4149923257] = { "Abyssal Wasting you inflict also prevents targets from inflicting Elemental Ailments" }, } }, ["PassageUniqueKurgalAbyssalWastingDebilitates"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Debilitated", statOrder = { 4116 }, level = 1, group = "UniqueAbyssalWastingDebilitates", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2668499289] = { "Targets affected by Abyssal Wasting you inflict are Debilitated" }, } }, ["PassageUniqueAmanamuAbyssalWastingHinders"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Hindered", statOrder = { 4117 }, level = 1, group = "UniqueAbyssalWastingHinders", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4097102799] = { "Targets affected by Abyssal Wasting you inflict are Hindered" }, } }, ["PassageUniqueUlamanAbyssalWastingBlinds"] = { affix = "", "Targets affected by Abyssal Wasting you inflict are Blinded", statOrder = { 4115 }, level = 1, group = "UniqueAbyssalWastingBlinds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3963171183] = { "Targets affected by Abyssal Wasting you inflict are Blinded" }, } }, - ["PassageUniqueKurgalAbyssalWastingPhysExplode"] = { affix = "", "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", statOrder = { 6335 }, level = 1, group = "UniqueAbyssalWastingPhysExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3134931479] = { "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage" }, } }, - ["PassageUniqueUlamanAbyssalWastingImmobilisationBuildup"] = { affix = "", "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", statOrder = { 7271 }, level = 1, group = "UniqueAbyssalWastingImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3893409915] = { "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting" }, } }, - ["PassageUniqueKurgalAbyssalWastingWitherChance"] = { affix = "", "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", statOrder = { 5553 }, level = 1, group = "UniqueAbyssalWastingWitherChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2614251226] = { "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingDoubledPower"] = { affix = "", "Targets affected by Abyssal Wasting in your Presence have double Power", statOrder = { 6363 }, level = 1, group = "UniqueAbyssalWastingDoubledPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1153919467] = { "Targets affected by Abyssal Wasting in your Presence have double Power" }, } }, - ["PassageUniqueKurgalAbyssalWastingReviveChance"] = { affix = "", "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6370, 6370.1 }, level = 1, group = "UniqueAbyssalWastingReviveChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [19819865] = { "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueUlamanAbyssalWastingGrantsFlaskCharges"] = { affix = "", "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges", statOrder = { 6366, 6366.1 }, level = 1, group = "UniqueAbyssalWastingGrantsFlaskCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2051332707] = { "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges" }, } }, - ["PassageUniqueKurgalAbyssalWastingVolatility"] = { affix = "", "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", statOrder = { 6368 }, level = 1, group = "UniqueAbyssalWastingVolatility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2952939159] = { "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingRage"] = { affix = "", "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", statOrder = { 6367 }, level = 1, group = "UniqueAbyssalWastingRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2934385135] = { "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting" }, } }, - ["PassageUniqueAmanamuAbyssalWastingOnslaughtChance"] = { affix = "", "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6369, 6369.1 }, level = 1, group = "UniqueAbyssalWastingOnslaughtChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3451259830] = { "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueKurgalAbyssalWastingPhysExplode"] = { affix = "", "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage", statOrder = { 6337 }, level = 1, group = "UniqueAbyssalWastingPhysExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3134931479] = { "Abyssal Wasting you inflict also gives targets 10% chance to explode on death, dealing a tenth of their life as Physical Damage" }, } }, + ["PassageUniqueUlamanAbyssalWastingImmobilisationBuildup"] = { affix = "", "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting", statOrder = { 7277 }, level = 1, group = "UniqueAbyssalWastingImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3893409915] = { "(30-40)% increased Immobilisation buildup against targets affected by Abyssal Wasting" }, } }, + ["PassageUniqueKurgalAbyssalWastingWitherChance"] = { affix = "", "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting", statOrder = { 5554 }, level = 1, group = "UniqueAbyssalWastingWitherChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2614251226] = { "(5-10)% chance to inflict Withered with Hits against targets affected by Abyssal Wasting" }, } }, + ["PassageUniqueAmanamuAbyssalWastingDoubledPower"] = { affix = "", "Targets affected by Abyssal Wasting in your Presence have double Power", statOrder = { 6365 }, level = 1, group = "UniqueAbyssalWastingDoubledPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1153919467] = { "Targets affected by Abyssal Wasting in your Presence have double Power" }, } }, + ["PassageUniqueKurgalAbyssalWastingReviveChance"] = { affix = "", "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6372, 6372.1 }, level = 1, group = "UniqueAbyssalWastingReviveChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [19819865] = { "10% chance to revive one of your Persistent Minions when you kill an", " enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueUlamanAbyssalWastingGrantsFlaskCharges"] = { affix = "", "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges", statOrder = { 6368, 6368.1 }, level = 1, group = "UniqueAbyssalWastingGrantsFlaskCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2051332707] = { "Enemies you kill while they are affected by Abyssal Wasting", " grant 100% increased Flask Charges" }, } }, + ["PassageUniqueKurgalAbyssalWastingVolatility"] = { affix = "", "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting", statOrder = { 6370 }, level = 1, group = "UniqueAbyssalWastingVolatility", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2952939159] = { "Gain 1 Volatility when you kill an enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueAmanamuAbyssalWastingRage"] = { affix = "", "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting", statOrder = { 6369 }, level = 1, group = "UniqueAbyssalWastingRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2934385135] = { "Gain 1 Rage when you kill an enemy affected by Abyssal Wasting" }, } }, + ["PassageUniqueAmanamuAbyssalWastingOnslaughtChance"] = { affix = "", "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting", statOrder = { 6371, 6371.1 }, level = 1, group = "UniqueAbyssalWastingOnslaughtChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3451259830] = { "(10-20)% chance to gain Onslaught for 3 seconds when you kill an", " enemy affected by Abyssal Wasting" }, } }, ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 57 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7738 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7735 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7735 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, - ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7737 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, - ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7736 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, - ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7739 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, + ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7744 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1458343515] = { "This item gains bonuses from Socketed Items as though it was a Helmet" }, } }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7741 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7741 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1087787187] = { "This item gains bonuses from Socketed Items as though it was a Body Armour" }, } }, + ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7743 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1856590738] = { "This item gains bonuses from Socketed Items as though it was Gloves" }, } }, + ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7742 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2733960806] = { "This item gains bonuses from Socketed Items as though it was Boots" }, } }, + ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7745 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2044810874] = { "This item gains bonuses from Socketed Items as though it was a Shield" }, } }, ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Augment Items", statOrder = { 178 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2081918629] = { "(50-100)% increased effect of Socketed Augment Items" }, } }, ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, @@ -4826,52 +4826,52 @@ return { ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(120-180)% increased Armour and Energy Shield" }, } }, ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(120-180)% increased Evasion and Energy Shield" }, } }, ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 854 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-120)% increased Armour, Evasion and Energy Shield" }, } }, - ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9915 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, + ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9924 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2035336006] = { "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs" }, } }, ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 61 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [250458861] = { "Only Soul Cores can be Socketed in this item" }, } }, - ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(15-20)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion and Energy Shield", statOrder = { 6473 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, - ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6471 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6471 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6471 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6471 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, - ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6472 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, - ["UniqueMinionsExplodeAsPercentPhysicalOnDeath1"] = { affix = "", "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres", statOrder = { 10409, 10409.1 }, level = 1, group = "UniqueMinionsExplodeOnDeathDealingPercentOfLifeAsPhys", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [4166288804] = { "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres" }, } }, + ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(15-20)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(21-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(27-32)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion and Energy Shield", statOrder = { 6475 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1683132557] = { "(33-38)% increased Armour, Evasion and Energy Shield" }, } }, + ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6473 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(9-12) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6473 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(17-20) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6473 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(25-27) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6473 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816568014] = { "+(28-30) to Strength, Dexterity or Intelligence" }, } }, + ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6474 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [415464603] = { "(7-10)% increased Strength, Dexterity or Intelligence" }, } }, + ["UniqueMinionsExplodeAsPercentPhysicalOnDeath1"] = { affix = "", "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres", statOrder = { 10423, 10423.1 }, level = 1, group = "UniqueMinionsExplodeOnDeathDealingPercentOfLifeAsPhys", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "physical_damage", "damage", "physical", "minion" }, tradeHashes = { [4166288804] = { "Minions explode on death, dealing (8-12)% of their maximum", "life as Physical Damage to enemies within 2 metres" }, } }, ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 629 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1726753705] = { "90% less Life Recovered" }, } }, ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 638 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, ["UniqueFlaskEffectNotRemovedOnFullLife__2"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 638 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 744, 747, 758 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464644319] = { "No Inherent loss of Rage during effect" }, [555311715] = { "Gain (3-5) Rage when Hit by an Enemy during effect" }, [3598623697] = { "(15-30)% of Damage taken during effect Recouped as Life" }, } }, ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 932 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, } }, - ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6889 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, + ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6892 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3848 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4413 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, - ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6557 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, - ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 10423 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, + ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6559 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1325331627] = { "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken" }, } }, + ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 10437 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, ["UniqueOnlySocketRunes1"] = { affix = "", "Only Runes can be Socketed in this item", statOrder = { 60 }, level = 1, group = "OnlySocketRunes", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [326412910] = { "Only Runes can be Socketed in this item" }, } }, ["UniqueLocalIncreasedRuneEffect1"] = { affix = "", "200% increased effect of Socketed Runes", statOrder = { 176 }, level = 1, group = "LocalIncreasedRuneEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [704409219] = { "200% increased effect of Socketed Runes" }, } }, - ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { affix = "", "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", statOrder = { 5728 }, level = 1, group = "DeflectedDamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3918757604] = { "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" }, } }, + ["UniqueDamageFromDeflectedHitsTakenFromCompanion1"] = { affix = "", "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", statOrder = { 5729 }, level = 1, group = "DeflectedDamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3918757604] = { "(10-15)% of Damage from Deflected Hits is taken from Damageable Companion's Life before you" }, } }, ["UniqueDeflectionRatingPerMissingEnergyShield1"] = { affix = "", "+(70-100) to Deflection Rating per 50 missing Energy Shield", statOrder = { 10 }, level = 1, group = "FlatDeflectionRatingPer50MissingEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [1207006772] = { "+(70-100) to Deflection Rating per 50 missing Energy Shield" }, } }, - ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { affix = "", "You can have any number of Companions of different types", statOrder = { 10668 }, level = 78, group = "UnlimitedDifferentCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603573028] = { "You can have any number of Companions of different types" }, } }, + ["UniqueUnlimitedCompanionsOfDifferentTypes1"] = { affix = "", "You can have any number of Companions of different types", statOrder = { 10685 }, level = 78, group = "UnlimitedDifferentCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [603573028] = { "You can have any number of Companions of different types" }, } }, ["UniqueCompanionDamageAgainstMarkedTargets1"] = { affix = "", "Companions deal (50-100)% increased damage to your Marked targets", statOrder = { 1724 }, level = 78, group = "CompanionDamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1067622524] = { "Companions deal (50-100)% increased damage to your Marked targets" }, } }, - ["UniqueRunicBindingOnSpellHit1"] = { affix = "", "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", statOrder = { 6849, 6849.1 }, level = 1, group = "GainRunicBindingOnSpellHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492740640] = { "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential" }, } }, + ["UniqueRunicBindingOnSpellHit1"] = { affix = "", "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", statOrder = { 6852, 6852.1 }, level = 1, group = "GainRunicBindingOnSpellHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3492740640] = { "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds", "Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential" }, } }, ["UniqueHitDamageBypassesEnergyShieldWhileBelowHalfEnergyShield1"] = { affix = "", "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", statOrder = { 1459 }, level = 1, group = "ESBypassWhileBelowHalfES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1311130924] = { "(15-25)% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half" }, } }, ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1136 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [668076381] = { "Heavy Stuns Enemies that are on Full Life" }, } }, - ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7655 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, - ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7691 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, + ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7661 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, + ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7697 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 50 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-80)% increased Desecrated Modifier magnitudes" }, } }, ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "100% reduced Presence Area of Effect" }, } }, ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1896 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1570501432] = { "Leech Life (-25-25)% slower" }, } }, ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1690 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1661347488] = { "Lose (2.5-5)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4741 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, - ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10031 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 6114 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 10196 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, + ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "25% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4742 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(20-30)% increased Cost Efficiency" }, } }, + ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10041 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-50)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 6115 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3040571529] = { "(15-25)% increased Deflection Rating" }, } }, + ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 10210 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-30)% increased Surrounded Area of Effect" }, } }, ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1537 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2357996603] = { "(-30-30)% reduced Totem Duration" }, } }, ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2925 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3910614548] = { "25% increased Attack and Cast Speed if you've summoned a Totem Recently" }, } }, ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2112395885] = { "(20-25)% increased amount of Life Leeched" }, } }, @@ -4880,7 +4880,7 @@ return { ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "25% increased Flammability Magnitude" }, } }, ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [472520716] = { "(6-10)% of Damage taken Recouped as Mana" }, } }, ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, + ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [1836676211] = { "(20-30)% increased Flask Charges gained" }, } }, ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-150) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(50-150) to Evasion Rating" }, } }, ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(1-60)% increased Fire Damage" }, } }, @@ -4888,144 +4888,144 @@ return { ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(1-60)% increased Lightning Damage" }, } }, ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(1-60)% increased Chaos Damage" }, } }, ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(1-60)% to Chaos Resistance" }, } }, - ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 7359 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, - ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 5337 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, + ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 7365 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2931872063] = { "(30-50)% chance to grant Volatility on Critical Hit" }, } }, + ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 5338 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "mutatedunique_vaal", "caster", "speed" }, tradeHashes = { [1174076861] = { "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently" }, } }, + ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(10-16)% increased Magnitude of Poison you inflict" }, } }, ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(5-10)% of Damage taken Recouped as Life" }, } }, ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(60-100) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(10-30)% increased Life Recovery from Flasks" }, } }, - ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, + ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5602 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [3585532255] = { "(10-30)% increased Charm Charges gained" }, } }, ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHashes = { [458438597] = { "10% of Damage is taken from Mana before Life" }, } }, ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(70-100) to maximum Life" }, } }, ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3299347043] = { "+(60-80) to maximum Life" }, } }, ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 991 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [1379411836] = { "+(17-23) to all Attributes" }, } }, - ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5843 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, - ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9698 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, + ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5844 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHashes = { [2856328513] = { "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently" }, } }, + ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(20-30)% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9706 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2535713562] = { "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill" }, } }, ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "mutatedunique_vaal", "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(15-25)% increased Flammability Magnitude" }, } }, ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(26-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5518 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, + ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5519 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [504210122] = { "50% chance to gain an additional random Charge when you gain a Charge" }, } }, ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2761 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [2839036860] = { "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9321 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, - ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6111 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 9328 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, } }, + ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6112 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3471443885] = { "(10-20)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies" }, } }, ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(-60-60)% to Lightning Resistance" }, } }, - ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7505 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, + ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7511 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [2002533190] = { "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded" }, } }, ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(60-75) to Armour" }, } }, ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3871 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3481736410] = { "(10-25)% increased Area of Effect if you've Killed Recently" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10027 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 6405 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10037 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(5-10)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 6407 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4236566306] = { "Meta Skills gain (-30-30)% reduced Energy" }, } }, ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHashes = { [1772247089] = { "(20-30)% increased chance to inflict Ailments" }, } }, - ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(13-17)% increased Mana Cost Efficiency" }, } }, ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 80 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3773763721] = { "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet" }, } }, ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 79 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3915618954] = { "This item gains bonuses from Socketed Soul Cores as though it was also Gloves" }, } }, ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 78 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [150590298] = { "This item gains bonuses from Socketed Soul Cores as though it was also Boots" }, } }, ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [1782086450] = { "(33-66)% faster start of Energy Shield Recharge" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4741 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4742 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(-30-30)% reduced Cost Efficiency" }, } }, ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(15-30)% increased Presence Area of Effect" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(8-15)% increased Life Cost Efficiency", statOrder = { 4706 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(8-15)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6485 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(8-15)% increased Life Cost Efficiency", statOrder = { 4707 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(8-15)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6487 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1586136369] = { "(100-150)% increased Evasion Rating while Sprinting" }, } }, ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [3759663284] = { "(16-24)% increased Projectile Speed" }, } }, - ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6855 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, + ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6858 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2103621252] = { "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds" }, } }, ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3293 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHashes = { [498214257] = { "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(90-120) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", statOrder = { 8835 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3302775221] = { "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" }, } }, - ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6805 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, + ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", statOrder = { 8840 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3302775221] = { "+(8-10) maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds" }, } }, + ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6808 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2710292678] = { "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage" }, } }, ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "25% increased Attack Speed" }, } }, ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(33-66)% of Armour also applies to Elemental Damage" }, } }, - ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6884 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, - ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9738 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, - ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5560 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, - ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 10024 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, - ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 10023 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, + ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6887 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "charm", "mutatedunique_vaal" }, tradeHashes = { [185580205] = { "Charms gain 0.5 charges per Second" }, } }, + ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9746 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1394184789] = { "Remove Bleeding when you use a Life Flask" }, } }, + ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5561 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3024873336] = { "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them" }, } }, + ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 10034 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3359797958] = { "(-30-30)% reduced Projectile Speed for Spell Skills" }, } }, + ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 10033 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4224832423] = { "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle" }, } }, ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 949 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [4283407333] = { "+(2-4) to Level of all Skills" }, } }, ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [3655769732] = { "+(5-10)% to Quality of all Skills" }, } }, ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+50 to Spirit" }, } }, ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (40-60) to (70-90) Physical Damage" }, } }, - ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10619 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(10-25)% increased Life Cost Efficiency", statOrder = { 4706 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-25)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10635 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2045949233] = { "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [4101445926] = { "(-30-30)% reduced Mana Cost Efficiency" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(10-25)% increased Life Cost Efficiency", statOrder = { 4707 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-25)% increased Life Cost Efficiency" }, } }, ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4710 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, + ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4711 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1753977518] = { "(5-10)% of Thorns Damage Leeched as Life" }, } }, ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [821241191] = { "(25-50)% increased Life Recovery from Flasks" }, } }, ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(220-320) to Armour" }, } }, - ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 7428 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, + ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 7434 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHashes = { [4009879772] = { "(15-30)% increased Life Flask Charges gained" }, } }, ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(100-150)% increased Armour and Energy Shield" }, } }, - ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2279 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1138742368] = { "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value" }, } }, - ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9559 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9567 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2189073790] = { "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "has_attack_mod", "mutatedunique_vaal", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-150)% increased Elemental Damage with Attacks" }, } }, ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(2-4)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10309 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, + ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10323 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3593401321] = { "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted" }, } }, ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(100-200) to Armour" }, } }, ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(100-200) to Evasion Rating" }, } }, ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(66-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(66-100) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 179 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4065505214] = { "(10-20)% increased effect of Socketed Soul Cores" }, } }, - ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4741 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, + ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4742 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [263495202] = { "(10-20)% increased Cost Efficiency" }, } }, ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-40)% increased Ignite Magnitude" }, } }, - ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, + ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5644 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-40)% increased Magnitude of Chill you inflict" }, } }, ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1073942215] = { "(10-20)% increased Freeze Duration on Enemies" }, } }, - ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, + ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-40)% increased Magnitude of Shock you inflict" }, } }, ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-20)% increased Curse Magnitudes" }, } }, - ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 6256 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, + ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 6258 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1370804479] = { "Elemental Ailments other than Freeze you inflict are Reflected to you" }, } }, ["UniqueMutatedVaalDamagePerCurse"] = { affix = "", "(10-15)% increased Damage per Curse on you", statOrder = { 1173 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1019020209] = { "(10-15)% increased Damage per Curse on you" }, } }, - ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9721 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, + ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9729 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [632761194] = { "Life Regeneration is applied to Energy Shield instead" }, } }, ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1440 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [988575597] = { "(10-15)% increased Energy Shield Recovery rate" }, } }, ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 894 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [2748665614] = { "(10-20)% increased maximum Mana" }, } }, ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 1046 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-6)% of Physical Attack Damage as Mana" }, } }, - ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 6408 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, - ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6844 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, - ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9853 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, - ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9700 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, + ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 6410 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [173471035] = { "Meta Skills gain 25% increased Energy while on Full Mana" }, } }, + ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6847 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1099200124] = { "Gain a Power Charge every Second if you haven't lost Power Charges Recently" }, } }, + ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9861 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(25-50)% reduced effect of Shock on you" }, } }, + ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9708 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [346374719] = { "Recover (2-5)% of maximum Mana when you consume a Power Charge" }, } }, ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-40)% increased effect of Arcane Surge on you" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(150-200) to Evasion Rating" }, } }, ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHashes = { [681332047] = { "(6-12)% increased Attack Speed" }, } }, - ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 10277 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, + ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 10291 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2639983772] = { "(10-20)% increased Totem Damage per Curse on you" }, } }, ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 896 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3981240776] = { "+(40-50) to Spirit" }, } }, ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "aura" }, tradeHashes = { [101878827] = { "(25-50)% increased Presence Area of Effect" }, } }, ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6516, 6516.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, + ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6518, 6518.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, } }, ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+1 to Level of all Fire Skills" }, } }, - ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7483 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, + ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7489 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [302024054] = { "Regenerate 3% of maximum Life per second while Ignited" }, } }, ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1422 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [3470876581] = { "+(100-150) to Evasion Rating while on Low Life" }, } }, ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1692 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [3942946753] = { "Regenerate (2-3)% of maximum Life per second while on Low Life" }, } }, ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2221570601] = { "(5-10)% Global chance to Blind Enemies on Hit" }, } }, - ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", statOrder = { 9490 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, } }, + ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned", statOrder = { 9498 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1864159246] = { "(30-60)% increased Magnitude of Poison you inflict on targets that are not Poisoned" }, } }, ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 964 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHashes = { [67169579] = { "+1 to Level of all Chaos Skills" }, } }, ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4680 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, - ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4681 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [679019978] = { "25% of Damage is taken from Mana before Life while not on Low Mana" }, } }, + ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2319832234] = { "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 2210 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3190121041] = { "(50-100)% of Volatility Physical Damage Taken as Cold Damage" }, } }, - ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7233 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6436 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7239 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6438 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2408276841] = { "1% increased Energy Shield Recharge Rate per 4 Strength" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(70-100) to maximum Energy Shield" }, } }, - ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 7420 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, - ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 9486 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, + ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 7426 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3561837752] = { "(20-40)% of Leech is Instant" }, } }, + ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 9494 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3841138199] = { "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently" }, } }, ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1067 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(40-60)% reduced Poison Duration on you" }, } }, - ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5517 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, - ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5811 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, + ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5518 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3537994888] = { "10% chance when you gain a Power Charge to gain an additional Power Charge" }, } }, + ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5812 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [23669307] = { "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently" }, } }, ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1881 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHashes = { [3872306017] = { "(-60-60)% reduced Power Charge Duration" }, } }, - ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4736 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, + ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4737 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [120969026] = { "(30-40)% increased Magnitude of Poison you inflict while Poisoned" }, } }, ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "mutatedunique_vaal", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-26)% to Chaos Resistance" }, } }, ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 958 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHashes = { [599749213] = { "+(2-4) to Level of all Fire Skills" }, } }, ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4282 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [533542952] = { "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%" }, } }, - ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5599 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, + ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5600 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2942439603] = { "Skills have (10-15)% chance to not remove Charges but still count as consuming them" }, } }, ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(60-80)% increased Chaos Damage" }, } }, - ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, + ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3552135623] = { "+(-5-5)% to amount of Damage Prevented by Deflection" }, } }, ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4520 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2879725899] = { "(-40-40)% reduced Attack Damage while Surrounded" }, } }, - ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6294 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, + ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 6296 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 840 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [3484657501] = { "+(260-400) to Armour" }, } }, ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-20)% Lightning Resistance" }, } }, - ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 10196 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, - ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7899, 7899.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, + ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 10210 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [909236563] = { "(20-60)% increased Surrounded Area of Effect" }, } }, + ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7905, 7905.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3128077011] = { "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels" }, } }, ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 882 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "armour" }, tradeHashes = { [2866361420] = { "(-30-30)% reduced Armour" }, } }, ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 884 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [2106365538] = { "(-30-30)% reduced Evasion Rating" }, } }, ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 885 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [3489782002] = { "+(-30-30) to maximum Energy Shield" }, } }, @@ -5034,38 +5034,38 @@ return { ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(-30-30)% reduced Lightning Damage" }, } }, ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHashes = { [736967255] = { "(-30-30)% reduced Chaos Damage" }, } }, ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "mutatedunique_vaal", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (-30-30)% reduced Damage" }, } }, - ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9981 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, - ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9987 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana" }, } }, - ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 9999 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, + ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9991 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [4245905059] = { "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life" }, } }, + ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Skills have 3% increased Spell Critical Hit Chance per 100 maximum Mana", statOrder = { 9997 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1367999357] = { "Non-Channelling Skills have 3% increased Spell Critical Hit Chance per 100 maximum Mana" }, } }, + ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 10009 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3843734793] = { "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana" }, } }, ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1550 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHashes = { [3423006863] = { "Arrows Pierce an additional Target" }, } }, - ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(10-20)% increased Life Cost Efficiency", statOrder = { 4706 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-20)% increased Life Cost Efficiency" }, } }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, - ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4709 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, - ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10706 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, - ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 6115 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, + ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(10-20)% increased Life Cost Efficiency", statOrder = { 4707 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [310945763] = { "(10-20)% increased Life Cost Efficiency" }, } }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "mutatedunique_vaal", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(10-15)% of Maximum Life Converted to Energy Shield" }, } }, + ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4710 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [782941180] = { "5% of Spell Damage Leeched as Life" }, } }, + ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10723 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHashes = { [4266776872] = { "Glancing Blows" }, } }, + ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 6116 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [1382805233] = { "(15-25)% increased Deflection Rating while moving" }, } }, ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 841 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion" }, tradeHashes = { [53045048] = { "+(70-100) to Evasion Rating" }, } }, - ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10674 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, - ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10464 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, - ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10465 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, - ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10463 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, - ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10467 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, - ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10466 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, - ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 10462 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, + ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10691 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [37406516] = { "(1-33)" }, } }, + ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 10478 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1633735772] = { "(10-20)% less maximum Life" }, } }, + ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 10479 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHashes = { [3045154261] = { "(10-20)% less maximum Mana" }, } }, + ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Armour, Evasion and Energy Shield", statOrder = { 10477 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal" }, tradeHashes = { [1803659985] = { "(10-20)% less Armour, Evasion and Energy Shield" }, } }, + ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 10481 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [537850431] = { "(10-20)% less Spirit" }, } }, + ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 10480 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHashes = { [2146799605] = { "(10-20)% less Movement Speed" }, } }, + ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 10476 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHashes = { [1274947822] = { "(10-20)% less Damage" }, } }, ["UniqueMutatedVaalCurseGemLevel"] = { affix = "", "+(3-5) to Level of all Curse Skills", statOrder = { 971 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHashes = { [805298720] = { "+(3-5) to Level of all Curse Skills" }, } }, ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-40)% of Damage as Extra Fire Damage" }, } }, ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-73) to (83-91) Physical Damage" }, } }, ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 944 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10027 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10037 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, - ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4703 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, - ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7649 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, + ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4704 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, + ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7655 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 852 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(150-300)% increased Evasion and Energy Shield" }, } }, ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(50-80) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHashes = { [1310194496] = { "(-30-30)% reduced Global Physical Damage" }, } }, ["UniqueMutatedVaalIncreasedLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 889 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [983749596] = { "(5-10)% increased maximum Life" }, } }, ["UniqueMutatedVaalAddedMaximumEnergyShield"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 843 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "mutatedunique_vaal", "energy_shield" }, tradeHashes = { [4052037485] = { "+(100-150) to maximum Energy Shield" }, } }, ["UniqueMutatedVaalDamageLifeRecoup"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["UniqueMutatedVaalChanceToBleed"] = { affix = "", "(30-50)% increased chance to inflict Bleeding", statOrder = { 4803 }, level = 1, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [242637938] = { "(30-50)% increased chance to inflict Bleeding" }, } }, + ["UniqueMutatedVaalChanceToBleed"] = { affix = "", "(30-50)% increased chance to inflict Bleeding", statOrder = { 4804 }, level = 1, group = "BleedChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [242637938] = { "(30-50)% increased chance to inflict Bleeding" }, } }, ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(40-60)% increased Armour", statOrder = { 846 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [1062208444] = { "(40-60)% increased Armour" }, } }, ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 848 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [124859000] = { "(40-60)% increased Evasion Rating" }, } }, ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 849 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [4015621042] = { "(40-60)% increased Energy Shield" }, } }, @@ -5084,7 +5084,7 @@ return { ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(40-60)% increased Armour", statOrder = { 882 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "armour" }, tradeHashes = { [2866361420] = { "(40-60)% increased Armour" }, } }, ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [2106365538] = { "(40-60)% increased Evasion Rating" }, } }, ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(40-60)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "upgraded_corruption_mod", "energy_shield" }, tradeHashes = { [2482852589] = { "(40-60)% increased maximum Energy Shield" }, } }, - ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(100-150)% increased Thorns damage", statOrder = { 10247 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(100-150)% increased Thorns damage" }, } }, + ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(100-150)% increased Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1315743832] = { "(100-150)% increased Thorns damage" }, } }, ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(31-47)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(31-47)% to Chaos Resistance" }, } }, ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(50-75)% to Fire Resistance" }, } }, ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(50-75)% to Cold Resistance" }, } }, @@ -5097,7 +5097,7 @@ return { ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (25-40)% Cold Resistance" }, } }, ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (25-40)% Lightning Resistance" }, } }, ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4407 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1776411443] = { "Break (25-40)% increased Armour" }, } }, - ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHashes = { [3175163625] = { "(15-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1559 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHashes = { [1515657623] = { "+2 to Maximum Endurance Charges" }, } }, ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+2 to Maximum Frenzy Charges", statOrder = { 1564 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHashes = { [4078695] = { "+2 to Maximum Frenzy Charges" }, } }, ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1569 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHashes = { [227523295] = { "+2 to Maximum Power Charges" }, } }, @@ -5105,7 +5105,7 @@ return { ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [2250533757] = { "(10-15)% increased Movement Speed" }, } }, ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [680068163] = { "(50-75)% increased Stun Threshold" }, } }, ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(50-75)% increased Freeze Threshold" }, } }, - ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(40-50)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(40-50)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(40-50)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(40-50)% reduced Slowing Potency of Debuffs on You" }, } }, ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [44972811] = { "(35-50)% increased Life Regeneration rate" }, } }, ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [789117908] = { "(35-50)% increased Mana Regeneration Rate" }, } }, ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 839 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHashes = { [2481353198] = { "(20-30)% increased Block chance" }, } }, @@ -5128,9 +5128,9 @@ return { ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(35-50) to Strength" }, } }, ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(35-50) to Dexterity" }, } }, ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(35-50) to Intelligence" }, } }, - ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6887 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6888 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6884 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6890 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6891 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, + ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6887 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-90)% increased Spell Damage" }, } }, ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-180)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-180)% increased Spell Damage" }, } }, @@ -5146,11 +5146,11 @@ return { ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 946 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHashes = { [210067635] = { "(12-16)% increased Attack Speed" }, } }, ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 945 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(15-25)% to Critical Damage Bonus" }, } }, ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (50-75)% increased Stun Buildup", statOrder = { 1052 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [791928121] = { "Causes (50-75)% increased Stun Buildup" }, } }, - ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7595 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7601 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [548198834] = { "(20-40)% increased Melee Strike Range with this weapon" }, } }, ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2264 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(25-50)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7808 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7700 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, - ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7793 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7814 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(25-50)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7706 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1725749947] = { "Grants (4-6) Rage on Hit" }, } }, + ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7799 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2763429652] = { "(25-50)% chance to Maim on Hit" }, } }, ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 2013 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2301191210] = { "(25-50)% chance to Blind Enemies on hit" }, } }, ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(60-90)% increased Elemental Damage with Attacks" }, } }, ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(120-150)% increased Elemental Damage with Attacks", statOrder = { 877 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "upgraded_corruption_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(120-150)% increased Elemental Damage with Attacks" }, } }, @@ -5158,7 +5158,7 @@ return { ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 988 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(45-65)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(45-65)% increased Ignite Magnitude" }, } }, ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(50-75)% increased Freeze Buildup" }, } }, - ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(25-50)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Magnitude of Shock you inflict" }, } }, + ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(25-50)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(25-50)% increased Magnitude of Shock you inflict" }, } }, ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 978 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-75)% increased Critical Hit Chance for Spells" }, } }, ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 1042 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3695891184] = { "Gain (40-55) Life per enemy killed" }, } }, ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 1047 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [1368271171] = { "Gain (20-30) Mana per enemy killed" }, } }, @@ -5169,7 +5169,7 @@ return { ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 919 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "upgraded_corruption_mod", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (15-25)% increased Cast Speed" }, } }, ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 917 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-45)% increased Critical Damage Bonus" }, } }, ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2321178454] = { "(50-75)% chance to Pierce an Enemy" }, } }, - ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-40)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-40)% chance to Chain an additional time from terrain" }, } }, + ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-40)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-40)% chance to Chain an additional time from terrain" }, } }, ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 992 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4080418644] = { "+(14-16) to Strength" }, } }, ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 993 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3261801346] = { "+(14-16) to Dexterity" }, } }, ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 994 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [328541901] = { "+(14-16) to Intelligence" }, } }, @@ -5179,32 +5179,32 @@ return { ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1024 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 1027 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(30-50)% of Armour also applies to Elemental Damage" }, } }, ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 1028 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (30-50)% of Evasion Rating" }, } }, - ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 6114 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, - ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4677 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, - ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8879 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "upgraded_corruption_mod", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, + ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 6115 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "upgraded_corruption_mod", "evasion" }, tradeHashes = { [3040571529] = { "(20-30)% increased Deflection Rating" }, } }, + ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4678 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3552135623] = { "Prevent +(2-3)% of Damage from Deflected Hits" }, } }, + ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8884 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "upgraded_corruption_mod", "life", "energy_shield" }, tradeHashes = { [2458962764] = { "(5-10)% of Maximum Life Converted to Energy Shield" }, } }, ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2335 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements" }, } }, ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 998 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [3143208761] = { "(5-10)% increased Attributes" }, } }, - ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6111 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6038 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6112 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3471443885] = { "(5-10)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6039 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2319832234] = { "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1450 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [3513180117] = { "(10-20)% increased Mana Recovery rate" }, } }, ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1445 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [3240073117] = { "(10-20)% increased Life Recovery rate" }, } }, - ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 7420 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, + ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 7426 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3561837752] = { "(10-20)% of Leech is Instant" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 2211 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHashes = { [1904530666] = { "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element" }, } }, ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4755 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, + ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4756 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(0.05-0.1)% to Thorns Critical Hit Chance" }, } }, ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4664 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour" }, } }, - ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 10248 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, + ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 10262 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [483561599] = { "(100-150)% increased Thorns damage if you've Blocked Recently" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2212 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHashes = { [4129825612] = { "(3-6)% of Physical Damage from Hits taken as Chaos Damage" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2197 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "(3-6)% of Physical Damage from Hits taken as Fire Damage" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2206 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "(3-6)% of Physical Damage from Hits taken as Cold Damage" }, } }, ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2201 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHashes = { [425242359] = { "(3-6)% of Physical damage from Hits taken as Lightning damage" }, } }, ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 1012 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "upgraded_corruption_mod", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+(1-3)% to Maximum Chaos Resistance" }, } }, - ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9759 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, - ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 9761 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, - ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9760 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, - ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4702 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, + ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9767 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1697191405] = { "(20-30)% increased Reservation Efficiency of Herald Skills" }, } }, + ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 9769 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1805633363] = { "(20-30)% increased Reservation Efficiency of Minion Skills" }, } }, + ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9768 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1672384027] = { "Meta Skills have (20-30)% increased Reservation Efficiency" }, } }, + ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4703 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2630708439] = { "(25-50)% chance to inflict Exposure on Hit" }, } }, ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 959 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(2-3) to Level of all Fire Spell Skills" }, } }, ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 961 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(2-3) to Level of all Cold Spell Skills" }, } }, ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 963 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", "no_physical_spell_mods", }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(2-3) to Level of all Lightning Spell Skills" }, } }, @@ -5220,7 +5220,7 @@ return { ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (35-50)% of Damage as Extra Physical Damage" }, } }, ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (35-50)% of Damage as Extra Chaos Damage" }, } }, ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 975 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [3655769732] = { "+10% to Quality of all Skills" }, } }, - ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 10240 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, + ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 10254 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +2 to Limit of Minions summoned" }, } }, ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1137 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3675300253] = { "Strikes deal Splash Damage" }, } }, ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 999 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [734614379] = { "(5-10)% increased Strength" }, } }, ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHashes = { [4139681126] = { "(5-10)% increased Dexterity" }, } }, @@ -5229,55 +5229,55 @@ return { ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHashes = { [821241191] = { "(15-30)% increased Life Recovery from Flasks" }, } }, ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHashes = { [2222186378] = { "(15-30)% increased Mana Recovery from Flasks" }, } }, ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 928 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [2541588185] = { "(15-30)% increased Duration" }, } }, - ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, + ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5602 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "charm", "upgraded_corruption_mod" }, tradeHashes = { [3585532255] = { "(15-30)% increased Charm Charges gained" }, } }, ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(1-2) to Level of all Spell Skills" }, } }, ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 950 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHashes = { [124131830] = { "+(3-4) to Level of all Spell Skills" }, } }, - ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, - ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, - ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9603 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, - ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, - ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4925 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, + ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(40-60)% increased Magnitude of Bleeding you inflict" }, } }, + ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHashes = { [2487305362] = { "(40-60)% increased Magnitude of Poison you inflict" }, } }, + ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9611 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1181501418] = { "+(5-10) to Maximum Rage" }, } }, + ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [924253255] = { "(10-20)% increased Slowing Potency of Debuffs on You" }, } }, + ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4926 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1585769763] = { "(30-50)% increased Blind Effect" }, } }, ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 957 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHashes = { [2901213448] = { "+(1-2) to Level of all Elemental Skills" }, } }, - ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5899 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, + ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5900 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [4273162558] = { "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition" }, } }, ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-30)% increased Ignite Magnitude" }, } }, ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1614 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1073942215] = { "(20-30)% increased Freeze Duration on Enemies" }, } }, - ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, + ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(20-30)% increased Magnitude of Shock you inflict" }, } }, ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster_critical", "upgraded_corruption_mod", "caster", "critical" }, tradeHashes = { [274716455] = { "(60-90)% increased Critical Spell Damage Bonus" }, } }, - ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10027 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4726 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, + ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10037 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4727 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHashes = { [999511066] = { "(20-40)% increased Minion Duration" }, } }, ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "aura" }, tradeHashes = { [101878827] = { "(30-60)% increased Presence Area of Effect" }, } }, ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHashes = { [3759663284] = { "(20-40)% increased Projectile Speed" }, } }, ["CorruptionUpgradeAdditionalChainChance"] = { affix = "", "Projectiles have (20-40)% additional chance to Chain", statOrder = { 4643 }, level = 1, group = "AdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3919642001] = { "Projectiles have (20-40)% additional chance to Chain" }, } }, - ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 7256 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, + ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 7262 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHashes = { [1269971728] = { "(20-30)% reduced Magnitude of Ignite on you" }, } }, ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(20-30)% reduced Chill Duration on you" }, } }, - ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9853 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, - ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7951 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, - ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10028 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, - ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4734 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, + ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9861 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [3801067695] = { "(20-30)% reduced effect of Shock on you" }, } }, + ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7957 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1510714129] = { "Attacks have (30-50)% chance to Maim on Hit" }, } }, + ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10038 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHashes = { [3002506763] = { "(30-50)% chance to Hinder Enemies on Hit with Spells" }, } }, + ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4735 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2703 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, - ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9888 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, - ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6161 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, tags = { "ring", "genesis_tree_caster", "genesis_tree_minion", }, modTags = { }, tradeHashes = { [129891052] = { "Can roll Ring Modifiers" }, } }, - ["ItemCanHaveBaseAndCatalystQuality"] = { affix = "", "Catalysts can be applied to this item", statOrder = { 7386 }, level = 1, group = "ItemCanHaveBaseAndCatalystQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [254952842] = { "Catalysts can be applied to this item" }, } }, + ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9896 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, + ["ItemCanAlsoRollRingMods"] = { affix = "", "Can roll Ring Modifiers", statOrder = { 6162 }, level = 1, group = "ItemCanAlsoRollRingMods", weightKey = { }, weightVal = { }, tags = { "ring", "genesis_tree_caster", "genesis_tree_minion", }, modTags = { }, tradeHashes = { [129891052] = { "Can roll Ring Modifiers" }, } }, + ["ItemCanHaveBaseAndCatalystQuality"] = { affix = "", "Catalysts can be applied to this item", statOrder = { 7392 }, level = 1, group = "ItemCanHaveBaseAndCatalystQuality", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [254952842] = { "Catalysts can be applied to this item" }, } }, ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueAddedPhysicalDamage4"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsUniqueGiantsBlood1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10709 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, + ["HandWrapsUniqueGiantsBlood1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10726 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3959337123] = { "Hollow Palm Technique" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "5% reduced Cast Speed" }, } }, - ["HandWrapsUniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Immobilisation buildup", statOrder = { 7188 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(20-30)% increased Immobilisation buildup" }, } }, + ["HandWrapsUniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Immobilisation buildup", statOrder = { 7194 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(20-30)% increased Immobilisation buildup" }, } }, ["HandWrapsUniqueStrength47"] = { affix = "", "(15-20)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(15-20)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueShareChargesWithAllies1"] = { affix = "", "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", statOrder = { 5537, 5538, 5541 }, level = 1, group = "GrantChargesToAlliesOnHitChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3294345676] = { "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit" }, [991168463] = { "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, [3174788165] = { "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, } }, + ["HandWrapsUniqueShareChargesWithAllies1"] = { affix = "", "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit", "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit", statOrder = { 5538, 5539, 5542 }, level = 1, group = "GrantChargesToAlliesOnHitChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [3294345676] = { "(5-10)% chance to grant a Power Charge to Allies in your Presence on Hit" }, [991168463] = { "(5-10)% chance to grant a Frenzy Charge to Allies in your Presence on Hit" }, [3174788165] = { "(5-10)% chance to grant a Endurance Charge to Allies in your Presence on Hit" }, } }, ["HandWrapsUniqueIncreasedSkillSpeed1"] = { affix = "", "(13-20)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(13-20)% increased Attack Speed" }, } }, ["HandWrapsUniqueMaximumManaIncrease3"] = { affix = "", "Cannot Leech Mana", statOrder = { 2350 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1759630226] = { "Cannot Leech Mana" }, } }, ["HandWrapsUniqueIncreasedLife9"] = { affix = "", "(7-9)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(7-9)% less damage taken while on Low Life" }, } }, ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueCriticalMultiplier2"] = { affix = "", "+(1.5-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.5-2)% to Critical Hit Chance" }, } }, - ["HandWrapsUniqueImpaleOnCriticalHit1"] = { affix = "", "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", statOrder = { 6088 }, level = 1, group = "ThornsOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3760099479] = { "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" }, } }, - ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { affix = "", "(25-35)% increased Thorns Critical Damage Bonus", statOrder = { 4756 }, level = 1, group = "ThornsCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1094302125] = { "(25-35)% increased Thorns Critical Damage Bonus" }, } }, - ["HandWrapsUniqueAttackerTakesDamage8"] = { affix = "", "(24-35) to (36-57) Cold Thorns damage", statOrder = { 10251 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "(24-35) to (36-57) Cold Thorns damage" }, } }, + ["HandWrapsUniqueImpaleOnCriticalHit1"] = { affix = "", "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks", statOrder = { 6089 }, level = 1, group = "ThornsOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3760099479] = { "Deal your Thorns damage to enemies you Critically Hit with Melee Attacks" }, } }, + ["HandWrapsUniqueCriticalsCannotConsumeImpale1"] = { affix = "", "(25-35)% increased Thorns Critical Damage Bonus", statOrder = { 4757 }, level = 1, group = "ThornsCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1094302125] = { "(25-35)% increased Thorns Critical Damage Bonus" }, } }, + ["HandWrapsUniqueAttackerTakesDamage8"] = { affix = "", "(24-35) to (36-57) Cold Thorns damage", statOrder = { 10265 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "(24-35) to (36-57) Cold Thorns damage" }, } }, ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIncreasedLife58"] = { affix = "", "(12-15)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(12-15)% less damage taken while on Low Life" }, } }, ["HandWrapsUniqueLifeLeech2"] = { affix = "", "Leech (13-17)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1038, 1896 }, level = 1, group = "LifeLeechAndRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (13-17)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsUniqueVaalPact1"] = { affix = "", "Eternal Youth", statOrder = { 10702 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, + ["HandWrapsUniqueVaalPact1"] = { affix = "", "Eternal Youth", statOrder = { 10719 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [1308467455] = { "Eternal Youth" }, } }, ["HandWrapsUniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2752 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [281201999] = { "Knockback direction is reversed" }, } }, ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueStrength41"] = { affix = "", "(18-24)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(18-24)% increased Area of Effect for Attacks" }, } }, @@ -5293,25 +5293,25 @@ return { ["HandWrapsUniqueChillEffect1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2614 }, level = 1, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3833160777] = { "All Damage from Hits Contributes to Chill Magnitude" }, } }, ["HandWrapsUniqueColdResist24"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(15-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(15-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueFullManaThreshold1"] = { affix = "", "You are considered on Low Mana while at 50% of maximum Mana or below instead", statOrder = { 7939 }, level = 1, group = "HandWrapsLowManaThreshold", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439856646] = { "You are considered on Low Mana while at 50% of maximum Mana or below instead" }, } }, + ["HandWrapsUniqueFullManaThreshold1"] = { affix = "", "You are considered on Low Mana while at 50% of maximum Mana or below instead", statOrder = { 7945 }, level = 1, group = "HandWrapsLowManaThreshold", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1439856646] = { "You are considered on Low Mana while at 50% of maximum Mana or below instead" }, } }, ["HandWrapsUniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "25% more Attack damage while on Low Mana" }, } }, ["HandWrapsUniqueIncreasedAccuracy4"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(10-20)% chance to Blind Enemies on Hit with Attacks" }, } }, ["HandWrapsUniqueIntelligence19"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueChaosResist6"] = { affix = "", "+1% to Maximum Chaos Resistance", "+(7-17)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(7-17)% to Chaos Resistance" }, } }, - ["HandWrapsUniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5643 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, - ["HandWrapsUniquePoisonStackCount1"] = { affix = "", "Targets can be affected by two of your Chills at the same time", statOrder = { 5242 }, level = 1, group = "HandWrapsApplyAdditionalChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1104235854] = { "Targets can be affected by two of your Chills at the same time" }, } }, + ["HandWrapsUniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5644 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [828179689] = { "(20-30)% increased Magnitude of Chill you inflict" }, } }, + ["HandWrapsUniquePoisonStackCount1"] = { affix = "", "Targets can be affected by two of your Chills at the same time", statOrder = { 5243 }, level = 1, group = "HandWrapsApplyAdditionalChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1104235854] = { "Targets can be affected by two of your Chills at the same time" }, } }, ["HandWrapsUniqueLifeRegeneration12"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (0.5-1.5)% of maximum Life per second" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-30)% increased Critical Damage Bonus" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed3"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueDexterity19"] = { affix = "", "+(45-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(45-60)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueDexterity19"] = { affix = "", "+(45-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(45-60)% Surpassing chance to fire an additional Projectile" }, } }, ["HandWrapsUniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Critical Hit chance for Attacks is (25-40)%", statOrder = { 4502 }, level = 1, group = "AttackCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3998836319] = { "Critical Hit chance for Attacks is (25-40)%" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionRatingPercent36"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed16"] = { affix = "", "(10-20)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-20)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueDexterity45"] = { affix = "", "+(25-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsUniqueAddedChaosDamage5"] = { affix = "", "Attacks Gain (17-23)% of Damage as extra Chaos Damage", statOrder = { 9235 }, level = 1, group = "AttackDamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1288439911] = { "Attacks Gain (17-23)% of Damage as extra Chaos Damage" }, } }, - ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Overwhelming when you Cull a target", statOrder = { 6928 }, level = 1, group = "GainFearOverwhelming", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373147908] = { "Gain 1 Fear Overwhelming when you Cull a target" }, } }, + ["HandWrapsUniqueDexterity45"] = { affix = "", "+(25-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-35)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueAddedChaosDamage5"] = { affix = "", "Attacks Gain (17-23)% of Damage as extra Chaos Damage", statOrder = { 9241 }, level = 1, group = "AttackDamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, tradeHashes = { [1288439911] = { "Attacks Gain (17-23)% of Damage as extra Chaos Damage" }, } }, + ["HandWrapsUniqueGainFearIncarnateOnCulling1"] = { affix = "", "Gain 1 Fear Overwhelming when you Cull a target", statOrder = { 6931 }, level = 1, group = "GainFearOverwhelming", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1373147908] = { "Gain 1 Fear Overwhelming when you Cull a target" }, } }, ["HandWrapsUniqueElementalDamageConvertToFire1"] = { affix = "", "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance", statOrder = { 2639, 2639.1 }, level = 1, group = "PhysicalDamageCanFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3268818374] = { "Physical damage from Hits Contributes to Flammability and", "Ignite Magnitudes, Freeze Buildup, and Shock Chance" }, } }, ["HandWrapsUniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (6-15)% of Fire damage as Extra Physical damage", statOrder = { 1686 }, level = 1, group = "FireDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [2848088738] = { "Gain (6-15)% of Fire damage as Extra Physical damage" }, } }, ["HandWrapsUniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (6-15)% of Cold damage as Extra Physical damage", statOrder = { 1682 }, level = 1, group = "ColdDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [1555320175] = { "Gain (6-15)% of Cold damage as Extra Physical damage" }, } }, @@ -5319,7 +5319,7 @@ return { ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueFireResist2"] = { affix = "", "+(2-3)% to Maximum Fire Resistance", "+(15-25)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [3372524247] = { "+(15-25)% to Fire Resistance" }, } }, ["HandWrapsUniqueColdResist1"] = { affix = "", "(30-50)% increased Chill Duration on you", statOrder = { 1064 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(30-50)% increased Chill Duration on you" }, } }, - ["HandWrapsUniqueDoubleIgniteChance1"] = { affix = "", "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", statOrder = { 7262 }, level = 1, group = "IgnitedChilledEnemyResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [134900849] = { "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances" }, } }, + ["HandWrapsUniqueDoubleIgniteChance1"] = { affix = "", "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances", statOrder = { 7268 }, level = 1, group = "IgnitedChilledEnemyResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHashes = { [134900849] = { "Enemies Ignited or Chilled by you have -(25-15)% to Elemental Resistances" }, } }, ["HandWrapsUniqueFireDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Fire Damage", statOrder = { 865 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (4-7)% of Damage as Extra Fire Damage" }, } }, ["HandWrapsUniqueColdDamagePercent2"] = { affix = "", "Attacks Gain (4-7)% of Damage as Extra Cold Damage", statOrder = { 867 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (4-7)% of Damage as Extra Cold Damage" }, } }, ["HandWrapsUniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(15-25)% reduced Attack Speed" }, } }, @@ -5327,83 +5327,83 @@ return { ["HandWrapsUniqueIntelligence18"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, ["HandWrapsUniqueLocalIncreasedEnergyShield10"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueDexterity10"] = { affix = "", "+(20-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(20-40)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueDexterity10"] = { affix = "", "+(20-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(20-40)% Surpassing chance to fire an additional Projectile" }, } }, ["HandWrapsUniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1781 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(10-15)% reduced Attack and Cast Speed" }, } }, ["HandWrapsUniqueLightningDamageCanElectrocute1"] = { affix = "", "All damage with Attacks Contributes to Electrocution Buildup", statOrder = { 4267 }, level = 1, group = "AllAttackDamageElectrocutes", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2132256285] = { "All damage with Attacks Contributes to Electrocution Buildup" }, } }, ["HandWrapsUniqueIncreasedCastSpeed7"] = { affix = "", "(9-15)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(9-15)% increased Attack Speed" }, } }, ["HandWrapsUniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(60-80) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(60-80) to maximum Runic Ward" }, } }, ["HandWrapsUniqueIncreasedLife15"] = { affix = "", "+(130-160) to maximum Life", statOrder = { 887 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(130-160) to maximum Life" }, } }, - ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", statOrder = { 9783 }, level = 1, group = "SacrificeLifeToGainWardOnAttack", weightKey = { }, weightVal = { }, modTags = { "runic_ward", "attack" }, tradeHashes = { [2238664497] = { "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack" }, } }, + ["HandWrapsUniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack", statOrder = { 9791 }, level = 1, group = "SacrificeLifeToGainWardOnAttack", weightKey = { }, weightVal = { }, modTags = { "runic_ward", "attack" }, tradeHashes = { [2238664497] = { "Sacrifice (10-30)% of maximum Life to gain half that much Runic Ward when you Attack" }, } }, ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIntelligence10"] = { affix = "", "15% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "15% increased Cooldown Recovery Rate" }, } }, ["HandWrapsUniqueColdResist30"] = { affix = "", "+2% to Maximum Cold Resistance", "+(20-30)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, ["HandWrapsUniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2021 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1052246654] = { "You have no Mana Regeneration" }, } }, - ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", statOrder = { 7983 }, level = 1, group = "IncreasedManaLeechIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [3844601656] = { "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently", statOrder = { 7989 }, level = 1, group = "IncreasedManaLeechIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHashes = { [3844601656] = { "(100-150)% increased amount of Mana Leeched if you've dealt a Critical Hit Recently" }, } }, ["HandWrapsUniqueCriticalStrikeChance14"] = { affix = "", "(40-60)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(40-60)% increased Critical Hit Chance" }, } }, ["HandWrapsUniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(15-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-25)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIncreasedMana48"] = { affix = "", "(15-25)% more Attack damage while on Low Mana", statOrder = { 893 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2091975590] = { "(15-25)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsUniqueItemFoundRarityIncrease21"] = { affix = "", "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { affix = "", "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", statOrder = { 6276 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" }, } }, + ["HandWrapsUniqueItemFoundRarityIncrease21"] = { affix = "", "(15-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsUniqueElementalPenetrationBelowZero1"] = { affix = "", "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance", statOrder = { 6278 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [1740349133] = { "Elemental Damage from your Hits is Resisted by the enemy's lowest Elemental Resistance" }, } }, ["HandWrapsUniqueElementalPenetration1"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1013 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-25)% to all Elemental Resistances" }, } }, ["HandWrapsUniqueIncreasedLife10"] = { affix = "", "(6-7)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-7)% less damage taken while on Low Life" }, } }, ["HandWrapsUniqueAddedPhysicalDamage3"] = { affix = "", "Attacks Gain (10-15)% of Damage as Extra Physical Damage", statOrder = { 862 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (10-15)% of Damage as Extra Physical Damage" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed2"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 6135 }, level = 1, group = "DexteritySatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2233892982] = { "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, + ["HandWrapsUniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 6136 }, level = 1, group = "DexteritySatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2233892982] = { "Dexterity can satisfy other Attribute Requirements of Melee Weapons and Melee Skills" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueItemFoundRarityIncrease1"] = { affix = "", "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6912 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(50-80)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsUniqueItemFoundRarityIncrease1"] = { affix = "", "(50-80)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6915 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(50-80)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, ["HandWrapsUniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Lose 2% of maximum Life on Kill" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, ["HandWrapsUniqueManaGainedFromEnemyDeath5"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, ["HandWrapsUniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1775 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, - ["HandWrapsUniqueIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", statOrder = { 5907 }, level = 1, group = "CullThresholdIfCulledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1008466206] = { "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" }, } }, + ["HandWrapsUniqueIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently", statOrder = { 5908 }, level = 1, group = "CullThresholdIfCulledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1008466206] = { "(30-40)% increased Culling Strike Threshold if you've dealt a Culling Strike Recently" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueStrength23"] = { affix = "", "(10-14)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-14)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsUniqueDexterity24"] = { affix = "", "+(25-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5508 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsUniqueDexterity24"] = { affix = "", "+(25-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5509 }, level = 1, group = "AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1347539079] = { "+(25-50)% Surpassing chance to fire an additional Projectile" }, } }, ["HandWrapsUniqueLightningResist23"] = { affix = "", "Gain (15-25)% of Lightning damage as Extra Cold damage", statOrder = { 1680 }, level = 1, group = "LightningDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHashes = { [2236478400] = { "Gain (15-25)% of Lightning damage as Extra Cold damage" }, } }, ["HandWrapsUniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed11"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueDecimatingStrike1"] = { affix = "", "Deal Double Damage to Enemies that are on Full Life", statOrder = { 6081 }, level = 1, group = "DoubleDamageToFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [231543702] = { "Deal Double Damage to Enemies that are on Full Life" }, } }, + ["HandWrapsUniqueDecimatingStrike1"] = { affix = "", "Deal Double Damage to Enemies that are on Full Life", statOrder = { 6082 }, level = 1, group = "DoubleDamageToFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [231543702] = { "Deal Double Damage to Enemies that are on Full Life" }, } }, ["HandWrapsUniqueIntelligence22"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-25)% increased Cooldown Recovery Rate" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed4"] = { affix = "", "10% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "10% chance to gain Onslaught for 4 seconds on Hit" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Recover 3% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, ["HandWrapsUniqueManaGainedFromEnemyDeath4"] = { affix = "", "Recover 3% of maximum Mana on Kill", statOrder = { 1513 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6090 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, - ["HandWrapsUniqueColdResist25"] = { affix = "", "(30-50)% chance to gain Volatility on Kill", statOrder = { 10477 }, level = 1, group = "VolatilityOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3749502527] = { "(30-50)% chance to gain Volatility on Kill" }, } }, + ["HandWrapsUniqueEnemiesKilledCountAsYours1"] = { affix = "", "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 943, 943.1, 6091 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602191394] = { "20% increased Rarity of Items found", "Your other Modifiers to Rarity of Items found do not apply" }, [1576794517] = { "Enemies in your Presence killed by anyone count as being killed by you instead" }, } }, + ["HandWrapsUniqueColdResist25"] = { affix = "", "(30-50)% chance to gain Volatility on Kill", statOrder = { 10491 }, level = 1, group = "VolatilityOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3749502527] = { "(30-50)% chance to gain Volatility on Kill" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(10-15)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(10-15)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueChillImmunityWhenChilled1"] = { affix = "", "(15-20)% more damage taken while Cursed", statOrder = { 6953 }, level = 1, group = "HandWrapsDamageTakenWhileCursed", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [276406225] = { "(15-20)% more damage taken while Cursed" }, } }, + ["HandWrapsUniqueChillImmunityWhenChilled1"] = { affix = "", "(15-20)% more damage taken while Cursed", statOrder = { 6957 }, level = 1, group = "HandWrapsDamageTakenWhileCursed", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [276406225] = { "(15-20)% more damage taken while Cursed" }, } }, ["HandWrapsUniqueFreezeImmunityWhenFrozen1"] = { affix = "", "Enemies you Curse take (20-30)% increased Damage", statOrder = { 3433 }, level = 1, group = "CursedEnemiesDamageTaken", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHashes = { [1984310483] = { "Enemies you Curse take (20-30)% increased Damage" }, } }, ["HandWrapsUniqueIgniteImmunityWhenIgnited1"] = { affix = "", "(4-6)% reduced Movement Speed while Cursed", statOrder = { 2401 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3988943320] = { "(4-6)% reduced Movement Speed while Cursed" }, } }, - ["HandWrapsUniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5938 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, + ["HandWrapsUniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5939 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4275855121] = { "Curses you inflict are reflected back to you" }, } }, ["HandWrapsUniqueIntelligence12"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(10-15)% increased Cooldown Recovery Rate" }, } }, ["HandWrapsUniqueFireResist7"] = { affix = "", "+1% to Maximum Fire Resistance", "+(5-15)% to Fire Resistance", statOrder = { 1009, 1014 }, level = 1, group = "FireResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(5-15)% to Fire Resistance" }, } }, ["HandWrapsUniqueColdResist9"] = { affix = "", "Gain (10-20)% of Fire damage as Extra Lightning damage", statOrder = { 1685 }, level = 1, group = "FireDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [387148449] = { "Gain (10-20)% of Fire damage as Extra Lightning damage" }, } }, - ["HandWrapsUniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9271 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, + ["HandWrapsUniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 9277 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, ["HandWrapsUniqueLocalIncreasedEnergyShield11"] = { affix = "", "Has +1 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 948 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3639275092] = { "100% increased Attribute Requirements" }, } }, - ["HandWrapsUniqueSlowEffect1"] = { affix = "", "(25-50)% increased Immobilisation buildup", statOrder = { 7188 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(25-50)% increased Immobilisation buildup" }, } }, + ["HandWrapsUniqueSlowEffect1"] = { affix = "", "(25-50)% increased Immobilisation buildup", statOrder = { 7194 }, level = 1, group = "ImmobilisationBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [330530785] = { "(25-50)% increased Immobilisation buildup" }, } }, ["HandWrapsUniqueCannotImmobilise1"] = { affix = "", "Your Hits cannot Stun enemies", statOrder = { 1611 }, level = 1, group = "CannotStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [373932729] = { "Your Hits cannot Stun enemies" }, } }, ["HandWrapsUniqueLifeRegeneration23"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1.5-3)% of maximum Life per second" }, } }, ["HandWrapsUniqueLightningResist28"] = { affix = "", "+(2-3)% to Maximum Lightning Resistance", "+(15-25)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [1671376347] = { "+(15-25)% to Lightning Resistance" }, } }, ["HandWrapsUniqueIncreasedLife54"] = { affix = "", "(10-12)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(10-12)% less damage taken while on Low Life" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed1"] = { affix = "", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueAllDamageCanPoison1"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", statOrder = { 5816 }, level = 1, group = "PoisonMagnitudeFromCriticalHits", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "critical", "ailment" }, tradeHashes = { [1692314789] = { "(30-40)% increased Magnitude of Poison you inflict with Critical Hits" }, } }, - ["HandWrapsUniqueBaseChanceToPoison2"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9496 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["HandWrapsUniqueAllDamageCanPoison1"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict with Critical Hits", statOrder = { 5817 }, level = 1, group = "PoisonMagnitudeFromCriticalHits", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "critical", "ailment" }, tradeHashes = { [1692314789] = { "(30-40)% increased Magnitude of Poison you inflict with Critical Hits" }, } }, + ["HandWrapsUniqueBaseChanceToPoison2"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 9504 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "+(30-50) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(30-50) to maximum Runic Ward" }, } }, ["HandWrapsUniqueIncreasedLife6"] = { affix = "", "(6-8)% more damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(6-8)% more damage taken while on Low Life" }, } }, - ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { affix = "", "Recover 1% of maximum Runic Ward on Kill", statOrder = { 10510 }, level = 1, group = "WardPercentOnKill", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3334796009] = { "Recover 1% of maximum Runic Ward on Kill" }, } }, - ["HandWrapsUniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9355 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, + ["HandWrapsUniqueLifeFlaskNoRecovery1"] = { affix = "", "Recover 1% of maximum Runic Ward on Kill", statOrder = { 10525 }, level = 1, group = "WardPercentOnKill", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3334796009] = { "Recover 1% of maximum Runic Ward on Kill" }, } }, + ["HandWrapsUniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 9362 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259470957] = { "On-Kill Effects happen twice" }, } }, ["HandWrapsUniqueCriticalMultiplier3"] = { affix = "", "+(1-2)% to Critical Hit Chance", statOrder = { 1355 }, level = 1, group = "BaseCriticalHitChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1-2)% to Critical Hit Chance" }, } }, - ["HandWrapsUniqueAddedLightningDamage3"] = { affix = "", "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", statOrder = { 9259 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-21)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsUniqueAddedLightningDamage3"] = { affix = "", "Attacks Gain (17-21)% of Damage as Extra Lightning Damage", statOrder = { 9265 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-21)% of Damage as Extra Lightning Damage" }, } }, ["HandWrapsUniqueLightningResist26"] = { affix = "", "+2% to Maximum Lightning Resistance", "+(25-35)% to Lightning Resistance", statOrder = { 1011, 1023 }, level = 1, group = "LightningResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(25-35)% to Lightning Resistance" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIntelligence34"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(20-30)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Mana Leech effects also Recover Energy Shield", statOrder = { 7984 }, level = 1, group = "ManaLeechAlsoRecoversEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4051067787] = { "Mana Leech effects also Recover Energy Shield" }, } }, + ["HandWrapsUniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Mana Leech effects also Recover Energy Shield", statOrder = { 7990 }, level = 1, group = "ManaLeechAlsoRecoversEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4051067787] = { "Mana Leech effects also Recover Energy Shield" }, } }, ["HandWrapsUniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed13"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, ["HandWrapsUniqueLightningResist29"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", "+(10-25)% to Cold Resistance", statOrder = { 1010, 1020 }, level = 1, group = "ColdResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(10-25)% to Cold Resistance" }, [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, @@ -5411,42 +5411,42 @@ return { ["HandWrapsBaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3255 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3613173483] = { "+(0.8-1.5)% to Unarmed Melee Attack Critical Hit Chance" }, } }, ["HandWrapsUniqueIncreasedSkillSpeed5"] = { affix = "", "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4566 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "(15-25)% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, ["HandWrapsUniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5902 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, - ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill", statOrder = { 5398, 5398.1, 5398.2 }, level = 1, group = "MartialArtistStoneSkinChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13746168] = { "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill" }, } }, + ["HandWrapsUniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5903 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4238331303] = { "Immobilise enemies at 50% buildup instead of 100%" }, } }, + ["HandWrapsUniqueImmobiliseIncreasedDamageTaken1"] = { affix = "", "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill", statOrder = { 5399, 5399.1, 5399.2 }, level = 1, group = "MartialArtistStoneSkinChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [13746168] = { "(25-35)% Surpassing chance per enemy Power to gain", "Mountain's Teachings on Immobilising an enemy if", "you have the Way of the Mountain Ascendancy Passive Skill" }, } }, ["HandWrapsUniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "+(70-100) to maximum Runic Ward", statOrder = { 845 }, level = 1, group = "LocalRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [774059442] = { "+(70-100) to maximum Runic Ward" }, } }, - ["HandWrapsUniqueRageOnAnyHit1"] = { affix = "", "Gain (6-8) Rage on Hit", statOrder = { 4697 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (6-8) Rage on Hit" }, } }, - ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { affix = "", "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", statOrder = { 10511 }, level = 1, group = "RecoverPercentWardOnReachingMaximumRage", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [914467738] = { "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage" }, } }, - ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7928 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, - ["HandWrapsUniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9603 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, + ["HandWrapsUniqueRageOnAnyHit1"] = { affix = "", "Gain (6-8) Rage on Hit", statOrder = { 4698 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2258007247] = { "Gain (6-8) Rage on Hit" }, } }, + ["HandWrapsUniqueGainChargesOnMaximumRage1"] = { affix = "", "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage", statOrder = { 10526 }, level = 1, group = "RecoverPercentWardOnReachingMaximumRage", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [914467738] = { "Recover (3-5)% of maximum Runic Ward on reaching Maximum Rage" }, } }, + ["HandWrapsUniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7934 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3851480592] = { "Lose all Rage on reaching Maximum Rage" }, } }, + ["HandWrapsUniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9611 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(-10-10) to Maximum Rage" }, } }, ["HandWrapsUniqueDexterity31"] = { affix = "", "(11-13)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(11-13)% increased Dexterity" }, } }, ["HandWrapsUniqueIntelligence31"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(5-10)% increased Intelligence" }, } }, - ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", statOrder = { 8956 }, level = 1, group = "AddedColdDamagePer20Dexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1088339210] = { "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity" }, } }, + ["HandWrapsUniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity", statOrder = { 8961 }, level = 1, group = "AddedColdDamagePer20Dexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1088339210] = { "Adds 6 to 8 Cold Damage to Attacks per 20 Dexterity" }, } }, ["HandWrapsUniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2323 }, level = 1, group = "AreaOfEffectPer20Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1307972622] = { "1% increased Area of Effect per 20 Intelligence" }, } }, ["HandWrapsUniqueChaosResist35"] = { affix = "", "+2% to Maximum Chaos Resistance", "+(17-23)% to Chaos Resistance", statOrder = { 1012, 1024 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { }, weightVal = { }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(17-23)% to Chaos Resistance" }, } }, - ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Mana per Second", statOrder = { 7972 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 5% of maximum Mana per Second" }, } }, + ["HandWrapsUniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Mana per Second", statOrder = { 7978 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2936435999] = { "Lose 5% of maximum Mana per Second" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(15-20)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-20)% more Global Evasion Rating and Energy Shield" }, } }, ["HandWrapsUniqueIncreasedAttackSpeed9"] = { affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 986 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3264616904] = { "(10-15)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsUniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4739 }, level = 1, group = "RageRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, - ["HandWrapsUniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9206 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, + ["HandWrapsUniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4740 }, level = 1, group = "RageRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2853314994] = { "Regenerate 5 Rage per second" }, } }, + ["HandWrapsUniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 9211 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4163076972] = { "No Inherent loss of Rage" }, } }, ["HandWrapsDemigodIncreasedSkillSpeed1"] = { affix = "", "15% increased Attack Speed if you've dealt a Critical Hit Recently", statOrder = { 4566 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1585344030] = { "15% increased Attack Speed if you've dealt a Critical Hit Recently" }, } }, ["HandWrapsUniqueBaseDamageOverrideForMaceAttacks1"] = { affix = "", "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken", statOrder = { 829 }, level = 1, group = "FacebreakerBaseUnarmedDamageOverrideFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1955786041] = { "Has 9 to 14 Fire damage, +3 to +5 per Boss's Face Broken" }, } }, - ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", statOrder = { 9302 }, level = 1, group = "UnarmedDamageGainedAsFirePerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1411594757] = { "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence" }, } }, - ["HandWrapsUniqueGainArmourEqualToStrength1"] = { affix = "", "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", statOrder = { 10372 }, level = 1, group = "UnarmedAreaOfEffectPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1284514818] = { "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence" }, } }, + ["HandWrapsUniqueUnarmedAttackDamagePerXStrength1"] = { affix = "", "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence", statOrder = { 9308 }, level = 1, group = "UnarmedDamageGainedAsFirePerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1411594757] = { "Gain 1% of Unarmed Damage as extra Fire damage per 5 Intelligence" }, } }, + ["HandWrapsUniqueGainArmourEqualToStrength1"] = { affix = "", "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence", statOrder = { 10386 }, level = 1, group = "UnarmedAreaOfEffectPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1284514818] = { "1% increased Area of Effect for Unarmed Attacks per 10 Intelligence" }, } }, ["HandWrapsUniqueIntelligence51"] = { affix = "", "(15-25)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(15-25)% increased Cooldown Recovery Rate" }, } }, ["HandWrapsUniqueIncreasedLife62"] = { affix = "", "(8-13)% less damage taken while on Low Life", statOrder = { 888 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1725136006] = { "(8-13)% less damage taken while on Low Life" }, } }, ["HandWrapsUniqueLocalIncreasedArmourAndEnergyShield30"] = { affix = "", "(20-25)% more Global Evasion Rating and Energy Shield", statOrder = { 853 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(20-25)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsUniqueRecoupLifeEnergyShieldOpenWeakness1"] = { affix = "", "(55-65)% of damage taken from enemies with an Open Weakness Recouped as Life and Energy Shield", statOrder = { 10655 }, level = 1, group = "HandWrapsRecoupLifeEnergyShieldAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1537888169] = { "(55-65)% of damage taken from enemies with an Open Weakness Recouped as Life and Energy Shield" }, } }, - ["UniqueMagesLegacy01"] = { affix = "", "Legacy of (1-14)", statOrder = { 7912 }, level = 1, group = "UniqueMagesLegacy01", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264262054] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy02"] = { affix = "", "Legacy of (1-14)", statOrder = { 7913 }, level = 1, group = "UniqueMagesLegacy02", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1279683261] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy03"] = { affix = "", "Legacy of (1-14)", statOrder = { 7914 }, level = 1, group = "UniqueMagesLegacy03", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3419886123] = { "Legacy of (1-14)" }, } }, - ["UniqueMagesLegacy04"] = { affix = "", "Legacy of (1-14)", statOrder = { 7915 }, level = 1, group = "UniqueMagesLegacy04", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739030262] = { "Legacy of (1-14)" }, } }, - ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { affix = "", "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", statOrder = { 7916 }, level = 1, group = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874491706] = { "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle8"] = { affix = "", "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes", statOrder = { 8499, 8499.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle10"] = { affix = "", "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes", statOrder = { 8499, 8499.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes" }, } }, - ["LevelDesignTestingMissionRoomStoneCircle12"] = { affix = "", "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes", statOrder = { 8499, 8499.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes" }, } }, - ["UniqueAddedThornsPerRune"] = { affix = "", "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", statOrder = { 6813 }, level = 1, group = "UniqueAddedThornsPerRune", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3926910174] = { "(40-50) to (80-100) added Physical Thorns damage per Runic Plate" }, } }, + ["HandWrapsUniqueRecoupLifeEnergyShieldOpenWeakness1"] = { affix = "", "(55-65)% of damage taken from enemies with an Open Weakness Recouped as Life and Energy Shield", statOrder = { 10672 }, level = 1, group = "HandWrapsRecoupLifeEnergyShieldAgainstOpenWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1537888169] = { "(55-65)% of damage taken from enemies with an Open Weakness Recouped as Life and Energy Shield" }, } }, + ["UniqueMagesLegacy01"] = { affix = "", "Legacy of (1-14)", statOrder = { 7918 }, level = 1, group = "UniqueMagesLegacy01", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [264262054] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy02"] = { affix = "", "Legacy of (1-14)", statOrder = { 7919 }, level = 1, group = "UniqueMagesLegacy02", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1279683261] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy03"] = { affix = "", "Legacy of (1-14)", statOrder = { 7920 }, level = 1, group = "UniqueMagesLegacy03", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3419886123] = { "Legacy of (1-14)" }, } }, + ["UniqueMagesLegacy04"] = { affix = "", "Legacy of (1-14)", statOrder = { 7921 }, level = 1, group = "UniqueMagesLegacy04", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2739030262] = { "Legacy of (1-14)" }, } }, + ["UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy"] = { affix = "", "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have", statOrder = { 7922 }, level = 1, group = "UniqueIncreasedMagesLegacyEffectPerDuplicateMagesLegacy", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3874491706] = { "All Mage's Legacies have (25-50)% increased effect per duplicate Mage's Legacy you have" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle8"] = { affix = "", "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 8 Reactivation Runes" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle10"] = { affix = "", "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 10 Reactivation Runes" }, } }, + ["LevelDesignTestingMissionRoomStoneCircle12"] = { affix = "", "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes", statOrder = { 8504, 8504.1 }, level = 1, group = "MapAdditionalStoneCircle", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2839545956] = { "Area contains a Summoning Circle", "Area contains 12 Reactivation Runes" }, } }, + ["UniqueAddedThornsPerRune"] = { affix = "", "(40-50) to (80-100) added Physical Thorns damage per Runic Plate", statOrder = { 6816 }, level = 1, group = "UniqueAddedThornsPerRune", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3926910174] = { "(40-50) to (80-100) added Physical Thorns damage per Runic Plate" }, } }, ["UniqueAddedPhysicalDamagePerGlobalBlockChance1"] = { affix = "", "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance", statOrder = { 2676 }, level = 1, group = "UniqueAddedPhysicalDamagePerGlobalBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2036307261] = { "Hits with this weapon have (1-2) to (4-5) Added Physical Damage per 1% Block Chance" }, } }, - ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { affix = "", "10% of Physical damage dealt by your Hits causes Blood Loss", statOrder = { 9417 }, level = 1, group = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [70760090] = { "10% of Physical damage dealt by your Hits causes Blood Loss" }, } }, + ["PercentOfPhysicalHitDamageAsAdditionalBloodLoss"] = { affix = "", "10% of Physical damage dealt by your Hits causes Blood Loss", statOrder = { 9424 }, level = 1, group = "PercentOfPhysicalHitDamageAsAdditionalBloodLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [70760090] = { "10% of Physical damage dealt by your Hits causes Blood Loss" }, } }, ["HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel"] = { affix = "", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 842, 844 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, unscalable = true, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, ["HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel"] = { affix = "", "Has +2 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", "Has +1 to maximum Runic Ward per player level", statOrder = { 842, 844, 847 }, level = 1, group = "HandWrapsImplicitLocalBaseEvasionEnergyShieldAndWardPerLevel", weightKey = { }, weightVal = { }, modTags = { }, unscalable = true, tradeHashes = { [298264758] = { "Has +1 to maximum Runic Ward per player level" }, [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, ["UniqueMoltenShowerSkill1"] = { affix = "", "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength", statOrder = { 481 }, level = 1, group = "UniqueGrantsTriggeredMoltenShower", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1867725690] = { "Hits with this Weapon have 5% chance to Trigger Molten Shower per 25 Strength" }, } }, @@ -5457,48 +5457,49 @@ return { ["VerisiumSacrificialGarbImplicitAllResistancePerCorruptedItem1"] = { affix = "", "+1% to all Resistances for each Corrupted Item Equipped", statOrder = { 2831 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHashes = { [3100523498] = { "+1% to all Resistances for each Corrupted Item Equipped" }, } }, ["VerisiumSacrificialGarbImplicitChaosDamagePerCorruptedItem1"] = { affix = "", "(2-4)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2827 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4004011170] = { "(2-4)% increased Chaos Damage for each Corrupted Item Equipped" }, } }, ["BrynhandsMarkVerisiumImplicitAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-30)% increased Area of Effect for Attacks" }, } }, - ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { affix = "", "(30-40)% increased effect of Fully Broken Armour", statOrder = { 5232 }, level = 1, group = "ArmourBreakEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(30-40)% increased effect of Fully Broken Armour" }, } }, + ["SculptedSufferingVerisiumImplicitArmourBreakEffect1"] = { affix = "", "(30-40)% increased effect of Fully Broken Armour", statOrder = { 5233 }, level = 1, group = "ArmourBreakEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(30-40)% increased effect of Fully Broken Armour" }, } }, ["EmptyRoarVerisiumBleedDuration1"] = { affix = "", "(20-30)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(20-30)% increased Bleeding Duration" }, } }, - ["BloodThornVerisiumImplicitBleedMagnitude1"] = { affix = "", "50% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "50% increased Magnitude of Bleeding you inflict" }, } }, + ["BloodThornVerisiumImplicitBleedMagnitude1"] = { affix = "", "50% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "50% increased Magnitude of Bleeding you inflict" }, } }, ["SentryFasterVerisiumImplicitFasterIgnite1"] = { affix = "", "Ignites you inflict deal Damage (30-40)% faster", statOrder = { 2346 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage (30-40)% faster" }, } }, - ["QuillRainVerisiumImplicitForkExtraProjectile"] = { affix = "", "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have 50% chance for an additional Projectile when Forking" }, } }, + ["QuillRainVerisiumImplicitForkExtraProjectile"] = { affix = "", "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5512 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have 50% chance for an additional Projectile when Forking" }, } }, ["HyssegsClawVerisiumImplicitMinionDamageUpgraded1"] = { affix = "", "Minions deal (51-100)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (51-100)% increased Damage" }, } }, ["KeeperOfTheArcVerisiumImplicit3Sockets1"] = { affix = "", "Has 3 Sockets", statOrder = { 57 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077843608] = { "Has 3 Sockets" }, } }, - ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { affix = "", "(25-50)% increased Runic Ward Regeneration Rate", statOrder = { 10513 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(25-50)% increased Runic Ward Regeneration Rate" }, } }, + ["KeeperOfTheArcVerisiumImplicitWardRegen1"] = { affix = "", "(25-50)% increased Runic Ward Regeneration Rate", statOrder = { 10528 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(25-50)% increased Runic Ward Regeneration Rate" }, } }, ["KeeperOfTheArcVerisiumImplicitIntelligenceRequirement1"] = { affix = "", "+250 Intelligence Requirement", statOrder = { 820 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2153364323] = { "+250 Intelligence Requirement" }, } }, ["KeeperOfTheArcVerisiumImplicitUnaffectedbyCurses1"] = { affix = "", "100% reduced Duration of Curses on you", statOrder = { 1912 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2920970371] = { "100% reduced Duration of Curses on you" }, } }, - ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { affix = "", "Every 5 seconds, gain a Verisium Infusion", statOrder = { 6706 }, level = 1, group = "VerisiumChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3326854490] = { "Every 5 seconds, gain a Verisium Infusion" }, } }, - ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { affix = "", "Recover (15-25) Runic Ward when you Block", statOrder = { 9676 }, level = 1, group = "WardOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (15-25) Runic Ward when you Block" }, } }, + ["KeeperOfTheArcVerisiumImplicitVerisiumCharges1"] = { affix = "", "Every 5 seconds, gain a Verisium Infusion", statOrder = { 6708 }, level = 1, group = "VerisiumChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3326854490] = { "Every 5 seconds, gain a Verisium Infusion" }, } }, + ["SvalinnVerisiumImplicitRunicWardOnBlock1"] = { affix = "", "Recover (15-25) Runic Ward when you Block", statOrder = { 9684 }, level = 1, group = "WardOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (15-25) Runic Ward when you Block" }, } }, ["SvalinnVerisiumImplicitManaBeforeLife1"] = { affix = "", "(15-25)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(15-25)% of Damage is taken from Mana before Life" }, } }, ["OlrovasaraVerisiumImplicitLightningToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1713 }, level = 1, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, - ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { affix = "", "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", statOrder = { 9249 }, level = 1, group = "DamagePerWardSpentOnSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2728425538] = { "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost" }, } }, + ["OlrovasaraVerisiumImplicitDamageAsExtraLightningPerRunicWard1"] = { affix = "", "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost", statOrder = { 9255 }, level = 1, group = "DamagePerWardSpentOnSkill", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2728425538] = { "Skills Gain (4-6)% of damage as Extra Lightning damage per 50 Runic Ward Cost" }, } }, ["OlrovasaraVerisiumImplicitWeaponRange1"] = { affix = "", "+(1.5-2) metres to Melee Strike Range", statOrder = { 2314 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2264295449] = { "+(1.5-2) metres to Melee Strike Range" }, } }, - ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { affix = "", "(15-25)% Life Recovery from Flasks also applies to Runic Ward", statOrder = { 7469 }, level = 1, group = "LifeFlaskAppliesToRunicWard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2650263616] = { "(15-25)% Life Recovery from Flasks also applies to Runic Ward" }, } }, - ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { affix = "", "(20-40)% increased Runic Ward Regeneration Rate", statOrder = { 10513 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(20-40)% increased Runic Ward Regeneration Rate" }, } }, - ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { affix = "", "Runic Ward recovery can can Overflow maximum Runic Ward", statOrder = { 10512 }, level = 1, group = "RunicWardOverflow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408607858] = { "Runic Ward recovery can can Overflow maximum Runic Ward" }, } }, - ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { affix = "", "Flasks gain (0.5-1) charges per Second", statOrder = { 6883 }, level = 1, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.5-1) charges per Second" }, } }, + ["WaistgateVerisiumImplicitLifeFlaskToRunicWard1"] = { affix = "", "(15-25)% Life Recovery from Flasks also applies to Runic Ward", statOrder = { 7475 }, level = 1, group = "LifeFlaskAppliesToRunicWard", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2650263616] = { "(15-25)% Life Recovery from Flasks also applies to Runic Ward" }, } }, + ["WaistgateVerisiumImplicitRunicWardRegeneration1"] = { affix = "", "(20-40)% increased Runic Ward Regeneration Rate", statOrder = { 10528 }, level = 1, group = "WardRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(20-40)% increased Runic Ward Regeneration Rate" }, } }, + ["WaistgateVerisiumImplicitRunicWardCanOverflow1"] = { affix = "", "Runic Ward recovery can Overflow maximum Runic Ward", statOrder = { 10527 }, level = 1, group = "RunicWardOverflow", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3408607858] = { "Runic Ward recovery can Overflow maximum Runic Ward" }, } }, + ["WaistgateVerisiumImplicitFlaskChargeGeneration1"] = { affix = "", "Flasks gain (0.5-1) charges per Second", statOrder = { 6886 }, level = 1, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.5-1) charges per Second" }, } }, ["MjolnerVerisiumImplicitLightningDamage1"] = { affix = "", "(40-60)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(40-60)% increased Lightning Damage" }, } }, - ["MjolnerVerisiumImplicitLightningChain1"] = { affix = "", "(50-100)% chance for Lightning Skills to Chain an additional time", statOrder = { 7559 }, level = 1, group = "LightningChanceToChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3112931530] = { "(50-100)% chance for Lightning Skills to Chain an additional time" }, } }, - ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { affix = "", "Skills which create Fissures have a 50% chance to create an additional Fissure", statOrder = { 9888 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a 50% chance to create an additional Fissure" }, } }, + ["MjolnerVerisiumImplicitLightningChain1"] = { affix = "", "(50-100)% chance for Lightning Skills to Chain an additional time", statOrder = { 7565 }, level = 1, group = "LightningChanceToChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3112931530] = { "(50-100)% chance for Lightning Skills to Chain an additional time" }, } }, + ["TwistedEmpyreanVerisiumImplicitAdditionalFissures1"] = { affix = "", "Skills which create Fissures have a 50% chance to create an additional Fissure", statOrder = { 9896 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a 50% chance to create an additional Fissure" }, } }, ["TwistedEmpyreanVerisiumImplicitFreezeBuildup1"] = { affix = "", "(200-300)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(200-300)% increased Freeze Buildup" }, } }, ["TheUnleashedVerisiumImplicitArcaneSurgeEffect1"] = { affix = "", "(30-50)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(30-50)% increased effect of Arcane Surge on you" }, } }, ["TheUnleashedVerisiumImplicitBypassEnergyShield1"] = { affix = "", "(10-15)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-15)% increased Energy Shield Recharge Rate" }, } }, ["EventidePetalsVerisiumImplicitMaxColdRes1"] = { affix = "", "+(2-3)% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, } }, ["EventidePetalsVerisiumImplicitColdSkills1"] = { affix = "", "+(1-2) to Level of all Cold Skills", statOrder = { 960 }, level = 1, group = "GlobalColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, tradeHashes = { [1078455967] = { "+(1-2) to Level of all Cold Skills" }, } }, ["EventidePetalsVerisiumImplicitRunicWardPercent1"] = { affix = "", "(15-20)% increased maximum Runic Ward", statOrder = { 891 }, level = 1, group = "GlobalRunicWardPercent", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(15-20)% increased maximum Runic Ward" }, } }, - ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { affix = "", "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10027 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2910761524] = { "(30-50)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["RuneseekersCallVerisiumImplicitChanceForTwoProjectiles1"] = { affix = "", "(30-50)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10037 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [2910761524] = { "(30-50)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, ["RuneseekersCallVerisiumImplicitManaRegen1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-50)% increased Mana Regeneration Rate" }, } }, ["RuneseekersCallVerisiumImplicitMaximumRunicWard"] = { affix = "", "+300 to maximum Runic Ward", statOrder = { 890 }, level = 1, group = "GlobalMaximumRunicWard", weightKey = { }, weightVal = { }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+300 to maximum Runic Ward" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets1"] = { affix = "", "Allocates 2 Sinister Jewel sockets", statOrder = { 10403 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 2 Sinister Jewel sockets" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets2"] = { affix = "", "Allocates 3 Sinister Jewel sockets", statOrder = { 10403 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 3 Sinister Jewel sockets" }, } }, - ["UniqueJewelGrantsVoicesJewelSockets3"] = { affix = "", "Allocates 4 Sinister Jewel sockets", statOrder = { 10403 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 4 Sinister Jewel sockets" }, } }, - ["UniqueJewelSplitPersonalityClassStart1"] = { affix = "", "Can Allocate Passive Skills from the Warrior's starting point", statOrder = { 7749 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStr", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1359862146] = { "Can Allocate Passive Skills from the Warrior's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart2"] = { affix = "", "Can Allocate Passive Skills from the Ranger's starting point", statOrder = { 7746 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3116298775] = { "Can Allocate Passive Skills from the Ranger's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart3"] = { affix = "", "Can Allocate Passive Skills from the Sorceress's starting point", statOrder = { 7748 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3359496001] = { "Can Allocate Passive Skills from the Sorceress's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart4"] = { affix = "", "Can Allocate Passive Skills from the Mercenary's starting point", statOrder = { 7750 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738592688] = { "Can Allocate Passive Skills from the Mercenary's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart5"] = { affix = "", "Can Allocate Passive Skills from the Templar's starting point", statOrder = { 7751 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1688294122] = { "Can Allocate Passive Skills from the Templar's starting point" }, } }, - ["UniqueJewelSplitPersonalityClassStart6"] = { affix = "", "Can Allocate Passive Skills from the Shadow's starting point", statOrder = { 7747 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDexInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2218479786] = { "Can Allocate Passive Skills from the Shadow's starting point" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets1"] = { affix = "", "Allocates 2 Sinister Jewel sockets", statOrder = { 10417 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 2 Sinister Jewel sockets" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets2"] = { affix = "", "Allocates 3 Sinister Jewel sockets", statOrder = { 10417 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 3 Sinister Jewel sockets" }, } }, + ["UniqueJewelGrantsVoicesJewelSockets3"] = { affix = "", "Allocates 4 Sinister Jewel sockets", statOrder = { 10417 }, level = 1, group = "UniqueJewelGrantsVoicesJewelSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3929993388] = { "Allocates 4 Sinister Jewel sockets" }, } }, + ["UniqueJewelSplitPersonalityClassStart1"] = { affix = "", "Can Allocate Passive Skills from the Warrior's starting point", statOrder = { 7755 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStr", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1359862146] = { "Can Allocate Passive Skills from the Warrior's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart2"] = { affix = "", "Can Allocate Passive Skills from the Ranger's starting point", statOrder = { 7752 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3116298775] = { "Can Allocate Passive Skills from the Ranger's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart3"] = { affix = "", "Can Allocate Passive Skills from the Sorceress's starting point", statOrder = { 7754 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3359496001] = { "Can Allocate Passive Skills from the Sorceress's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart4"] = { affix = "", "Can Allocate Passive Skills from the Mercenary's starting point", statOrder = { 7756 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrDex", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [738592688] = { "Can Allocate Passive Skills from the Mercenary's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart5"] = { affix = "", "Can Allocate Passive Skills from the Templar's starting point", statOrder = { 7757 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartStrInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1688294122] = { "Can Allocate Passive Skills from the Templar's starting point" }, } }, + ["UniqueJewelSplitPersonalityClassStart6"] = { affix = "", "Can Allocate Passive Skills from the Shadow's starting point", statOrder = { 7753 }, level = 1, group = "UniqueJewelGrantsAlternateClassStartDexInt", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2218479786] = { "Can Allocate Passive Skills from the Shadow's starting point" }, } }, ["UniqueMaximumEnergyShieldIsPercentOfStrength1"] = { affix = "", "Your maximum Energy Shield is equal to (200-300)% of your Strength", statOrder = { 1907 }, level = 1, group = "MaximumEnergyShieldIsPercentOfStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [758226825] = { "Your maximum Energy Shield is equal to (200-300)% of your Strength" }, } }, - ["UniqueEnergyShieldCannotBeConverted1"] = { affix = "", "Maximum Energy Shield cannot be Converted", statOrder = { 6415 }, level = 1, group = "EnergyShieldCannotBeConverted", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2104359366] = { "Maximum Energy Shield cannot be Converted" }, } }, - ["UniqueLifeRegenerationPer10Intelligence1"] = { affix = "", "Regenerate 2 Life per second for every 10 Intelligence", statOrder = { 7506 }, level = 1, group = "LifeRegenerationPer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1312381104] = { "Regenerate 2 Life per second for every 10 Intelligence" }, } }, + ["UniqueEnergyShieldCannotBeConverted1"] = { affix = "", "Maximum Energy Shield cannot be Converted", statOrder = { 6417 }, level = 1, group = "EnergyShieldCannotBeConverted", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2104359366] = { "Maximum Energy Shield cannot be Converted" }, } }, + ["UniqueLifeRegenerationPer10Intelligence1"] = { affix = "", "Regenerate 2 Life per second for every 10 Intelligence", statOrder = { 7512 }, level = 1, group = "LifeRegenerationPer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1312381104] = { "Regenerate 2 Life per second for every 10 Intelligence" }, } }, + ["Obliterated"] = { affix = "", "DNT Obliterated #233763", statOrder = { 6232 }, level = 1, group = "Obliterated", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, unscalable = true, tradeHashes = { [1719725804] = { "DNT Obliterated #233763" }, } }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index c48ebbf41f..00bd09727c 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -19,7 +19,7 @@ return { ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, - ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4925 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, + ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4926 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1133 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2926 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, @@ -27,62 +27,62 @@ return { ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, + ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6018 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, + ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5602 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, + ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6019 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(7-13)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3901 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5815 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3948 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, - ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9728 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, + ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9736 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3952 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, - ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5920 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, + ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5921 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1540 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1363 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, - ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6060 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5944 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, - ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6094 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, - ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7261 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, + ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7267 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6317 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, - ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6405 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, + ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6319 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, + ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6407 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6063 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, + ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3942 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3937 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, - ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, - ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6421 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, + ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6423 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5512 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6023 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, + ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6024 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1744 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, - ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, - ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7428 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, + ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7434 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, @@ -90,53 +90,53 @@ return { ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, - ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7940 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, + ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7946 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, - ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7973 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, + ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7979 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, - ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8817 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, + ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8822 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9603 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, + ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9611 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, - ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8991 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, + ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, + ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, - ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 9025 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, - ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, + ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, + ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, + ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9349 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9350 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, + ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9356 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, + ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9357 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, - ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7190 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, + ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7196 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, + ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, - ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9591 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9599 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9599 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6868 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6870 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9832 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9607 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6871 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6873 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, + ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9840 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, - ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, - ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, + ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1327 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1393 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1267 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, @@ -144,46 +144,46 @@ return { ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, - ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10131 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10144 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10133 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10146 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, - ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10247 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, + ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, - ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10316 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, + ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10330 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3259 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2037855018] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10499 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, + ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10513 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10502 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, + ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10516 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, - ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10528 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10549 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, - ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10374 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, - ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9541 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8909 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9378 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9386 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, - ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9387 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10477 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, - ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5718 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5722 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, - ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6976 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, - ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5549 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6910 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, + ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10543 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, + ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10565 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, + ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10388 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, + ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9549 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9385 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, + ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9393 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, + ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9394 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, + ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10491 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, + ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5719 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, + ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5723 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, + ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6980 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, + ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5550 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6913 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (6-16)% increased Area of Effect", statOrder = { 4629 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (6-16)% increased Area of Effect" }, } }, ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4631 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7754 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7754 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, - ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7778 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, - ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7778 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, - ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7773 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, + ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7760 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7760 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, + ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7784 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, + ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7784 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, + ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7779 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1332 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [533892981] = { "Small Passive Skills in Radius also grant (1-2)% increased Accuracy Rating" }, } }, ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [412709880] = { "Notable Passive Skills in Radius also grant (3-7)% increased chance to inflict Ailments" }, } }, ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [1321104829] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Ailments you inflict" }, } }, @@ -201,7 +201,7 @@ return { ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1319 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2433102767] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Axes" }, } }, ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [944643028] = { "Small Passive Skills in Radius also grant 1% chance to inflict Bleeding on Hit" }, } }, ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4660 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [1505023559] = { "Notable Passive Skills in Radius also grant (3-7)% increased Bleeding Duration" }, } }, - ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4925 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect" }, } }, + ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4926 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2912416697] = { "Notable Passive Skills in Radius also grant (3-5)% increased Blind Effect" }, } }, ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4588 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHashes = { [2610562860] = { "Small Passive Skills in Radius also grant 1% chance to Blind Enemies on Hit with Attacks" }, } }, ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1133 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [3821543413] = { "Notable Passive Skills in Radius also grant (1-3)% increased Block chance" }, } }, ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2926 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [147764878] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Hits against Rare and Unique Enemies" }, } }, @@ -209,22 +209,22 @@ return { ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1253 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [945774314] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Bows" }, } }, ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1324 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3641543553] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Bows" }, } }, ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 987 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, nodeType = 2, tradeHashes = { [1022759479] = { "Notable Passive Skills in Radius also grant (1-2)% increased Cast Speed" }, } }, - ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, + ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2334956771] = { "Notable Passive Skills in Radius also grant Projectiles have (1-2)% chance to Chain an additional time from terrain" }, } }, ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 900 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 1, tradeHashes = { [3088348485] = { "Small Passive Skills in Radius also grant (1-2)% increased Charm Effect Duration" }, } }, - ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5601 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained" }, } }, - ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6018 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm" }, } }, + ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5602 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm" }, nodeType = 2, tradeHashes = { [2320654813] = { "Notable Passive Skills in Radius also grant (3-7)% increased Charm Charges gained" }, } }, + ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 6019 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, nodeType = 1, tradeHashes = { [3752589831] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage while you have an active Charm" }, } }, ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 876 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHashes = { [1309799717] = { "Small Passive Skills in Radius also grant (1-2)% increased Chaos Damage" }, } }, ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1612 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [61644361] = { "Notable Passive Skills in Radius also grant (6-12)% increased Chill Duration on Enemies" }, } }, ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 874 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [2442527254] = { "Small Passive Skills in Radius also grant (1-2)% increased Cold Damage" }, } }, ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2725 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHashes = { [1896066427] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Cold Resistance" }, } }, ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2149603090] = { "Notable Passive Skills in Radius also grant (1-3)% increased Cooldown Recovery Rate" }, } }, ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3901 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1892122971] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5814 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5815 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHashes = { [4092130601] = { "Notable Passive Skills in Radius also grant (5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 976 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHashes = { [2077117738] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance" }, } }, ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 980 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHashes = { [2359002191] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus" }, } }, ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 982 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHashes = { [2466785537] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Spell Damage Bonus" }, } }, ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3948 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [517664839] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Crossbows" }, } }, - ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9728 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed" }, } }, + ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9736 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3856744003] = { "Notable Passive Skills in Radius also grant (5-7)% increased Crossbow Reload Speed" }, } }, ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3952 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [715957346] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Crossbows" }, } }, ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHashes = { [3859848445] = { "Notable Passive Skills in Radius also grant (3-6)% increased Area of Effect of Curses" }, } }, ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1540 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 1, tradeHashes = { [1087108135] = { "Small Passive Skills in Radius also grant (2-4)% increased Curse Duration" }, } }, @@ -233,37 +233,37 @@ return { ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1245 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1441232665] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Daggers" }, } }, ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1322 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [2172391939] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Daggers" }, } }, ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, - ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6060 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5944 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1834658952] = { "Small Passive Skills in Radius also grant (2-4)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6061 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHashes = { [2272980012] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Damaging Ailments on Enemies" }, } }, ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4669 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4258000627] = { "Small Passive Skills in Radius also grant 1% chance to Daze on Hit" }, } }, - ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6094 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster" }, } }, - ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7261 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2256120736] = { "Notable Passive Skills in Radius also grant Debuffs on you expire (3-5)% faster" }, } }, + ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7267 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1323216174] = { "Notable Passive Skills in Radius also grant (3-5)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1726 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, nodeType = 1, tradeHashes = { [3222402650] = { "Small Passive Skills in Radius also grant (1-2)% increased Elemental Damage" }, } }, - ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6317 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage" }, } }, - ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6405 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy" }, } }, + ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 6319 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [3395186672] = { "Small Passive Skills in Radius also grant Empowered Attacks deal (2-3)% increased Damage" }, } }, + ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 6407 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2849546516] = { "Notable Passive Skills in Radius also grant Meta Skills gain (2-4)% increased Energy" }, } }, ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 886 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [3665922113] = { "Small Passive Skills in Radius also grant (2-3)% increased maximum Energy Shield" }, } }, ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 1033 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3394832998] = { "Notable Passive Skills in Radius also grant (5-7)% faster start of Energy Shield Recharge" }, } }, ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 1032 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 1, tradeHashes = { [1552666713] = { "Small Passive Skills in Radius also grant (2-3)% increased Energy Shield Recharge Rate" }, } }, ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 884 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, nodeType = 1, tradeHashes = { [1994296038] = { "Small Passive Skills in Radius also grant (2-3)% increased Evasion Rating" }, } }, - ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6063 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster" }, } }, + ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [3173882956] = { "Notable Passive Skills in Radius also grant Damaging Ailments deal damage (2-3)% faster" }, } }, ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 873 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [139889694] = { "Small Passive Skills in Radius also grant (1-2)% increased Fire Damage" }, } }, ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2724 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHashes = { [1432756708] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Fire Resistance" }, } }, ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3942 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [1441673288] = { "Notable Passive Skills in Radius also grant (3-7)% increased Critical Hit Chance with Flails" }, } }, ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3937 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2482383489] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Flails" }, } }, - ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained" }, } }, + ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [2066964205] = { "Notable Passive Skills in Radius also grant (3-5)% increased Flask Charges gained" }, } }, ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHashes = { [1773308808] = { "Small Passive Skills in Radius also grant (1-2)% increased Flask Effect Duration" }, } }, - ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6421 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5511 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, + ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6423 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, nodeType = 2, tradeHashes = { [3419203492] = { "Notable Passive Skills in Radius also grant (15-25)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5512 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4258720395] = { "Notable Passive Skills in Radius also grant Projectiles have (5-7)% chance for an additional Projectile when Forking" }, } }, ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 1057 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, tags = { "no_fire_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [1087531620] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup" }, } }, ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2984 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHashes = { [830345042] = { "Small Passive Skills in Radius also grant (2-4)% increased Freeze Threshold" }, } }, - ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6023 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage" }, } }, + ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 6024 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [3065378291] = { "Small Passive Skills in Radius also grant Herald Skills deal (2-4)% increased Damage" }, } }, ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 1055 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, tags = { "no_cold_spell_mods", "no_lightning_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHashes = { [394473632] = { "Small Passive Skills in Radius also grant (2-3)% increased Flammability Magnitude" }, } }, ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1077 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, nodeType = 2, tradeHashes = { [253641217] = { "Notable Passive Skills in Radius also grant (3-7)% increased Ignite Magnitude" }, } }, ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [3113764475] = { "Notable Passive Skills in Radius also grant (3-5)% increased Skill Effect Duration" }, } }, ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1744 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2976476845] = { "Notable Passive Skills in Radius also grant (3-7)% increased Knockback Distance" }, } }, - ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3386297724] = { "Notable Passive Skills in Radius also grant (2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1794 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHashes = { [980177976] = { "Small Passive Skills in Radius also grant (2-3)% increased Life Recovery from Flasks" }, } }, - ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7428 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained" }, } }, + ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 7434 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [942519401] = { "Notable Passive Skills in Radius also grant (5-10)% increased Life Flask Charges gained" }, } }, ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1895 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [3666476747] = { "Small Passive Skills in Radius also grant (2-3)% increased amount of Life Leeched" }, } }, ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1511 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [2726713579] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Life on Kill" }, } }, ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, @@ -271,50 +271,50 @@ return { ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 875 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [2768899959] = { "Small Passive Skills in Radius also grant (1-2)% increased Lightning Damage" }, } }, ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2726 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHashes = { [868556494] = { "Small Passive Skills in Radius also grant Damage Penetrates (1-2)% Lightning Resistance" }, } }, ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1249 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1852184471] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Maces" }, } }, - ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7940 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces" }, } }, + ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7946 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2392824305] = { "Notable Passive Skills in Radius also grant (6-12)% increased Stun Buildup with Maces" }, } }, ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1795 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHashes = { [3774951878] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Recovery from Flasks" }, } }, - ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7973 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained" }, } }, + ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7979 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHashes = { [3171212276] = { "Notable Passive Skills in Radius also grant (5-10)% increased Mana Flask Charges gained" }, } }, ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3700202631] = { "Small Passive Skills in Radius also grant (1-2)% increased amount of Mana Leeched" }, } }, ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1517 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHashes = { [525523040] = { "Notable Passive Skills in Radius also grant Recover 1% of maximum Mana on Kill" }, } }, ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHashes = { [3256879910] = { "Small Passive Skills in Radius also grant (1-2)% increased Mana Regeneration Rate" }, } }, ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1946 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [2202308025] = { "Small Passive Skills in Radius also grant Mark Skills have (2-3)% increased Use Speed" }, } }, - ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8817 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, + ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8822 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4162678661] = { "Small Passive Skills in Radius also grant Mark Skills have (3-4)% increased Skill Effect Duration" }, } }, ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2378 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [179541474] = { "Notable Passive Skills in Radius also grant (2-3)% increased Effect of your Mark Skills" }, } }, - ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9603 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "Notable Passive Skills in Radius also grant +1 to Maximum Rage" }, } }, + ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9611 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1846980580] = { "Notable Passive Skills in Radius also grant +1 to Maximum Rage" }, } }, ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1187 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1337740333] = { "Small Passive Skills in Radius also grant (1-2)% increased Melee Damage" }, } }, - ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8991 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating" }, } }, + ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8996 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHashes = { [793875384] = { "Small Passive Skills in Radius also grant (2-3)% increased Minion Accuracy Rating" }, } }, ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2759 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2534359663] = { "Notable Passive Skills in Radius also grant Minions have (3-5)% increased Area of Effect" }, } }, - ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed" }, } }, + ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHashes = { [3106718406] = { "Notable Passive Skills in Radius also grant Minions have (1-2)% increased Attack and Cast Speed" }, } }, ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2668 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, nodeType = 1, tradeHashes = { [1756380435] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to Chaos Resistance" }, } }, - ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 9025 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance" }, } }, - ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 9027 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus" }, } }, + ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHashes = { [3628935286] = { "Notable Passive Skills in Radius also grant Minions have (5-10)% increased Critical Hit Chance" }, } }, + ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 9032 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, nodeType = 2, tradeHashes = { [593241812] = { "Notable Passive Skills in Radius also grant Minions have (6-12)% increased Critical Damage Bonus" }, } }, ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1720 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [2954360902] = { "Small Passive Skills in Radius also grant Minions deal (1-2)% increased Damage" }, } }, ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [378796798] = { "Small Passive Skills in Radius also grant Minions have (1-2)% increased maximum Life" }, } }, ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHashes = { [30438393] = { "Small Passive Skills in Radius also grant Minions have (1-2)% additional Physical Damage Reduction" }, } }, ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, nodeType = 1, tradeHashes = { [3225608889] = { "Small Passive Skills in Radius also grant Minions have +(1-2)% to all Elemental Resistances" }, } }, - ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster" }, } }, + ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [50413020] = { "Notable Passive Skills in Radius also grant Minions Revive (3-7)% faster" }, } }, ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [844449513] = { "Notable Passive Skills in Radius also grant 1% increased Movement Speed" }, } }, - ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9349 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration" }, } }, - ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9350 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life" }, } }, + ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 9356 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHashes = { [2374711847] = { "Notable Passive Skills in Radius also grant Offering Skills have (6-12)% increased Duration" }, } }, + ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 9357 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2107703111] = { "Small Passive Skills in Radius also grant Offerings have (2-3)% increased Maximum Life" }, } }, ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1185 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHashes = { [1417267954] = { "Small Passive Skills in Radius also grant (1-2)% increased Global Physical Damage" }, } }, ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1800303440] = { "Notable Passive Skills in Radius also grant (5-10)% chance to Pierce an Enemy" }, } }, - ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7190 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup" }, } }, + ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 7196 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [1944020877] = { "Notable Passive Skills in Radius also grant (5-10)% increased Pin Buildup" }, } }, ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [2840989393] = { "Small Passive Skills in Radius also grant 1% chance to Poison on Hit" }, } }, - ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9492 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict" }, } }, + ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 9500 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHashes = { [462424929] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Poison you inflict" }, } }, ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2896 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHashes = { [221701169] = { "Notable Passive Skills in Radius also grant (3-7)% increased Poison Duration" }, } }, ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1738 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [455816363] = { "Small Passive Skills in Radius also grant (1-2)% increased Projectile Damage" }, } }, ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 897 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [1777421941] = { "Notable Passive Skills in Radius also grant (2-3)% increased Projectile Speed" }, } }, ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1238 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [821948283] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Quarterstaves" }, } }, - ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9591 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9599 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHashes = { [127081978] = { "Notable Passive Skills in Radius also grant (5-10)% increased Freeze Buildup with Quarterstaves" }, } }, ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1320 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [111835965] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9599 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6868 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit" }, } }, - ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6870 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9832 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9607 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4180952808] = { "Notable Passive Skills in Radius also grant (2-3)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6871 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHashes = { [2969557004] = { "Notable Passive Skills in Radius also grant Gain 1 Rage on Melee Hit" }, } }, + ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6873 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2131720304] = { "Notable Passive Skills in Radius also grant Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9840 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [3429148113] = { "Notable Passive Skills in Radius also grant (8-15)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 1059 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, tags = { "no_fire_spell_mods", "no_cold_spell_mods", "no_chaos_spell_mods", }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [1039268420] = { "Small Passive Skills in Radius also grant (2-3)% increased chance to Shock" }, } }, ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1613 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHashes = { [3513818125] = { "Small Passive Skills in Radius also grant (2-3)% increased Shock Duration" }, } }, - ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9839 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict" }, } }, - ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9847 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHashes = { [1166140625] = { "Notable Passive Skills in Radius also grant (5-7)% increased Magnitude of Shock you inflict" }, } }, + ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2580617872] = { "Notable Passive Skills in Radius also grant (2-5)% reduced Slowing Potency of Debuffs on You" }, } }, ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1327 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [1266413530] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Spears" }, } }, ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1393 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHashes = { [138421180] = { "Notable Passive Skills in Radius also grant (5-10)% increased Critical Damage Bonus with Spears" }, } }, ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1267 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2809428780] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Spears" }, } }, @@ -322,47 +322,47 @@ return { ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 871 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [1137305356] = { "Small Passive Skills in Radius also grant (1-2)% increased Spell Damage" }, } }, ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4173554949] = { "Notable Passive Skills in Radius also grant (5-10)% increased Stun Buildup" }, } }, ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [484792219] = { "Small Passive Skills in Radius also grant (1-2)% increased Stun Threshold" }, } }, - ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10131 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, + ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 10144 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [1653682082] = { "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield" }, } }, ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHashes = { [693237939] = { "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield" }, } }, - ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10133 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10146 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [654207792] = { "Small Passive Skills in Radius also grant (2-3)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHashes = { [391602279] = { "Notable Passive Skills in Radius also grant (3-7)% increased Magnitude of Bleeding you inflict" }, } }, ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1259 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1417549986] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Swords" }, } }, ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1325 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [3492019295] = { "Notable Passive Skills in Radius also grant (1-2)% increased Attack Speed with Swords" }, } }, - ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10247 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage" }, } }, + ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 10261 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1320662475] = { "Small Passive Skills in Radius also grant (2-3)% increased Thorns damage" }, } }, ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1152 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [2108821127] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Damage" }, } }, ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1533 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHashes = { [442393998] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Life" }, } }, ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2360 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1145481685] = { "Small Passive Skills in Radius also grant (2-3)% increased Totem Placement speed" }, } }, ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 872 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [836472423] = { "Small Passive Skills in Radius also grant (1-2)% increased Trap Damage" }, } }, ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1667 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [2391207117] = { "Notable Passive Skills in Radius also grant (2-4)% increased Trap Throwing Speed" }, } }, - ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10316 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage" }, } }, + ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 10330 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHashes = { [473917671] = { "Small Passive Skills in Radius also grant Triggered Spells deal (2-3)% increased Spell Damage" }, } }, ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3259 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [347569644] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Unarmed Attacks" }, } }, - ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10499 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect" }, } }, + ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 10513 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2675129731] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Buff Effect" }, } }, ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2056107438] = { "Notable Passive Skills in Radius also grant (3-7)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10502 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries" }, } }, + ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 10516 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1160637284] = { "Small Passive Skills in Radius also grant (2-3)% increased Damage with Warcries" }, } }, ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2989 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHashes = { [1602294220] = { "Small Passive Skills in Radius also grant (2-3)% increased Warcry Speed" }, } }, - ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10528 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed" }, } }, - ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10549 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude" }, } }, - ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10374 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed" }, } }, - ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9541 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8909 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9378 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage" }, } }, - ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9386 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration" }, } }, - ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9387 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying" }, } }, - ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10477 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill" }, } }, - ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5718 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage" }, } }, - ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5722 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life" }, } }, - ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6976 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage" }, } }, - ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5549 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision" }, } }, - ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6910 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills" }, } }, + ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 10543 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHashes = { [1129429646] = { "Small Passive Skills in Radius also grant (2-4)% increased Weapon Swap Speed" }, } }, + ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 10565 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHashes = { [3936121440] = { "Notable Passive Skills in Radius also grant (3-5)% increased Withered Magnitude" }, } }, + ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 10388 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHashes = { [541647121] = { "Notable Passive Skills in Radius also grant (1-2)% increased Unarmed Attack Speed" }, } }, + ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9549 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [288364275] = { "Small Passive Skills in Radius also grant (2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [2421151933] = { "Small Passive Skills in Radius also grant (2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 9385 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, nodeType = 1, tradeHashes = { [1007380041] = { "Small Passive Skills in Radius also grant (2-3)% increased Parry Damage" }, } }, + ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 9393 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1514844108] = { "Notable Passive Skills in Radius also grant (5-10)% increased Parried Debuff Duration" }, } }, + ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 9394 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHashes = { [1495814176] = { "Notable Passive Skills in Radius also grant (8-12)% increased Stun Threshold while Parrying" }, } }, + ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 10491 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4225700219] = { "Notable Passive Skills in Radius also grant 1% chance to gain Volatility on Kill" }, } }, + ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5719 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, nodeType = 1, tradeHashes = { [1494950893] = { "Small Passive Skills in Radius also grant Companions deal (2-3)% increased Damage" }, } }, + ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5723 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHashes = { [2638756573] = { "Small Passive Skills in Radius also grant Companions have (2-3)% increased maximum Life" }, } }, + ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6980 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [255840549] = { "Small Passive Skills in Radius also grant (2-3)% increased Hazard Damage" }, } }, + ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5550 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, nodeType = 1, tradeHashes = { [318092306] = { "Small Passive Skills in Radius also grant (3-5)% chance for Attack Hits to apply Incision" }, } }, + ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6913 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [2907381231] = { "Notable Passive Skills in Radius also grant (8-12)% increased Glory generation for Banner Skills" }, } }, ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4629 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [4142814612] = { "Small Passive Skills in Radius also grant Banner Skills have (2-3)% increased Area of Effect" }, } }, ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4631 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "jewel", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHashes = { [2690740379] = { "Small Passive Skills in Radius also grant Banner Skills have (3-4)% increased Duration" }, } }, ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1069 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, nodeType = 2, tradeHashes = { [4032352472] = { "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect" }, } }, - ["JewelRadiusIncLightningColdToFire"] = { type = "Prefix", affix = "Anger", "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", statOrder = { 7783, 7783.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1400313697] = { "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" }, } }, - ["JewelRadiusIncLightningFireToCold"] = { type = "Prefix", affix = "Hatred", "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", statOrder = { 7784, 7784.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3368921525] = { "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" }, } }, - ["JewelRadiusIncColdFreToLightning"] = { type = "Prefix", affix = "Wrath", "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", statOrder = { 7782, 7782.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [895564377] = { "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" }, } }, - ["CraftedJewelPrefixEffect"] = { type = "Suffix", affix = "", "(40-60)% increased Effect of Prefixes", statOrder = { 7804 }, level = 1, group = "LocalPrefixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, - ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7805 }, level = 1, group = "LocalSuffixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, - ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7754 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, + ["JewelRadiusIncLightningColdToFire"] = { type = "Prefix", affix = "Anger", "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage", statOrder = { 7789, 7789.1 }, level = 1, group = "IncreasedLightningColdToFire", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [1400313697] = { "Increases and Reductions to", " Cold and Lightning Damage in Radius are transformed to apply to Fire Damage" }, } }, + ["JewelRadiusIncLightningFireToCold"] = { type = "Prefix", affix = "Hatred", "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage", statOrder = { 7790, 7790.1 }, level = 1, group = "IncreasedLightningFireToCold", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3368921525] = { "Increases and Reductions to", " Fire and Lightning Damage in Radius are transformed to apply to Cold Damage" }, } }, + ["JewelRadiusIncColdFreToLightning"] = { type = "Prefix", affix = "Wrath", "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage", statOrder = { 7788, 7788.1 }, level = 1, group = "IncreasedColdFreToLightning", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [895564377] = { "Increases and Reductions to", " Cold and Fire Damage in Radius are transformed to apply to Lightning Damage" }, } }, + ["CraftedJewelPrefixEffect"] = { type = "Suffix", affix = "", "(40-60)% increased Effect of Prefixes", statOrder = { 7810 }, level = 1, group = "LocalPrefixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1443502073] = { "(40-60)% increased Effect of Prefixes" }, } }, + ["CraftedJewelSuffixEffect"] = { type = "Prefix", affix = "", "(40-60)% increased Effect of Suffixes", statOrder = { 7811 }, level = 1, group = "LocalSuffixEffect", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2475221757] = { "(40-60)% increased Effect of Suffixes" }, } }, + ["CraftedJewelRadiusExtraLargeSize"] = { type = "Prefix", affix = "", "Upgrades Radius to Very Large", statOrder = { 7760 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Very Large" }, } }, ["CraftedJewelRadiusFireResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Fire Resistance", statOrder = { 1014 }, level = 1, group = "FireResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, nodeType = 2, tradeHashes = { [2670212285] = { "Notable Passive Skills in Radius also grant +(5-7)% to Fire Resistance" }, } }, ["CraftedJewelRadiusColdResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Cold Resistance", statOrder = { 1020 }, level = 1, group = "ColdResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, nodeType = 2, tradeHashes = { [3946450303] = { "Notable Passive Skills in Radius also grant +(5-7)% to Cold Resistance" }, } }, ["CraftedJewelRadiusLightningResistance"] = { type = "Suffix", affix = "", "+(5-7)% to Lightning Resistance", statOrder = { 1023 }, level = 1, group = "LightningResistance", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, nodeType = 2, tradeHashes = { [1687542781] = { "Notable Passive Skills in Radius also grant +(5-7)% to Lightning Resistance" }, } }, @@ -373,10 +373,10 @@ return { ["CraftedJewelDebilitateOnHitWhileEmeraldSapphireSocketed"] = { type = "Suffix", affix = "", "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", statOrder = { 4328 }, level = 1, group = "DebilitateOnHitWhileEmeraldSapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [541021467] = { "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree" }, } }, ["CraftedJewelBlindOnHitWhileRubySapphireSocketed"] = { type = "Suffix", affix = "", "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", statOrder = { 4325 }, level = 1, group = "BlindOnHitWhileRubySapphireForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3587953142] = { "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree" }, } }, ["CraftedJewelExposureOnHitWhileRubyEmeraldSocketed"] = { type = "Suffix", affix = "", "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", statOrder = { 4329 }, level = 1, group = "ExposureOnHitWhileRubyEmeraldForJewel", weightKey = { "jewel", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [2951965588] = { "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree" }, } }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9909 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5957 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted" }, } }, - ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9480 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills" }, } }, - ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9909 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, - ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5957 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, - ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 9480 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, + ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9918 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHashes = { [3579898587] = { "Notable Passive Skills in Radius also grant (1-2)% increased Skill Speed while Shapeshifted" }, } }, + ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5958 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [266564538] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage while Shapeshifted" }, } }, + ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 9487 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHashes = { [1590846356] = { "Small Passive Skills in Radius also grant (1-2)% increased Damage with Plant Skills" }, } }, + ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9918 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, + ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5958 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "jewel", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, + ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 9487 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "jewel", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, } \ No newline at end of file diff --git a/src/Data/ModRunes.lua b/src/Data/ModRunes.lua index 914db77732..c75cb86a3f 100644 --- a/src/Data/ModRunes.lua +++ b/src/Data/ModRunes.lua @@ -1,3 +1,4 @@ +-- spell-checker: disable -- This file is automatically generated, do not edit! -- Item data (c) Grinding Gear Games @@ -49,10 +50,9 @@ return { type = "SoulCore", limit = 1, localMod = false, - "Gain additional Ailment Threshold equal to 15% of maximum Energy Shield", - "Gain additional Stun Threshold equal to 15% of maximum Energy Shield", - statOrder = { 4265, 10131 }, - tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to 15% of maximum Energy Shield" }, [416040624] = { "Gain additional Stun Threshold equal to 15% of maximum Energy Shield" }, }, + "40% increased Energy Shield from Equipped Focus", + statOrder = { 6423 }, + tradeHashes = { [3174700878] = { "40% increased Energy Shield from Equipped Focus" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -62,10 +62,9 @@ return { type = "SoulCore", limit = 1, localMod = false, - "Gain additional Ailment Threshold equal to 15% of maximum Energy Shield", - "Gain additional Stun Threshold equal to 15% of maximum Energy Shield", - statOrder = { 4265, 10131 }, - tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to 15% of maximum Energy Shield" }, [416040624] = { "Gain additional Stun Threshold equal to 15% of maximum Energy Shield" }, }, + "30% increased Energy Shield from Equipped Body Armour", + statOrder = { 8863 }, + tradeHashes = { [1195319608] = { "30% increased Energy Shield from Equipped Body Armour" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -93,7 +92,7 @@ return { limit = 1, localMod = false, "+4 to Maximum Rage", - statOrder = { 9603 }, + statOrder = { 9611 }, tradeHashes = { [1181501418] = { "+4 to Maximum Rage" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -106,10 +105,10 @@ return { type = "SoulCore", limit = 1, localMod = false, - "15% increased Curse Duration", - "15% increased Poison Duration", + "20% increased Curse Duration", + "20% increased Poison Duration", statOrder = { 1540, 2896 }, - tradeHashes = { [2011656677] = { "15% increased Poison Duration" }, [3824372849] = { "15% increased Curse Duration" }, }, + tradeHashes = { [2011656677] = { "20% increased Poison Duration" }, [3824372849] = { "20% increased Curse Duration" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -122,7 +121,7 @@ return { limit = 1, localMod = false, "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - statOrder = { 5516 }, + statOrder = { 5517 }, tradeHashes = { [2916861134] = { "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -134,7 +133,7 @@ return { limit = 1, localMod = false, "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - statOrder = { 5516 }, + statOrder = { 5517 }, tradeHashes = { [2916861134] = { "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -146,7 +145,7 @@ return { limit = 1, localMod = false, "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - statOrder = { 5516 }, + statOrder = { 5517 }, tradeHashes = { [2916861134] = { "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -160,7 +159,7 @@ return { limit = 1, localMod = false, "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - statOrder = { 5515 }, + statOrder = { 5516 }, tradeHashes = { [1228682002] = { "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -172,7 +171,7 @@ return { limit = 1, localMod = false, "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - statOrder = { 5515 }, + statOrder = { 5516 }, tradeHashes = { [1228682002] = { "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -184,7 +183,7 @@ return { limit = 1, localMod = false, "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - statOrder = { 5515 }, + statOrder = { 5516 }, tradeHashes = { [1228682002] = { "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -198,7 +197,7 @@ return { limit = 1, localMod = false, "50% chance when you gain a Power Charge to gain an additional Power Charge", - statOrder = { 5517 }, + statOrder = { 5518 }, tradeHashes = { [3537994888] = { "50% chance when you gain a Power Charge to gain an additional Power Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -210,7 +209,7 @@ return { limit = 1, localMod = false, "50% chance when you gain a Power Charge to gain an additional Power Charge", - statOrder = { 5517 }, + statOrder = { 5518 }, tradeHashes = { [3537994888] = { "50% chance when you gain a Power Charge to gain an additional Power Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -222,7 +221,7 @@ return { limit = 1, localMod = false, "50% chance when you gain a Power Charge to gain an additional Power Charge", - statOrder = { 5517 }, + statOrder = { 5518 }, tradeHashes = { [3537994888] = { "50% chance when you gain a Power Charge to gain an additional Power Charge" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -235,9 +234,9 @@ return { type = "SoulCore", limit = 1, localMod = false, - "12% increased speed of Recoup Effects", - statOrder = { 9657 }, - tradeHashes = { [2363593824] = { "12% increased speed of Recoup Effects" }, }, + "15% increased speed of Recoup Effects", + statOrder = { 9665 }, + tradeHashes = { [2363593824] = { "15% increased speed of Recoup Effects" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -247,9 +246,9 @@ return { type = "SoulCore", limit = 1, localMod = false, - "8% of Damage taken Recouped as Life", + "10% of Damage taken Recouped as Life", statOrder = { 1037 }, - tradeHashes = { [1444556985] = { "8% of Damage taken Recouped as Life" }, }, + tradeHashes = { [1444556985] = { "10% of Damage taken Recouped as Life" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -275,9 +274,9 @@ return { type = "SoulCore", limit = 1, localMod = false, - "20% increased Projectile Speed", - statOrder = { 897 }, - tradeHashes = { [3759663284] = { "20% increased Projectile Speed" }, }, + "Projectiles have 20% chance to Chain an additional time from terrain", + statOrder = { 9545 }, + tradeHashes = { [4081947835] = { "Projectiles have 20% chance to Chain an additional time from terrain" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -304,7 +303,7 @@ return { limit = 1, localMod = false, "Minions deal 40% increased Damage with Command Skills", - statOrder = { 9022 }, + statOrder = { 9027 }, tradeHashes = { [3742865955] = { "Minions deal 40% increased Damage with Command Skills" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -316,7 +315,7 @@ return { limit = 1, localMod = false, "Minions deal 40% increased Damage with Command Skills", - statOrder = { 9022 }, + statOrder = { 9027 }, tradeHashes = { [3742865955] = { "Minions deal 40% increased Damage with Command Skills" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -328,7 +327,7 @@ return { limit = 1, localMod = false, "Minions deal 40% increased Damage with Command Skills", - statOrder = { 9022 }, + statOrder = { 9027 }, tradeHashes = { [3742865955] = { "Minions deal 40% increased Damage with Command Skills" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -336,13 +335,453 @@ return { levelReq = 50, }, }, - ["Soul Core of Tacati"] = { + ["Jiquani's Soul Core of Automation"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Totem Skill Gems", + statOrder = { 973 }, + tradeHashes = { [2336703514] = { "+1 to Level of all Totem Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Totem Skill Gems", + statOrder = { 973 }, + tradeHashes = { [2336703514] = { "+1 to Level of all Totem Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Malediction"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Curse Skills", + statOrder = { 971 }, + tradeHashes = { [805298720] = { "+1 to Level of all Curse Skills" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Curse Skills", + statOrder = { 971 }, + tradeHashes = { [805298720] = { "+1 to Level of all Curse Skills" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Targeting"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Mark Skills", + statOrder = { 8823 }, + tradeHashes = { [1992191903] = { "+1 to Level of all Mark Skills" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Mark Skills", + statOrder = { 8823 }, + tradeHashes = { [1992191903] = { "+1 to Level of all Mark Skills" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Rallying"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Warcry Skill Gems", + statOrder = { 10522 }, + tradeHashes = { [2148999925] = { "+1 to Level of all Warcry Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Warcry Skill Gems", + statOrder = { 10522 }, + tradeHashes = { [2148999925] = { "+1 to Level of all Warcry Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Radiance"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Herald Skill Gems", + statOrder = { 7166 }, + tradeHashes = { [776287420] = { "+1 to Level of all Herald Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Herald Skill Gems", + statOrder = { 7166 }, + tradeHashes = { [776287420] = { "+1 to Level of all Herald Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Severing"] = { ["weapon"] = { type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Strike Skill Gems", + statOrder = { 10123 }, + tradeHashes = { [2305301734] = { "+1 to Level of all Strike Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Strike Skill Gems", + statOrder = { 10123 }, + tradeHashes = { [2305301734] = { "+1 to Level of all Strike Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Rippling"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Nova Skill Gems", + statOrder = { 9313 }, + tradeHashes = { [3148103963] = { "+1 to Level of all Nova Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Nova Skill Gems", + statOrder = { 9313 }, + tradeHashes = { [3148103963] = { "+1 to Level of all Nova Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Quaking"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Slam Skill Gems", + statOrder = { 9932 }, + tradeHashes = { [1839315243] = { "+1 to Level of all Slam Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Slam Skill Gems", + statOrder = { 9932 }, + tradeHashes = { [1839315243] = { "+1 to Level of all Slam Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Munitions"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Grenade Skill Gems", + statOrder = { 6943 }, + tradeHashes = { [3268281424] = { "+1 to Level of all Grenade Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Grenade Skill Gems", + statOrder = { 6943 }, + tradeHashes = { [3268281424] = { "+1 to Level of all Grenade Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Snares"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Hazard Skill Gems", + statOrder = { 6983 }, + tradeHashes = { [1078570138] = { "+1 to Level of all Hazard Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Hazard Skill Gems", + statOrder = { 6983 }, + tradeHashes = { [1078570138] = { "+1 to Level of all Hazard Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Abundance"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Plant Skill Gems", + statOrder = { 9489 }, + tradeHashes = { [2296009672] = { "+1 to Level of all Plant Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Plant Skill Gems", + statOrder = { 9489 }, + tradeHashes = { [2296009672] = { "+1 to Level of all Plant Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Squalls"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Wind Skill Gems", + statOrder = { 10550 }, + tradeHashes = { [653358410] = { "+1 to Level of all Wind Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Wind Skill Gems", + statOrder = { 10550 }, + tradeHashes = { [653358410] = { "+1 to Level of all Wind Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Jiquani's Soul Core of Thundering"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Storm Skill Gems", + statOrder = { 10114 }, + tradeHashes = { [1062190843] = { "+1 to Level of all Storm Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + ["caster"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+1 to Level of all Storm Skill Gems", + statOrder = { 10114 }, + tradeHashes = { [1062190843] = { "+1 to Level of all Storm Skill Gems" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Atziri's Soul Core of Devotion"] = { + ["helmet"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "1% increased Spirit for each Corrupted Item Equipped", + "Corrupting will always result in change", + statOrder = { 10058, 10653 }, + tradeHashes = { [2247017114] = { "1% increased Spirit for each Corrupted Item Equipped" }, [2139847597] = { "Corrupting will always result in change" }, }, + isSocketBound = true, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Atziri's Soul Core of Vitality"] = { + ["body armour"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "1% increased Maximum Life for each Corrupted Item Equipped", + "Corrupting will always result in change", + statOrder = { 2825, 10653 }, + tradeHashes = { [4169430079] = { "1% increased Maximum Life for each Corrupted Item Equipped" }, [2139847597] = { "Corrupting will always result in change" }, }, + isSocketBound = true, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Atziri's Soul Core of Alacrity"] = { + ["gloves"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "1% increased Skill Speed for each Corrupted Item Equipped", + "Corrupting will always result in change", + statOrder = { 9916, 10653 }, + tradeHashes = { [2203195791] = { "1% increased Skill Speed for each Corrupted Item Equipped" }, [2139847597] = { "Corrupting will always result in change" }, }, + isSocketBound = true, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Atziri's Soul Core of Inoculation"] = { + ["boots"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "+2% to Chaos Resistance for each Corrupted Item Equipped", + "Corrupting will always result in change", + statOrder = { 4675, 10653 }, + tradeHashes = { [138373935] = { "+2% to Chaos Resistance for each Corrupted Item Equipped" }, [2139847597] = { "Corrupting will always result in change" }, }, + isSocketBound = true, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 50, + }, + }, + ["Soul Core of Vizoma"] = { + ["weapon"] = { + type = "SoulCore", + limit = 1, localMod = true, - "15% chance to Poison on Hit with this weapon", - statOrder = { 7808 }, - tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, }, + "+150 to Accuracy Rating", + statOrder = { 835 }, + tradeHashes = { [691932474] = { "+150 to Accuracy Rating" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 0, + }, + ["wand"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "30% increased Critical Hit Chance for Spells", + statOrder = { 978 }, + tradeHashes = { [737908626] = { "30% increased Critical Hit Chance for Spells" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 0, + }, + ["staff"] = { + type = "SoulCore", + limit = 1, + localMod = false, + "30% increased Critical Hit Chance for Spells", + statOrder = { 978 }, + tradeHashes = { [737908626] = { "30% increased Critical Hit Chance for Spells" }, }, + canSocketInUniqueItems = true, + canSocketInJewellery = true, + canSocketInCorruptedSanctified = true, + levelReq = 0, + }, + }, + ["Soul Core of Tacati"] = { + ["weapon"] = { + type = "SoulCore", + localMod = false, + "25% increased Magnitude of Poison you inflict", + statOrder = { 9500 }, + tradeHashes = { [2487305362] = { "25% increased Magnitude of Poison you inflict" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -351,9 +790,9 @@ return { ["armour"] = { type = "SoulCore", localMod = false, - "+11% to Chaos Resistance", + "+13% to Chaos Resistance", statOrder = { 1024 }, - tradeHashes = { [2923486259] = { "+11% to Chaos Resistance" }, }, + tradeHashes = { [2923486259] = { "+13% to Chaos Resistance" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -363,10 +802,11 @@ return { ["Soul Core of Opiloti"] = { ["weapon"] = { type = "SoulCore", - localMod = true, - "15% chance to cause Bleeding on Hit", - statOrder = { 2264 }, - tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, }, + limit = 1, + localMod = false, + "40% increased Magnitude of Bleeding you inflict", + statOrder = { 4807 }, + tradeHashes = { [3166958180] = { "40% increased Magnitude of Bleeding you inflict" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -374,10 +814,11 @@ return { }, ["helmet"] = { type = "SoulCore", + limit = 1, localMod = false, - "20% increased Charm Charges gained", - statOrder = { 5601 }, - tradeHashes = { [3585532255] = { "20% increased Charm Charges gained" }, }, + "25% increased Pin duration", + statOrder = { 9477 }, + tradeHashes = { [3985867204] = { "25% increased Pin duration" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -387,10 +828,11 @@ return { ["Soul Core of Jiquani"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = false, - "Recover 2% of maximum Life on Kill", + "Recover 5% of maximum Life on Kill", statOrder = { 1511 }, - tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, }, + tradeHashes = { [2023107756] = { "Recover 5% of maximum Life on Kill" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -398,10 +840,11 @@ return { }, ["body armour"] = { type = "SoulCore", + limit = 1, localMod = false, - "3% increased maximum Life", + "5% increased maximum Life", statOrder = { 889 }, - tradeHashes = { [983749596] = { "3% increased maximum Life" }, }, + tradeHashes = { [983749596] = { "5% increased maximum Life" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -411,10 +854,11 @@ return { ["Soul Core of Zalatl"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = false, - "Recover 2% of maximum Mana on Kill", + "Recover 4% of maximum Mana on Kill", statOrder = { 1513 }, - tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, }, + tradeHashes = { [1030153674] = { "Recover 4% of maximum Mana on Kill" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -422,10 +866,11 @@ return { }, ["helmet"] = { type = "SoulCore", + limit = 1, localMod = false, - "3% increased maximum Mana", + "5% increased maximum Mana", statOrder = { 894 }, - tradeHashes = { [2748665614] = { "3% increased maximum Mana" }, }, + tradeHashes = { [2748665614] = { "5% increased maximum Mana" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -436,9 +881,9 @@ return { ["weapon"] = { type = "SoulCore", localMod = false, - "30% increased Elemental Damage with Attacks", + "40% increased Elemental Damage with Attacks", statOrder = { 877 }, - tradeHashes = { [387439868] = { "30% increased Elemental Damage with Attacks" }, }, + tradeHashes = { [387439868] = { "40% increased Elemental Damage with Attacks" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -447,9 +892,9 @@ return { ["armour"] = { type = "SoulCore", localMod = false, - "+5% to all Elemental Resistances", + "+6% to all Elemental Resistances", statOrder = { 1013 }, - tradeHashes = { [2901986750] = { "+5% to all Elemental Resistances" }, }, + tradeHashes = { [2901986750] = { "+6% to all Elemental Resistances" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -459,10 +904,11 @@ return { ["Soul Core of Puhuarte"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = false, - "30% increased Flammability Magnitude", - statOrder = { 1055 }, - tradeHashes = { [2968503605] = { "30% increased Flammability Magnitude" }, }, + "40% increased Ignite Magnitude", + statOrder = { 1077 }, + tradeHashes = { [3791899485] = { "40% increased Ignite Magnitude" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -470,10 +916,11 @@ return { }, ["gloves"] = { type = "SoulCore", + limit = 1, localMod = false, - "+1% to Maximum Fire Resistance", + "+2% to Maximum Fire Resistance", statOrder = { 1009 }, - tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, }, + tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -483,10 +930,11 @@ return { ["Soul Core of Tzamoto"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = false, - "30% increased Freeze Buildup", + "60% increased Freeze Buildup", statOrder = { 1057 }, - tradeHashes = { [473429811] = { "30% increased Freeze Buildup" }, }, + tradeHashes = { [473429811] = { "60% increased Freeze Buildup" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -494,10 +942,11 @@ return { }, ["helmet"] = { type = "SoulCore", + limit = 1, localMod = false, - "+1% to Maximum Cold Resistance", + "+2% to Maximum Cold Resistance", statOrder = { 1010 }, - tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, }, + tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -507,10 +956,11 @@ return { ["Soul Core of Xopec"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = false, - "30% increased chance to Shock", - statOrder = { 1059 }, - tradeHashes = { [293638271] = { "30% increased chance to Shock" }, }, + "25% increased Magnitude of Shock you inflict", + statOrder = { 9847 }, + tradeHashes = { [2527686725] = { "25% increased Magnitude of Shock you inflict" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -518,10 +968,11 @@ return { }, ["boots"] = { type = "SoulCore", + limit = 1, localMod = false, - "+1% to Maximum Lightning Resistance", + "+2% to Maximum Lightning Resistance", statOrder = { 1011 }, - tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, }, + tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -544,7 +995,7 @@ return { type = "SoulCore", localMod = false, "10% increased Quantity of Gold Dropped by Slain Enemies", - statOrder = { 6912 }, + statOrder = { 6915 }, tradeHashes = { [3175163625] = { "10% increased Quantity of Gold Dropped by Slain Enemies" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -555,10 +1006,11 @@ return { ["Soul Core of Topotante"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = true, - "Attacks with this Weapon Penetrate 15% Elemental Resistances", + "Attacks with this Weapon Penetrate 25% Elemental Resistances", statOrder = { 3436 }, - tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 15% Elemental Resistances" }, }, + tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 25% Elemental Resistances" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -566,10 +1018,11 @@ return { }, ["boots"] = { type = "SoulCore", + limit = 1, localMod = false, - "25% increased Elemental Ailment Threshold", - statOrder = { 4266 }, - tradeHashes = { [3544800472] = { "25% increased Elemental Ailment Threshold" }, }, + "25% reduced Effect of Non-Damaging Ailments on you", + statOrder = { 9224 }, + tradeHashes = { [1519474779] = { "25% reduced Effect of Non-Damaging Ailments on you" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -592,7 +1045,7 @@ return { type = "SoulCore", localMod = false, "15% reduced Slowing Potency of Debuffs on You", - statOrder = { 4745 }, + statOrder = { 4746 }, tradeHashes = { [924253255] = { "15% reduced Slowing Potency of Debuffs on You" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -603,6 +1056,7 @@ return { ["Soul Core of Ticaba"] = { ["weapon"] = { type = "SoulCore", + limit = 1, localMod = true, "+5% to Critical Damage Bonus", statOrder = { 945 }, @@ -614,10 +1068,11 @@ return { }, ["body armour"] = { type = "SoulCore", + limit = 1, localMod = false, - "Hits against you have 20% reduced Critical Damage Bonus", + "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 1005 }, - tradeHashes = { [3855016469] = { "Hits against you have 20% reduced Critical Damage Bonus" }, }, + tradeHashes = { [3855016469] = { "Hits against you have 50% reduced Critical Damage Bonus" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -625,10 +1080,11 @@ return { }, ["shield"] = { type = "SoulCore", + limit = 1, localMod = false, - "Hits against you have 20% reduced Critical Damage Bonus", + "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 1005 }, - tradeHashes = { [3855016469] = { "Hits against you have 20% reduced Critical Damage Bonus" }, }, + tradeHashes = { [3855016469] = { "Hits against you have 50% reduced Critical Damage Bonus" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -636,10 +1092,11 @@ return { }, ["buckler"] = { type = "SoulCore", + limit = 1, localMod = false, - "Hits against you have 20% reduced Critical Damage Bonus", + "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 1005 }, - tradeHashes = { [3855016469] = { "Hits against you have 20% reduced Critical Damage Bonus" }, }, + tradeHashes = { [3855016469] = { "Hits against you have 50% reduced Critical Damage Bonus" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -650,9 +1107,9 @@ return { ["weapon"] = { type = "SoulCore", localMod = true, - "Convert 20% of Requirements to Strength", - statOrder = { 7813 }, - tradeHashes = { [1556124492] = { "Convert 20% of Requirements to Strength" }, }, + "Convert 40% of Requirements to Strength", + statOrder = { 7819 }, + tradeHashes = { [1556124492] = { "Convert 40% of Requirements to Strength" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -661,9 +1118,9 @@ return { ["armour"] = { type = "SoulCore", localMod = true, - "Convert 20% of Requirements to Strength", - statOrder = { 7813 }, - tradeHashes = { [1556124492] = { "Convert 20% of Requirements to Strength" }, }, + "Convert 40% of Requirements to Strength", + statOrder = { 7819 }, + tradeHashes = { [1556124492] = { "Convert 40% of Requirements to Strength" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -674,9 +1131,9 @@ return { ["weapon"] = { type = "SoulCore", localMod = true, - "Convert 20% of Requirements to Dexterity", - statOrder = { 7811 }, - tradeHashes = { [1496740334] = { "Convert 20% of Requirements to Dexterity" }, }, + "Convert 40% of Requirements to Dexterity", + statOrder = { 7817 }, + tradeHashes = { [1496740334] = { "Convert 40% of Requirements to Dexterity" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -685,9 +1142,9 @@ return { ["armour"] = { type = "SoulCore", localMod = true, - "Convert 20% of Requirements to Dexterity", - statOrder = { 7811 }, - tradeHashes = { [1496740334] = { "Convert 20% of Requirements to Dexterity" }, }, + "Convert 40% of Requirements to Dexterity", + statOrder = { 7817 }, + tradeHashes = { [1496740334] = { "Convert 40% of Requirements to Dexterity" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -698,9 +1155,9 @@ return { ["weapon"] = { type = "SoulCore", localMod = true, - "Convert 20% of Requirements to Intelligence", - statOrder = { 7812 }, - tradeHashes = { [2913012734] = { "Convert 20% of Requirements to Intelligence" }, }, + "Convert 40% of Requirements to Intelligence", + statOrder = { 7818 }, + tradeHashes = { [2913012734] = { "Convert 40% of Requirements to Intelligence" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -709,9 +1166,9 @@ return { ["armour"] = { type = "SoulCore", localMod = true, - "Convert 20% of Requirements to Intelligence", - statOrder = { 7812 }, - tradeHashes = { [2913012734] = { "Convert 20% of Requirements to Intelligence" }, }, + "Convert 40% of Requirements to Intelligence", + statOrder = { 7818 }, + tradeHashes = { [2913012734] = { "Convert 40% of Requirements to Intelligence" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -725,7 +1182,7 @@ return { limitId = "AncientAugment", localMod = false, "Gain Armour equal to 35% of Life Lost from Hits in the past 8 seconds", - statOrder = { 6760 }, + statOrder = { 6763 }, tradeHashes = { [3903510399] = { "Gain Armour equal to 35% of Life Lost from Hits in the past 8 seconds" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -738,7 +1195,7 @@ return { limitId = "AncientAugment", localMod = false, "10% of Physical Damage prevented Recouped as Life", - statOrder = { 9445 }, + statOrder = { 9452 }, tradeHashes = { [1374654984] = { "10% of Physical Damage prevented Recouped as Life" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -752,7 +1209,7 @@ return { localMod = false, "Lose 5% of maximum Life per second while Sprinting", "25% increased Movement Speed while Sprinting", - statOrder = { 7459, 10062 }, + statOrder = { 7465, 10073 }, tradeHashes = { [3473409233] = { "Lose 5% of maximum Life per second while Sprinting" }, [3107707789] = { "25% increased Movement Speed while Sprinting" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -767,7 +1224,7 @@ return { limitId = "AncientAugment", localMod = false, "You Recoup 50% of Damage taken by your Offerings as Life", - statOrder = { 9681 }, + statOrder = { 9689 }, tradeHashes = { [1937310173] = { "You Recoup 50% of Damage taken by your Offerings as Life" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -780,7 +1237,7 @@ return { limitId = "AncientAugment", localMod = false, "One of your Persistent Minions revives when an Offering expires", - statOrder = { 9775 }, + statOrder = { 9783 }, tradeHashes = { [1480688478] = { "One of your Persistent Minions revives when an Offering expires" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -793,7 +1250,7 @@ return { limitId = "AncientAugment", localMod = false, "Sacrifice 10% of maximum Life to gain that much Guard when you Dodge Roll", - statOrder = { 9782 }, + statOrder = { 9790 }, tradeHashes = { [1585886916] = { "Sacrifice 10% of maximum Life to gain that much Guard when you Dodge Roll" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -807,9 +1264,9 @@ return { limit = 1, limitId = "AncientAugment", localMod = false, - "+1 to maximum Mana per 2 Item Energy Shield on Equipped Helmet", - statOrder = { 6718 }, - tradeHashes = { [280497929] = { "+1 to maximum Mana per 2 Item Energy Shield on Equipped Helmet" }, }, + "+1 to maximum Mana per 3 Item Armour on Equipped Helmet", + statOrder = { 6721 }, + tradeHashes = { [995044379] = { "+1 to maximum Mana per 3 Item Armour on Equipped Helmet" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, canSocketInCorruptedSanctified = true, @@ -822,7 +1279,7 @@ return { localMod = false, "Energy Shield Recharge starts after spending a total of", " 2000 Mana, no more than once every 2 seconds", - statOrder = { 6443, 6443.1 }, + statOrder = { 6445, 6445.1 }, tradeHashes = { [2241849004] = { "Energy Shield Recharge starts after spending a total of", " 2000 Mana, no more than once every 2 seconds" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -836,7 +1293,7 @@ return { localMod = false, "Increases and Reductions to Movement Speed also", " apply to Energy Shield Recharge Rate", - statOrder = { 7322, 7322.1 }, + statOrder = { 7328, 7328.1 }, tradeHashes = { [4282982513] = { "Increases and Reductions to Movement Speed also", " apply to Energy Shield Recharge Rate" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -851,7 +1308,7 @@ return { limitId = "AncientAugment", localMod = false, "A random Skill that requires Glory generates 50% of its maximum Glory when your Marks Activate", - statOrder = { 8816 }, + statOrder = { 8821 }, tradeHashes = { [2231410646] = { "A random Skill that requires Glory generates 50% of its maximum Glory when your Marks Activate" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -864,7 +1321,7 @@ return { limitId = "AncientAugment", localMod = false, "Your Energy Shield Recharge starts when your Minions are Reformed", - statOrder = { 6441 }, + statOrder = { 6443 }, tradeHashes = { [1919509054] = { "Your Energy Shield Recharge starts when your Minions are Reformed" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -892,7 +1349,7 @@ return { limitId = "AncientAugment", localMod = false, "Remove a Damaging Ailment when you use a Command Skill", - statOrder = { 9742 }, + statOrder = { 9750 }, tradeHashes = { [594547430] = { "Remove a Damaging Ailment when you use a Command Skill" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -919,7 +1376,7 @@ return { localMod = false, "1% increased Movement Speed per 15 Spirit, up to a maximum of 40%", "Other Modifiers to Movement Speed except for Sprinting do not apply", - statOrder = { 9147, 9147.1 }, + statOrder = { 9152, 9152.1 }, tradeHashes = { [2703838669] = { "1% increased Movement Speed per 15 Spirit, up to a maximum of 40%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -960,7 +1417,7 @@ return { limitId = "AncientAugment", localMod = false, "15% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", - statOrder = { 7965 }, + statOrder = { 7971 }, tradeHashes = { [2876843277] = { "15% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -988,7 +1445,7 @@ return { limitId = "AncientAugment", localMod = false, "25% increased Life Cost Efficiency", - statOrder = { 4706 }, + statOrder = { 4707 }, tradeHashes = { [310945763] = { "25% increased Life Cost Efficiency" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -1029,7 +1486,7 @@ return { limitId = "AncientAugment", localMod = false, "Critical Hit chance is Lucky against Parried enemies", - statOrder = { 5805 }, + statOrder = { 5806 }, tradeHashes = { [935518591] = { "Critical Hit chance is Lucky against Parried enemies" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -1042,7 +1499,7 @@ return { limitId = "AncientAugment", localMod = false, "Prevent +3% of Damage from Deflected Hits", - statOrder = { 4677 }, + statOrder = { 4678 }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -1193,7 +1650,7 @@ return { tradeHashes = { [3336890334] = { "Adds 1 to 20 Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1209,7 +1666,7 @@ return { tradeHashes = { [3278136794] = { "Gain 8% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1225,7 +1682,7 @@ return { tradeHashes = { [3278136794] = { "Gain 8% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1260,7 +1717,7 @@ return { tradeHashes = { [1805374733] = { "16% increased Physical Damage" }, }, bonded = { "20% increased effect of Fully Broken Armour", - statOrder = { 5232 }, + statOrder = { 5233 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -1524,7 +1981,7 @@ return { tradeHashes = { [1368271171] = { "Gain 20 Mana per enemy killed" }, }, bonded = { "12% of Skill Mana Costs Converted to Life Costs", - statOrder = { 4742 }, + statOrder = { 4743 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1540,7 +1997,7 @@ return { tradeHashes = { [789117908] = { "25% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1556,7 +2013,7 @@ return { tradeHashes = { [789117908] = { "25% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1591,7 +2048,7 @@ return { tradeHashes = { [791928121] = { "Causes 30% increased Stun Buildup" }, }, bonded = { "40% increased Damage against Immobilised Enemies", - statOrder = { 5954 }, + statOrder = { 5955 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1603,11 +2060,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 12% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 12% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1619,11 +2076,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 12% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 12% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1702,7 +2159,7 @@ return { type = "Rune", localMod = false, "12% increased Life and Mana Recovery from Flasks", - statOrder = { 6639 }, + statOrder = { 6641 }, tradeHashes = { [2310741722] = { "12% increased Life and Mana Recovery from Flasks" }, }, bonded = { "+20 to maximum Life", @@ -1859,7 +2316,7 @@ return { tradeHashes = { [3336890334] = { "Adds 1 to 10 Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1875,7 +2332,7 @@ return { tradeHashes = { [3278136794] = { "Gain 6% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1891,7 +2348,7 @@ return { tradeHashes = { [3278136794] = { "Gain 6% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -1926,7 +2383,7 @@ return { tradeHashes = { [1805374733] = { "14% increased Physical Damage" }, }, bonded = { "20% increased effect of Fully Broken Armour", - statOrder = { 5232 }, + statOrder = { 5233 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -2190,7 +2647,7 @@ return { tradeHashes = { [1368271171] = { "Gain 10 Mana per enemy killed" }, }, bonded = { "12% of Skill Mana Costs Converted to Life Costs", - statOrder = { 4742 }, + statOrder = { 4743 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2206,7 +2663,7 @@ return { tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2222,7 +2679,7 @@ return { tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2257,7 +2714,7 @@ return { tradeHashes = { [791928121] = { "Causes 20% increased Stun Buildup" }, }, bonded = { "40% increased Damage against Immobilised Enemies", - statOrder = { 5954 }, + statOrder = { 5955 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2269,11 +2726,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 10% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 10% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2285,11 +2742,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 10% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 10% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2368,7 +2825,7 @@ return { type = "Rune", localMod = false, "8% increased Life and Mana Recovery from Flasks", - statOrder = { 6639 }, + statOrder = { 6641 }, tradeHashes = { [2310741722] = { "8% increased Life and Mana Recovery from Flasks" }, }, bonded = { "+20 to maximum Life", @@ -2525,7 +2982,7 @@ return { tradeHashes = { [3336890334] = { "Adds 1 to 30 Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2541,7 +2998,7 @@ return { tradeHashes = { [3278136794] = { "Gain 10% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2557,7 +3014,7 @@ return { tradeHashes = { [3278136794] = { "Gain 10% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2592,7 +3049,7 @@ return { tradeHashes = { [1805374733] = { "18% increased Physical Damage" }, }, bonded = { "20% increased effect of Fully Broken Armour", - statOrder = { 5232 }, + statOrder = { 5233 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -2856,7 +3313,7 @@ return { tradeHashes = { [1368271171] = { "Gain 30 Mana per enemy killed" }, }, bonded = { "12% of Skill Mana Costs Converted to Life Costs", - statOrder = { 4742 }, + statOrder = { 4743 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2872,7 +3329,7 @@ return { tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2888,7 +3345,7 @@ return { tradeHashes = { [789117908] = { "30% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2923,7 +3380,7 @@ return { tradeHashes = { [791928121] = { "Causes 40% increased Stun Buildup" }, }, bonded = { "40% increased Damage against Immobilised Enemies", - statOrder = { 5954 }, + statOrder = { 5955 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2935,11 +3392,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 14% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 14% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -2951,11 +3408,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 14% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 14% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3034,7 +3491,7 @@ return { type = "Rune", localMod = false, "16% increased Life and Mana Recovery from Flasks", - statOrder = { 6639 }, + statOrder = { 6641 }, tradeHashes = { [2310741722] = { "16% increased Life and Mana Recovery from Flasks" }, }, bonded = { "+20 to maximum Life", @@ -3191,7 +3648,7 @@ return { tradeHashes = { [3336890334] = { "Adds 1 to 40 Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3207,7 +3664,7 @@ return { tradeHashes = { [3278136794] = { "Gain 12% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3223,7 +3680,7 @@ return { tradeHashes = { [3278136794] = { "Gain 12% of Damage as Extra Lightning Damage" }, }, bonded = { "30% increased Magnitude of Shock you inflict", - statOrder = { 9839 }, + statOrder = { 9847 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3258,7 +3715,7 @@ return { tradeHashes = { [1805374733] = { "20% increased Physical Damage" }, }, bonded = { "20% increased effect of Fully Broken Armour", - statOrder = { 5232 }, + statOrder = { 5233 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -3522,7 +3979,7 @@ return { tradeHashes = { [1368271171] = { "Gain 40 Mana per enemy killed" }, }, bonded = { "12% of Skill Mana Costs Converted to Life Costs", - statOrder = { 4742 }, + statOrder = { 4743 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3538,7 +3995,7 @@ return { tradeHashes = { [789117908] = { "35% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3554,7 +4011,7 @@ return { tradeHashes = { [789117908] = { "35% increased Mana Regeneration Rate" }, }, bonded = { "16% increased Mana Cost Efficiency", - statOrder = { 4716 }, + statOrder = { 4717 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3589,7 +4046,7 @@ return { tradeHashes = { [791928121] = { "Causes 50% increased Stun Buildup" }, }, bonded = { "40% increased Damage against Immobilised Enemies", - statOrder = { 5954 }, + statOrder = { 5955 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3601,11 +4058,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 16% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 16% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3617,11 +4074,11 @@ return { type = "Rune", localMod = false, "Gain additional Stun Threshold equal to 16% of maximum Energy Shield", - statOrder = { 10131 }, + statOrder = { 10144 }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 16% of maximum Energy Shield" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -3700,7 +4157,7 @@ return { type = "Rune", localMod = false, "20% increased Life and Mana Recovery from Flasks", - statOrder = { 6639 }, + statOrder = { 6641 }, tradeHashes = { [2310741722] = { "20% increased Life and Mana Recovery from Flasks" }, }, bonded = { "+20 to maximum Life", @@ -4643,7 +5100,7 @@ return { type = "Rune", localMod = false, "6 to 9 Physical Thorns damage", - statOrder = { 10254 }, + statOrder = { 10268 }, tradeHashes = { [2881298780] = { "6 to 9 Physical Thorns damage" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4669,7 +5126,7 @@ return { type = "Rune", localMod = false, "14 to 21 Physical Thorns damage", - statOrder = { 10254 }, + statOrder = { 10268 }, tradeHashes = { [2881298780] = { "14 to 21 Physical Thorns damage" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4695,7 +5152,7 @@ return { type = "Rune", localMod = false, "31 to 52 Physical Thorns damage", - statOrder = { 10254 }, + statOrder = { 10268 }, tradeHashes = { [2881298780] = { "31 to 52 Physical Thorns damage" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4709,7 +5166,7 @@ return { type = "Rune", localMod = false, "Minions gain 10% of their Physical Damage as Extra Lightning Damage", - statOrder = { 9069 }, + statOrder = { 9074 }, tradeHashes = { [1433756169] = { "Minions gain 10% of their Physical Damage as Extra Lightning Damage" }, }, bonded = { "Minions deal 20% increased Damage", @@ -4725,7 +5182,7 @@ return { type = "Rune", localMod = false, "Minions take 10% of Physical Damage as Lightning Damage", - statOrder = { 9070 }, + statOrder = { 9075 }, tradeHashes = { [889552744] = { "Minions take 10% of Physical Damage as Lightning Damage" }, }, bonded = { "Minions have +10% to all Elemental Resistances", @@ -4743,11 +5200,11 @@ return { type = "Rune", localMod = false, "Meta Skills gain 10% increased Energy", - statOrder = { 6405 }, + statOrder = { 6407 }, tradeHashes = { [4236566306] = { "Meta Skills gain 10% increased Energy" }, }, bonded = { "Invocated Spells have 25% chance to consume half as much Energy", - statOrder = { 7381 }, + statOrder = { 7387 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4759,11 +5216,11 @@ return { type = "Rune", localMod = false, "1 to 100 Lightning Thorns damage", - statOrder = { 10253 }, + statOrder = { 10267 }, tradeHashes = { [757050353] = { "1 to 100 Lightning Thorns damage" }, }, bonded = { "15% increased Thorns damage", - statOrder = { 10247 }, + statOrder = { 10261 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4781,7 +5238,7 @@ return { tradeHashes = { [970213192] = { "8% increased Skill Speed" }, }, bonded = { "15% increased Reservation Efficiency of Herald Skills", - statOrder = { 9759 }, + statOrder = { 9767 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4793,7 +5250,7 @@ return { type = "Rune", localMod = false, "Debuffs on you expire 8% faster", - statOrder = { 6094 }, + statOrder = { 6095 }, tradeHashes = { [1238227257] = { "Debuffs on you expire 8% faster" }, }, bonded = { "15% increased Elemental Ailment Threshold", @@ -4811,11 +5268,11 @@ return { type = "Rune", localMod = true, "Attacks with this Weapon have 10% chance to inflict Exposure", - statOrder = { 7731 }, + statOrder = { 7737 }, tradeHashes = { [3678845069] = { "Attacks with this Weapon have 10% chance to inflict Exposure" }, }, bonded = { "20% increased Exposure Effect", - statOrder = { 6528 }, + statOrder = { 6530 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4827,7 +5284,7 @@ return { type = "Rune", localMod = false, "10% reduced effect of Shock on you", - statOrder = { 9853 }, + statOrder = { 9861 }, tradeHashes = { [3801067695] = { "10% reduced effect of Shock on you" }, }, bonded = { "10% reduced Shock duration on you", @@ -4882,11 +5339,11 @@ return { limit = 1, localMod = false, "Gain 5% of Damage as Extra Damage of all Elements", - statOrder = { 9258 }, + statOrder = { 9264 }, tradeHashes = { [731403740] = { "Gain 5% of Damage as Extra Damage of all Elements" }, }, bonded = { "8% chance to gain an additional random Charge when you gain a Charge", - statOrder = { 5518 }, + statOrder = { 5519 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -4899,7 +5356,7 @@ return { limit = 1, localMod = false, "Gain 5% of Damage as Extra Damage of all Elements", - statOrder = { 9258 }, + statOrder = { 9264 }, tradeHashes = { [731403740] = { "Gain 5% of Damage as Extra Damage of all Elements" }, }, bonded = { "12% chance when collecting an Elemental Infusion to gain an", @@ -4917,7 +5374,7 @@ return { limit = 1, localMod = false, "Gain 5% of Damage as Extra Damage of all Elements", - statOrder = { 9258 }, + statOrder = { 9264 }, tradeHashes = { [731403740] = { "Gain 5% of Damage as Extra Damage of all Elements" }, }, bonded = { "12% chance when collecting an Elemental Infusion to gain an", @@ -4990,11 +5447,11 @@ return { limit = 1, localMod = false, "8% increased Deflection Rating while moving", - statOrder = { 6115 }, + statOrder = { 6116 }, tradeHashes = { [1382805233] = { "8% increased Deflection Rating while moving" }, }, bonded = { "Prevent +3% of Damage from Deflected Hits", - statOrder = { 4677 }, + statOrder = { 4678 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5066,11 +5523,11 @@ return { limit = 1, localMod = false, "25% increased Exposure Effect", - statOrder = { 6528 }, + statOrder = { 6530 }, tradeHashes = { [2074866941] = { "25% increased Exposure Effect" }, }, bonded = { "15% increased Magnitude of Non-Damaging Ailments you inflict", - statOrder = { 9218 }, + statOrder = { 9223 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5109,7 +5566,7 @@ return { bonded = { "Gain additional Ailment Threshold equal to 50% of maximum Energy Shield", "Gain additional Stun Threshold equal to 50% of maximum Energy Shield", - statOrder = { 4265, 10131 }, + statOrder = { 4265, 10144 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5124,11 +5581,11 @@ return { limit = 1, localMod = false, "20% increased Magnitude of Damaging Ailments you inflict", - statOrder = { 6062 }, + statOrder = { 6063 }, tradeHashes = { [1381474422] = { "20% increased Magnitude of Damaging Ailments you inflict" }, }, bonded = { "15% increased Duration of Damaging Ailments on Enemies", - statOrder = { 6060 }, + statOrder = { 6061 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5143,7 +5600,7 @@ return { limit = 1, localMod = false, "30% increased Magnitude of Non-Damaging Ailments you inflict", - statOrder = { 9218 }, + statOrder = { 9223 }, tradeHashes = { [782230869] = { "30% increased Magnitude of Non-Damaging Ailments you inflict" }, }, bonded = { "15% increased Duration of Elemental Ailments on Enemies", @@ -5166,7 +5623,7 @@ return { tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, }, bonded = { "20% increased Mana Cost Efficiency while on Low Mana", - statOrder = { 4721 }, + statOrder = { 4722 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5200,11 +5657,11 @@ return { limit = 1, localMod = false, "25% chance for Spell Skills to fire 2 additional Projectiles", - statOrder = { 10027 }, + statOrder = { 10037 }, tradeHashes = { [2910761524] = { "25% chance for Spell Skills to fire 2 additional Projectiles" }, }, bonded = { "Every Rage also grants 1% increased Spell Damage", - statOrder = { 10001 }, + statOrder = { 10011 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5217,11 +5674,11 @@ return { limit = 1, localMod = false, "25% chance for Spell Skills to fire 2 additional Projectiles", - statOrder = { 10027 }, + statOrder = { 10037 }, tradeHashes = { [2910761524] = { "25% chance for Spell Skills to fire 2 additional Projectiles" }, }, bonded = { "Every Rage also grants 1% increased Spell Damage", - statOrder = { 10001 }, + statOrder = { 10011 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5236,7 +5693,7 @@ return { limit = 1, localMod = false, "20% increased Withered Magnitude", - statOrder = { 10549 }, + statOrder = { 10565 }, tradeHashes = { [3973629633] = { "20% increased Withered Magnitude" }, }, bonded = { "+7% to Chaos Resistance", @@ -5274,7 +5731,7 @@ return { limit = 1, localMod = false, "Adds 19 to 28 Cold Damage against Chilled Enemies", - statOrder = { 8957 }, + statOrder = { 8962 }, tradeHashes = { [3734640451] = { "Adds 19 to 28 Cold Damage against Chilled Enemies" }, }, bonded = { "+2% to Maximum Cold Resistance", @@ -5293,7 +5750,7 @@ return { limit = 1, localMod = false, "Adds 1 to 60 Lightning Damage against Shocked Enemies", - statOrder = { 6905 }, + statOrder = { 6908 }, tradeHashes = { [90012347] = { "Adds 1 to 60 Lightning Damage against Shocked Enemies" }, }, bonded = { "+2% to Maximum Lightning Resistance", @@ -5316,7 +5773,7 @@ return { tradeHashes = { [3032590688] = { "Adds 5 to 12 Physical Damage to Attacks" }, }, bonded = { "Fissure Skills have +2 to Limit", - statOrder = { 6611 }, + statOrder = { 6613 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5335,7 +5792,7 @@ return { tradeHashes = { [458438597] = { "15% of Damage is taken from Mana before Life" }, }, bonded = { "8% of Maximum Life Converted to Energy Shield", - statOrder = { 8879 }, + statOrder = { 8884 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5349,7 +5806,7 @@ return { type = "Rune", localMod = false, "Upgrades a socketed Rune", - statOrder = { 6241 }, + statOrder = { 6243 }, tradeHashes = { [4044077288] = { "Upgrades a socketed Rune" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5361,7 +5818,7 @@ return { type = "Rune", localMod = false, "Upgrades a socketed Rune", - statOrder = { 6241 }, + statOrder = { 6243 }, tradeHashes = { [4044077288] = { "Upgrades a socketed Rune" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5373,7 +5830,7 @@ return { type = "Rune", localMod = false, "Upgrades a socketed Rune", - statOrder = { 6241 }, + statOrder = { 6243 }, tradeHashes = { [4044077288] = { "Upgrades a socketed Rune" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5455,11 +5912,11 @@ return { type = "Rune", localMod = false, "8% increased Runic Ward Regeneration Rate", - statOrder = { 10513 }, + statOrder = { 10528 }, tradeHashes = { [2392260628] = { "8% increased Runic Ward Regeneration Rate" }, }, bonded = { "Regenerate 10 Runic Ward per second", - statOrder = { 4761 }, + statOrder = { 4762 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5473,11 +5930,11 @@ return { type = "Rune", localMod = false, "12% increased Runic Ward Regeneration Rate", - statOrder = { 10513 }, + statOrder = { 10528 }, tradeHashes = { [2392260628] = { "12% increased Runic Ward Regeneration Rate" }, }, bonded = { "Regenerate 15 Runic Ward per second", - statOrder = { 4761 }, + statOrder = { 4762 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5491,11 +5948,11 @@ return { type = "Rune", localMod = false, "16% increased Runic Ward Regeneration Rate", - statOrder = { 10513 }, + statOrder = { 10528 }, tradeHashes = { [2392260628] = { "16% increased Runic Ward Regeneration Rate" }, }, bonded = { "Regenerate 20 Runic Ward per second", - statOrder = { 4761 }, + statOrder = { 4762 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5509,11 +5966,11 @@ return { type = "Rune", localMod = false, "20% increased Runic Ward Regeneration Rate", - statOrder = { 10513 }, + statOrder = { 10528 }, tradeHashes = { [2392260628] = { "20% increased Runic Ward Regeneration Rate" }, }, bonded = { "Regenerate 25 Runic Ward per second", - statOrder = { 4761 }, + statOrder = { 4762 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5545,11 +6002,11 @@ return { limit = 1, localMod = false, "Every 4 seconds, gain Guard equal to 20% of maximum Runic Ward for 2 seconds", - statOrder = { 6797 }, + statOrder = { 6800 }, tradeHashes = { [1963589548] = { "Every 4 seconds, gain Guard equal to 20% of maximum Runic Ward for 2 seconds" }, }, bonded = { "8% increased Guard gained", - statOrder = { 6946 }, + statOrder = { 6950 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5563,7 +6020,7 @@ return { type = "Rune", localMod = false, "Attacks Break Armour equal to 15% of maximum Runic Ward", - statOrder = { 5011 }, + statOrder = { 5012 }, tradeHashes = { [2608793552] = { "Attacks Break Armour equal to 15% of maximum Runic Ward" }, }, bonded = { "Break 10% increased Armour", @@ -5581,7 +6038,7 @@ return { type = "Rune", localMod = false, "Spell damage Penetrates 25% of enemy Elemental Resistances while on Low Runic Ward", - statOrder = { 10035 }, + statOrder = { 10045 }, tradeHashes = { [267552601] = { "Spell damage Penetrates 25% of enemy Elemental Resistances while on Low Runic Ward" }, }, bonded = { "12% increased Elemental Damage", @@ -5597,7 +6054,7 @@ return { type = "Rune", localMod = false, "Spell damage Penetrates 25% of enemy Elemental Resistances while on Low Runic Ward", - statOrder = { 10035 }, + statOrder = { 10045 }, tradeHashes = { [267552601] = { "Spell damage Penetrates 25% of enemy Elemental Resistances while on Low Runic Ward" }, }, bonded = { "12% increased Elemental Damage", @@ -5616,7 +6073,7 @@ return { limit = 1, localMod = false, "1% increased Energy Shield Recharge Rate per 30 maximum Runic Ward", - statOrder = { 6437 }, + statOrder = { 6439 }, tradeHashes = { [162036024] = { "1% increased Energy Shield Recharge Rate per 30 maximum Runic Ward" }, }, bonded = { "Regenerate 1% of maximum Energy Shield per second", @@ -5652,11 +6109,11 @@ return { type = "Rune", localMod = false, "+4 to Stun Threshold per 10 maximum Runic Ward", - statOrder = { 10127 }, + statOrder = { 10140 }, tradeHashes = { [2838678452] = { "+4 to Stun Threshold per 10 maximum Runic Ward" }, }, bonded = { "15% increased Stun buildup while Shapeshifted", - statOrder = { 7200 }, + statOrder = { 7206 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5668,11 +6125,11 @@ return { type = "Rune", localMod = false, "+4 to Stun Threshold per 10 maximum Runic Ward", - statOrder = { 10127 }, + statOrder = { 10140 }, tradeHashes = { [2838678452] = { "+4 to Stun Threshold per 10 maximum Runic Ward" }, }, bonded = { "15% increased Stun buildup while Shapeshifted", - statOrder = { 7200 }, + statOrder = { 7206 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5690,7 +6147,7 @@ return { tradeHashes = { [282990844] = { "+3 to Deflection Rating per 10 maximum Runic Ward" }, }, bonded = { "Prevent +1% of Damage from Deflected Hits", - statOrder = { 4677 }, + statOrder = { 4678 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5709,7 +6166,7 @@ return { tradeHashes = { [386720106] = { "Gain 5% of maximum Life as Extra maximum Runic Ward" }, }, bonded = { "1% more Runic Ward Regeneration rate per 2% of maximum Runic Ward lost from Hits Recently, up to 100% more", - statOrder = { 10516 }, + statOrder = { 10531 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5724,7 +6181,7 @@ return { limit = 1, localMod = false, "15% Life Recovery from Flasks also applies to Runic Ward", - statOrder = { 7469 }, + statOrder = { 7475 }, tradeHashes = { [2650263616] = { "15% Life Recovery from Flasks also applies to Runic Ward" }, }, bonded = { "15% increased Life Recovery from Flasks", @@ -5747,7 +6204,7 @@ return { tradeHashes = { [3035971497] = { "Attacks spend 5% of your maximum Runic Ward if possible to gain that much added Physical damage" }, }, bonded = { "10% reduced Runic Ward Cost Efficiency", - statOrder = { 4760 }, + statOrder = { 4761 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5762,7 +6219,7 @@ return { limit = 1, localMod = true, "Gain maximum Runic Ward equal to 15% of this Weapon's maximum damage", - statOrder = { 7824 }, + statOrder = { 7830 }, tradeHashes = { [1995345015] = { "Gain maximum Runic Ward equal to 15% of this Weapon's maximum damage" }, }, bonded = { "5% increased Attack Speed while missing Runic Ward", @@ -5781,7 +6238,7 @@ return { localMod = false, "All damage taken bypasses Runic Ward", "Runic Ward Regeneration Rate is doubled", - statOrder = { 5960, 10518 }, + statOrder = { 5961, 10533 }, tradeHashes = { [2579974553] = { "Runic Ward Regeneration Rate is doubled" }, [3814102597] = { "All damage taken bypasses Runic Ward" }, }, bonded = { "12% increased maximum Runic Ward", @@ -5801,11 +6258,11 @@ return { localMod = false, "40% less Mana Regeneration Rate", "Mana Recovery from Regeneration is also applied to Runic Ward", - statOrder = { 7994, 9699 }, + statOrder = { 8000, 9707 }, tradeHashes = { [762761075] = { "40% less Mana Regeneration Rate" }, [3145796865] = { "Mana Recovery from Regeneration is also applied to Runic Ward" }, }, bonded = { "20% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", - statOrder = { 10514 }, + statOrder = { 10529 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5820,11 +6277,11 @@ return { limit = 1, localMod = false, "Recover 3% of maximum Runic Ward when one of your Reviving Minions is Killed", - statOrder = { 9701 }, + statOrder = { 9709 }, tradeHashes = { [3515226849] = { "Recover 3% of maximum Runic Ward when one of your Reviving Minions is Killed" }, }, bonded = { "Recover 3% of maximum Life when one of your Minions is Revived", - statOrder = { 10589 }, + statOrder = { 10605 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5839,12 +6296,12 @@ return { limit = 1, localMod = false, "Minions in your Presence have Onslaught while you are on Low Runic Ward", - statOrder = { 9104 }, + statOrder = { 9109 }, tradeHashes = { [540694930] = { "Minions in your Presence have Onslaught while you are on Low Runic Ward" }, }, bonded = { "Damage of Enemies Hitting you is Unlucky if", "your Runic Ward has been damaged Recently", - statOrder = { 6037, 6037.1 }, + statOrder = { 6038, 6038.1 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -5860,7 +6317,7 @@ return { localMod = false, "Gain 15% of maximum Life as Extra maximum Runic Ward", "15% less maximum Life", - statOrder = { 1430, 8873 }, + statOrder = { 1430, 8878 }, tradeHashes = { [386720106] = { "Gain 15% of maximum Life as Extra maximum Runic Ward" }, [1020945697] = { "15% less maximum Life" }, }, bonded = { "+1% to all Maximum Elemental Resistances while on full Runic Ward", @@ -5878,7 +6335,7 @@ return { type = "Rune", localMod = false, "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", - statOrder = { 6237 }, + statOrder = { 6239 }, tradeHashes = { [602344904] = { "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers" }, }, bonded = { "25% increased Fire Damage", @@ -5891,7 +6348,7 @@ return { type = "Rune", localMod = false, "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", - statOrder = { 6237 }, + statOrder = { 6239 }, tradeHashes = { [602344904] = { "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers" }, }, bonded = { "25% increased Fire Damage", @@ -5906,7 +6363,7 @@ return { type = "Rune", localMod = false, "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", - statOrder = { 6234 }, + statOrder = { 6236 }, tradeHashes = { [2390027291] = { "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers" }, }, bonded = { "25% increased Cold Damage", @@ -5919,7 +6376,7 @@ return { type = "Rune", localMod = false, "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", - statOrder = { 6234 }, + statOrder = { 6236 }, tradeHashes = { [2390027291] = { "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers" }, }, bonded = { "25% increased Cold Damage", @@ -5934,7 +6391,7 @@ return { type = "Rune", localMod = false, "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", - statOrder = { 6238 }, + statOrder = { 6240 }, tradeHashes = { [1433896639] = { "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers" }, }, bonded = { "25% increased Lightning Damage", @@ -5947,7 +6404,7 @@ return { type = "Rune", localMod = false, "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", - statOrder = { 6238 }, + statOrder = { 6240 }, tradeHashes = { [1433896639] = { "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers" }, }, bonded = { "25% increased Lightning Damage", @@ -5962,7 +6419,7 @@ return { type = "Rune", localMod = false, "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", - statOrder = { 6233 }, + statOrder = { 6235 }, tradeHashes = { [1624833382] = { "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers" }, }, bonded = { "25% increased Chaos Damage", @@ -5975,7 +6432,7 @@ return { type = "Rune", localMod = false, "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", - statOrder = { 6233 }, + statOrder = { 6235 }, tradeHashes = { [1624833382] = { "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers" }, }, bonded = { "25% increased Chaos Damage", @@ -5991,7 +6448,7 @@ return { limit = 1, localMod = false, "+50% Surpassing chance to fire an additional Arrow", - statOrder = { 5509 }, + statOrder = { 5510 }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, }, bonded = { "30% increased Projectile Speed", @@ -6010,7 +6467,7 @@ return { limit = 1, localMod = false, "30% increased Parried Debuff Magnitude", - statOrder = { 9373 }, + statOrder = { 9380 }, tradeHashes = { [818877178] = { "30% increased Parried Debuff Magnitude" }, }, bonded = { "15% increased Block chance", @@ -6029,7 +6486,7 @@ return { limit = 1, localMod = false, "10% chance for Slam Skills you use yourself to cause an additional Aftershock", - statOrder = { 10619 }, + statOrder = { 10635 }, tradeHashes = { [2045949233] = { "10% chance for Slam Skills you use yourself to cause an additional Aftershock" }, }, bonded = { "15% increased Area of Effect for Attacks", @@ -6048,7 +6505,7 @@ return { limit = 1, localMod = false, "40% increased effect of Fully Broken Armour", - statOrder = { 5232 }, + statOrder = { 5233 }, tradeHashes = { [1879206848] = { "40% increased effect of Fully Broken Armour" }, }, bonded = { "Break 50% increased Armour", @@ -6067,7 +6524,7 @@ return { limit = 1, localMod = false, "30% chance when you gain a Charge to gain an additional Charge", - statOrder = { 5514 }, + statOrder = { 5515 }, tradeHashes = { [1555237944] = { "30% chance when you gain a Charge to gain an additional Charge" }, }, bonded = { "30% increased Endurance, Frenzy and Power Charge Duration", @@ -6086,11 +6543,11 @@ return { limit = 1, localMod = false, "50% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, tradeHashes = { [330530785] = { "50% increased Immobilisation buildup" }, }, bonded = { "30% increased Damage against Immobilised Enemies", - statOrder = { 5954 }, + statOrder = { 5955 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6105,11 +6562,11 @@ return { limit = 1, localMod = false, "30% chance to create an additional Remnant", - statOrder = { 5405 }, + statOrder = { 5406 }, tradeHashes = { [2328443419] = { "30% chance to create an additional Remnant" }, }, bonded = { "+1 to maximum number of Elemental Infusions", - statOrder = { 8870 }, + statOrder = { 8875 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6124,11 +6581,11 @@ return { limit = 1, localMod = false, "25% increased Withered Magnitude", - statOrder = { 10549 }, + statOrder = { 10565 }, tradeHashes = { [3973629633] = { "25% increased Withered Magnitude" }, }, bonded = { "15% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility", - statOrder = { 10478 }, + statOrder = { 10492 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6147,7 +6604,7 @@ return { tradeHashes = { [153777645] = { "40% increased Area of Effect of Curses" }, }, bonded = { "15% faster Curse Activation", - statOrder = { 5920 }, + statOrder = { 5921 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6162,7 +6619,7 @@ return { limit = 1, localMod = false, "Minions have 8% increased Attack and Cast Speed", - statOrder = { 8998 }, + statOrder = { 9003 }, tradeHashes = { [3091578504] = { "Minions have 8% increased Attack and Cast Speed" }, }, bonded = { "Minions have 10% increased Movement Speed", @@ -6181,7 +6638,7 @@ return { limit = 1, localMod = false, "Gain 2 Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", - statOrder = { 6708 }, + statOrder = { 6710 }, tradeHashes = { [3444646646] = { "Gain 2 Druidic Prowess when you Heavy Stun a Rare or Unique Enemy" }, }, bonded = { "40% increased Stun Buildup", @@ -6200,11 +6657,11 @@ return { limit = 1, localMod = false, "Grenades have 10% chance to activate a second time", - statOrder = { 6934 }, + statOrder = { 6937 }, tradeHashes = { [538981065] = { "Grenades have 10% chance to activate a second time" }, }, bonded = { "40% increased Crossbow Reload Speed", - statOrder = { 9728 }, + statOrder = { 9736 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6308,7 +6765,7 @@ return { limit = 1, localMod = false, "8% increased Movement Speed while Sprinting", - statOrder = { 10062 }, + statOrder = { 10073 }, tradeHashes = { [3107707789] = { "8% increased Movement Speed while Sprinting" }, }, bonded = { "50% increased Stun Recovery", @@ -6325,11 +6782,11 @@ return { limit = 1, localMod = false, "Companions deal 30% increased Damage", - statOrder = { 5718 }, + statOrder = { 5719 }, tradeHashes = { [234296660] = { "Companions deal 30% increased Damage" }, }, bonded = { "8% increased Mana Recovery rate while your Companion is in your Presence", - statOrder = { 7991 }, + statOrder = { 7997 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6344,11 +6801,11 @@ return { limit = 1, localMod = false, "Flasks gain 0.2 charges per Second", - statOrder = { 6883 }, + statOrder = { 6886 }, tradeHashes = { [731781020] = { "Flasks gain 0.2 charges per Second" }, }, bonded = { "Charms gain 0.25 charges per Second", - statOrder = { 6884 }, + statOrder = { 6887 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6361,11 +6818,11 @@ return { limit = 1, localMod = false, "Flasks gain 0.2 charges per Second", - statOrder = { 6883 }, + statOrder = { 6886 }, tradeHashes = { [731781020] = { "Flasks gain 0.2 charges per Second" }, }, bonded = { "Charms gain 0.25 charges per Second", - statOrder = { 6884 }, + statOrder = { 6887 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6378,7 +6835,7 @@ return { limit = 1, localMod = false, "+0.3 metres to Dodge Roll distance", - statOrder = { 6195 }, + statOrder = { 6196 }, tradeHashes = { [258119672] = { "+0.3 metres to Dodge Roll distance" }, }, bonded = { "30% increased Armour if you haven't Dodge Rolled Recently", @@ -6414,7 +6871,7 @@ return { limit = 1, localMod = true, "Rolls only the minimum or maximum Damage value for Physical Damage", - statOrder = { 7806 }, + statOrder = { 7812 }, tradeHashes = { [103706408] = { "Rolls only the minimum or maximum Damage value for Physical Damage" }, }, bonded = { "20% increased Bleeding Duration", @@ -6431,7 +6888,7 @@ return { limit = 1, localMod = true, "Rolls only the minimum or maximum Damage value for Physical Damage", - statOrder = { 7806 }, + statOrder = { 7812 }, tradeHashes = { [103706408] = { "Rolls only the minimum or maximum Damage value for Physical Damage" }, }, bonded = { "20% increased Bleeding Duration", @@ -6450,7 +6907,7 @@ return { limit = 1, localMod = false, "50% increased Glory generation", - statOrder = { 6909 }, + statOrder = { 6912 }, tradeHashes = { [3143918757] = { "50% increased Glory generation" }, }, bonded = { "Banner Skills have 20% increased Aura Magnitudes", @@ -6505,7 +6962,7 @@ return { limit = 1, localMod = true, "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of 32", - statOrder = { 7794 }, + statOrder = { 7800 }, tradeHashes = { [2616640048] = { "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of 32" }, }, bonded = { "30% increased Freeze Buildup", @@ -6522,7 +6979,7 @@ return { limit = 1, localMod = true, "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of 32", - statOrder = { 7794 }, + statOrder = { 7800 }, tradeHashes = { [2616640048] = { "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of 32" }, }, bonded = { "30% increased Freeze Buildup", @@ -6539,7 +6996,7 @@ return { limit = 1, localMod = true, "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of 32", - statOrder = { 7794 }, + statOrder = { 7800 }, tradeHashes = { [2616640048] = { "On Hitting an enemy, gains maximum added Cold damage equal to the enemy's Power for 20 seconds, up to a total of 32" }, }, bonded = { "30% increased Freeze Buildup", @@ -6600,11 +7057,11 @@ return { localMod = false, "+50 to Spirit", "-1 to Spirit per 2 Levels", - statOrder = { 895, 10051 }, + statOrder = { 895, 10062 }, tradeHashes = { [2704225257] = { "+50 to Spirit" }, [610569665] = { "-1 to Spirit per 2 Levels" }, }, bonded = { "5% increased Spirit Reservation Efficiency", - statOrder = { 4752 }, + statOrder = { 4753 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6637,11 +7094,11 @@ return { limit = 1, localMod = false, "50% increased Spell Damage while your Companion is in your Presence", - statOrder = { 10002 }, + statOrder = { 10012 }, tradeHashes = { [4063732952] = { "50% increased Spell Damage while your Companion is in your Presence" }, }, bonded = { "8% increased Mana Recovery rate while your Companion is in your Presence", - statOrder = { 7991 }, + statOrder = { 7997 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6656,11 +7113,11 @@ return { limit = 1, localMod = false, "Remnants you create have 15% increased effect", - statOrder = { 9730 }, + statOrder = { 9738 }, tradeHashes = { [1999910726] = { "Remnants you create have 15% increased effect" }, }, bonded = { "Recover 3% of Maximum Mana when you collect a Remnant", - statOrder = { 9734 }, + statOrder = { 9742 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6674,11 +7131,11 @@ return { localMod = false, "Remnants you create have 25% reduced effect", "Remnants can be collected from 50% further away", - statOrder = { 9730, 9732 }, + statOrder = { 9738, 9740 }, tradeHashes = { [1999910726] = { "Remnants you create have 25% reduced effect" }, [3482326075] = { "Remnants can be collected from 50% further away" }, }, bonded = { "20% increased Exposure Effect", - statOrder = { 6528 }, + statOrder = { 6530 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6692,11 +7149,11 @@ return { localMod = false, "Remnants you create have 25% reduced effect", "Remnants can be collected from 50% further away", - statOrder = { 9730, 9732 }, + statOrder = { 9738, 9740 }, tradeHashes = { [1999910726] = { "Remnants you create have 25% reduced effect" }, [3482326075] = { "Remnants can be collected from 50% further away" }, }, bonded = { "20% increased Exposure Effect", - statOrder = { 6528 }, + statOrder = { 6530 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6712,7 +7169,7 @@ return { localMod = false, "Adds 13 to 16 Fire Damage", "15% of Skill Mana Costs Converted to Life Costs", - statOrder = { 832, 4742 }, + statOrder = { 832, 4743 }, tradeHashes = { [2480498143] = { "15% of Skill Mana Costs Converted to Life Costs" }, [709508406] = { "Adds 13 to 16 Fire Damage" }, }, bonded = { "30% increased Ignite Magnitude", @@ -6730,7 +7187,7 @@ return { localMod = false, "Adds 13 to 16 Fire Damage", "15% of Skill Mana Costs Converted to Life Costs", - statOrder = { 832, 4742 }, + statOrder = { 832, 4743 }, tradeHashes = { [2480498143] = { "15% of Skill Mana Costs Converted to Life Costs" }, [709508406] = { "Adds 13 to 16 Fire Damage" }, }, bonded = { "30% increased Ignite Magnitude", @@ -6748,7 +7205,7 @@ return { localMod = false, "Adds 13 to 16 Fire Damage", "15% of Skill Mana Costs Converted to Life Costs", - statOrder = { 832, 4742 }, + statOrder = { 832, 4743 }, tradeHashes = { [2480498143] = { "15% of Skill Mana Costs Converted to Life Costs" }, [709508406] = { "Adds 13 to 16 Fire Damage" }, }, bonded = { "30% increased Ignite Magnitude", @@ -6768,7 +7225,7 @@ return { localMod = false, "Gain 4 Rage on Melee Hit", "-10 to Maximum Rage", - statOrder = { 6868, 9603 }, + statOrder = { 6871, 9611 }, tradeHashes = { [1181501418] = { "-10 to Maximum Rage" }, [2709367754] = { "Gain 4 Rage on Melee Hit" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6782,7 +7239,7 @@ return { localMod = false, "Gain 4 Rage on Melee Hit", "-10 to Maximum Rage", - statOrder = { 6868, 9603 }, + statOrder = { 6871, 9611 }, tradeHashes = { [1181501418] = { "-10 to Maximum Rage" }, [2709367754] = { "Gain 4 Rage on Melee Hit" }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -6832,7 +7289,7 @@ return { limit = 1, localMod = false, "Destroys all Augment Sockets on the item to create a Jewel Socket", - statOrder = { 6235 }, + statOrder = { 6237 }, tradeHashes = { [1933674044] = { "Destroys all Augment Sockets on the item to create a Jewel Socket" }, }, isSocketBound = true, canSocketInUniqueItems = true, @@ -6877,7 +7334,7 @@ return { limit = 1, localMod = true, "Can roll Chronomancy modifiers", - statOrder = { 10519 }, + statOrder = { 10534 }, tradeHashes = { [3132681620] = { "Can roll Chronomancy modifiers" }, }, bonded = { "10% increased Cooldown Recovery Rate", @@ -6893,7 +7350,7 @@ return { limit = 1, localMod = true, "Can roll Marksman modifiers", - statOrder = { 10522 }, + statOrder = { 10537 }, tradeHashes = { [201332984] = { "Can roll Marksman modifiers" }, }, bonded = { "20% increased Projectile Damage", @@ -6909,11 +7366,11 @@ return { limit = 1, localMod = true, "Can roll Berserking modifiers", - statOrder = { 10521 }, + statOrder = { 10536 }, tradeHashes = { [1770091046] = { "Can roll Berserking modifiers" }, }, bonded = { "Gain 2 Rage on Melee Hit", - statOrder = { 6868 }, + statOrder = { 6871 }, }, isSocketBound = true, levelReq = 0, @@ -6925,7 +7382,7 @@ return { limit = 1, localMod = true, "Can roll Destruction modifiers", - statOrder = { 10524 }, + statOrder = { 10539 }, tradeHashes = { [1676950499] = { "Can roll Destruction modifiers" }, }, bonded = { "+5% to all Elemental Resistances", @@ -6939,7 +7396,7 @@ return { limit = 1, localMod = true, "Can roll Destruction modifiers", - statOrder = { 10524 }, + statOrder = { 10539 }, tradeHashes = { [1676950499] = { "Can roll Destruction modifiers" }, }, bonded = { "+5% to all Elemental Resistances", @@ -6955,7 +7412,7 @@ return { limit = 1, localMod = true, "Can roll Soul modifiers", - statOrder = { 10520 }, + statOrder = { 10535 }, tradeHashes = { [1927467683] = { "Can roll Soul modifiers" }, }, bonded = { "3% increased maximum Life", @@ -6972,11 +7429,11 @@ return { limit = 1, localMod = true, "Can roll Decay modifiers", - statOrder = { 10523 }, + statOrder = { 10538 }, tradeHashes = { [2547063279] = { "Can roll Decay modifiers" }, }, bonded = { "25% reduced Effect of Non-Damaging Ailments on you", - statOrder = { 9219 }, + statOrder = { 9224 }, }, isSocketBound = true, levelReq = 0, @@ -6987,7 +7444,7 @@ return { type = "Rune", localMod = false, "When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power", - statOrder = { 6239 }, + statOrder = { 6241 }, tradeHashes = { [1797890657] = { "When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power" }, }, canSocketInUniqueItems = true, levelReq = 0, @@ -6996,7 +7453,7 @@ return { type = "Rune", localMod = false, "When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power", - statOrder = { 6239 }, + statOrder = { 6241 }, tradeHashes = { [1797890657] = { "When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power" }, }, canSocketInUniqueItems = true, levelReq = 0, @@ -7005,7 +7462,7 @@ return { type = "Rune", localMod = false, "When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power", - statOrder = { 6239 }, + statOrder = { 6241 }, tradeHashes = { [1797890657] = { "When socketed into a Unique Kalguuran or Ezomyte item, destroys the item to create a Rune imbued with that item's power" }, }, canSocketInUniqueItems = true, levelReq = 0, @@ -7022,7 +7479,7 @@ return { tradeHashes = { [1092987622] = { "250% of Melee Physical Damage taken reflected to Attacker" }, }, bonded = { "Regenerate 3% of maximum Life per second while Surrounded", - statOrder = { 7505 }, + statOrder = { 7511 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7049,7 +7506,7 @@ return { levelReq = 65, }, }, - ["Legacy of Edyrns Tusks"] = { + ["Legacy of Edyrn's Tusks"] = { ["body armour"] = { type = "Rune", limit = 1, @@ -7057,11 +7514,11 @@ return { localMod = false, "50% chance to inflict Bleeding on Hit", "50% reduced Slowing Potency of Debuffs on You", - statOrder = { 4671, 4745 }, + statOrder = { 4671, 4746 }, tradeHashes = { [2174054121] = { "50% chance to inflict Bleeding on Hit" }, [924253255] = { "50% reduced Slowing Potency of Debuffs on You" }, }, bonded = { "35% increased Thorns damage", - statOrder = { 10247 }, + statOrder = { 10261 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7076,7 +7533,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Recover 5% of maximum Life for each Endurance Charge consumed", - statOrder = { 9660 }, + statOrder = { 9668 }, tradeHashes = { [939832726] = { "Recover 5% of maximum Life for each Endurance Charge consumed" }, }, bonded = { "+30 to maximum Life", @@ -7096,11 +7553,11 @@ return { localMod = false, "Gain 5 Rage when Hit by an Enemy", "Gain 10 Rage when Critically Hit by an Enemy", - statOrder = { 6870, 6871 }, + statOrder = { 6873, 6874 }, tradeHashes = { [3292710273] = { "Gain 5 Rage when Hit by an Enemy" }, [1466716929] = { "Gain 10 Rage when Critically Hit by an Enemy" }, }, bonded = { "+3 to Maximum Rage", - statOrder = { 9603 }, + statOrder = { 9611 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7116,7 +7573,7 @@ return { localMod = false, "10% increased Movement Speed when on Full Life", "100% increased Evasion Rating when on Full Life", - statOrder = { 1555, 6504 }, + statOrder = { 1555, 6506 }, tradeHashes = { [88817332] = { "100% increased Evasion Rating when on Full Life" }, [3393547195] = { "10% increased Movement Speed when on Full Life" }, }, bonded = { "20% increased Evasion Rating", @@ -7194,11 +7651,11 @@ return { localMod = false, "Gain 1 Rage on Melee Hit", "Every Rage also grants 1% increased Armour", - statOrder = { 6868, 10637 }, + statOrder = { 6871, 10654 }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, [2995914769] = { "Every Rage also grants 1% increased Armour" }, }, bonded = { "+3 to Maximum Rage", - statOrder = { 9603 }, + statOrder = { 9611 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7214,11 +7671,11 @@ return { localMod = false, "Gain 1 Rage on Melee Hit", "Every Rage also grants 1% increased Stun Threshold", - statOrder = { 6868, 10649 }, + statOrder = { 6871, 10666 }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, [352044736] = { "Every Rage also grants 1% increased Stun Threshold" }, }, bonded = { "Every five Rage also grants you 1% increased Movement Speed", - statOrder = { 9140 }, + statOrder = { 9145 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7234,11 +7691,11 @@ return { localMod = false, "15% increased Area of Effect", "Unwavering Stance", - statOrder = { 1630, 10725 }, + statOrder = { 1630, 10742 }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, [280731498] = { "15% increased Area of Effect" }, }, bonded = { "50% reduced Slowing Potency of Debuffs on You", - statOrder = { 4745 }, + statOrder = { 4746 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7253,11 +7710,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", - statOrder = { 5776 }, + statOrder = { 5777 }, tradeHashes = { [11014011] = { "Warcries Explode Corpses dealing 10% of their Life as Physical Damage" }, }, bonded = { "Warcry Skills have 20% increased Area of Effect", - statOrder = { 10507 }, + statOrder = { 10521 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7273,11 +7730,11 @@ return { localMod = false, "Charms gain 1 charge per Second", "+1 Charm Slot", - statOrder = { 6884, 9310 }, + statOrder = { 6887, 9317 }, tradeHashes = { [185580205] = { "Charms gain 1 charge per Second" }, [554899692] = { "+1 Charm Slot" }, }, bonded = { "Charms gain 0.5 charges per Second", - statOrder = { 6884 }, + statOrder = { 6887 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7293,11 +7750,11 @@ return { localMod = false, "100% increased Global Evasion Rating when on Low Life", "5% of Damage from Hits is taken from your Damageable Companion's Life before you", - statOrder = { 2315, 5726 }, + statOrder = { 2315, 5727 }, tradeHashes = { [1150343007] = { "5% of Damage from Hits is taken from your Damageable Companion's Life before you" }, [2695354435] = { "100% increased Global Evasion Rating when on Low Life" }, }, bonded = { "5% of Damage from Hits is taken from your Damageable Companion's Life before you", - statOrder = { 5726 }, + statOrder = { 5727 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7312,11 +7769,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Pain Attunement", - statOrder = { 10718 }, + statOrder = { 10735 }, tradeHashes = { [98977150] = { "Pain Attunement" }, }, bonded = { "17 to 26 Physical Thorns damage", - statOrder = { 10254 }, + statOrder = { 10268 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7335,7 +7792,7 @@ return { tradeHashes = { [2897413282] = { "+50 to all Attributes" }, }, bonded = { "+1 Maximum Life per Level", - statOrder = { 7465 }, + statOrder = { 7471 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7397,7 +7854,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", - statOrder = { 10389 }, + statOrder = { 10403 }, tradeHashes = { [4258409981] = { "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%" }, }, bonded = { "20% increased Presence Area of Effect", @@ -7416,7 +7873,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Base Critical Hit Chance for Attacks with Weapons is 7%", - statOrder = { 9370 }, + statOrder = { 9377 }, tradeHashes = { [2635559734] = { "Base Critical Hit Chance for Attacks with Weapons is 7%" }, }, bonded = { "15% increased Critical Damage Bonus", @@ -7436,7 +7893,7 @@ return { localMod = false, "40% increased Fire Damage", "Flammability Magnitude is doubled", - statOrder = { 873, 5542 }, + statOrder = { 873, 5543 }, tradeHashes = { [1540254896] = { "Flammability Magnitude is doubled" }, [3962278098] = { "40% increased Fire Damage" }, }, bonded = { "20% increased Ignite Duration on Enemies", @@ -7493,7 +7950,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Deal 10% of Overkill damage to enemies within 2 metres of the enemy killed", - statOrder = { 9368 }, + statOrder = { 9375 }, tradeHashes = { [2301852600] = { "Deal 10% of Overkill damage to enemies within 2 metres of the enemy killed" }, }, bonded = { "15% increased Global Physical Damage", @@ -7512,11 +7969,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "+15% to Thorns Critical Hit Chance", - statOrder = { 4755 }, + statOrder = { 4756 }, tradeHashes = { [2715190555] = { "+15% to Thorns Critical Hit Chance" }, }, bonded = { "15% increased Thorns Critical Damage Bonus", - statOrder = { 4756 }, + statOrder = { 4757 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7531,7 +7988,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Physical Damage is Pinning", - statOrder = { 4733 }, + statOrder = { 4734 }, tradeHashes = { [2041668411] = { "Physical Damage is Pinning" }, }, bonded = { "+20 to Dexterity", @@ -7550,7 +8007,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Your speed is unaffected by Slows", - statOrder = { 9930 }, + statOrder = { 9940 }, tradeHashes = { [50721145] = { "Your speed is unaffected by Slows" }, }, bonded = { "5% increased Movement Speed", @@ -7569,7 +8026,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Iron Reflexes", - statOrder = { 10712 }, + statOrder = { 10729 }, tradeHashes = { [326965591] = { "Iron Reflexes" }, }, bonded = { "25% increased Elemental Ailment Threshold", @@ -7608,7 +8065,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Double Stun Threshold while Shield is Raised", - statOrder = { 7823 }, + statOrder = { 7829 }, tradeHashes = { [3686997387] = { "Double Stun Threshold while Shield is Raised" }, }, bonded = { "15% increased Stun Threshold", @@ -7627,7 +8084,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Intimidate Enemies on Block for 8 seconds", - statOrder = { 7374 }, + statOrder = { 7380 }, tradeHashes = { [3703496511] = { "Intimidate Enemies on Block for 8 seconds" }, }, bonded = { "+25 to Strength", @@ -7646,8 +8103,8 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Gain 1% of damage as Fire damage per 2% Chance to Block", - statOrder = { 9228 }, - tradeHashes = { [3170380905] = { "Gain 1% of damage as Fire damage per 2% Chance to Block" }, }, + statOrder = { 9234 }, + tradeHashes = { [2621116283] = { "Gain 1% of damage as Fire damage per 2% Chance to Block" }, }, bonded = { "+30% to Chaos Resistance", statOrder = { 1024 }, @@ -7665,11 +8122,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "30% of damage Blocked is Recouped as Mana", - statOrder = { 5959 }, + statOrder = { 5960 }, tradeHashes = { [2875218423] = { "30% of damage Blocked is Recouped as Mana" }, }, bonded = { "20% of damage Blocked is Recouped as Mana", - statOrder = { 5959 }, + statOrder = { 5960 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7703,11 +8160,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "50% increased Parried Debuff Magnitude", - statOrder = { 9373 }, + statOrder = { 9380 }, tradeHashes = { [818877178] = { "50% increased Parried Debuff Magnitude" }, }, bonded = { "50% increased Parry Damage", - statOrder = { 9378 }, + statOrder = { 9385 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7722,11 +8179,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Curse Enemies with Enfeeble on Block", - statOrder = { 5929 }, + statOrder = { 5930 }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, }, bonded = { "100% increased Block chance against Projectiles", - statOrder = { 4933 }, + statOrder = { 4934 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7741,7 +8198,7 @@ return { limitId = "AldursLegacyLimit1", localMod = true, "Causes Double Stun Buildup", - statOrder = { 7690 }, + statOrder = { 7696 }, tradeHashes = { [769129523] = { "Causes Double Stun Buildup" }, }, bonded = { "Adds 14 to 20 Physical Damage", @@ -7799,7 +8256,7 @@ return { limitId = "AldursLegacyLimit1", localMod = true, "Attacks with this Weapon have Added Cold Damage equal to 6% to 10% of maximum Mana", - statOrder = { 7621 }, + statOrder = { 7627 }, tradeHashes = { [1699409732] = { "Attacks with this Weapon have Added Cold Damage equal to 0% to 10% of maximum Mana" }, [3867147347] = { "Attacks with this Weapon have Added Cold Damage equal to 6% to 0% of maximum Mana" }, }, bonded = { "15% of Damage is taken from Mana before Life", @@ -7819,7 +8276,7 @@ return { localMod = true, "+5% to Critical Hit Chance", "Maim on Critical Hit", - statOrder = { 944, 7609 }, + statOrder = { 944, 7615 }, tradeHashes = { [518292764] = { "+5% to Critical Hit Chance" }, [2895144208] = { "Maim on Critical Hit" }, }, bonded = { "25% increased Attack Damage against Maimed Enemies", @@ -7838,11 +8295,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "25% chance for Slam Skills you use yourself to cause an additional Aftershock", - statOrder = { 10619 }, + statOrder = { 10635 }, tradeHashes = { [2045949233] = { "25% chance for Slam Skills you use yourself to cause an additional Aftershock" }, }, bonded = { "15% chance for Slam Skills you use yourself to cause an additional Aftershock", - statOrder = { 10619 }, + statOrder = { 10635 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7857,7 +8314,7 @@ return { limitId = "AldursLegacyLimit1", localMod = true, "All damage with this Weapon causes Electrocution buildup", - statOrder = { 7604 }, + statOrder = { 7610 }, tradeHashes = { [1910743684] = { "All damage with this Weapon causes Electrocution buildup" }, }, bonded = { "Damage Penetrates 10% Lightning Resistance", @@ -7880,7 +8337,7 @@ return { tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, }, bonded = { "Leeches 1% of maximum Life when you Cast a Spell", - statOrder = { 7454 }, + statOrder = { 7460 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7895,11 +8352,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Gain 250 Guard for 0.5 seconds per Combo expended when using Skills", - statOrder = { 10393 }, + statOrder = { 10407 }, tradeHashes = { [2443032293] = { "Gain 250 Guard for 0.5 seconds per Combo expended when using Skills" }, }, bonded = { "Gain Finality for 0.2 seconds per Combo expended when using Skills", - statOrder = { 6780 }, + statOrder = { 6783 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -7995,7 +8452,7 @@ return { tradeHashes = { [1936645603] = { "Gain 30% of Physical Damage as Extra Fire Damage" }, }, bonded = { "Triggered Spells deal 20% increased Spell Damage", - statOrder = { 10316 }, + statOrder = { 10330 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8015,7 +8472,7 @@ return { tradeHashes = { [2091621414] = { "Causes Bleeding on Hit" }, [1940865751] = { "Adds 4 to 8 Physical Damage" }, }, bonded = { "10% increased Magnitude of Bleeding you inflict", - statOrder = { 4806 }, + statOrder = { 4807 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8069,11 +8526,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Gain 1 Druidic Prowess for every 20 total Rage spent", - statOrder = { 6769 }, + statOrder = { 6772 }, tradeHashes = { [1273508088] = { "Gain 1 Druidic Prowess for every 20 total Rage spent" }, }, bonded = { "Enemies in your Presence are Hindered", - statOrder = { 4693 }, + statOrder = { 4694 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8088,7 +8545,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Every 5 Rage also grants 5% of Damage taken Recouped as Life", - statOrder = { 10555 }, + statOrder = { 10571 }, tradeHashes = { [1895552497] = { "Every 5 Rage also grants 5% of Damage taken Recouped as Life" }, }, bonded = { "Attacks have 20% chance to cause Bleeding", @@ -8129,7 +8586,7 @@ return { "Alternating every 5 seconds:", "Take 20% less Damage from Hits", "Take 20% less Damage over time", - statOrder = { 6960, 6960.1, 6960.2 }, + statOrder = { 6964, 6964.1, 6964.2 }, tradeHashes = { [258955603] = { "Alternating every 5 seconds:", "Take 20% less Damage from Hits", "Take 20% less Damage over time" }, }, bonded = { "25% increased Mana Regeneration Rate", @@ -8149,7 +8606,7 @@ return { localMod = true, "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 120", - statOrder = { 7795, 7795.1 }, + statOrder = { 7801, 7801.1 }, tradeHashes = { [3538915253] = { "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 120" }, }, bonded = { "15% increased Attack Speed", @@ -8168,7 +8625,7 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "Off-hand Hits inflict Runefather's Challenge", - statOrder = { 10559 }, + statOrder = { 10575 }, tradeHashes = { [3430033313] = { "Off-hand Hits inflict Runefather's Challenge" }, }, bonded = { "+45% to Cold Resistance", @@ -8191,7 +8648,7 @@ return { tradeHashes = { [275498888] = { "Maximum Quality is 40%" }, }, bonded = { "Skills which Empower an Attack have 20% chance to not count that Attack", - statOrder = { 5400 }, + statOrder = { 5401 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8225,11 +8682,11 @@ return { limitId = "AldursLegacyLimit1", localMod = false, "+1 to Armour per Strength", - statOrder = { 6759 }, + statOrder = { 6762 }, tradeHashes = { [1291132817] = { "+1 to Armour per Strength" }, }, bonded = { "1% increased Damage per 15 Strength", - statOrder = { 5995 }, + statOrder = { 5996 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8244,7 +8701,7 @@ return { limitId = "AncientAugment", localMod = false, "+1 to maximum Life per 8 Armour on Equipped Helmet", - statOrder = { 6717 }, + statOrder = { 6719 }, tradeHashes = { [2785209416] = { "+1 to maximum Life per 8 Armour on Equipped Helmet" }, }, bonded = { "+20 to Spirit", @@ -8263,7 +8720,7 @@ return { localMod = false, "Gain Maximum Energy Shield equal to 50% of total", "Strength Requirements of Equipped Armour Items", - statOrder = { 6807, 6807.1 }, + statOrder = { 6810, 6810.1 }, tradeHashes = { [2444976134] = { "Gain Maximum Energy Shield equal to 50% of total", "Strength Requirements of Equipped Armour Items" }, }, bonded = { "+20 to Strength", @@ -8281,11 +8738,11 @@ return { limitId = "AncientAugment", localMod = false, "Hits against you have no Critical Damage Bonus while on Consecrated Ground", - statOrder = { 9812 }, + statOrder = { 9820 }, tradeHashes = { [1800433827] = { "Hits against you have no Critical Damage Bonus while on Consecrated Ground" }, }, bonded = { "20% increased Effect of Consecrated Ground you create", - statOrder = { 5744 }, + statOrder = { 5745 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8300,9 +8757,9 @@ return { limit = 1, limitId = "AncientAugment", localMod = false, - "15% of Chaos Damage from Hits taken as a Damage of a random Element", + "15% of Chaos Damage from Hits taken as Damage of a random Element", statOrder = { 2236 }, - tradeHashes = { [4217453078] = { "15% of Chaos Damage from Hits taken as a Damage of a random Element" }, }, + tradeHashes = { [4217453078] = { "15% of Chaos Damage from Hits taken as Damage of a random Element" }, }, bonded = { "+13% to Chaos Resistance", statOrder = { 1024 }, @@ -8320,7 +8777,7 @@ return { localMod = false, "Gain 1% of Damage as Extra Damage of a random Element per", "Rune Socketed in Equipped Items", - statOrder = { 9255, 9255.1 }, + statOrder = { 9261, 9261.1 }, tradeHashes = { [3557924960] = { "Gain 1% of Damage as Extra Damage of a random Element per", "Rune Socketed in Equipped Items" }, }, bonded = { "20% increased Elemental Damage", @@ -8338,11 +8795,11 @@ return { limitId = "AncientAugment", localMod = false, "50% increased Runic Ward Regeneration Rate while Sprinting", - statOrder = { 10515 }, + statOrder = { 10530 }, tradeHashes = { [2441825294] = { "50% increased Runic Ward Regeneration Rate while Sprinting" }, }, bonded = { "15% increased Runic Ward Cost Efficiency", - statOrder = { 4760 }, + statOrder = { 4761 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8358,7 +8815,7 @@ return { limitId = "AncientAugment", localMod = false, "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", - statOrder = { 6774 }, + statOrder = { 6777 }, tradeHashes = { [901336307] = { "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds" }, }, bonded = { "40% increased Endurance Charge Duration", @@ -8394,11 +8851,11 @@ return { limitId = "AncientAugment", localMod = false, "When you stop Sprinting, gain Guard equal to 4% of maximum Life per second spent Sprinting, up to a maximum of 20%, for 4 seconds", - statOrder = { 6799 }, + statOrder = { 6802 }, tradeHashes = { [293832783] = { "When you stop Sprinting, gain Guard equal to 4% of maximum Life per second spent Sprinting, up to a maximum of 20%, for 4 seconds" }, }, bonded = { "20% increased Guard gained", - statOrder = { 6946 }, + statOrder = { 6950 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8414,11 +8871,11 @@ return { limitId = "AncientAugment", localMod = false, "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", - statOrder = { 7207 }, + statOrder = { 7213 }, tradeHashes = { [2889034188] = { "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits" }, }, bonded = { "30% increased Immobilisation buildup", - statOrder = { 7188 }, + statOrder = { 7194 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8432,7 +8889,7 @@ return { limitId = "AncientAugment", localMod = false, "Regenerate 5% of maximum Life per Second if you have used a Command Skill Recently", - statOrder = { 7482 }, + statOrder = { 7488 }, tradeHashes = { [445996047] = { "Regenerate 5% of maximum Life per Second if you have used a Command Skill Recently" }, }, bonded = { "20% increased Life Regeneration rate", @@ -8450,11 +8907,11 @@ return { limitId = "AncientAugment", localMod = false, "Thorns Damage is Lucky against targets with Fully Broken Armour", - statOrder = { 10246 }, + statOrder = { 10260 }, tradeHashes = { [1871622140] = { "Thorns Damage is Lucky against targets with Fully Broken Armour" }, }, bonded = { "30% increased Thorns damage", - statOrder = { 10247 }, + statOrder = { 10261 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -8473,7 +8930,7 @@ return { tradeHashes = { [681332047] = { "8% increased Attack Speed" }, }, bonded = { "20% reduced Slowing Potency of Debuffs on You", - statOrder = { 4745 }, + statOrder = { 4746 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8504,7 +8961,7 @@ return { localMod = false, "25% reduced Poison Duration", "Targets can be affected by +1 of your Poisons at the same time", - statOrder = { 2896, 9321 }, + statOrder = { 2896, 9328 }, tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, [2011656677] = { "25% reduced Poison Duration" }, }, bonded = { "Gain 13% of Physical Damage as extra Chaos Damage", @@ -8524,7 +8981,7 @@ return { tradeHashes = { [262946222] = { "Allies in your Presence deal 13 to 27 added Attack Chaos Damage" }, }, bonded = { "15% increased Withered Magnitude", - statOrder = { 10549 }, + statOrder = { 10565 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8538,11 +8995,11 @@ return { limit = 1, localMod = false, "50% increased total Power counted by Warcries", - statOrder = { 10505 }, + statOrder = { 10519 }, tradeHashes = { [2663359259] = { "50% increased total Power counted by Warcries" }, }, bonded = { "30% increased Glory generation", - statOrder = { 6909 }, + statOrder = { 6912 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8554,11 +9011,11 @@ return { limit = 1, localMod = false, "15% increased Damage per each different Companion in your Presence", - statOrder = { 5948 }, + statOrder = { 5949 }, tradeHashes = { [3151560620] = { "15% increased Damage per each different Companion in your Presence" }, }, bonded = { "15% increased Reservation Efficiency of Companion Skills", - statOrder = { 9758 }, + statOrder = { 9766 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8572,11 +9029,11 @@ return { limit = 1, localMod = false, "15% increased Cost Efficiency", - statOrder = { 4741 }, + statOrder = { 4742 }, tradeHashes = { [263495202] = { "15% increased Cost Efficiency" }, }, bonded = { "Meta Skills have 15% increased Reservation Efficiency", - statOrder = { 9760 }, + statOrder = { 9768 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8588,11 +9045,11 @@ return { limit = 1, localMod = false, "15% increased Mana Recovery rate while your Companion is in your Presence", - statOrder = { 7991 }, + statOrder = { 7997 }, tradeHashes = { [1779262102] = { "15% increased Mana Recovery rate while your Companion is in your Presence" }, }, bonded = { "8% increased Life Recovery Rate while your Companion is in your Presence", - statOrder = { 7480 }, + statOrder = { 7486 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8626,7 +9083,7 @@ return { tradeHashes = { [3824372849] = { "20% increased Curse Duration" }, }, bonded = { "Curse zones erupt after 20% reduced delay", - statOrder = { 4676 }, + statOrder = { 4677 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8640,11 +9097,11 @@ return { limit = 1, localMod = false, "+1 Charm Slot", - statOrder = { 9310 }, + statOrder = { 9317 }, tradeHashes = { [554899692] = { "+1 Charm Slot" }, }, bonded = { "Storm Skills have +1 to Limit", - statOrder = { 10103 }, + statOrder = { 10115 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8656,11 +9113,11 @@ return { limit = 1, localMod = false, "Flasks gain 0.2 charges per Second", - statOrder = { 6883 }, + statOrder = { 6886 }, tradeHashes = { [731781020] = { "Flasks gain 0.2 charges per Second" }, }, bonded = { "20% increased Life and Mana Recovery from Flasks", - statOrder = { 6639 }, + statOrder = { 6641 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8674,11 +9131,11 @@ return { limit = 1, localMod = false, "8% increased Reservation Efficiency of Minion Skills", - statOrder = { 9761 }, + statOrder = { 9769 }, tradeHashes = { [1805633363] = { "8% increased Reservation Efficiency of Minion Skills" }, }, bonded = { "Minions Revive 8% faster", - statOrder = { 9080 }, + statOrder = { 9085 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8690,11 +9147,11 @@ return { limit = 1, localMod = false, "40% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", - statOrder = { 6899 }, + statOrder = { 6902 }, tradeHashes = { [2829985691] = { "40% increased Armour, Evasion and Energy Shield while your Companion is in your Presence" }, }, bonded = { "Companions have 25% increased maximum Life", - statOrder = { 5722 }, + statOrder = { 5723 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8711,7 +9168,7 @@ return { tradeHashes = { [2353576063] = { "8% increased Curse Magnitudes" }, }, bonded = { "Remnants you create have 15% increased effect", - statOrder = { 9730 }, + statOrder = { 9738 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8726,7 +9183,7 @@ return { tradeHashes = { [1998951374] = { "Allies in your Presence have 10% increased Attack Speed" }, }, bonded = { "10% increased Skill Speed while Shapeshifted", - statOrder = { 9909 }, + statOrder = { 9918 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8743,7 +9200,7 @@ return { tradeHashes = { [770672621] = { "Minions have 15% increased maximum Life" }, }, bonded = { "Remnants can be collected from 30% further away", - statOrder = { 9732 }, + statOrder = { 9740 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8758,7 +9215,7 @@ return { tradeHashes = { [1798257884] = { "Allies in your Presence deal 40% increased Damage" }, }, bonded = { "40% increased Damage while Shapeshifted", - statOrder = { 5957 }, + statOrder = { 5958 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8790,7 +9247,7 @@ return { tradeHashes = { [289128254] = { "Allies in your Presence have 10% increased Cast Speed" }, }, bonded = { "10% increased Skill Speed while Shapeshifted", - statOrder = { 9909 }, + statOrder = { 9918 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8807,7 +9264,7 @@ return { tradeHashes = { [624954515] = { "25% increased Accuracy Rating" }, }, bonded = { "30% increased Charm Charges gained", - statOrder = { 5601 }, + statOrder = { 5602 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8822,7 +9279,7 @@ return { tradeHashes = { [1250712710] = { "Allies in your Presence have 14% increased Critical Hit Chance" }, }, bonded = { "25% increased Critical Hit Chance while Shapeshifted", - statOrder = { 5831 }, + statOrder = { 5832 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8835,7 +9292,7 @@ return { type = "Idol", localMod = false, "15% increased Magnitude of Bleeding you inflict", - statOrder = { 4806 }, + statOrder = { 4807 }, tradeHashes = { [3166958180] = { "15% increased Magnitude of Bleeding you inflict" }, }, bonded = { "25% reduced Magnitude of Bleeding on You", @@ -8854,7 +9311,7 @@ return { tradeHashes = { [3057012405] = { "Allies in your Presence have 20% increased Critical Damage Bonus" }, }, bonded = { "25% increased Critical Hit Chance while Shapeshifted", - statOrder = { 5831 }, + statOrder = { 5832 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8868,11 +9325,11 @@ return { limit = 1, localMod = false, "Projectiles have 15% chance to Fork", - statOrder = { 9538 }, + statOrder = { 9546 }, tradeHashes = { [1549287843] = { "Projectiles have 15% chance to Fork" }, }, bonded = { "Projectiles have 25% chance for an additional Projectile when Forking", - statOrder = { 5511 }, + statOrder = { 5512 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8901,7 +9358,7 @@ return { type = "Idol", localMod = false, "Gain 1 Rage on Melee Hit", - statOrder = { 6868 }, + statOrder = { 6871 }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, }, bonded = { "25% increased Warcry Cooldown Recovery Rate", @@ -8920,7 +9377,7 @@ return { tradeHashes = { [1911097163] = { "Allies in your Presence Regenerate 0.5% of your Maximum Life per second" }, }, bonded = { "25% increased Life Regeneration rate while Shapeshifted", - statOrder = { 7499 }, + statOrder = { 7505 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8937,7 +9394,7 @@ return { tradeHashes = { [280731498] = { "10% increased Area of Effect" }, }, bonded = { "12% increased Reservation Efficiency of Companion Skills", - statOrder = { 9758 }, + statOrder = { 9766 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8969,7 +9426,7 @@ return { tradeHashes = { [2481353198] = { "15% increased Block chance" }, }, bonded = { "15% chance for Damage of Enemies Hitting you to be Unlucky", - statOrder = { 6398 }, + statOrder = { 6400 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8984,7 +9441,7 @@ return { tradeHashes = { [2481353198] = { "15% increased Block chance" }, }, bonded = { "15% chance for Damage of Enemies Hitting you to be Unlucky", - statOrder = { 6398 }, + statOrder = { 6400 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -8999,7 +9456,7 @@ return { tradeHashes = { [3850614073] = { "Allies in your Presence have +12% to all Elemental Resistances" }, }, bonded = { "+20% of Armour also applies to Elemental Damage while Shapeshifted", - statOrder = { 10557 }, + statOrder = { 10573 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9017,7 +9474,7 @@ return { tradeHashes = { [3917489142] = { "12% increased Rarity of Items found" }, }, bonded = { "10% increased Quantity of Gold Dropped by Slain Enemies", - statOrder = { 6912 }, + statOrder = { 6915 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9033,7 +9490,7 @@ return { tradeHashes = { [3984865854] = { "15% increased Spirit" }, }, bonded = { "Minions have 30% increased Cooldown Recovery Rate for Command Skills", - statOrder = { 9019 }, + statOrder = { 9024 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9047,7 +9504,7 @@ return { limit = 1, localMod = false, "Idols socketed in this item gain the benefits of their Bonded modifiers", - statOrder = { 7728 }, + statOrder = { 7734 }, tradeHashes = { [3843204282] = { "" }, [726496846] = { "Idols socketed in this item gain the benefits of their Bonded modifiers" }, }, bonded = { "+5% to Quality of all Skills", @@ -9085,7 +9542,7 @@ return { tradeHashes = { [3362812763] = { "+25% of Armour also applies to Elemental Damage" }, }, bonded = { "12% increased Damage for each type of Elemental Ailment on Enemy", - statOrder = { 5949 }, + statOrder = { 5950 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9101,7 +9558,7 @@ return { tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to 20% of Evasion Rating" }, }, bonded = { "12% increased Damage for each type of Elemental Ailment on Enemy", - statOrder = { 5949 }, + statOrder = { 5950 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9113,11 +9570,11 @@ return { limit = 1, localMod = false, "Companions deal 10% more Damage for each different type of dead Companion you have", - statOrder = { 5715 }, + statOrder = { 5716 }, tradeHashes = { [2882351629] = { "Companions deal 10% more Damage for each different type of dead Companion you have" }, }, bonded = { "Recover 3% of maximum Life when one of your Minions is Revived", - statOrder = { 10589 }, + statOrder = { 10605 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9131,11 +9588,11 @@ return { limit = 1, localMod = false, "30% increased Skill Effect Duration with Plant Skills", - statOrder = { 9481 }, + statOrder = { 9488 }, tradeHashes = { [4065951768] = { "30% increased Skill Effect Duration with Plant Skills" }, }, bonded = { "Plants have a 25% chance to immediately Overgrow when they enter your Presence for the first time", - statOrder = { 5361 }, + statOrder = { 5362 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9147,11 +9604,11 @@ return { limit = 1, localMod = false, "Plants have a 25% chance to immediately Overgrow when they enter your Presence for the first time", - statOrder = { 5361 }, + statOrder = { 5362 }, tradeHashes = { [2681952497] = { "Plants have a 25% chance to immediately Overgrow when they enter your Presence for the first time" }, }, bonded = { "30% increased Skill Effect Duration with Plant Skills", - statOrder = { 9481 }, + statOrder = { 9488 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9165,11 +9622,11 @@ return { limit = 1, localMod = false, "Skills have 10% chance to not remove Charges but still count as consuming them", - statOrder = { 5599 }, + statOrder = { 5600 }, tradeHashes = { [2942439603] = { "Skills have 10% chance to not remove Charges but still count as consuming them" }, }, bonded = { "15% chance for Charms you use to not consume Charges", - statOrder = { 5630 }, + statOrder = { 5631 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9199,7 +9656,7 @@ return { limit = 1, localMod = false, "15% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - statOrder = { 5515 }, + statOrder = { 5516 }, tradeHashes = { [1228682002] = { "15% chance when you gain an Endurance Charge to gain an additional Endurance Charge" }, }, bonded = { "+1 to Maximum Endurance Charges", @@ -9233,7 +9690,7 @@ return { limit = 1, localMod = false, "15% chance when you gain a Power Charge to gain an additional Power Charge", - statOrder = { 5517 }, + statOrder = { 5518 }, tradeHashes = { [3537994888] = { "15% chance when you gain a Power Charge to gain an additional Power Charge" }, }, bonded = { "+1 to Maximum Power Charges", @@ -9253,7 +9710,7 @@ return { tradeHashes = { [4226127445] = { "If you would gain a Power Charge, Allies in your Presence gain that Charge instead" }, }, bonded = { "40% increased maximum Energy Shield if you've consumed a Power Charge Recently", - statOrder = { 6412 }, + statOrder = { 6414 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9267,7 +9724,7 @@ return { limit = 1, localMod = false, "15% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - statOrder = { 5516 }, + statOrder = { 5517 }, tradeHashes = { [2916861134] = { "15% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" }, }, bonded = { "+1 to Maximum Frenzy Charges", @@ -9287,7 +9744,7 @@ return { tradeHashes = { [2211478554] = { "If you would gain a Frenzy Charge, Allies in your Presence gain that Charge instead" }, }, bonded = { "40% increased Evasion Rating if you've consumed a Frenzy Charge Recently", - statOrder = { 6483 }, + statOrder = { 6485 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9301,7 +9758,7 @@ return { limit = 1, localMod = false, "15% increased Block chance while your Companion is in your Presence", - statOrder = { 4936 }, + statOrder = { 4937 }, tradeHashes = { [3087034595] = { "15% increased Block chance while your Companion is in your Presence" }, }, bonded = { "+3% to maximum Block chance", @@ -9331,11 +9788,11 @@ return { limit = 1, localMod = false, "Companions in your Presence gain 1 Rage on hit", - statOrder = { 5735 }, + statOrder = { 5736 }, tradeHashes = { [2652394701] = { "Companions in your Presence gain 1 Rage on hit" }, }, bonded = { "Companions have 30% increased Area of Effect", - statOrder = { 5711 }, + statOrder = { 5712 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9350,7 +9807,7 @@ return { localMod = false, "-20% to all Elemental Resistances", "Gain 20% of Damage as Extra Damage of a random Element", - statOrder = { 1013, 9254 }, + statOrder = { 1013, 9260 }, tradeHashes = { [3617669804] = { "Gain 20% of Damage as Extra Damage of a random Element" }, [2901986750] = { "-20% to all Elemental Resistances" }, }, bonded = { "-20% to Chaos Resistance", @@ -9368,12 +9825,12 @@ return { localMod = false, "Companions in your Presence have -20% to all Elemental Resistances", "Companions in your Presence Gain 20% of Damage as Extra Damage of a random Element", - statOrder = { 5733, 5738 }, + statOrder = { 5734, 5739 }, tradeHashes = { [1539508682] = { "Companions in your Presence have -20% to all Elemental Resistances" }, [4200448078] = { "Companions in your Presence Gain 20% of Damage as Extra Damage of a random Element" }, }, bonded = { "Allies in your Presence Gain 20% of Damage as Extra Chaos Damage", "Companions in your Presence have -20% to Chaos Resistance", - statOrder = { 4288, 5732 }, + statOrder = { 4288, 5733 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9388,12 +9845,12 @@ return { localMod = false, "25% reduced Spirit", "Meta Skills gain 40% increased Energy", - statOrder = { 1417, 6405 }, + statOrder = { 1417, 6407 }, tradeHashes = { [4236566306] = { "Meta Skills gain 40% increased Energy" }, [1416406066] = { "25% reduced Spirit" }, }, bonded = { "Invocated skills have 25% increased Maximum Energy", "Meta Skills have 25% reduced Reservation Efficiency", - statOrder = { 7380, 9760 }, + statOrder = { 7386, 9768 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9426,12 +9883,12 @@ return { localMod = false, "30% reduced maximum Mana", "Gain 2% of Damage as Extra Physical Damage per ten percent missing Mana", - statOrder = { 894, 9253 }, + statOrder = { 894, 9259 }, tradeHashes = { [2748665614] = { "30% reduced maximum Mana" }, [1693515857] = { "Gain 2% of Damage as Extra Physical Damage per ten percent missing Mana" }, }, bonded = { "30% reduced Mana Cost Efficiency", "12% increased Skill Speed while on Low Mana", - statOrder = { 4716, 9908 }, + statOrder = { 4717, 9917 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9444,12 +9901,12 @@ return { localMod = false, "30% reduced Mana Cost Efficiency of Command Skills", "Minions deal 60% increased Damage with Command Skills", - statOrder = { 4717, 9022 }, + statOrder = { 4718, 9027 }, tradeHashes = { [3742865955] = { "Minions deal 60% increased Damage with Command Skills" }, [553018427] = { "30% reduced Mana Cost Efficiency of Command Skills" }, }, bonded = { "25% reduced Reservation Efficiency of Minion Skills", "Temporary Minion Skills have +2 to Limit of Minions summoned", - statOrder = { 9761, 10240 }, + statOrder = { 9769, 10254 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9499,7 +9956,7 @@ return { limit = 1, localMod = false, "10% increased Deflection Rating", - statOrder = { 6114 }, + statOrder = { 6115 }, tradeHashes = { [3040571529] = { "10% increased Deflection Rating" }, }, bonded = { "+12% to Cold Resistance", @@ -9516,7 +9973,7 @@ return { limit = 1, localMod = false, "Companions have 12% increased Attack Speed", - statOrder = { 5712 }, + statOrder = { 5713 }, tradeHashes = { [666077204] = { "Companions have 12% increased Attack Speed" }, }, bonded = { "8% increased Attack Speed while your Companion is in your Presence", @@ -9552,11 +10009,11 @@ return { limit = 1, localMod = false, "Companions have 25% increased maximum Life", - statOrder = { 5722 }, + statOrder = { 5723 }, tradeHashes = { [1805182458] = { "Companions have 25% increased maximum Life" }, }, bonded = { "25% increased Damage while your Companion is in your Presence", - statOrder = { 5956 }, + statOrder = { 5957 }, }, canSocketInChakraSlots = true, canSocketInUniqueItems = true, @@ -9572,7 +10029,7 @@ return { limitId = "AncientAugment", localMod = false, "Enemies which are on Full Life cannot Evade your Hits", - statOrder = { 5301 }, + statOrder = { 5302 }, tradeHashes = { [4111745607] = { "Enemies which are on Full Life cannot Evade your Hits" }, }, bonded = { "30% increased Accuracy Rating", @@ -9590,11 +10047,11 @@ return { localMod = false, "Prevent +5% of Damage from Deflected Hits if you've", "Deflected no Hits Recently", - statOrder = { 4678, 4678.1 }, + statOrder = { 4679, 4679.1 }, tradeHashes = { [967155385] = { "Prevent +5% of Damage from Deflected Hits if you've", "Deflected no Hits Recently" }, }, bonded = { "8% increased Deflection Rating", - statOrder = { 6114 }, + statOrder = { 6115 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9607,11 +10064,11 @@ return { limitId = "AncientAugment", localMod = false, "Gain Onslaught for 4 seconds when your Marks Activate", - statOrder = { 6820 }, + statOrder = { 6823 }, tradeHashes = { [1811977226] = { "Gain Onslaught for 4 seconds when your Marks Activate" }, }, bonded = { "Buffs on you expire 10% slower", - statOrder = { 5236 }, + statOrder = { 5237 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9626,7 +10083,7 @@ return { limitId = "AncientAugment", localMod = false, "+3 to Spirit per Idol socketed in your Equipment", - statOrder = { 4751 }, + statOrder = { 4752 }, tradeHashes = { [1073847159] = { "+3 to Spirit per Idol socketed in your Equipment" }, }, bonded = { "5% increased Spirit", @@ -9643,11 +10100,11 @@ return { limitId = "AncientAugment", localMod = false, "Companions gain Onslaught for 4 seconds on Hitting your Marked targets", - statOrder = { 5729 }, + statOrder = { 5730 }, tradeHashes = { [226999623] = { "Companions gain Onslaught for 4 seconds on Hitting your Marked targets" }, }, bonded = { "Companions deal 30% increased Damage", - statOrder = { 5718 }, + statOrder = { 5719 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9660,7 +10117,7 @@ return { limitId = "AncientAugment", localMod = false, "1% increased Movement Speed while Sprinting per Persistent Minion", - statOrder = { 10063 }, + statOrder = { 10074 }, tradeHashes = { [3639405795] = { "1% increased Movement Speed while Sprinting per Persistent Minion" }, }, bonded = { "Minions have 12% increased maximum Life", @@ -9679,11 +10136,11 @@ return { limitId = "AncientAugment", localMod = false, "Gain Guard equal to 10% of maximum Life for 4 seconds on taking Savage Hit", - statOrder = { 6798 }, + statOrder = { 6801 }, tradeHashes = { [3863682550] = { "Gain Guard equal to 10% of maximum Life for 4 seconds on taking Savage Hit" }, }, bonded = { "Buffs on you expire 10% slower", - statOrder = { 5236 }, + statOrder = { 5237 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9713,7 +10170,7 @@ return { limitId = "AncientAugment", localMod = false, "200% increased Stun Threshold if you've been Stunned Recently", - statOrder = { 10125 }, + statOrder = { 10138 }, tradeHashes = { [751944209] = { "200% increased Stun Threshold if you've been Stunned Recently" }, }, bonded = { "25% increased Stun Threshold", @@ -9732,11 +10189,11 @@ return { limitId = "AncientAugment", localMod = false, "Enemies have no Critical Damage Bonus for 4 seconds after you Blind them", - statOrder = { 6383 }, + statOrder = { 6385 }, tradeHashes = { [25786091] = { "Enemies have no Critical Damage Bonus for 4 seconds after you Blind them" }, }, bonded = { "20% increased Blind Effect", - statOrder = { 4925 }, + statOrder = { 4926 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9749,7 +10206,7 @@ return { limitId = "AncientAugment", localMod = false, "Enemies you Critically Hit get 100% reduced Life Regeneration Rate for 4 seconds", - statOrder = { 5818 }, + statOrder = { 5819 }, tradeHashes = { [3370077792] = { "Enemies you Critically Hit get 100% reduced Life Regeneration Rate for 4 seconds" }, }, bonded = { "15% increased Critical Hit Chance", @@ -9766,11 +10223,11 @@ return { limitId = "AncientAugment", localMod = false, "Your speed is Unaffected by Slows while Sprinting", - statOrder = { 9932 }, + statOrder = { 9942 }, tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, }, bonded = { "8% increased Movement Speed while Sprinting", - statOrder = { 10062 }, + statOrder = { 10073 }, }, canSocketInUniqueItems = true, canSocketInJewellery = true, @@ -9784,7 +10241,7 @@ return { limit = 1, localMod = true, "Raven-Touched", - statOrder = { 10758 }, + statOrder = { 10775 }, tradeHashes = { [3198163869] = { "Raven-Touched" }, }, isSocketBound = true, canSocketInUniqueItems = true, diff --git a/src/Data/ModScalability.lua b/src/Data/ModScalability.lua index b63b4e2424..1d0e122ade 100644 --- a/src/Data/ModScalability.lua +++ b/src/Data/ModScalability.lua @@ -310,14 +310,19 @@ return { ["# to Level of all Elemental Skills"] = { { isScalable = true } }, ["# to Level of all Fire Skills"] = { { isScalable = true } }, ["# to Level of all Fire Spell Skills"] = { { isScalable = true } }, + ["# to Level of all Grenade Skill Gems"] = { { isScalable = true } }, + ["# to Level of all Hazard Skill Gems"] = { { isScalable = true } }, + ["# to Level of all Herald Skill Gems"] = { { isScalable = true } }, ["# to Level of all Lightning Skills"] = { { isScalable = true } }, ["# to Level of all Lightning Spell Skills"] = { { isScalable = true } }, ["# to Level of all Link Skill Gems"] = { { isScalable = true } }, ["# to Level of all Mark Skills"] = { { isScalable = true } }, ["# to Level of all Melee Skills"] = { { isScalable = true } }, ["# to Level of all Minion Skills"] = { { isScalable = true } }, + ["# to Level of all Nova Skill Gems"] = { { isScalable = true } }, ["# to Level of all Physical Skills"] = { { isScalable = true } }, ["# to Level of all Physical Spell Skills"] = { { isScalable = true } }, + ["# to Level of all Plant Skill Gems"] = { { isScalable = true } }, ["# to Level of all Projectile Skills"] = { { isScalable = true } }, ["# to Level of all Raise Spectre Gems"] = { { isScalable = true } }, ["# to Level of all Raise Zombie Gems"] = { { isScalable = true } }, @@ -325,11 +330,16 @@ return { ["# to Level of all Skills with a Dexterity requirement"] = { { isScalable = true } }, ["# to Level of all Skills with a Strength requirement"] = { { isScalable = true } }, ["# to Level of all Skills with an Intelligence requirement"] = { { isScalable = true } }, + ["# to Level of all Slam Skill Gems"] = { { isScalable = true } }, ["# to Level of all Spell Skills"] = { { isScalable = true } }, + ["# to Level of all Storm Skill Gems"] = { { isScalable = true } }, + ["# to Level of all Strike Skill Gems"] = { { isScalable = true } }, ["# to Level of all Summon Skeleton Gems"] = { { isScalable = true } }, ["# to Level of all Totem Skill Gems"] = { { isScalable = true } }, ["# to Level of all Trap Skill Gems"] = { { isScalable = true } }, ["# to Level of all Vaal Skill Gems"] = { { isScalable = true } }, + ["# to Level of all Warcry Skill Gems"] = { { isScalable = true } }, + ["# to Level of all Wind Skill Gems"] = { { isScalable = true } }, ["# to Level of dropped Reward Items"] = { { isScalable = true } }, ["# to Life Recovered"] = { { isScalable = true } }, ["# to Limit for Elemental Skills"] = { { isScalable = true } }, @@ -438,6 +448,7 @@ return { ["# to maximum Lightning Infusions"] = { { isScalable = true } }, ["# to maximum Mana"] = { { isScalable = true } }, ["# to maximum Mana per 2 Item Energy Shield on Equipped Helmet"] = { { isScalable = true } }, + ["# to maximum Mana per 3 Item Armour on Equipped Helmet"] = { { isScalable = true } }, ["# to maximum Mana per Socket filled"] = { { isScalable = true } }, ["# to maximum Rage while Shapeshifted"] = { { isScalable = true } }, ["# to maximum Runic Ward"] = { { isScalable = true } }, @@ -3235,6 +3246,7 @@ return { ["#% increased Skill Effect Duration with Plant Skills"] = { { isScalable = true } }, ["#% increased Skill Range"] = { { isScalable = true } }, ["#% increased Skill Speed"] = { { isScalable = true } }, + ["#% increased Skill Speed for each Corrupted Item Equipped"] = { { isScalable = true } }, ["#% increased Skill Speed if you've consumed a Frenzy Charge Recently"] = { { isScalable = true } }, ["#% increased Skill Speed while Shapeshifted"] = { { isScalable = true } }, ["#% increased Skill Speed while an enemy with an Open Weakness is in your Presence"] = { { isScalable = true } }, @@ -3310,6 +3322,7 @@ return { ["#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life"] = { { isScalable = true } }, ["#% increased Spirit Reservation Efficiency of Skills"] = { { isScalable = true } }, ["#% increased Spirit Reservation Efficiency of Skills per 20 Tribute"] = { { isScalable = true } }, + ["#% increased Spirit for each Corrupted Item Equipped"] = { { isScalable = true } }, ["#% increased Spirit if you have at least 100 Tribute"] = { { isScalable = true } }, ["#% increased Spirit per socketed Grand Spectrum"] = { { isScalable = true } }, ["#% increased Split Arrow Critical Hit Chance"] = { { isScalable = true } }, @@ -3459,7 +3472,6 @@ return { ["#% increased bonuses gained from Equipped Rings and Amulets"] = { { isScalable = true } }, ["#% increased bonuses gained from left Equipped Ring"] = { { isScalable = true } }, ["#% increased bonuses gained from right Equipped Ring"] = { { isScalable = true } }, - ["#% increased chance for Abyssal monsters to have Lichborn Modifiers"] = { { isScalable = true } }, ["#% increased chance of Essences influenced by Abysses to contain Abyssal Essences"] = { { isScalable = true } }, ["#% increased chance of Lichborn Exiles"] = { { isScalable = true } }, ["#% increased chance of Ritual Altars with Special Rewards"] = { { isScalable = true } }, @@ -3868,7 +3880,7 @@ return { ["#% of Armour also applies to Fire Damage"] = { { isScalable = true } }, ["#% of Armour also applies to Lightning Damage"] = { { isScalable = true } }, ["#% of Burning Arrow Physical Damage gained as Extra Fire Damage"] = { { isScalable = true } }, - ["#% of Chaos Damage from Hits taken as a Damage of a random Element"] = { { isScalable = true } }, + ["#% of Chaos Damage from Hits taken as Damage of a random Element"] = { { isScalable = true } }, ["#% of Chaos Damage is taken from Mana before Life"] = { { isScalable = true } }, ["#% of Chaos Damage taken as Fire Damage"] = { { isScalable = true } }, ["#% of Chaos Damage taken as Lightning Damage"] = { { isScalable = true } }, @@ -5775,6 +5787,7 @@ return { ["#% reduced Skill Effect Duration with Plant Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Range"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Speed"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Skill Speed for each Corrupted Item Equipped"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Speed if you've consumed a Frenzy Charge Recently"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Speed while Shapeshifted"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Skill Speed while an enemy with an Open Weakness is in your Presence"] = { { isScalable = true, formats = { "negate" } } }, @@ -5842,6 +5855,7 @@ return { ["#% reduced Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spirit Reservation Efficiency of Skills"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spirit Reservation Efficiency of Skills per 20 Tribute"] = { { isScalable = true, formats = { "negate" } } }, + ["#% reduced Spirit for each Corrupted Item Equipped"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Spirit if you have at least 100 Tribute"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Split Arrow Critical Hit Chance"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced Split Arrow Damage"] = { { isScalable = true, formats = { "negate" } } }, @@ -5986,7 +6000,6 @@ return { ["#% reduced bonuses gained from Equipped Rings and Amulets"] = { { isScalable = true } }, ["#% reduced bonuses gained from left Equipped Ring"] = { { isScalable = true } }, ["#% reduced bonuses gained from right Equipped Ring"] = { { isScalable = true } }, - ["#% reduced chance for Abyssal monsters to have Lichborn Modifiers"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance of Essences influenced by Abysses to contain Abyssal Essences"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance of Lichborn Exiles"] = { { isScalable = true, formats = { "negate" } } }, ["#% reduced chance of Ritual Altars with Special Rewards"] = { { isScalable = true, formats = { "negate" } } }, @@ -6102,6 +6115,7 @@ return { ["#% to Chaos Golem Elemental Resistances"] = { { isScalable = true } }, ["#% to Chaos Resistance"] = { { isScalable = true } }, ["#% to Chaos Resistance during any Flask Effect"] = { { isScalable = true } }, + ["#% to Chaos Resistance for each Corrupted Item Equipped"] = { { isScalable = true } }, ["#% to Chaos Resistance per Endurance Charge"] = { { isScalable = true } }, ["#% to Chaos Resistance per Poison on you"] = { { isScalable = true } }, ["#% to Chaos Resistance per Socket filled"] = { { isScalable = true } }, @@ -8232,6 +8246,7 @@ return { ["Corrupting Fever deals #% reduced Damage"] = { { isScalable = true, formats = { "negate" } } }, ["Corrupting Fever has #% chance to inflict an additional Corrupted Blood Debuff"] = { { isScalable = true } }, ["Corrupting Imprisoned Monsters cannot release them"] = { }, + ["Corrupting will always result in change"] = { }, ["Cost of Building and Upgrading Blight Towers is doubled"] = { }, ["Counterattacks Debilitate Enemies for 1 second on Hit"] = { }, ["Counterattacks have a #% chance to Debilitate on Hit for 1 second"] = { { isScalable = true } }, @@ -8376,6 +8391,7 @@ return { ["DNT #% reduced Movement Speed Penalty from using Chaos Skills while moving"] = { { isScalable = true, formats = { "negate" } } }, ["DNT #% reduced Movement Speed Penalty from using Lightning Skills while moving"] = { { isScalable = true, formats = { "negate" } } }, ["DNT #% reduced Movement Speed Penalty from using Spells while moving"] = { { isScalable = true, formats = { "negate" } } }, + ["DNT Obliterated #233763"] = { }, ["DNT dummy_display_stat_rune_delevel_inherent_skill"] = { }, ["DNT-UNUSED #% chance when hitting a Rare Monster to disable one of its Modifiers"] = { { isScalable = true } }, ["DNT-UNUSED #% of Fire damage taken also taken as Physical damage"] = { { isScalable = true } }, @@ -9565,6 +9581,8 @@ return { ["Gain #% of Physical Damage as Extra Lightning Damage with Attacks"] = { { isScalable = true } }, ["Gain #% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds"] = { { isScalable = true } }, ["Gain #% of Physical Damage as extra Chaos Damage"] = { { isScalable = true } }, + ["Gain #% of damage as Fire damage per 1% Chance to Block"] = { { isScalable = true } }, + ["Gain #% of damage as Fire damage per 2% Chance to Block"] = { { isScalable = true } }, ["Gain #% of maximum Energy Shield as additional Freeze Threshold"] = { { isScalable = true } }, ["Gain #% of maximum Life as Armour"] = { { isScalable = true } }, ["Gain #% of maximum Life as Extra maximum Energy Shield"] = { { isScalable = true } }, @@ -9596,7 +9614,6 @@ return { ["Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill"] = { }, ["Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds\nLose all Runic Bindings when you Shapeshift to gain that much Unbound Potential"] = { }, ["Gain 1% of Unarmed Damage as extra Fire damage per # Intelligence"] = { { isScalable = true } }, - ["Gain 1% of damage as Fire damage per #% Chance to Block"] = { { isScalable = true } }, ["Gain Absorption Charges instead of Power Charges"] = { }, ["Gain Accuracy Rating equal to twice your Strength"] = { }, ["Gain Accuracy Rating equal to your Intelligence"] = { }, @@ -11699,6 +11716,8 @@ return { ["Non-Channelling Skills have # to Total Life Cost"] = { { isScalable = true } }, ["Non-Channelling Skills have # to Total Mana Cost"] = { { isScalable = true } }, ["Non-Channelling Skills have # to Total Mana Cost while affected by Clarity"] = { { isScalable = true } }, + ["Non-Channelling Skills have #% increased Spell Critical Hit Chance per 100 maximum Mana"] = { { isScalable = true } }, + ["Non-Channelling Skills have #% reduced Spell Critical Hit Chance per 100 maximum Mana"] = { { isScalable = true } }, ["Non-Channelling Spells cost Double Mana and Critically Hit"] = { }, ["Non-Channelling Spells cost an additional #% of maximum Energy Shield"] = { { isScalable = true } }, ["Non-Channelling Spells cost an additional #% of your maximum Life"] = { { isScalable = true } }, @@ -11710,10 +11729,8 @@ return { ["Non-Channelling Spells deal #% reduced Damage per 100 maximum Mana"] = { { isScalable = true } }, ["Non-Channelling Spells have #% chance to cost Double Mana and Critically Hit"] = { { isScalable = true } }, ["Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life"] = { { isScalable = true } }, - ["Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana"] = { { isScalable = true } }, ["Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life"] = { { isScalable = true } }, ["Non-Channelling Spells have #% reduced Critical Hit Chance per 100 maximum Life"] = { { isScalable = true } }, - ["Non-Channelling Spells have #% reduced Critical Hit Chance per 100 maximum Mana"] = { { isScalable = true } }, ["Non-Channelling Spells have #% reduced Magnitude of Ailments per 100 maximum Life"] = { { isScalable = true, formats = { "negate" } } }, ["Non-Critical Hits Penetrate #% of Enemy Elemental Resistances"] = { { isScalable = true } }, ["Non-Critical Hits deal #% less Damage"] = { { isScalable = false, formats = { "negate" } } }, @@ -12776,7 +12793,7 @@ return { ["Runebinder"] = { }, ["Runic Monsters are Duplicated"] = { }, ["Runic Ward Regeneration Rate is doubled"] = { }, - ["Runic Ward recovery can can Overflow maximum Runic Ward"] = { }, + ["Runic Ward recovery can Overflow maximum Runic Ward"] = { }, ["Sacrifice # Life to not consume the last bolt when firing"] = { { isScalable = true } }, ["Sacrifice #% of maximum Life to gain half that much Runic Ward when you Attack"] = { { isScalable = true } }, ["Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell"] = { { isScalable = true } }, diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index 1233104d24..145dd9fbc6 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,59 +2,59 @@ -- Item data (c) Grinding Gear Games return { - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7708 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7707 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7705 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7706 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7704 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, - ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7715 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, - ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7710 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, - ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7714 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, - ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7717 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7716 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7720 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, - ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7711 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, - ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7713 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, - ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7719 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, - ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7712 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, - ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7718 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, - ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7721 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, - ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7709 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7714 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7713 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7711 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7712 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7710 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, + ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7721 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, + ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7716 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, + ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7720 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, + ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7723 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7722 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7726 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, + ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7717 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, + ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7719 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, + ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7725 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, + ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7718 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, + ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7724 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, + ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7727 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, + ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7715 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 863 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 869 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9080 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, + ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9085 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 837 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, - ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, + ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1645 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1437 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2666 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5956 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, + ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5957 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4240 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix", "physical", "ailment" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5401 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, - ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9691 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7420 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4954 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4953 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8858 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10313 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, - ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8016 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5910 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, - ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9445 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, + ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5402 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, + ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9699 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7426 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4955 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4954 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8863 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10327 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, + ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 8022 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5911 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, + ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9452 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1007 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7233 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9657 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, - ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7511 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, - ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9693 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, - ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5629 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, - ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5608 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, - ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4755 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7239 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9665 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, + ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7517 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, + ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9701 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, + ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5630 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, + ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5609 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, + ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4756 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4664 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4568 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, - ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6528 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, + ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6530 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1009 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1010 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1011 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, @@ -62,18 +62,18 @@ return { ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 1036 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 1051 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2983 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, - ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6868 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6870 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6871 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6873 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4255 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4266 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 985 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6094 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, - ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6063 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, + ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6095 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, + ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6064 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 836 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6635 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, + ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6637 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 902 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2899 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4671 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_suffix", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, @@ -88,10 +88,10 @@ return { ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 2022 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, - ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8998 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, - ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 9025 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, + ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 9003 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, + ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 9030 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2667 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(3-4)% to all Elemental Resistances" }, } }, - ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 10131 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield" }, } }, + ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 10144 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield" }, } }, ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4265 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield" }, } }, ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3669820740] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Life" }, } }, ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [85367160] = { "Notable Passive Skills in Radius also grant 1% of Damage taken Recouped as Mana" }, } }, @@ -100,11 +100,11 @@ return { ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "evasion", "energy_shield" }, nodeType = 2, tradeHashes = { [2783157569] = { "Notable Passive Skills in Radius also grant (2-3)% increased Global Armour, Evasion and Energy Shield" }, } }, ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [2709646369] = { "Notable Passive Skills in Radius also grant 1% of Damage is taken from Mana before Life" }, } }, ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1691 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life" }, nodeType = 2, tradeHashes = { [3566150527] = { "Notable Passive Skills in Radius also grant Regenerate (0.03-0.07)% of maximum Life per second" }, } }, - ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency" }, } }, + ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, nodeType = 2, tradeHashes = { [4257790560] = { "Notable Passive Skills in Radius also grant (2-3)% increased Mana Cost Efficiency" }, } }, ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2857 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "critical" }, nodeType = 2, tradeHashes = { [2135541924] = { "Notable Passive Skills in Radius also grant Hits have (3-5)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6888 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6887 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second" }, } }, - ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6884 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6891 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [3939216292] = { "Notable Passive Skills in Radius also grant Mana Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6890 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flask", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1148433552] = { "Notable Passive Skills in Radius also grant Life Flasks gain 0.1 charges per Second" }, } }, + ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6887 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "charm", "unveiled_mod" }, nodeType = 2, tradeHashes = { [1034611536] = { "Notable Passive Skills in Radius also grant Charms gain 0.1 charges per Second" }, } }, ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 871, 882 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "armour", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 871, 884 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "evasion", "damage", "caster" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2974417149] = { "(4-8)% increased Spell Damage" }, } }, ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 871, 886 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster_damage", "defences", "unveiled_mod", "energy_shield", "damage", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, @@ -114,229 +114,229 @@ return { ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 882, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "armour", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 884, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "evasion", "damage", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 886, 1720 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "energy_shield", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 882, 10247 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 884, 10247 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, - ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 886, 10247 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 882, 10261 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 884, 10261 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, + ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 886, 10261 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 882, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 884, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 886, 1152 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 873, 2724 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 875, 2726 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 874, 2725 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, - ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4803, 4806 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, - ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9484, 9492 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, - ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10499, 10502 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, - ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5718, 5722 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, + ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4804, 4807 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, + ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9492, 9500 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, + ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10513, 10516 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, + ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5719, 5723 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1185, 4407 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "physical_damage", "unveiled_mod", "armour", "damage", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1726, 4259 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, - ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 876, 10549 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, + ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 876, 10565 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1069, 2574 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, - ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6528 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, + ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6530 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4121 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 999 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1000 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1001 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7532 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7538 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 995 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6548 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6550 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 996 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5670 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5671 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 997 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, - ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, - ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8823 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, + ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8828 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 980 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, - ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4706 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6909 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, + ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4707 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6912 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1069 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "aura" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2996 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4259 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, - ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9484 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, - ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4803 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, - ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5549 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9907 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9492 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, + ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4804 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, + ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5550 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9915 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4669 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, - ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7420 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7188 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, - ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6742 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7426 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7194 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6745 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1742 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1067 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 1063 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, - ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9798 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, - ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5268 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9148 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4745 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6195 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, - ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7964 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, + ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9806 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, + ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5269 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9153 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4746 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6196 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, + ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7970 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3986 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, - ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6887 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6890 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3881 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7501 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, - ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9929 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, - ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6884 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10249 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, - ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5630 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, - ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4755 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6888 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7963 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, + ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7507 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, + ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9939 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, + ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6887 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10263 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, + ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5631 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, + ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4756 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6891 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7969 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3881 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1043 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2857 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1037 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1911 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1044 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9652 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, + ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9660 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4645 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, - ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4677 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, - ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9758 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, - ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4678 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, + ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9766 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, + ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1734 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9373 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9386 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, - ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2205, 4940 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, - ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Shield Skills fully Break Armour when they Heavy Stun targets", statOrder = { 6694 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Shield Skills fully Break Armour when they Heavy Stun targets" }, } }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6982 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9380 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9393 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, + ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2205, 4941 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, + ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Shield Skills fully Break Armour when they Heavy Stun targets", statOrder = { 6696 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Shield Skills fully Break Armour when they Heavy Stun targets" }, } }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6987 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1493 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1520 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, - ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6440 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, - ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 10025 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 10003 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, - ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10031 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10027 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6442 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, + ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 10035 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 10013 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, + ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10041 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10037 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2376 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3719 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 972 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5920 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7384 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, - ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9984 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, + ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5921 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7390 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, + ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9994 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4193, 4193.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4438 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, - ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9535 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9543 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5813 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9542 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5827 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9543 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9551 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5814 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9550 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5828 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4530 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 837 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1511 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, - ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9730 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9034 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9738 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, + ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1645 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, - ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9732 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, + ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9740 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2810 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, - ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6528 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, + ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6530 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4103 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1517 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, - ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9840 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7258 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, + ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9848 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7264 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1895 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, - ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7187 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, + ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7193 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1897 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, - ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4954 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6114 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, - ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5566 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9759 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, + ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4955 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6115 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, + ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5567 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9767 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 949 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4953 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, + ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4954 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2588 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1177404658] = { "(15-25)% increased Global Armour, Evasion and Energy Shield" }, } }, ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2335 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2574 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, - ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8858 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, - ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7381 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, - ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 9024 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8863 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, + ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7387 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, + ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 975 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, - ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 10008 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, - ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6062 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, + ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 10018 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, + ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6063 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1741 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, - ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10027 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 10004 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 10037 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 10014 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 896 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, ["AbyssModStaffAmanamuPrefixDamageAsChaos"] = { type = "Prefix", affix = "Amanamu's", "Gain (40-50)% of Damage as Extra Chaos Damage", statOrder = { 1672 }, level = 65, group = "DamageGainedAsChaos", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "chaos_damage", "unveiled_mod", "amanamu_mod", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (40-50)% of Damage as Extra Chaos Damage" }, } }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10031 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 10041 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4344 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(20-25)% to Block chance", statOrder = { 1123 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(20-25)% to Block chance" }, } }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 10010 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, - ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8870 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 10020 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, + ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4343 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, - ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5343 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, - ["AbyssModStaffKurgalSuffixPuppetMasterStacks"] = { type = "Suffix", affix = "of Kurgal", "+(3-4) maximum stacks of Puppet Master", statOrder = { 8834 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1484026495] = { "+(3-4) maximum stacks of Puppet Master" }, } }, + ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5344 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, + ["AbyssModStaffKurgalSuffixPuppetMasterStacks"] = { type = "Suffix", affix = "of Kurgal", "+(3-4) maximum stacks of Puppet Master", statOrder = { 8839 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1484026495] = { "+(3-4) maximum stacks of Puppet Master" }, } }, ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1671 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, - ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4806 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, + ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4807 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4407 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4411 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_critical", "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, - ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7180 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, + ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7186 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1726 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 871, 1720 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, - ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 10004 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9984 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, - ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4741, 10031 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7179 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, - ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7384 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, - ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5331 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7178 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, + ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 10014 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9994 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, + ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4742, 10041 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7185 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, + ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7390 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, + ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5332 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, + ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7184 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3439 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, - ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4742 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4743 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3437 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, - ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3438 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4653 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8906 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8911 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 830, 946 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4653 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2923 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2360 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, - ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5944 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4414 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, - ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9888 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, - ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10613 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6317 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, + ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9896 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, + ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10629 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6319 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2923 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2360 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, - ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5943 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5944 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4414 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, - ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9888 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, - ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10613 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6317 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, + ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9896 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, + ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10629 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6319 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 3035 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 875, 9839 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, - ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9692 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, + ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 875, 9847 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, + ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9700 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 873, 1077 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4185 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 874, 1057 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, - ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9695 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, + ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9703 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4175 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3783 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5813 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6936 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6938, 6939 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, - ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6934 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, - ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9543 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5814 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6939 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6941, 6942 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, + ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6937 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, + ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9551 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 947 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2760344900] = { "(15-20)% chance when you Reload a Crossbow to be immediate" }, } }, - ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9542 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9535 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9550 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9543 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 946, 4556 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, - ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5718, 5956 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, + ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5719, 5957 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4493 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, - ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 946, 5712 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, + ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 946, 5713 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1068 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, - ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9537 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, - ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5827 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7188 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, - ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9599 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, - ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8909 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6868 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, - ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9034 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10503 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5830 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4752 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4716 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, + ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9545 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, + ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5828 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7194 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, + ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9607 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, + ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8914 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6871 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, + ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9039 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10517 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5831 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4753 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4717 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1950 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2376 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 1026 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, @@ -346,48 +346,48 @@ return { ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 920 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 921 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 916 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, - ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4759, 6973 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, + ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4760, 6977 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 876, 3012 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 878, 4671 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 876, 3716 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, - ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 895, 4752 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 896, 4753 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, [3981240776] = { "+(40-60) to Spirit" }, } }, ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1617, 1726 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, - ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7523 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, + ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7529 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, ["GenesisTreeAmuletColdDamageAsPortionOfDamage"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1675 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, ["GenesisTreeAmuletAnaemiaOnHit"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4324, 4324.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6585 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4725 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9014 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8870 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9794 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, + ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6587 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, + ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4726 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, + ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 9019 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, + ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8875 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9802 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, ["GenesisTreeRingOfferingEffect"] = { type = "Prefix", affix = "Dedicated", "Offering Skills have (23-30)% increased Buff effect", statOrder = { 3719 }, level = 1, group = "OfferingEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (23-30)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10240 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8995 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9007 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9020 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9024 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, - ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10195 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, + ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10254 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, + ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 9000 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, + ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 9012 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, + ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 9025 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, + ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 9029 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, + ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10209 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, ["GenesisTreeRingSpellDamageAsExtraLightning"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 870 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraFire"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 864 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, ["GenesisTreeRingSpellDamageAsExtraCold"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 868 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9236 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, + ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9242 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, ["GenesisTreeRingDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2472 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6528 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7380 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10020 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6556 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7538 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5671 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, + ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6530 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, + ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7386 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, + ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 10030 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6558 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7544 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5672 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, ["GenesisTreeBeltArchonEffect"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4345 }, level = 1, group = "ArchonEffect", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5561 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10018 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5562 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, + ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 10028 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, ["GenesisTreeBeltArchonDuration"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4344 }, level = 1, group = "ArchonDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5397 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9029 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9091 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6031 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9761 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9062 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4726 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, + ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5398 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 9034 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, + ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9096 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, + ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6032 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, + ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9769 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, + ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Minions' Strikes have Melee Splash", statOrder = { 9067 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4727 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { type = "Prefix", affix = "Lich's", "(86-99)% increased Chaos Damage", "(14-23)% increased Magnitude of Ailments you inflict", statOrder = { 876, 4259 }, level = 65, group = "ChaosDamageAndAilmentMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [736967255] = { "(86-99)% increased Chaos Damage" }, [1303248024] = { "(14-23)% increased Magnitude of Ailments you inflict" }, } }, } \ No newline at end of file diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index cf52b73ac7..8f8e73a2f4 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -16995,20 +16995,6 @@ return { ["type"] = "explicit", }, }, - ["2704225257"] = { - ["Body Armour"] = { - ["max"] = 24, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2704225257", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, ["2704905000"] = { ["AnyJewel"] = { ["max"] = 7, @@ -22273,6 +22259,10 @@ return { ["max"] = 50, ["min"] = 30, }, + ["Body Armour"] = { + ["max"] = 24, + ["min"] = 1, + }, ["Chest"] = { ["max"] = 61, ["min"] = 30, @@ -27692,10 +27682,18 @@ return { ["max"] = 300, ["min"] = 100, }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, ["Amulet"] = { ["max"] = 40, ["min"] = 30, }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 30, + }, ["Wand"] = { ["max"] = 300, ["min"] = 300, @@ -28211,18 +28209,10 @@ return { }, }, ["774059442"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, ["Chest"] = { ["max"] = 1000, ["min"] = 750, }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 30, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28354,8 +28344,8 @@ return { }, ["1011760251"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, @@ -28403,48 +28393,48 @@ return { }, ["1030153674"] = { ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Bow"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Claw"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Flail"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Spear"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 4, + ["min"] = 4, }, ["specialCaseData"] = { }, @@ -29074,8 +29064,8 @@ return { }, ["1444556985"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -29100,72 +29090,72 @@ return { }, ["1496740334"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, @@ -29175,59 +29165,6 @@ return { ["type"] = "augment", }, }, - ["1519615863"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "augment", - }, - }, ["153777645"] = { ["Focus"] = { ["max"] = 40, @@ -29290,72 +29227,72 @@ return { }, ["1556124492"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, @@ -30257,8 +30194,8 @@ return { ["min"] = -25, }, ["Boots"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 20, + ["min"] = 20, }, ["Bow"] = { ["max"] = -25, @@ -30299,48 +30236,48 @@ return { }, ["2023107756"] = { ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Flail"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Spear"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -30817,8 +30754,8 @@ return { }, ["2363593824"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 12, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -31491,8 +31428,8 @@ return { }, ["2748665614"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -31533,20 +31470,6 @@ return { }, ["usePositiveSign"] = true, }, - ["280497929"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_280497929", - ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, ["280731498"] = { ["Helmet"] = { ["max"] = 15, @@ -31728,28 +31651,28 @@ return { }, ["2901986750"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 6, + ["min"] = 6, }, ["Chest"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 6, }, ["Focus"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 6, + ["min"] = 6, }, ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 6, + ["min"] = 6, }, ["Helmet"] = { - ["max"] = 5, + ["max"] = 6, ["min"] = 5, }, ["Shield"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 6, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -31800,72 +31723,72 @@ return { }, ["2913012734"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, @@ -31938,28 +31861,28 @@ return { }, ["2923486259"] = { ["Boots"] = { - ["max"] = 11, - ["min"] = 11, + ["max"] = 13, + ["min"] = 13, }, ["Chest"] = { - ["max"] = 11, - ["min"] = 11, + ["max"] = 13, + ["min"] = 13, }, ["Focus"] = { - ["max"] = 11, - ["min"] = 11, + ["max"] = 13, + ["min"] = 13, }, ["Gloves"] = { - ["max"] = 11, - ["min"] = 11, + ["max"] = 13, + ["min"] = 13, }, ["Helmet"] = { - ["max"] = 11, - ["min"] = 11, + ["max"] = 13, + ["min"] = 13, }, ["Shield"] = { - ["max"] = 11, - ["min"] = 11, + ["max"] = 13, + ["min"] = 13, }, ["specialCaseData"] = { }, @@ -31970,59 +31893,6 @@ return { }, ["usePositiveSign"] = true, }, - ["293638271"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "augment", - }, - }, ["293832783"] = { ["Boots"] = { ["max"] = 4, @@ -32062,63 +31932,10 @@ return { ["type"] = "augment", }, }, - ["2968503605"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["2974417149"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "augment", - }, - }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, + ["max"] = 35, + ["min"] = 20, }, ["2HWeapon"] = { ["max"] = 35, @@ -32394,16 +32211,56 @@ return { ["type"] = "augment", }, }, - ["3170380905"] = { - ["Shield"] = { - ["max"] = 2, - ["min"] = 2, + ["3166958180"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Flail"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Quarterstaff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Talisman"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3170380905", - ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "augment", }, }, @@ -32916,23 +32773,6 @@ return { ["type"] = "augment", }, }, - ["3398301358"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "augment", - }, - }, ["3398787959"] = { ["1HMace"] = { ["max"] = 13, @@ -33273,19 +33113,6 @@ return { ["type"] = "augment", }, }, - ["3544800472"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "augment", - }, - }, ["3552135623"] = { ["Chest"] = { ["max"] = 3, @@ -33313,19 +33140,6 @@ return { ["type"] = "augment", }, }, - ["3585532255"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "augment", - }, - }, ["3639405795"] = { ["Boots"] = { ["max"] = 1, @@ -33371,8 +33185,8 @@ return { }, ["3676141501"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, @@ -33571,23 +33385,6 @@ return { ["type"] = "augment", }, }, - ["3759663284"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "augment", - }, - }, ["3801067695"] = { ["Boots"] = { ["max"] = 10, @@ -33644,8 +33441,8 @@ return { ["min"] = 20, }, ["Boots"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 20, + ["min"] = 20, }, ["Sceptre"] = { ["max"] = 20, @@ -33697,12 +33494,12 @@ return { }, ["3855016469"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, @@ -33748,48 +33545,48 @@ return { }, ["387439868"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, @@ -33817,59 +33614,6 @@ return { ["type"] = "augment", }, }, - ["3885634897"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "augment", - }, - }, ["3903510399"] = { ["Helmet"] = { ["max"] = 35, @@ -34048,48 +33792,48 @@ return { }, ["4064396395"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, @@ -34238,14 +33982,6 @@ return { ["max"] = 16, ["min"] = 10, }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, - }, ["Staff"] = { ["max"] = 16, ["min"] = 10, @@ -34450,48 +34186,48 @@ return { }, ["473429811"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 60, + ["min"] = 60, }, ["specialCaseData"] = { }, @@ -35287,19 +35023,19 @@ return { }, ["737908626"] = { ["1HWeapon"] = { - ["max"] = 28, + ["max"] = 30, ["min"] = 16, }, ["2HWeapon"] = { - ["max"] = 28, + ["max"] = 30, ["min"] = 16, }, ["Staff"] = { - ["max"] = 28, + ["max"] = 30, ["min"] = 16, }, ["Wand"] = { - ["max"] = 28, + ["max"] = 30, ["min"] = 16, }, ["specialCaseData"] = { @@ -35554,13 +35290,57 @@ return { ["usePositiveSign"] = true, }, ["805298720"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { ["max"] = 3, - ["min"] = 3, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, }, ["Wand"] = { ["max"] = 3, - ["min"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, @@ -35883,8 +35663,8 @@ return { }, ["983749596"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, diff --git a/src/Data/Skills/SkillAssets.lua b/src/Data/Skills/SkillAssets.lua index ae90ee82ed..81dfb5b4cf 100644 --- a/src/Data/Skills/SkillAssets.lua +++ b/src/Data/Skills/SkillAssets.lua @@ -3,7 +3,7 @@ return { ddsCoords={ - ["gem-backgrounds_700_372_BC7.dds.zst"]={ + ["gem-backgrounds_708_380_BC7.dds.zst"]={ AncestralWarriorTotemPlayer=1, ArcPlayer=2, ArcticArmourPlayer=3, @@ -28,12 +28,12 @@ return { FallingThunderPlayer=26, FireballPlayer=27, FirestormPlayer=28, - FlameWallPlayer=29, - FlameblastPlayer=30, + FlameWallPlayer=30, + FlameblastPlayer=29, FlickerStrikePlayer=31, - FrostBombPlayer=32, - FrostWallPlayer=33, - FrostboltPlayer=34, + FrostBombPlayer=33, + FrostWallPlayer=34, + FrostboltPlayer=32, FrozenLocusPlayer=35, GaleStrikePlayer=95, GasArrowPlayer=36, @@ -49,7 +49,7 @@ return { LightningArrowPlayer=46, LightningConduitPlayer=47, LightningRodPlayer=48, - LightningSpearPlayer=81, + LightningSpearPlayer=82, LightningWarpPlayer=49, MagmaBarrierPlayer=50, ManaRemnantsPlayer=23, @@ -78,7 +78,7 @@ return { SparkPlayer=78, SpiralVolleyPlayer=79, StaggeringPalmPlayer=80, - StormcallerArrowPlayer=82, + StormcallerArrowPlayer=81, SummonSkeletalArsonistsPlayer=67, SummonSkeletalBrutesPlayer=68, SummonSkeletalClericsPlayer=69, diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index 1648df4ee4..11b14f4313 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -3504,7 +3504,7 @@ skills["HeraldOfThunderPlayer"] = { baseTypeName = "Herald of Thunder", icon = "Art/2DArt/SkillIcons/HeraldOfThunderSkill.dds", color = 2, - description = "While active, killing Shocked enemies with a non-Herald Attack Hit will cause subsequent Attack Hits to release lightning bolts which deals Attack damage to all surrounding enemies.", + description = "While active, killing Shocked enemies with a non-Herald Attack Hit will cause subsequent Attack Hits to release lightning bolts which dealAttack damage to all surrounding enemies.", skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Area] = true, [SkillType.Lightning] = true, [SkillType.Herald] = true, [SkillType.Attack] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { ["Bow"] = true, diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index 107b79b380..547fe1e017 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -8463,7 +8463,7 @@ skills["FlameblastPlayer"] = { baseTypeName = "Flameblast", icon = "Art/2DArt/SkillIcons/SorceressFlameblast.dds", color = 3, - description = "Channel to build destructive energy around you. Releasing the energy causes a devastating explosion that is larger and more intense the longer you Channelled for.", + description = "Channel to build destructive energy around you. Releasing the energy causes a devastating explosion that is larger and more intense the longer you Channel for.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Fire] = true, [SkillType.Channel] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.UsableWhileMoving] = true, [SkillType.GainsStages] = true, [SkillType.Cooldown] = true, }, castTime = 0.25, qualityStats = { @@ -8615,7 +8615,7 @@ skills["FlickerStrikePlayer"] = { baseTypeName = "Flicker Strike", icon = "Art/2DArt/SkillIcons/MonkFlickerStrikeTeleport.dds", color = 3, - description = "Teleport to a enemy and Strike them. Consumes Power Charges to perform additional teleporting Strikes on nearby enemies.", + description = "Teleport to an enemy and Strike them. Consumes Power Charges to perform additional teleporting Strikes on nearby enemies.", skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.ConsumesCharges] = true, [SkillType.SkillConsumesPowerChargesOnUse] = true, }, weaponTypes = { ["Staff"] = true, @@ -10439,7 +10439,7 @@ skills["GatheringStormPlayer"] = { baseTypeName = "Gathering Storm", icon = "Art/2DArt/SkillIcons/MonkGatheringStorm.dds", color = 3, - description = "Flip backward and Channel to charge your Quarterstaff with Lightning. Releasing dashes towards the target location, damaging enemies along the way. Releasing with Perfect Timing performs a Lightning-assisted dash that releases shockwaves from enemies you dash through. Perfectly Timed dash also explodes Tempest Bells on hit creating a shockwave that deals more damage and has a larger area, leaving Shocked Ground in its wake. This skill cannot be Ancestrally Boosted.", + description = "Flip backward and Channel to charge your Quarterstaff with Lightning. Releasing causes you to dash towards the target location, damaging enemies along the way. Releasing with Perfect Timing performs a Lightning-assisted dash that releases shockwaves from enemies you dash through. Perfectly Timed dash also explodes Tempest Bells on hit creating a shockwave that deals more damage and has a larger area, leaving Shocked Ground in its wake. This skill cannot be Ancestrally Boosted.", skillTypes = { [SkillType.Attack] = true, [SkillType.Channel] = true, [SkillType.Travel] = true, [SkillType.PerfectTiming] = true, [SkillType.Lightning] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.CreatesGroundEffect] = true, [SkillType.Duration] = true, [SkillType.CannotSpiritStrike] = true, }, weaponTypes = { ["Staff"] = true, @@ -15333,7 +15333,7 @@ skills["MantraOfDestructionPlayer"] = { baseTypeName = "Mantra of Destruction", icon = "Art/2DArt/SkillIcons/MonkMantraofDestruction.dds", color = 3, - description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to Empower your next Quarterstaff Attack, causing it to deal additional Chaos damage. Each kill with the Empowered Attack grants\nPurple Flames of Chayula for a duration.", + description = "Build Combo by successfully Striking Enemies with other skills. After reaching maximum Combo, use this skill to Empower your next Quarterstaff Attack, causing it to deal additional Chaos damage. Each kill with the Empowered Attack grants Purple Flames of Chayula for a duration.", skillTypes = { [SkillType.ComboStacking] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.EmpowersOtherSkill] = true, [SkillType.Chaos] = true, [SkillType.HasUsageCondition] = true, }, weaponTypes = { ["Staff"] = true, @@ -15722,7 +15722,7 @@ skills["PainOfferingPlayer"] = { baseTypeName = "Pain Offering", icon = "Art/2DArt/SkillIcons/WitchPainOffering.dds", color = 3, - description = "Skewer a Skeleton on a bone spike to send nearby Minions into a frenzy as long as the spike remains, making their skills faster and harder hitting. The bone spike is itself a Minion. If it dies, the effect ends immediately.", + description = "Skewer a Skeleton on a bone spike to send nearby Minions into a frenzy as long as the spike remains, making their skills faster and harder hitting. \nThe bone spike is itself a Minion. If it dies, the effect ends immediately.", skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, minionSkillTypes = { [SkillType.Aura] = true, }, castTime = 0.6, @@ -19568,7 +19568,7 @@ skills["SoulOfferingPlayer"] = { baseTypeName = "Soul Offering", icon = "Art/2DArt/SkillIcons/WitchPowerOffering.dds", color = 3, - description = "Skewer a Skeleton on a bone spike, granting you a powerful Spell damage Buff as long as the spike remains. Does not affect your Minions. The bone spike is itself a Minion. If it dies, the effect ends immediately.", + description = "Skewer a Skeleton on a bone spike, granting you a powerful Spell damage Buff as long as the spike remains. Does not affect your Minions. \nThe bone spike is itself a Minion. If it dies, the effect ends immediately.", skillTypes = { [SkillType.Offering] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Limit] = true, [SkillType.Buff] = true, }, castTime = 1, qualityStats = { @@ -22614,7 +22614,7 @@ skills["VulnerabilityPlayer"] = { baseTypeName = "Vulnerability", icon = "Art/2DArt/SkillIcons/vulnerability.dds", color = 3, - description = "Curse all targets in an area after a short delay. making Hits against them ignore a portion of their Armour.", + description = "Curse all targets in an area after a short delay, making Hits against them ignore a portion of their Armour.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 0.7, qualityStats = { diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua index b6ef6e4485..6cf0aaaa48 100644 --- a/src/Data/Skills/act_str.lua +++ b/src/Data/Skills/act_str.lua @@ -3254,7 +3254,7 @@ skills["WolfCrossSlashPlayer"] = { baseTypeName = "Cross Slash", icon = "Art/2DArt/SkillIcons/DruidCrossSlash.dds", color = 1, - description = "Shapeshift into a Werewolf and leap backwards as you gouge the ground with both claws. Enemies can be Hit separately by both gouges. Hitting a Marked enemy with both gouges will Activate the Mark and cause an additional shockwave. Ice Fragments will be pulled into the location where the gouges cross and explode immediately. This skill can be used while using other skills to interrupt them.", + description = "Shapeshift into a Werewolf and leap backwards as you gouge the ground with both claws. Enemies can be Hit separately by both gouges. Hitting a Marked enemy with both gouges will Activate the Mark and cause an additional shockwave. Ice Fragments will be pulled into the location where the gouges cross and explode. immediately. This skill can be used while using other skills to interrupt them.", skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Shapeshift] = true, [SkillType.Wolf] = true, [SkillType.Cooldown] = true, [SkillType.CanCancelActions] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Talisman"] = true, @@ -5529,27 +5529,27 @@ skills["SupportFerociousRoarPlayer"] = { [17] = { 78, 78, statInterpolation = { 1, 1, }, actorLevel = 76.906997680664, }, [18] = { 81, 81, statInterpolation = { 1, 1, }, actorLevel = 83.611999511719, }, [19] = { 84, 84, statInterpolation = { 1, 1, }, actorLevel = 90.542999267578, }, - [20] = { 58, 58, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, - [21] = { 87, 87, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, - [22] = { 90, 90, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, - [23] = { 93, 93, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, - [24] = { 96, 96, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, - [25] = { 99, 99, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, - [26] = { 102, 102, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, - [27] = { 105, 105, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, - [28] = { 108, 108, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, - [29] = { 111, 111, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, - [30] = { 114, 114, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, - [31] = { 115, 115, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, - [32] = { 117, 117, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, - [33] = { 118, 118, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, - [34] = { 120, 120, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, - [35] = { 121, 121, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, - [36] = { 123, 123, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, - [37] = { 124, 124, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, - [38] = { 126, 126, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, - [39] = { 127, 127, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, - [40] = { 129, 129, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, + [20] = { 87, 87, statInterpolation = { 1, 1, }, actorLevel = 97.699996948242, }, + [21] = { 90, 90, statInterpolation = { 1, 1, }, actorLevel = 105.08300018311, }, + [22] = { 93, 93, statInterpolation = { 1, 1, }, actorLevel = 112.69200134277, }, + [23] = { 96, 96, statInterpolation = { 1, 1, }, actorLevel = 120.52700042725, }, + [24] = { 99, 99, statInterpolation = { 1, 1, }, actorLevel = 128.58799743652, }, + [25] = { 102, 102, statInterpolation = { 1, 1, }, actorLevel = 136.875, }, + [26] = { 105, 105, statInterpolation = { 1, 1, }, actorLevel = 145.38800048828, }, + [27] = { 108, 108, statInterpolation = { 1, 1, }, actorLevel = 154.12699890137, }, + [28] = { 111, 111, statInterpolation = { 1, 1, }, actorLevel = 163.09199523926, }, + [29] = { 114, 114, statInterpolation = { 1, 1, }, actorLevel = 172.28300476074, }, + [30] = { 117, 117, statInterpolation = { 1, 1, }, actorLevel = 181.69999694824, }, + [31] = { 118, 118, statInterpolation = { 1, 1, }, actorLevel = 191.34300231934, }, + [32] = { 120, 120, statInterpolation = { 1, 1, }, actorLevel = 201.21200561523, }, + [33] = { 121, 121, statInterpolation = { 1, 1, }, actorLevel = 211.30700683594, }, + [34] = { 123, 123, statInterpolation = { 1, 1, }, actorLevel = 221.62800598145, }, + [35] = { 124, 124, statInterpolation = { 1, 1, }, actorLevel = 232.17500305176, }, + [36] = { 126, 126, statInterpolation = { 1, 1, }, actorLevel = 242.94799804688, }, + [37] = { 127, 127, statInterpolation = { 1, 1, }, actorLevel = 253.94700622559, }, + [38] = { 129, 129, statInterpolation = { 1, 1, }, actorLevel = 265.17199707031, }, + [39] = { 130, 130, statInterpolation = { 1, 1, }, actorLevel = 276.62298583984, }, + [40] = { 132, 132, statInterpolation = { 1, 1, }, actorLevel = 288.29998779297, }, }, }, } @@ -15970,7 +15970,7 @@ skills["RollingMagmaPlayer"] = { baseTypeName = "Rolling Magma", icon = "Art/2DArt/SkillIcons/DruidRollingMagma.dds", color = 1, - description = "Shapeshift into a Wyvern and lob a ball of magma that deals area damage as it hits the ground. The skill Chains, bouncing forward to deal damage multiple times. Impacts on Molten Fissures or Volcanos will activate them as though they were Slammed.", + description = "Shapeshift into a Wyvern and lob a ball of magma that deals area damage as it hits the ground. The skillChains, bouncing forward to deal damage multiple times. Impacts on Molten Fissures or Volcanos will activate them as though they were Slammed.", skillTypes = { [SkillType.Attack] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Shapeshift] = true, [SkillType.Wyvern] = true, [SkillType.Detonator] = true, [SkillType.Triggerable] = true, [SkillType.RangedAttack] = true, }, weaponTypes = { ["Talisman"] = true, diff --git a/src/Data/Skills/gem-backgrounds_708_380_BC7.dds.zst b/src/Data/Skills/gem-backgrounds_708_380_BC7.dds.zst new file mode 100644 index 0000000000..3c7c8c5e66 Binary files /dev/null and b/src/Data/Skills/gem-backgrounds_708_380_BC7.dds.zst differ diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua index 557ebf1e90..f311dffeae 100644 --- a/src/Data/Skills/minion.lua +++ b/src/Data/Skills/minion.lua @@ -1509,7 +1509,7 @@ skills["WolfLeapAttackMinion"] = { name = "Leap Slam", hidden = true, icon = "Art/2DArt/SkillIcons/BruteLeapSlam.dds", - description = "Jump into the air, damaging and knocking back enemies with your weapon where you land. Enemies you would land on are pushed out of the way.", + description = "Jump into the air, damaging and Knocking Back back enemies with your weapon where you land. Enemies you would land on are pushed out of the way.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, [SkillType.Travel] = true, [SkillType.Slam] = true, [SkillType.Totemable] = true, [SkillType.Cooldown] = true, [SkillType.AttackInPlace] = true, }, weaponTypes = { ["One Hand Axe"] = true, diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index ca404092af..3edbbbd09b 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -127,7 +127,7 @@ skills["AcidicConcoctionPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionPoisonSkill.dds", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area. The thrown flask Consumes Poison on Hit to cause an acidic burst. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack", + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area. The thrown flask Consumes Poison on Hit to cause an acidic burst. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack.", skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.Physical] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, @@ -1792,9 +1792,9 @@ skills["AzmerianSwarmPlayer"] = { "AzmerianSwarm", }, color = 4, - description = "While active, summons short-lived Azmerian Swarms when you kill enemies affected by Elemental Ailments or hit Rare or Unique enemies affected by Elemental Ailments. The swarms are untargetable Minions that pursue nearby enemies to Attack them and infict Faerie Fire on Hit.", + description = "While active, summons short-lived Azmerian Swarms when you kill enemies affected by Elemental Ailments or hit Rare or Unique enemies affected by Elemental Ailments. The swarms are untargetable Minions that pursue nearby enemies to Attack them and inflict Faerie Fire on Hit.", skillTypes = { [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.OngoingSkill] = true, [SkillType.Persistent] = true, [SkillType.Limit] = true, [SkillType.Duration] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Physical] = true, [SkillType.AttackInPlace] = true, }, - minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.MeleeSingleTarget] = true, }, castTime = 0, qualityStats = { { "max_azmerian_swarms", 0.1, { } }, @@ -2495,7 +2495,7 @@ skills["BleedingConcoctionPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionBleedSkill.dds", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area and Aggravating Bleeding on Enemies hit. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack", + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Physical Attack damage in an area and Aggravating Bleeding on Enemies hit. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack.", skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, @@ -2957,7 +2957,7 @@ skills["ExplodingPoisonToadPlayer"] = { icon = "Art/2DArt/SkillIcons/MurkshaftToads.dds", fromItem = true, color = 4, - description = "This skill creates a toad that jumps around briefly, then explodes the toad, dealing Attack damage in an area and inflicting Poison. Damage you deal with skill is not based on your Weapon", + description = "This skill creates a toad that jumps around briefly, the toad then explodes, dealing Attack damage in an area and inflicting Poison. Damage you deal with this skill is not based on your Weapon.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Chaos] = true, [SkillType.Physical] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.NonWeaponAttack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.UseGlobalStats] = true, [SkillType.AttackInPlace] = true, }, castTime = 1, qualityStats = { @@ -3905,7 +3905,7 @@ skills["MeleeCrossbowPlayer"] = { fromItem = true, color = 4, description = "Fire a bolt from your crossbow.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.CrossbowSkill] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.UsableWhileMoving] = true, }, weaponTypes = { ["Crossbow"] = true, }, @@ -4520,7 +4520,7 @@ skills["DetonateLivingPlayer"] = { baseTypeName = "Detonate Living", icon = "Art/2DArt/SkillIcons/ExpeditionDetonateLiving.dds", color = 4, - description = "Hit an enemy under the Culling Strike Threshold, causing them to violently explode, damaging surrounding enemies. Highlights enemies under the Culling Strike Threshold.", + description = "Spend Runic Ward to cause a destabilising Hit against an enemy under the Culling Strike Threshold, making them violently explode. Highlights enemies under the Culling Strike Threshold.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 0.65, qualityStats = { @@ -5929,7 +5929,7 @@ skills["ExplosiveConcoctionPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionFireSkill.dds", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Fire Attack damage in an area. Additional smaller flasks are thrown at nearby Ignited Enemies. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack", + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Fire Attack damage in an area. Additional smaller flasks are thrown at nearby Ignited Enemies. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack.", skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, @@ -7439,7 +7439,7 @@ skills["FulminatingConcoctionPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionLightningSkill.dds", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Lightning Attack damage in an area with high chance to Shock. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack", + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Lightning Attack damage in an area with high chance to Shock. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack.", skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, @@ -13589,7 +13589,7 @@ skills["RefutationPlayer"] = { baseTypeName = "Refutation", icon = "Art/2DArt/SkillIcons/ExpeditionRunicFortress.dds", color = 4, - description = "Spends all your Ward to gain a short-duration Buff that causes you to Block all Blockable Hits and apply Parried to enemies from which you've Blocked a Hit. This Buff is removed if you are Heavy Stunned. While this Buff is active, you cannot be Light Stunned, but Blocking too much damage may Heavy Stun you.", + description = "Spends all your Runic Ward to gain a short-duration Buff that causes you to Block all Blockable Hits and apply Parried to enemies from which you've Blocked a Hit. This Buff is removed if you are Heavy Stunned. While this Buff is active, you cannot be Light Stunned, but Blocking too much damage may Heavy Stun you.", skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Unleashable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Cooldown] = true, }, castTime = 0.65, qualityStats = { @@ -14022,7 +14022,7 @@ skills["CurseOfRepulsionPlayer"] = { baseTypeName = "Repulsion", icon = "Art/2DArt/SkillIcons/ExpeditionMarkofRepulsion.dds", color = 4, - description = "Target an area and Curse enemies within with a Verisium Rune, inflicting them with Fragility. Hitting these enemies causes the Curse to Trigger an explosion to deal damage in an area and apply significant Knockback to other enemies near the Cursed target, with more Stun buildup based on the Fragility on the target Hit.", + description = "Spend Runic Ward to Curse enemies with a Verisium Rune, inflicting them with Fragility. Hitting these enemies removes the Curse to Trigger an explosion, Knocking Back nearby enemies and causing more Stun buildup based on the Fragility on the target Hit.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.UsableWhileMoving] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.Cascadable] = true, [SkillType.AreaSpell] = true, [SkillType.UsableWhileMounted] = true, }, castTime = 0.5, qualityStats = { @@ -15629,7 +15629,7 @@ skills["ShatteringConcoctionPlayer"] = { icon = "Art/2DArt/SkillIcons/RangerBrewConcoctionColdSkill.dds", fromTree = true, color = 4, - description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Cold Attack damage in an area and inflicting Exposure. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack", + description = "Consume charges from your Mana Flask to throw a flask that explodes, dealing Cold Attack damage in an area and inflicting Exposure. This damage is not based on your unarmed damage, so this is not considered an Unarmed Attack.", skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Cold] = true, [SkillType.UsableWhileMoving] = true, [SkillType.ProjectileNoCollision] = true, [SkillType.GroundTargetedProjectile] = true, }, weaponTypes = { ["None"] = true, @@ -16162,7 +16162,7 @@ skills["SkyfallPlayer"] = { baseTypeName = "Skyfall", icon = "Art/2DArt/SkillIcons/ExpeditionVerisiumComet.dds", color = 4, - description = "Build Glory by spending Runic Ward. When you have maximum Glory, you may call down a mass of Verisium from the sky, dealing high damage at the targeted location and summoning a Temporary Minion. Targeting close to you will cause you to jump back as you cast. Consumes a Verisium Infusion, if possible, to increase the number of Minions summoned .", + description = "Build Glory by spending Runic Ward. When you have maximum Glory, you may call down a mass of Verisium from the sky, dealing high damage at the targeted location and summoning a Temporary Minion. Targeting close to you will cause you to jump back as you cast. Consumes a Verisium Infusion, if possible, to increase the number of Minions summoned.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cold] = true, [SkillType.Physical] = true, [SkillType.Cascadable] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Invokable] = true, [SkillType.HasUsageCondition] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Cold] = true, }, castTime = 1, @@ -19770,7 +19770,7 @@ skills["VerisiumManifestationPlayer"] = { icon = "Art/2DArt/SkillIcons/ExpeditionRunewordManifest.dds", color = 4, description = "While active, Hitting with an Attack will spend Runic Ward to summon a Verisium Manifestation, a short-lived Temporary Minion that rapidly Attacks nearby enemies, ignoring commands. Enemies will not directly engage these Minions, and can pass through them.", - skillTypes = { [SkillType.UsableWhileMoving] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.Buff] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Duration] = true, [SkillType.Limit] = true, }, + skillTypes = { [SkillType.UsableWhileMoving] = true, [SkillType.OngoingSkill] = true, [SkillType.HasReservation] = true, [SkillType.Persistent] = true, [SkillType.AttackInPlace] = true, [SkillType.Buff] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.Duration] = true, [SkillType.UnlimitedTotems] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, }, castTime = 1, qualityStats = { @@ -20389,7 +20389,7 @@ skills["VoltaicBarrierPlayer"] = { baseTypeName = "Voltaic Barrier", icon = "Art/2DArt/SkillIcons/ExpeditionCracklingBarrier.dds", color = 4, - description = "Raise a pair of electrified pylons in front of you which project a wall of electricity between them, damaging and Electrocuting enemies caught between them. Projectiles you fire through the wall become energised, and discharge that energy on Hit as Chaining Lightning beams.", + description = "Spend Runic Ward to raise a pair of electrified pylons in front of you which project a wall of electricity between them, damaging and Electrocuting enemies caught between them. Projectiles you fire through the wall become energised, and discharge that energy on Hit as Chaining Lightning beams.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Wall] = true, [SkillType.Lightning] = true, [SkillType.UsableWhileMoving] = true, [SkillType.Totemable] = true, }, weaponTypes = { ["Bow"] = true, diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua index e6cde094f6..45cb5ee160 100644 --- a/src/Data/Skills/spectre.lua +++ b/src/Data/Skills/spectre.lua @@ -5031,12 +5031,12 @@ skills["MPSChaosGodTriHeadLizardBasicProjectile"] = { altQualityStats = { }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { critChance = 5, levelRequirement = 0, }, }, statSets = { [1] = { label = "Projectile", - baseEffectiveness = 2, + baseEffectiveness = 3, incrementalEffectiveness = 0.10000000149012, damageIncrementalEffectiveness = 0.017500000074506, statDescriptionScope = "skill_stat_descriptions", @@ -5049,9 +5049,8 @@ skills["MPSChaosGodTriHeadLizardBasicProjectile"] = { constantStats = { { "monster_projectile_variation", 1370 }, { "spell_maximum_action_distance_+%", -30 }, - { "number_of_additional_projectiles", 2 }, - { "projectile_spread_radius", 16 }, - { "projectile_speed_variation_+%", 10 }, + { "projectile_spread_radius", 3 }, + { "projectile_speed_variation_+%", 25 }, }, stats = { "spell_minimum_base_chaos_damage", @@ -5060,8 +5059,7 @@ skills["MPSChaosGodTriHeadLizardBasicProjectile"] = { "projectile_uses_contact_position", "maintain_projectile_direction_when_using_contact_position", "action_attack_or_cast_time_uses_animation_length", - "projectile_ballistic_angle_from_target_distance", - "distribute_projectiles_over_contact_points", + "projectile_ballistic_angle_from_reference_event", }, notMinionStat = { "spell_minimum_base_chaos_damage", @@ -6370,7 +6368,7 @@ skills["SerpentClanCurse"] = { name = "Vulnerability", hidden = true, icon = "Art/2DArt/SkillIcons/vulnerability.dds", - description = "Curse all targets in an area after a short delay. making Hits against them ignore a portion of their Armour.", + description = "Curse all targets in an area after a short delay, making Hits against them ignore a portion of their Armour.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Cascadable] = true, [SkillType.AppliesCurse] = true, [SkillType.Unleashable] = true, [SkillType.AreaSpell] = true, [SkillType.Physical] = true, [SkillType.UsableWhileMoving] = true, }, castTime = 1.5, qualityStats = { diff --git a/src/Data/Skills/sup_dex.lua b/src/Data/Skills/sup_dex.lua index 1d834fbd95..de327a0d87 100644 --- a/src/Data/Skills/sup_dex.lua +++ b/src/Data/Skills/sup_dex.lua @@ -2312,7 +2312,7 @@ skills["SupportFrenziedRipostePlayer"] = { } skills["SupportFrozenSpitePlayer"] = { name = "Frozen Spite", - description = "Supports Attack Skills, causing them to create Ice Fragments on killing Frozen Enemies. Cannot Support Totem Skills and does not modify Skills used by Minions.", + description = "Supports Skills that Hit enemies, causing them to create Ice Fragments on killing Frozen Enemies. Cannot Support Totem Skills and does not modify Skills used by Minions.", color = 2, support = true, requireSkillTypes = { SkillType.Attack, }, diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index db45d1e739..6520fa75e8 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -1942,7 +1942,7 @@ skills["SupportAddedColdDamagePlayer"] = { } skills["SupportColdExposurePlayer"] = { name = "Cold Exposure", - description = "Supports any skill that Hits enemies, causing it to inflict Exposure when it Critically Hits an enemy.", + description = "Supports any skill that Hits enemies, causing it to inflict Exposure when it inflicts Freeze.", color = 3, support = true, requireSkillTypes = { SkillType.Attack, SkillType.Damage, SkillType.CrossbowAmmoSkill, }, @@ -3086,7 +3086,7 @@ skills["SupportDiallasDesirePlayer"] = { } skills["SupportDoedresUndoingPlayer"] = { name = "Doedre's Undoing", - description = "Supports Curse Skills. Supported Skills create an area which Curses Enemies within it, and spawns Witchtoads in that area. Witchtoads leap at eneimes that get close, and seek out Cursed enemies with higher aggression. Dark Consequences will be Triggered when they hit enemies with their leap, violently exploding the Witchtoad.", + description = "Supports Curse Skills. Supported Skills create an area which Curses Enemies within it, and spawns Witchtoads in that area. Witchtoads leap at enemies that get close, and seek out Cursed enemies with higher aggression. Dark Consequences will be Triggered when they hit enemies with their leap, violently exploding the Witchtoad.", color = 3, support = true, requireSkillTypes = { SkillType.AppliesCurse, }, diff --git a/src/Data/Skills/sup_str.lua b/src/Data/Skills/sup_str.lua index d77401cf25..da18dc97ba 100644 --- a/src/Data/Skills/sup_str.lua +++ b/src/Data/Skills/sup_str.lua @@ -1020,7 +1020,7 @@ skills["SupportBloodlustPlayer"] = { } skills["SupportBrambleslamPlayer"] = { name = "Brambleslam", - description = "Supports Slam Skills. Supported Skills create Hazardous Brambles on the ground that activate after a duration. Enemies which come in contact with these thorns take damage and are Maimed. A maximum of 20 Brambles are allowed at one time. Does not modify Skills used by Minions or Totems.", + description = "Supports Slam Skills, making them Trigger Brambles to create Hazardous brambles which damage and Maim enemies. Does not modify Skills used by Minions or Totems.", color = 1, support = true, requireSkillTypes = { SkillType.Slam, }, @@ -1053,7 +1053,7 @@ skills["TriggeredBrambleslamPlayer"] = { name = "Brambles", hidden = true, icon = "Art/2DArt/SkillIcons/iconbasicattack.dds", - description = "Hazardous thorns damage and Maim enemies with which they come in contact.", + description = "Creates Hazardous Brambles on the ground that activate after a duration. Enemies which come in contact with these thorns take damage and are Maimed. A maximum of 20 Brambles are allowed at one time.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.NoAttackOrCastTime] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Hazard] = true, [SkillType.AttackInPlace] = true, [SkillType.Cooldown] = true, [SkillType.Plant] = true, }, castTime = 1, qualityStats = { @@ -2217,7 +2217,7 @@ skills["TriggeredDeadlyResolvePlayer"] = { name = "Deadly Resolve", hidden = true, icon = "Art/2DItems/Gems/New/NewSupport/DangerousResolveSupportGem.dds", - description = "Creates a deadly slash towards the target, dealing Attack damage which is not based on your Weapon", + description = "Creates a deadly slash towards the target, dealing Attack damage which is not based on your Weapon.", skillTypes = { [SkillType.Triggered] = true, [SkillType.Area] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggerable] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Attack] = true, [SkillType.AttackInPlace] = true, [SkillType.UseGlobalStats] = true, [SkillType.NonWeaponAttack] = true, }, castTime = 1, qualityStats = { @@ -5387,7 +5387,7 @@ skills["TriggeredCorruptingCryThreePlayer"] = { name = "Twisted Pact", hidden = true, icon = "", - description = "Covers the target in large quantities of Corrupted Blood which severly damages them.", + description = "Covers the target in large quantities of Corrupted Blood which severely damages them.", skillTypes = { [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.InbuiltTrigger] = true, [SkillType.AttackInPlace] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.Physical] = true, [SkillType.DamageOverTime] = true, }, castTime = 1, qualityStats = { diff --git a/src/Data/Spectres.lua b/src/Data/Spectres.lua index 8c89185ccd..c104146f94 100644 --- a/src/Data/Spectres.lua +++ b/src/Data/Spectres.lua @@ -143,7 +143,7 @@ minions["Metadata/Monsters/LeagueAbyss/Lightless/CarrionWingAbyssSpectre"] = { minions["Metadata/Monsters/LeagueAbyss/Lightless/SerpentClanCasterAbyssSpectre"] = { name = "Lightless Serpent", - monsterTags = { "abyssal", "allows_additional_projectiles", "allows_inc_aoe", "Claw_onhit_audio", "demon", "fast_movement", "fire_affinity", "lightless_faction", }, + monsterTags = { "abyssal", "allows_additional_projectiles", "allows_inc_aoe", "demon", "fast_movement", "fire_affinity", "lightless_faction", "Slice1HMetal_onhit_audio", }, life = 1.4, baseDamageIgnoresAttackSpeed = true, fireResist = 30, @@ -732,7 +732,7 @@ minions["Metadata/Monsters/LeagueAbyss/Blackblood/TarHulkSpectre"] = { -- Beetles minions["Metadata/Monsters/EtchedBeetles/SmallEtchedBeetleArmoured"] = { name = "Adorned Beetle", - monsterTags = { "allows_inc_aoe", "beast", "Claw_onhit_audio", "insect", "lightning_affinity", "medium_movement", "melee", "not_dex", "not_int", }, + monsterTags = { "allows_inc_aoe", "beast", "insect", "lightning_affinity", "medium_movement", "melee", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, life = 0.85, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -773,7 +773,7 @@ minions["Metadata/Monsters/EtchedBeetles/SmallEtchedBeetleArmoured"] = { minions["Metadata/Monsters/EtchedBeetles/SmallEtchedBeetleArmouredDull"] = { name = "Tarnished Beetle", - monsterTags = { "allows_inc_aoe", "beast", "Claw_onhit_audio", "insect", "lightning_affinity", "medium_movement", "melee", "not_dex", "not_int", }, + monsterTags = { "allows_inc_aoe", "beast", "insect", "lightning_affinity", "medium_movement", "melee", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, life = 0.85, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -814,7 +814,7 @@ minions["Metadata/Monsters/EtchedBeetles/SmallEtchedBeetleArmouredDull"] = { minions["Metadata/Monsters/EtchedBeetles/MediumEtchedBeetleArmouredDull"] = { name = "Tarnished Scarab", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", }, + monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", "Sword2H_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -853,7 +853,7 @@ minions["Metadata/Monsters/EtchedBeetles/MediumEtchedBeetleArmouredDull"] = { minions["Metadata/Monsters/EtchedBeetles/MediumEtchedBeetleArmouredTuskWide"] = { name = "Adorned Scarab", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", }, + monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", "Sword2H_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -1350,7 +1350,7 @@ minions["Metadata/Monsters/LeagueHellscape/PaleFaction/HellscapePaleFodder1_"] = minions["Metadata/Monsters/LeagueHellscape/PaleFaction/HellscapePaleFodder2_"] = { name = "Pale Servitor", - monsterTags = { "beyond_demon", "Claw_onhit_audio", "demon", "fast_movement", "not_int", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "beyond_demon", "demon", "fast_movement", "not_int", "not_str", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -1587,7 +1587,7 @@ minions["Metadata/Monsters/TumourMonsters/Statue07/QimarMonstrositySpectre"] = { -- Bloodfever minions["Metadata/Monsters/BloodFeverKarui/BloodFeverButcherSpectre"] = { name = "Harano, the Meat Carver", - monsterTags = { "1HAxe_onhit_audio", "fast_movement", "human", "humanoid", "karui", "not_dex", "not_int", "red_blood", }, + monsterTags = { "Axe1HMetal_onhit_audio", "fast_movement", "human", "humanoid", "karui", "not_dex", "not_int", "red_blood", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -2058,7 +2058,7 @@ minions["Metadata/Monsters/CrazedCannibalPicts/PictFemaleBow"] = { minions["Metadata/Monsters/CrazedCannibalPicts/PictFemaleDaggerDagger"] = { name = "Cultist Daggerdancer", - monsterTags = { "azmeri_cultist_monster", "Claw_onhit_audio", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "azmeri_cultist_monster", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -2099,7 +2099,7 @@ minions["Metadata/Monsters/CrazedCannibalPicts/PictFemaleDaggerDagger"] = { minions["Metadata/Monsters/CrazedCannibalPicts/PictFemaleStaff"] = { name = "Cultist Witch", - monsterTags = { "2HBluntWood_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "azmeri_cultist_monster", "caster", "chaos_affinity", "cultist", "human", "humanoid", "monster_barely_moves", "not_dex", "not_str", "ranged", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "azmeri_cultist_monster", "caster", "chaos_affinity", "cultist", "human", "humanoid", "Mace2HWood_onhit_audio", "monster_barely_moves", "not_dex", "not_str", "ranged", "red_blood", "very_slow_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -2143,7 +2143,7 @@ minions["Metadata/Monsters/CrazedCannibalPicts/PictFemaleStaff"] = { -- Cleansed Maps minions["Metadata/Monsters/Sanctified/Floppy/SanctifiedFloppy"] = { name = "Fettered Hook", - monsterTags = { "Claw_onhit_audio", "demon", "mud_blood", "not_int", "not_str", "sanctified_monster", "very_slow_movement", }, + monsterTags = { "demon", "mud_blood", "not_int", "not_str", "sanctified_monster", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -2409,7 +2409,7 @@ minions["Metadata/Monsters/Sanctified/Writhing/SanctifiedWrithing"] = { -- Faridun minions["Metadata/Monsters/Mutewind/MutewindBanditExecutioner"] = { name = "Faridun Butcher", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -2457,7 +2457,7 @@ minions["Metadata/Monsters/Mutewind/MutewindBanditExecutioner"] = { minions["Metadata/Monsters/Mutewind/MutewindBoy"] = { name = "Faridun Neophyte", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -2503,7 +2503,7 @@ minions["Metadata/Monsters/Mutewind/MutewindBoy"] = { minions["Metadata/Monsters/Mutewind/MutewindGirl"] = { name = "Faridun Fledgling", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -2546,7 +2546,7 @@ minions["Metadata/Monsters/Mutewind/MutewindGirl"] = { minions["Metadata/Monsters/Mutewind/MutewindMan2HSpear"] = { name = "Faridun Spearman", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, extraFlags = { recommendedSpectre = true, }, @@ -2595,7 +2595,7 @@ minions["Metadata/Monsters/Mutewind/MutewindMan2HSpear"] = { minions["Metadata/Monsters/Mutewind/MutewindManDualSword"] = { name = "Faridun Swordsman", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -2642,7 +2642,7 @@ minions["Metadata/Monsters/Mutewind/MutewindManDualSword"] = { minions["Metadata/Monsters/Mutewind/MutewindManSpearShield_"] = { name = "Faridun Heavy Infantry", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "monster_blocks_damage", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "monster_blocks_damage", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -2693,7 +2693,7 @@ minions["Metadata/Monsters/Mutewind/MutewindManSpearShield_"] = { minions["Metadata/Monsters/Mutewind/MutewindWomanDualDaggerCorroded__"] = { name = "Faridun Wind-slicer", - monsterTags = { "Claw_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.05, baseDamageIgnoresAttackSpeed = true, evasion = 0.8, @@ -2736,7 +2736,7 @@ minions["Metadata/Monsters/Mutewind/MutewindWomanDualDaggerCorroded__"] = { minions["Metadata/Monsters/Mutewind/MutewindWomanDualSword"] = { name = "Faridun Bladedancer", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, evasion = 0.8, @@ -2784,7 +2784,7 @@ minions["Metadata/Monsters/Mutewind/MutewindWomanDualSword"] = { minions["Metadata/Monsters/Mutewind/MutewindWomanJavelin"] = { name = "Faridun Javelineer", - monsterTags = { "allows_additional_projectiles", "fast_movement", "human", "humanoid", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "allows_additional_projectiles", "fast_movement", "human", "humanoid", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Stab1HMetal_onhit_audio", }, life = 1.05, baseDamageIgnoresAttackSpeed = true, evasion = 0.8, @@ -2929,7 +2929,7 @@ minions["Metadata/Monsters/Mutewind/MutewindWomanSpearCorroded__"] = { minions["Metadata/Monsters/Mutewind/MutewindWomanSpearShield"] = { name = "Faridun Infantry", - monsterTags = { "human", "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_int", "physical_affinity", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "human", "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_int", "physical_affinity", "red_blood", "Stab1HMetal_onhit_audio", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -3024,7 +3024,7 @@ minions["Metadata/Monsters/Cenobite/CenobiteBloater/CenobiteBloater"] = { -- Geonor Iron Guards minions["Metadata/Monsters/TheCountsEliteGuardCorrupted/MeleeVariantB/CorruptedEliteBloater"] = { name = "Iron Enforcer", - monsterTags = { "Claw_onhit_audio", "demon", "humanoid", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "demon", "humanoid", "melee", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 2.4, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -3062,7 +3062,7 @@ minions["Metadata/Monsters/TheCountsEliteGuardCorrupted/MeleeVariantB/CorruptedE minions["Metadata/Monsters/TheCountsEliteGuardCorrupted/Ranged/CorruptedEliteRanger_"] = { name = "Iron Sharpshooter", - monsterTags = { "allows_additional_projectiles", "chaos_affinity", "Claw_onhit_audio", "demon", "humanoid", "medium_movement", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "chaos_affinity", "demon", "humanoid", "medium_movement", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.4, baseDamageIgnoresAttackSpeed = true, evasion = 0.6, @@ -3149,7 +3149,7 @@ minions["Metadata/Monsters/TheCountsEliteGuardCorrupted/VariantA/CorruptedEliteS minions["Metadata/Monsters/TheCountsEliteGuardCorrupted/VariantB/CorruptedEliteToothy"] = { name = "Iron Guard", - monsterTags = { "allows_inc_aoe", "Claw_onhit_audio", "demon", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "allows_inc_aoe", "demon", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -3637,7 +3637,7 @@ minions["Metadata/Monsters/BoneCultists/BoneCultists_Beast/BoneCultistBeast"] = minions["Metadata/Monsters/BoneCultists/BoneCultists_Savage/BoneCultists_Savage__"] = { name = "Lost-men Subjugator", - monsterTags = { "2HBluntWood_onhit_audio", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "cultist", "fast_movement", "human", "humanoid", "Mace2HWood_onhit_audio", "melee", "not_int", "physical_affinity", "red_blood", }, life = 1.35, baseDamageIgnoresAttackSpeed = true, armour = 0.2, @@ -3677,7 +3677,7 @@ minions["Metadata/Monsters/BoneCultists/BoneCultists_Savage/BoneCultists_Savage_ minions["Metadata/Monsters/BoneCultists/BoneCultists_Shield/BoneCultistShield"] = { name = "Lost-men Brute", - monsterTags = { "2HBluntWood_onhit_audio", "cultist", "human", "humanoid", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "cultist", "human", "humanoid", "Mace2HWood_onhit_audio", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -3889,7 +3889,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Skeletons/ExpeditionSkeletonBow_" minions["Metadata/Monsters/LeagueExpeditionNew/Skeletons/ExpeditionSkeletonSword"] = { name = "Unearthed Skeletal Swordsman", - monsterTags = { "1HSword_onhit_audio", "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "melee", "physical_affinity", "skeleton", "slashing_weapon", "undead", "very_slow_movement", }, + monsterTags = { "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "melee", "physical_affinity", "skeleton", "slashing_weapon", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -3928,7 +3928,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Skeletons/ExpeditionSkeletonSword minions["Metadata/Monsters/LeagueExpeditionNew/Skeletons/ExpeditionSkeletonSwordShield"] = { name = "Unearthed Skeletal Warrior", - monsterTags = { "1HSword_onhit_audio", "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "melee", "physical_affinity", "skeleton", "slashing_weapon", "undead", "very_slow_movement", }, + monsterTags = { "bone_armour", "bones", "has_one_hand_sword", "has_one_handed_melee", "melee", "physical_affinity", "skeleton", "slashing_weapon", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -3971,7 +3971,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Skeletons/ExpeditionSkeletonSword minions["Metadata/Monsters/LeagueExpeditionNew/SwordSkeleton/ExpeditionMegaSkeleton"] = { name = "Order Ostiary", - monsterTags = { "2HSharpMetal_onhit_audio", "bones", "is_unarmed", "melee", "metal_armour", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "undead", "very_slow_movement", "ward_armour", }, + monsterTags = { "bones", "is_unarmed", "melee", "metal_armour", "not_dex", "not_int", "physical_affinity", "skeleton", "slashing_weapon", "Sword2H_onhit_audio", "undead", "very_slow_movement", "ward_armour", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -4134,7 +4134,7 @@ minions["Metadata/Monsters/Skeletons/BoneRabble/BoneRabblePriest"] = { minions["Metadata/Monsters/Skeletons/BoneRabble/BoneRabbleSquire"] = { name = "Vaal Skeletal Squire", - monsterTags = { "1HAxe_onhit_audio", "melee", "monster_barely_moves", "monster_blocks_damage", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "Axe1HMetal_onhit_audio", "melee", "monster_barely_moves", "monster_blocks_damage", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -4178,7 +4178,7 @@ minions["Metadata/Monsters/Skeletons/BoneRabble/BoneRabbleSquire"] = { minions["Metadata/Monsters/Skeletons/FungalSkeletonOneHandSword"] = { name = "Fungal Rattler", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -4219,7 +4219,7 @@ minions["Metadata/Monsters/Skeletons/FungalSkeletonOneHandSword"] = { minions["Metadata/Monsters/Skeletons/RetchSkeletonOneHandSword"] = { name = "Wretched Rattler", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -4302,7 +4302,7 @@ minions["Metadata/Monsters/Skeletons/Maraketh/MarakethSkeletonUnarmed"] = { minions["Metadata/Monsters/Skeletons/Rusted/RustedSkeletonOneHandSwordShield"] = { name = "Rust Skeleton", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -4340,7 +4340,7 @@ minions["Metadata/Monsters/Skeletons/Rusted/RustedSkeletonOneHandSwordShield"] = minions["Metadata/Monsters/SkeletonSoldier/Rusted/RustedSoldierOneHandSword"] = { name = "Ancient Ezomyte", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -4429,7 +4429,7 @@ minions["Metadata/Monsters/SerpentClanMonster/SerpentClanCaster"] = { -- Shade minions["Metadata/Monsters/VaalMonsters/Machinarium/Wraith/ProwlingShade"] = { name = "Prowling Shade", - monsterTags = { "allows_inc_aoe", "caster", "Claw_onhit_audio", "cold_affinity", "fast_movement", "ghost", "ghost_blood", "melee", "not_str", "undead", }, + monsterTags = { "allows_inc_aoe", "caster", "cold_affinity", "fast_movement", "ghost", "ghost_blood", "melee", "not_str", "Slice1HMetal_onhit_audio", "undead", }, life = 2.25, baseDamageIgnoresAttackSpeed = true, energyShield = 0.33, @@ -4471,7 +4471,7 @@ minions["Metadata/Monsters/VaalMonsters/Machinarium/Wraith/ProwlingShade"] = { -- Terracotta Soldier minions["Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptre"] = { name = "Terracotta Soldier", - monsterTags = { "1HBluntMetal_onhit_audio", "construct", "melee", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "construct", "Mace1HMetal_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, life = 1.54, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -4508,7 +4508,7 @@ minions["Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptre"] = { minions["Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptreAmbush__"] = { name = "Terracotta Soldier", - monsterTags = { "1HBluntMetal_onhit_audio", "construct", "melee", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "construct", "Mace1HMetal_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, extraFlags = { recommendedSpectre = true, }, @@ -4547,7 +4547,7 @@ minions["Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptreAmbush__ -- Twilight Order minions["Metadata/Monsters/TwilightOrderSoldiers/TwilightOrderSoldier"] = { name = "Twilight Order Soldier", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "cold_affinity", "human", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "cold_affinity", "human", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -4591,7 +4591,7 @@ minions["Metadata/Monsters/TwilightOrderSoldiers/TwilightOrderSoldier"] = { minions["Metadata/Monsters/TwilightOrderSoldiers/TwilightOrderOfficer_"] = { name = "Twilight Order Officer", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "cold_affinity", "fast_movement", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "cold_affinity", "fast_movement", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword2H_onhit_audio", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -4684,7 +4684,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/VaalGuardMortarLiving"] = { minions["Metadata/Monsters/VaalMonsters/Living/BloodPriests/VaalBloodPriestMale"] = { name = "Blood Priest", - monsterTags = { "1HSword_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "not_str", "physical_affinity", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "not_str", "physical_affinity", "ranged", "red_blood", "Sword1H_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -4731,7 +4731,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/BloodPriests/VaalBloodPriestMale" minions["Metadata/Monsters/VaalMonsters/Living/BloodPriests/VaalBloodPriestFemale"] = { name = "Blood Priestess", - monsterTags = { "1HSword_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Sword1H_onhit_audio", }, life = 1.98, baseDamageIgnoresAttackSpeed = true, evasion = 0.15, @@ -5105,7 +5105,7 @@ minions["Metadata/Monsters/BloodChieftain/MonkeyChiefJungle"] = { minions["Metadata/Monsters/Spiker/Spiker3_"] = { name = "Porcupine Goliath", - monsterTags = { "allows_additional_projectiles", "beast", "Claw_onhit_audio", "mammal_beast", "medium_movement", "melee", "monster_has_on_death_mechanic", "physical_affinity", "red_blood", "rodent_beast", }, + monsterTags = { "allows_additional_projectiles", "beast", "mammal_beast", "medium_movement", "melee", "monster_has_on_death_mechanic", "physical_affinity", "red_blood", "rodent_beast", "Slice1HMetal_onhit_audio", }, life = 1.4, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -5146,7 +5146,7 @@ minions["Metadata/Monsters/Spiker/Spiker3_"] = { minions["Metadata/Monsters/Spiker/Spiker3SanctumTrial__"] = { name = "Porcupine Goliath", - monsterTags = { "allows_additional_projectiles", "beast", "Claw_onhit_audio", "mammal_beast", "medium_movement", "melee", "monster_has_on_death_mechanic", "physical_affinity", "red_blood", "rodent_beast", "sanctum_monster", }, + monsterTags = { "allows_additional_projectiles", "beast", "mammal_beast", "medium_movement", "melee", "monster_has_on_death_mechanic", "physical_affinity", "red_blood", "rodent_beast", "sanctum_monster", "Slice1HMetal_onhit_audio", }, life = 1.4, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -5629,7 +5629,7 @@ minions["Metadata/Monsters/Urchins/SlingUrchin1"] = { minions["Metadata/Monsters/Hags/UrchinHag1"] = { name = "Vile Hag", - monsterTags = { "allows_inc_aoe", "caster", "Claw_onhit_audio", "fire_affinity", "humanoid", "melee", "monster_barely_moves", "monster_summons_adds", "not_dex", "not_str", "raises_dead", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "caster", "fire_affinity", "humanoid", "melee", "monster_barely_moves", "monster_summons_adds", "not_dex", "not_str", "raises_dead", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -5713,7 +5713,7 @@ minions["Metadata/Monsters/Hags/TrenchHag"] = { minions["Metadata/Monsters/HuhuGrub/HuhuGrubLarvaeSpectre"] = { name = "Flesh Larva", - monsterTags = { "beast", "insect", "melee", "physical_affinity", "ranged", "red_blood", "slow_movement", "Stab_onhit_audio", }, + monsterTags = { "beast", "insect", "melee", "physical_affinity", "ranged", "red_blood", "slow_movement", "Stab1HMetal_onhit_audio", }, life = 0.6, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -5752,7 +5752,7 @@ minions["Metadata/Monsters/HuhuGrub/HuhuGrubLarvaeSpectre"] = { minions["Metadata/Monsters/Stalker/Stalker"] = { name = "Hungering Stalker", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", "humanoid", "mammal_beast", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "demon", "fast_movement", "humanoid", "mammal_beast", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -5969,7 +5969,7 @@ minions["Metadata/Monsters/BloodMonsters/BloodCollector1__"] = { minions["Metadata/Monsters/Knight/DeathKnight1"] = { name = "Death Knight", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "construct", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "construct", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "Sword2H_onhit_audio", "very_slow_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.8, @@ -6011,7 +6011,7 @@ minions["Metadata/Monsters/Knight/DeathKnight1"] = { minions["Metadata/Monsters/Knight/DeathKnightNecropolisElite"] = { name = "Death Knight", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "construct", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "construct", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "Sword2H_onhit_audio", "very_slow_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.8, @@ -6055,7 +6055,7 @@ minions["Metadata/Monsters/Knight/DeathKnightNecropolisElite"] = { minions["Metadata/Monsters/Gargoyle/GargoyleGolemRed"] = { name = "Gargoyle Demon", - monsterTags = { "1HSword_onhit_audio", "construct", "melee", "not_dex", "not_int", "physical_affinity", "slow_movement", "stone_construct", }, + monsterTags = { "construct", "melee", "not_dex", "not_int", "physical_affinity", "slow_movement", "stone_construct", "Sword1H_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -6096,7 +6096,7 @@ minions["Metadata/Monsters/Gargoyle/GargoyleGolemRed"] = { minions["Metadata/Monsters/Mercenary/Infected/InfectedMercenaryAxe__"] = { name = "Decrepit Mercenary", - monsterTags = { "1HAxe_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "slow_movement", "undead", "zombie", }, + monsterTags = { "Axe1HMetal_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "slow_movement", "undead", "zombie", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -6793,7 +6793,7 @@ minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonUnarmedStance2"] = { minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSword__"] = { name = "Risen Rattler", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -6841,7 +6841,7 @@ minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSword__"] = { minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSwordHusbandWife"] = { name = "Risen Rattler", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -6890,7 +6890,7 @@ minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSwordHusbandWife" minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSwordShield"] = { name = "Risen Rattler", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "monster_blocks_damage", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "monster_blocks_damage", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -6941,7 +6941,7 @@ minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSwordShield"] = { minions["Metadata/Monsters/Skeletons/Basic/GraveSkeletonOneHandSwordShieldHusbandWife"] = { name = "Risen Rattler", - monsterTags = { "1HSword_onhit_audio", "melee", "monster_barely_moves", "monster_blocks_damage", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "monster_barely_moves", "monster_blocks_damage", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -7132,7 +7132,7 @@ minions["Metadata/Monsters/SnakeFlowerMan/BloomSerpent1"] = { minions["Metadata/Monsters/Zombies/Farmer/FarmerZombieMedium"] = { name = "Risen Farmhand", - monsterTags = { "1HAxe_onhit_audio", "melee", "physical_affinity", "undead", "very_slow_movement", "zombie", }, + monsterTags = { "Axe1HMetal_onhit_audio", "melee", "physical_affinity", "undead", "very_slow_movement", "zombie", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -7617,7 +7617,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/MercurialArmour/MercurialArmourCa minions["Metadata/Monsters/LeagueExpeditionNew/MercurialArmour/MercurialArmourAxeShield"] = { name = "Unearthed Soldier", - monsterTags = { "2HSharpMetal_onhit_audio", "cleaving_weapon", "construct", "has_one_hand_axe", "has_one_handed_melee", "medium_movement", "melee", "metal_armour", "not_dex", "not_int", "physical_affinity", "ranged", "undead", "ward_armour", }, + monsterTags = { "cleaving_weapon", "construct", "has_one_hand_axe", "has_one_handed_melee", "medium_movement", "melee", "metal_armour", "not_dex", "not_int", "physical_affinity", "ranged", "Sword2H_onhit_audio", "undead", "ward_armour", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -7704,7 +7704,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Urchin/ExpeditionUrchin"] = { } minions["Metadata/Monsters/LeagueExpeditionNew/Arbalest/ExpeditionArbalest"] = { - name = "Black Scythe Arbalist", + name = "Black Scythe Arbalest", monsterTags = { "allows_additional_projectiles", "bone_armour", "bones", "cold_affinity", "fire_affinity", "humanoid", "is_unarmed", "not_dex", "not_int", "puncturing_weapon", "ranged", "skeleton", "Unarmed_onhit_audio", "undead", "very_slow_movement", }, extraFlags = { recommendedSpectre = true, @@ -7752,7 +7752,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Arbalest/ExpeditionArbalest"] = { minions["Metadata/Monsters/LeagueExpeditionNew/DeathKnight/ExpeditionDeathKnight"] = { name = "Knight of the Sun", - monsterTags = { "2HBluntWood_onhit_audio", "humanoid", "not_dex", "not_int", "undead", "very_slow_movement", "ward_armour", }, + monsterTags = { "humanoid", "Mace2HWood_onhit_audio", "not_dex", "not_int", "undead", "very_slow_movement", "ward_armour", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.8, @@ -7955,7 +7955,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/RatMonster/ExpeditionRat"] = { minions["Metadata/Monsters/LeagueExpeditionNew/ScytheHand/ExpeditionScytheHand_"] = { name = "Black Scythe Mercenary", - monsterTags = { "1HSword_onhit_audio", "flesh_armour", "is_unarmed", "melee", "not_dex", "not_int", "physical_affinity", "slashing_weapon", "undead", "very_slow_movement", "ward_armour", }, + monsterTags = { "flesh_armour", "is_unarmed", "melee", "not_dex", "not_int", "physical_affinity", "slashing_weapon", "Sword1H_onhit_audio", "undead", "very_slow_movement", "ward_armour", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.4, @@ -8369,7 +8369,7 @@ minions["Metadata/Monsters/MaggotHusks/MaggotHusk"] = { minions["Metadata/Monsters/SerpentClanMonster/SerpentClan1"] = { name = "Serpent Clan", - monsterTags = { "allows_inc_aoe", "Claw_onhit_audio", "fast_movement", "humanoid", "melee", "monster_applies_poison", "physical_affinity", "reptile_beast", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "humanoid", "melee", "monster_applies_poison", "physical_affinity", "reptile_beast", "Slice1HMetal_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -8682,7 +8682,7 @@ minions["Metadata/Monsters/SandLeaper02/DesertLeaper1_"] = { minions["Metadata/Monsters/SkeletonGolemancer/SkeletonGolemancer"] = { name = "Dread Servant", - monsterTags = { "1HBluntWood_onhit_audio", "allows_additional_projectiles", "bones", "caster", "fire_affinity", "medium_movement", "monster_barely_moves", "monster_summons_adds", "not_dex", "physical_affinity", "raises_dead", "skeleton", "undead", }, + monsterTags = { "allows_additional_projectiles", "bones", "caster", "fire_affinity", "Mace1HWood_onhit_audio", "medium_movement", "monster_barely_moves", "monster_summons_adds", "not_dex", "physical_affinity", "raises_dead", "skeleton", "undead", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -8821,7 +8821,7 @@ minions["Metadata/Monsters/MarAcolyte/MarAcolyte"] = { minions["Metadata/Monsters/WingedFiend/WingedFiend"] = { name = "Winged Fiend", - monsterTags = { "allows_additional_projectiles", "beast", "Claw_onhit_audio", "flying", "melee", "monster_applies_poison", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_additional_projectiles", "beast", "flying", "melee", "monster_applies_poison", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -9452,7 +9452,7 @@ minions["Metadata/Monsters/SummonedPhantasm/DesertPhantasm"] = { minions["Metadata/Monsters/Kinarha/KinarhaSpectre"] = { name = "Kinarha", - monsterTags = { "2HBluntWood_onhit_audio", "construct", "fast_movement", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "ranged", }, + monsterTags = { "construct", "fast_movement", "Mace2HWood_onhit_audio", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "ranged", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -9532,7 +9532,7 @@ minions["Metadata/Monsters/Zombies/Maraketh/MarakethZombie"] = { minions["Metadata/Monsters/PlagueMorphs/PlagueMorph1"] = { name = "Corrupted Corpse", - monsterTags = { "2HSharpMetal_onhit_audio", "demon", "melee", "monster_barely_moves", "physical_affinity", "undead", "very_slow_movement", }, + monsterTags = { "demon", "melee", "monster_barely_moves", "physical_affinity", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -9571,7 +9571,7 @@ minions["Metadata/Monsters/PlagueMorphs/PlagueMorph1"] = { minions["Metadata/Monsters/PlagueSwarm/PlagueSwarm"] = { name = "Plague Swarm", monsterTags = { "beast", "fast_movement", "insect", "melee", "not_int", "not_str", "physical_affinity", "Unarmed_onhit_audio", "very_fast_movement", }, - life = 0.5, + life = 0.7, baseDamageIgnoresAttackSpeed = true, evasion = 0.6, fireResist = -30, @@ -9582,15 +9582,15 @@ minions["Metadata/Monsters/PlagueSwarm/PlagueSwarm"] = { companionColdResist = 0, companionLightningResist = 0, companionChaosResist = 0, - damage = 0.5, + damage = 0.7, damageSpread = 0.2, attackTime = 1.005, attackRange = 6, accuracy = 1, critChance = 5, baseMovementSpeed = 50, - spectreReservation = 29, - companionReservation = 21, + spectreReservation = 38, + companionReservation = 24.9, monsterCategory = "Beast", spawnLocation = { "Dreadnought (Act 2)", @@ -9650,7 +9650,7 @@ minions["Metadata/Monsters/PlagueNymph/PlagueNymph_"] = { minions["Metadata/Monsters/PlagueBringer/PlagueBringer"] = { name = "Plague Harvester", - monsterTags = { "beast", "Claw_onhit_audio", "fast_movement", "insect", "melee", "physical_affinity", "very_fast_movement", }, + monsterTags = { "beast", "fast_movement", "insect", "melee", "physical_affinity", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -9736,7 +9736,7 @@ minions["Metadata/Monsters/BrainWorm/DuneLurker_"] = { minions["Metadata/Monsters/WingedCreature/WingedCreature"] = { name = "Winged Horror", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_additional_projectiles", "beast", "flying", "lightning_affinity", "medium_movement", "melee", "physical_affinity", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "beast", "flying", "lightning_affinity", "medium_movement", "melee", "physical_affinity", "ranged", "red_blood", "Sword2H_onhit_audio", }, life = 1.35, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -9818,7 +9818,7 @@ minions["Metadata/Monsters/MantisRat/MantisRat"] = { minions["Metadata/Monsters/MudGolem/MarshBruiser"] = { name = "Swamp Golem", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "construct", "earth_elemental", "humanoid", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "construct", "earth_elemental", "humanoid", "Mace2HWood_onhit_audio", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, life = 1.44, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -9893,7 +9893,7 @@ minions["Metadata/Monsters/BogBodies/BogCorpseUnarmed"] = { minions["Metadata/Monsters/BogBodies/BogCorpseOneHandAxe"] = { name = "Bogfelled Commoner", - monsterTags = { "1HAxe_onhit_audio", "humanoid", "melee", "monster_barely_moves", "physical_affinity", "undead", "uses_suicide_explode", "very_slow_movement", "zombie", }, + monsterTags = { "Axe1HMetal_onhit_audio", "humanoid", "melee", "monster_barely_moves", "physical_affinity", "undead", "uses_suicide_explode", "very_slow_movement", "zombie", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -10062,7 +10062,7 @@ minions["Metadata/Monsters/VaalSavage/CannibalTribeSpearMelee"] = { minions["Metadata/Monsters/VaalSavage/CannibalTribeDagger"] = { name = "Orok Throatcutter", - monsterTags = { "Claw_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -10145,7 +10145,7 @@ minions["Metadata/Monsters/VaalSavage/CannibalTribeShaman"] = { minions["Metadata/Monsters/VaalSavage/VaalSavageStalker"] = { name = "Azak Stalker", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "human", "humanoid", "Mace2HWood_onhit_audio", "melee", "not_int", "physical_affinity", "red_blood", }, life = 1.4, baseDamageIgnoresAttackSpeed = true, armour = 0.15, @@ -10326,7 +10326,7 @@ minions["Metadata/Monsters/VaalSavage/VaalSavageBeastMaster"] = { minions["Metadata/Monsters/VaalSavage/VaalSavageDagger_"] = { name = "Azak Throatcutter", - monsterTags = { "Claw_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1.05, baseDamageIgnoresAttackSpeed = true, armour = 0.2, @@ -10531,7 +10531,7 @@ minions["Metadata/Monsters/VaalSavage/VaalSavageTorchbearer"] = { minions["Metadata/Monsters/VaalSavage/VaalSavageGiant"] = { name = "Azak Mauler", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "human", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "human", "humanoid", "Mace2HWood_onhit_audio", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 2.25, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -10616,7 +10616,7 @@ minions["Metadata/Monsters/PlagueSwarm/BloodDrone"] = { minions["Metadata/Monsters/IgguranRaider/BladeStalkerPale"] = { name = "Pale-stitched Stalker", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "vaal", "very_fast_movement", }, + monsterTags = { "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "vaal", "very_fast_movement", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -10656,7 +10656,7 @@ minions["Metadata/Monsters/IgguranRaider/BladeStalkerPale"] = { minions["Metadata/Monsters/IgguranRaider/BladeStalker"] = { name = "Adorned Miscreation", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "vaal", "very_fast_movement", }, + monsterTags = { "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "vaal", "very_fast_movement", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -10736,7 +10736,7 @@ minions["Metadata/Monsters/Anchorite/AnchoriteSpawn_"] = { minions["Metadata/Monsters/Anchorite/AnchoriteFlathead"] = { name = "Flathead Clubber", - monsterTags = { "2HBluntWood_onhit_audio", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "humanoid", "Mace2HWood_onhit_audio", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, life = 0.95, baseDamageIgnoresAttackSpeed = true, evasion = 0.15, @@ -10781,7 +10781,7 @@ minions["Metadata/Monsters/Anchorite/AnchoriteFlathead"] = { minions["Metadata/Monsters/Anchorite/AnchoriteMother"] = { name = "Pyromushroom Cultivator", - monsterTags = { "1HSword_onhit_audio", "humanoid", "not_dex", "red_blood", "very_slow_movement", }, + monsterTags = { "humanoid", "not_dex", "red_blood", "Sword1H_onhit_audio", "very_slow_movement", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -10945,7 +10945,7 @@ minions["Metadata/Monsters/ChawMongrel/ChawMongrel"] = { minions["Metadata/Monsters/ZombieTreasureHunters/IllFatedExplorer1"] = { name = "Ill-fated Explorer", - monsterTags = { "1HSword_onhit_audio", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, armour = 0.25, @@ -11370,7 +11370,7 @@ minions["Metadata/Monsters/GoreCharger/GoreCharger"] = { minions["Metadata/Monsters/CrazedCannibalPicts/PictMaleAxe"] = { name = "Cultist Warrior", - monsterTags = { "1HAxe_onhit_audio", "azmeri_cultist_monster", "cultist", "human", "humanoid", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "Axe1HMetal_onhit_audio", "azmeri_cultist_monster", "cultist", "human", "humanoid", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -11410,7 +11410,7 @@ minions["Metadata/Monsters/CrazedCannibalPicts/PictMaleAxe"] = { minions["Metadata/Monsters/CrazedCannibalPicts/PictBigMale"] = { name = "Cultist Brute", - monsterTags = { "2HSharpMetal_onhit_audio", "azmeri_cultist_monster", "cultist", "human", "humanoid", "melee", "monster_summons_adds", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "azmeri_cultist_monster", "cultist", "human", "humanoid", "melee", "monster_summons_adds", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "very_slow_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.25, @@ -11538,7 +11538,7 @@ minions["Metadata/Monsters/Taniwha/RiverTaniwhaNoJank"] = { minions["Metadata/Monsters/VaalConstructs/Sentinel/VaalConstructSentinelNoEmerge_"] = { name = "Stone Sentinel", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "construct", "melee", "not_dex", "not_int", "physical_affinity", "stone_construct", "vaal", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "construct", "Mace2HWood_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "stone_construct", "vaal", "very_slow_movement", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -11575,7 +11575,7 @@ minions["Metadata/Monsters/VaalConstructs/Sentinel/VaalConstructSentinelNoEmerge minions["Metadata/Monsters/VaalConstructs/Sentinel/VaalConstructSentinelGoldenNoEmerge"] = { name = "Gold-Melted Sentinel", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "construct", "melee", "not_dex", "not_int", "physical_affinity", "stone_construct", "vaal", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "construct", "Mace2HMetal_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "stone_construct", "vaal", "very_slow_movement", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -11615,7 +11615,7 @@ minions["Metadata/Monsters/VaalConstructs/Sentinel/VaalConstructSentinelGoldenNo minions["Metadata/Monsters/VaalConstructs/Pyramid/VaalConstructPyramidAncientActivated"] = { name = "Rusted Reconstructor", - monsterTags = { "2HBluntMetal_onhit_audio", "caster", "construct", "golem", "lightning_affinity", "monster_barely_moves", "not_dex", "vaal", "very_slow_movement", }, + monsterTags = { "caster", "construct", "golem", "lightning_affinity", "Mace2HMetal_onhit_audio", "monster_barely_moves", "not_dex", "vaal", "very_slow_movement", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, energyShield = 0.15, @@ -11658,7 +11658,7 @@ minions["Metadata/Monsters/VaalConstructs/Pyramid/VaalConstructPyramidAncientAct minions["Metadata/Monsters/VaalConstructs/Pyramid/VaalConstructPyramidSpawned"] = { name = "Reconstructor", - monsterTags = { "2HBluntMetal_onhit_audio", "bludgeoning_weapon", "caster", "construct", "golem", "is_unarmed", "lightning_affinity", "metal_armour", "monster_barely_moves", "not_dex", "slow_movement", "vaal", }, + monsterTags = { "bludgeoning_weapon", "caster", "construct", "golem", "is_unarmed", "lightning_affinity", "Mace2HMetal_onhit_audio", "metal_armour", "monster_barely_moves", "not_dex", "slow_movement", "vaal", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, energyShield = 0.15, @@ -11700,7 +11700,7 @@ minions["Metadata/Monsters/VaalConstructs/Pyramid/VaalConstructPyramidSpawned"] minions["Metadata/Monsters/VaalConstructs/Golem/VaalConstructGolem"] = { name = "Shockblade Construct", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "construct", "fast_movement", "golem", "lightning_affinity", "melee", "mud_blood", "not_dex", "vaal", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "construct", "fast_movement", "golem", "lightning_affinity", "Mace2HMetal_onhit_audio", "melee", "mud_blood", "not_dex", "vaal", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -11738,7 +11738,7 @@ minions["Metadata/Monsters/VaalConstructs/Golem/VaalConstructGolem"] = { minions["Metadata/Monsters/VaalConstructs/Golem/VaalConstructGolemAncient"] = { name = "Rusted Dyna Golem", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "caster", "construct", "golem", "lightning_affinity", "medium_movement", "melee", "mud_blood", "not_dex", "vaal", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "caster", "construct", "golem", "lightning_affinity", "Mace2HMetal_onhit_audio", "medium_movement", "melee", "mud_blood", "not_dex", "vaal", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -11779,7 +11779,7 @@ minions["Metadata/Monsters/VaalConstructs/Golem/VaalConstructGolemAncient"] = { minions["Metadata/Monsters/VaalConstructs/Skitterbot/VaalConstructSkitterbot"] = { name = "Crawler Sentinel", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "caster", "construct", "fire_affinity", "golem", "is_unarmed", "metal_armour", "mud_blood", "no_final_gasp", "no_shroud_walker", "not_dex", "ranged", "slow_movement", "uses_suicide_explode", "vaal", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "caster", "construct", "fire_affinity", "golem", "is_unarmed", "Mace2HMetal_onhit_audio", "metal_armour", "mud_blood", "no_final_gasp", "no_shroud_walker", "not_dex", "ranged", "slow_movement", "uses_suicide_explode", "vaal", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, energyShield = 0.15, @@ -11818,7 +11818,7 @@ minions["Metadata/Monsters/VaalConstructs/Skitterbot/VaalConstructSkitterbot"] = minions["Metadata/Monsters/VaalMonsters/Machinarium/VaalGuards/UndeadGuardDaggers"] = { name = "Undead Vaal Bladedancer", - monsterTags = { "1HSword_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "undead", "vaal", "very_fast_movement", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "undead", "vaal", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -11902,7 +11902,7 @@ minions["Metadata/Monsters/VaalMonsters/Machinarium/VaalGuards/UndeadGuardMortar minions["Metadata/Monsters/Cenobite/CenobiteHighborn/CenobiteHighborn"] = { name = "Foul Sage", - monsterTags = { "1HSword_onhit_audio", "caster", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "caster", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "very_slow_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -11982,7 +11982,7 @@ minions["Metadata/Monsters/Cenobite/CenobiteHighborn/CenobitePawn"] = { minions["Metadata/Monsters/Cenobite/CenobiteLeash/CenobiteLeash"] = { name = "Foul Blacksmith", - monsterTags = { "2HBluntWood_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "humanoid", "melee", "physical_affinity", "ranged", "red_blood", "slow_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "humanoid", "Mace2HWood_onhit_audio", "melee", "physical_affinity", "ranged", "red_blood", "slow_movement", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -12027,7 +12027,7 @@ minions["Metadata/Monsters/Cenobite/CenobiteLeash/CenobiteLeash"] = { minions["Metadata/Monsters/Cenobite/CenobiteSlam/CenobiteSlam"] = { name = "Foul Mauler", - monsterTags = { "1HSword_onhit_audio", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "very_slow_movement", }, life = 1.75, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -12195,7 +12195,7 @@ minions["Metadata/Monsters/Cenobite/CenobiteBloater/CenobiteBloater"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersBlood"] = { name = "Blood Zealot", - monsterTags = { "1HSword_onhit_audio", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -12237,7 +12237,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersBlood"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersChaos"] = { name = "Chaotic Zealot", - monsterTags = { "1HSword_onhit_audio", "chaos_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "chaos_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -12278,7 +12278,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersChaos"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersCold_"] = { name = "Gelid Zealot", - monsterTags = { "1HSword_onhit_audio", "cold_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "cold_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -12319,7 +12319,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersCold_"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersFire"] = { name = "Fiery Zealot", - monsterTags = { "1HSword_onhit_audio", "cultist", "fast_movement", "fire_affinity", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "cultist", "fast_movement", "fire_affinity", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -12357,7 +12357,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersFire"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotSpearLightning"] = { name = "Powered Zealot", - monsterTags = { "2HBluntWood_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "melee", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "Mace2HWood_onhit_audio", "melee", "not_str", "red_blood", "very_fast_movement", }, extraFlags = { recommendedSpectre = true, }, @@ -12403,7 +12403,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotSpearLightning"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersLightning"] = { name = "Powered Zealot", - monsterTags = { "1HSword_onhit_audio", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "melee", "not_int", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "melee", "not_int", "not_str", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -12441,7 +12441,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersLightning"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersBannerPatrolSpectre"] = { name = "Bannerbearing Zealot", - monsterTags = { "1HSword_onhit_audio", "cannot_be_monolith", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "very_fast_movement", }, + monsterTags = { "cannot_be_monolith", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -12478,7 +12478,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalZealotDaggersBannerPatrolSpe minions["Metadata/Monsters/VaalMonsters/Living/VaalGuardClawsLiving"] = { name = "Vaal Excoriator", - monsterTags = { "Claw_onhit_audio", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 1.05, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -12522,7 +12522,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/VaalGuardClawsLiving"] = { minions["Metadata/Monsters/VaalMonsters/Living/VaalOverseerLiving_"] = { name = "Vaal Overseer", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -12612,7 +12612,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/VaalGoliathLiving_"] = { minions["Metadata/Monsters/VaalMonsters/Living/VaalStormcaller"] = { name = "Surgical Experimentalist", - monsterTags = { "1HSword_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "human", "humanoid", "lightning_affinity", "not_str", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "human", "humanoid", "lightning_affinity", "not_str", "red_blood", "Sword1H_onhit_audio", "very_slow_movement", }, extraFlags = { recommendedSpectre = true, }, @@ -12658,7 +12658,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/VaalStormcaller"] = { minions["Metadata/Monsters/VaalMonsters/Living/VaalShapeshifter_"] = { name = "Vaal Formshifter", - monsterTags = { "1HSword_onhit_audio", "caster", "cultist", "human", "humanoid", "medium_movement", "melee", "physical_affinity", "red_blood", }, + monsterTags = { "caster", "cultist", "human", "humanoid", "medium_movement", "melee", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -12705,7 +12705,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/VaalShapeshifter_"] = { minions["Metadata/Monsters/VaalMonsters/Living/VaalEagleKnightLiving"] = { name = "Vaal Enforcer", - monsterTags = { "2HSharpMetal_onhit_audio", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "very_slow_movement", }, life = 1.7, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -12793,7 +12793,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/VaalArchivistLiving"] = { minions["Metadata/Monsters/VaalMonsters/Living/Beasts/VaalJaguar"] = { name = "Loyal Jaguar", - monsterTags = { "beast", "Claw_onhit_audio", "medium_movement", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "beast", "medium_movement", "melee", "not_int", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.25, baseDamageIgnoresAttackSpeed = true, armour = 0.25, @@ -12832,7 +12832,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/Beasts/VaalJaguar"] = { minions["Metadata/Monsters/Procession/ProcessionAxeShield"] = { name = "Vaal Embalmed Axeman", - monsterTags = { "1HSword_onhit_audio", "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "red_blood", "undead", }, + monsterTags = { "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "undead", }, life = 1.21, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -12872,7 +12872,7 @@ minions["Metadata/Monsters/Procession/ProcessionAxeShield"] = { minions["Metadata/Monsters/Procession/ProcessionSpear_"] = { name = "Vaal Embalmed Spearman", - monsterTags = { "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Stab_onhit_audio", "undead", }, + monsterTags = { "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Stab1HMetal_onhit_audio", "undead", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -12908,7 +12908,7 @@ minions["Metadata/Monsters/Procession/ProcessionSpear_"] = { minions["Metadata/Monsters/Procession/ProcessionDagger"] = { name = "Vaal Embalmed Rogue", - monsterTags = { "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Stab_onhit_audio", "undead", }, + monsterTags = { "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Stab1HMetal_onhit_audio", "undead", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -13023,7 +13023,7 @@ minions["Metadata/Monsters/Procession/ProcessionBannerSpectre"] = { minions["Metadata/Monsters/GoldenOnes/GoldenOnesTwoHandSword"] = { name = "Gold-Melted Shambler", - monsterTags = { "2HSharpMetal_onhit_audio", "bones", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "bones", "humanoid", "melee", "monster_barely_moves", "not_dex", "not_int", "physical_affinity", "skeleton", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -13102,7 +13102,7 @@ minions["Metadata/Monsters/DrownedCrew/DrownedCrewGhost"] = { minions["Metadata/Monsters/VaalForgeMan/VaalForgeMan"] = { name = "Gold-melted Blacksmith", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "construct", "fast_movement", "humanoid", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_fast_movement", }, + monsterTags = { "allows_inc_aoe", "construct", "fast_movement", "humanoid", "Mace2HWood_onhit_audio", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_fast_movement", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -13183,7 +13183,7 @@ minions["Metadata/Monsters/LiquidElementals/LiquidElementalBlood"] = { minions["Metadata/Monsters/BloodBathers/BloodBatherDualWield/BloodBatherDualWield"] = { name = "Bloodrite Guard", - monsterTags = { "2HSharpMetal_onhit_audio", "cultist", "human", "humanoid", "medium_movement", "melee", "not_int", "not_str", "physical_damage", "red_blood", }, + monsterTags = { "cultist", "human", "humanoid", "medium_movement", "melee", "not_int", "not_str", "physical_damage", "red_blood", "Sword2H_onhit_audio", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, evasion = 0.25, @@ -13268,7 +13268,7 @@ minions["Metadata/Monsters/BloodBathers/VaalApparition/SunVaalApparition"] = { minions["Metadata/Monsters/BloodCultistDrones/BloodBatherMage"] = { name = "Bloodrite Priest", - monsterTags = { "1HSword_onhit_audio", "allows_additional_projectiles", "caster", "cultist", "human", "humanoid", "medium_movement", "not_dex", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "caster", "cultist", "human", "humanoid", "medium_movement", "not_dex", "not_str", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, extraFlags = { recommendedSpectre = true, }, @@ -13311,7 +13311,7 @@ minions["Metadata/Monsters/BloodCultistDrones/BloodBatherMage"] = { minions["Metadata/Monsters/AscendancyBatMonster/AscendancyBat"] = { name = "Feral Bat", - monsterTags = { "beast", "Claw_onhit_audio", "fast_movement", "flying", "mammal_beast", "red_blood", }, + monsterTags = { "beast", "fast_movement", "flying", "mammal_beast", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -13344,7 +13344,7 @@ minions["Metadata/Monsters/AscendancyBatMonster/AscendancyBat"] = { minions["Metadata/Monsters/VaalConstructs/Ball/VaalBowlingBall"] = { name = "Flame Sentry", - monsterTags = { "2HBluntMetal_onhit_audio", "construct", "fire_affinity", "medium_movement", "mud_blood", "not_dex", "ranged", }, + monsterTags = { "construct", "fire_affinity", "Mace2HMetal_onhit_audio", "medium_movement", "mud_blood", "not_dex", "ranged", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -13381,7 +13381,7 @@ minions["Metadata/Monsters/VaalConstructs/Ball/VaalBowlingBall"] = { minions["Metadata/Monsters/VaalMonsters/Living/VaalAxeThrower_"] = { name = "Vaal Axeman", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_additional_projectiles", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Sword2H_onhit_audio", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -13511,7 +13511,7 @@ minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidGoliathFist/VaalHumanoidGol minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidPyramidHands/VaalPyramidHands"] = { name = "Brutal Transcendent", - monsterTags = { "2HBluntWood_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "construct", "humanoid", "lightning_affinity", "medium_movement", "not_dex", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "construct", "humanoid", "lightning_affinity", "Mace2HWood_onhit_audio", "medium_movement", "not_dex", "ranged", "red_blood", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.08, @@ -13553,7 +13553,7 @@ minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidPyramidHands/VaalPyramidHan minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidShieldLegs/VallHumanoidShieldLegs"] = { name = "Shielded Transcendent", - monsterTags = { "1HSword_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "construct", "humanoid", "lightning_affinity", "medium_movement", "not_dex", "ranged", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "construct", "humanoid", "lightning_affinity", "medium_movement", "not_dex", "ranged", "red_blood", "Sword1H_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -13598,7 +13598,7 @@ minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidShieldLegs/VallHumanoidShie minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidSwordShield/VaalHumanoidSwordShield_"] = { name = "Fused Swordsman", - monsterTags = { "1HSword_onhit_audio", "construct", "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_dex", "physical_affinity", "red_blood", }, + monsterTags = { "construct", "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_dex", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.35, baseDamageIgnoresAttackSpeed = true, energyShield = 0.05, @@ -13720,7 +13720,7 @@ minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidCannon/VaalHumanoidCannonLi minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidBladeHands/VaalHumanoidBladeHands"] = { name = "Warrior Transcendent", - monsterTags = { "2HSharpMetal_onhit_audio", "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "vaal", "very_fast_movement", }, + monsterTags = { "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "vaal", "very_fast_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -13761,7 +13761,7 @@ minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidBladeHands/VaalHumanoidBlad minions["Metadata/Monsters/VaalHumanoids/VaalHumanoidStalker/VaalHumanoidStalker"] = { name = "Bladelash Transcendent", - monsterTags = { "2HSharpMetal_onhit_audio", "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "vaal", "very_fast_movement", }, + monsterTags = { "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "vaal", "very_fast_movement", }, extraFlags = { recommendedSpectre = true, }, @@ -13880,7 +13880,7 @@ minions["Metadata/Monsters/Baron/BaronWerewolfSummon"] = { minions["Metadata/Monsters/ScarecrowBeast/ScarecrowBeast"] = { name = "Scarecrow Beast", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "beast", "humanoid", "mammal_beast", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "beast", "humanoid", "mammal_beast", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "very_slow_movement", }, life = 2.25, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -14006,7 +14006,7 @@ minions["Metadata/Monsters/FallenGods/FallenGodsCrawlerFoundry_"] = { minions["Metadata/Monsters/FallenGods/FallenHooksFoundry"] = { name = "Forgotten Satyr", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "skeleton", }, + monsterTags = { "demon", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "skeleton", "Slice1HMetal_onhit_audio", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, armour = 0.25, @@ -14086,7 +14086,7 @@ minions["Metadata/Monsters/LeagueRitual/DryadFaction/DruidicFallenStag"] = { minions["Metadata/Monsters/SpinningWheelHag/SpinningWheelHag"] = { name = "Wheelbound Hag", - monsterTags = { "Claw_onhit_audio", "humanoid", "melee", "not_dex", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "humanoid", "melee", "not_dex", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -14197,7 +14197,7 @@ minions["Metadata/Monsters/KaruiBoar/ExplosivePig"] = { minions["Metadata/Monsters/Ghouls/FarudinCrawler"] = { name = "Faridun Crawler", - monsterTags = { "Claw_onhit_audio", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "undead", "very_fast_movement", "zombie", }, + monsterTags = { "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "Slice1HMetal_onhit_audio", "undead", "very_fast_movement", "zombie", }, life = 1, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -14326,7 +14326,7 @@ minions["Metadata/Monsters/TitanWalker/TitanWalker"] = { minions["Metadata/Monsters/SkeletalKnight/SkeletalKnight"] = { name = "Eternal Knight", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "bones", "humanoid", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "bones", "humanoid", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "skeleton", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 2.25, baseDamageIgnoresAttackSpeed = true, armour = 0.8, @@ -14372,7 +14372,7 @@ minions["Metadata/Monsters/SkeletalKnight/SkeletalKnight"] = { minions["Metadata/Monsters/SkeletalReaper/SkeletalReaper"] = { name = "Knight-Gaunt", - monsterTags = { "1HSword_onhit_audio", "bones", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "bones", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -14535,27 +14535,27 @@ minions["Metadata/Monsters/Zombies/CourtGuardZombieAxe"] = { minions["Metadata/Monsters/ChaosGodRangedFodder/ChaosGodRangedFodder_"] = { name = "Petulant Stonemaw", monsterTags = { "beast", "mammal_beast", "melee", "not_int", "physical_affinity", "quest_null_monster_mods", "red_blood", "Unarmed_onhit_audio", "very_slow_movement", }, - life = 1.1, + life = 1, baseDamageIgnoresAttackSpeed = true, armour = 0.11, evasion = 0.11, - fireResist = -30, + fireResist = 0, coldResist = 0, lightningResist = 0, chaosResist = 0, - companionFireResist = -30, + companionFireResist = 0, companionColdResist = 0, companionLightningResist = 0, companionChaosResist = 0, - damage = 1.1, + damage = 1, damageSpread = 0.2, attackTime = 1.5, attackRange = 6, accuracy = 1, critChance = 5, baseMovementSpeed = 17, - spectreReservation = 53, - companionReservation = 31.2, + spectreReservation = 50, + companionReservation = 30, monsterCategory = "Beast", spawnLocation = { }, @@ -14573,26 +14573,26 @@ minions["Metadata/Monsters/ChaosGodRangedFodder/ChaosGodRangedFodder_"] = { minions["Metadata/Monsters/ChaosGodJaguar/ChaosGodJaguar_"] = { name = "Scute Lizard", monsterTags = { "beast", "Beast_onhit_audio", "feline_beast", "medium_movement", "melee", "not_int", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", }, - life = 1.85, + life = 1.5, baseDamageIgnoresAttackSpeed = true, - evasion = 0.33, - fireResist = -30, + evasion = 0.25, + fireResist = 0, coldResist = 0, lightningResist = 0, chaosResist = 0, - companionFireResist = -30, + companionFireResist = 0, companionColdResist = 0, companionLightningResist = 0, companionChaosResist = 0, - damage = 1.85, + damage = 1.5, damageSpread = 0.2, attackTime = 1.5, attackRange = 15, accuracy = 1, critChance = 6, baseMovementSpeed = 37, - spectreReservation = 79, - companionReservation = 40.8, + spectreReservation = 67, + companionReservation = 36.6, monsterCategory = "Beast", spawnLocation = { }, @@ -14607,31 +14607,30 @@ minions["Metadata/Monsters/ChaosGodJaguar/ChaosGodJaguar_"] = { minions["Metadata/Monsters/ChaosGodTriHeadBat/ChaosGodTri-headBat_"] = { name = "Cerberic Bat", - monsterTags = { "allows_inc_aoe", "beast", "mammal_beast", "melee", "not_str", "physical_affinity", "quest_null_monster_mods", "ranged", "red_blood", "Unarmed_onhit_audio", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "beast", "mammal_beast", "melee", "not_dex", "not_str", "physical_affinity", "quest_null_monster_mods", "ranged", "red_blood", "Unarmed_onhit_audio", "very_slow_movement", }, extraFlags = { recommendedBeast = true, }, - life = 1.85, + life = 2, baseDamageIgnoresAttackSpeed = true, - energyShield = 0.11, - evasion = 0.33, + energyShield = 0.13, fireResist = 0, - coldResist = 30, + coldResist = 75, lightningResist = 0, chaosResist = 0, companionFireResist = 0, - companionColdResist = 30, + companionColdResist = 50, companionLightningResist = 0, companionChaosResist = 0, - damage = 1.85, + damage = 2, damageSpread = 0.2, attackTime = 1.5, attackRange = 10, accuracy = 1, critChance = 6, baseMovementSpeed = 16, - spectreReservation = 79, - companionReservation = 40.8, + spectreReservation = 84, + companionReservation = 42.3, monsterCategory = "Beast", spawnLocation = { "Kriar Peaks (Act 6)", @@ -14659,7 +14658,7 @@ minions["Metadata/Monsters/ChaosGodGorilla/ChaosGodGorilla_"] = { monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "melee", "MonsterBlunt_onhit_audio", "not_dex", "not_int", "physical_affinity", "primate_beast", "quest_null_monster_mods", "red_blood", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, - armour = 0.66, + armour = 0.7, fireResist = 0, coldResist = 0, lightningResist = 0, @@ -14668,7 +14667,7 @@ minions["Metadata/Monsters/ChaosGodGorilla/ChaosGodGorilla_"] = { companionColdResist = 0, companionLightningResist = 0, companionChaosResist = 0, - damage = 2.5, + damage = 2.38, damageSpread = 0.2, attackTime = 1.5, attackRange = 15, @@ -14696,7 +14695,7 @@ minions["Metadata/Monsters/ChaosGodGorilla/ChaosGodGorilla_"] = { minions["Metadata/Monsters/ChaosGodTriceratops/ChaosGodTriceratops_"] = { name = "Crested Behemoth", monsterTags = { "allows_inc_aoe", "beast", "Beast_onhit_audio", "lightning_affinity", "melee", "not_dex", "not_int", "quest_null_monster_mods", "red_blood", "very_slow_movement", }, - life = 3.3, + life = 3.5, baseDamageIgnoresAttackSpeed = true, armour = 1, fireResist = 0, @@ -14707,15 +14706,15 @@ minions["Metadata/Monsters/ChaosGodTriceratops/ChaosGodTriceratops_"] = { companionColdResist = 0, companionLightningResist = 30, companionChaosResist = 0, - damage = 3.3, + damage = 2.98, damageSpread = 0.2, attackTime = 3, attackRange = 20, accuracy = 1, critChance = 5, baseMovementSpeed = 12, - spectreReservation = 122, - companionReservation = 54.3, + spectreReservation = 127, + companionReservation = 56.1, monsterCategory = "Beast", spawnLocation = { }, @@ -14726,6 +14725,7 @@ minions["Metadata/Monsters/ChaosGodTriceratops/ChaosGodTriceratops_"] = { "EASChaosGodTriceratopsGigaBeam", "TCChaosGodTriceratops", "GSChaosGodTriceratopsGigaBeam", + "GAChaosGodTriceratopsCharge", }, modList = { mod("StunDuration", "OVERRIDE", 2.916, 0, 0), -- set_base_heavy_stun_duration_ms [set_base_heavy_stun_duration_ms = 2916] @@ -14734,7 +14734,7 @@ minions["Metadata/Monsters/ChaosGodTriceratops/ChaosGodTriceratops_"] = { minions["Metadata/Monsters/Breach/BreachEliteFallenLunarisMonster__"] = { name = "It That Hates", - monsterTags = { "allows_additional_projectiles", "caster", "chaos_affinity", "demon", "fast_movement", "melee", "not_dex", "not_str", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "allows_additional_projectiles", "caster", "chaos_affinity", "demon", "fast_movement", "melee", "not_dex", "not_str", "red_blood", "Stab1HMetal_onhit_audio", }, extraFlags = { recommendedSpectre = true, }, @@ -14780,7 +14780,7 @@ minions["Metadata/Monsters/Breach/BreachEliteFallenLunarisMonster__"] = { minions["Metadata/Monsters/Breach/BreachEliteCorruptedEliteBloater__"] = { name = "It That Lashes", - monsterTags = { "allows_inc_aoe", "Claw_onhit_audio", "demon", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "demon", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 2.3, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -14821,7 +14821,7 @@ minions["Metadata/Monsters/Breach/BreachEliteCorruptedEliteBloater__"] = { minions["Metadata/Monsters/Breach/BreachFodderCorruptedEliteRanger"] = { name = "It That Hunts", - monsterTags = { "caster", "chaos_affinity", "Claw_onhit_audio", "demon", "humanoid", "medium_movement", "melee", "not_int", "not_str", "red_blood", }, + monsterTags = { "caster", "chaos_affinity", "demon", "humanoid", "medium_movement", "melee", "not_int", "not_str", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, evasion = 0.75, @@ -14861,7 +14861,7 @@ minions["Metadata/Monsters/Breach/BreachFodderCorruptedEliteRanger"] = { minions["Metadata/Monsters/Breach/BreachFodderCorruptedEliteToothy__"] = { name = "It That Shreds", - monsterTags = { "allows_inc_aoe", "Claw_onhit_audio", "demon", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "allows_inc_aoe", "demon", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.2, @@ -14943,7 +14943,7 @@ minions["Metadata/Monsters/Breach/BreachEliteCorruptedEliteGuard"] = { minions["Metadata/Monsters/Breach/BreachElitePaleElite1"] = { name = "It That Controls", - monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "animal_claw_weapon", "bone_armour", "caster", "Claw_onhit_audio", "demon", "fire_affinity", "humanoid", "is_unarmed", "lightning_affinity", "medium_movement", "not_str", "red_blood", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "animal_claw_weapon", "bone_armour", "caster", "demon", "fire_affinity", "humanoid", "is_unarmed", "lightning_affinity", "medium_movement", "not_str", "red_blood", "Slice1HMetal_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, energyShield = 0.25, @@ -14993,7 +14993,7 @@ minions["Metadata/Monsters/Breach/BreachElitePaleElite1"] = { minions["Metadata/Monsters/Breach/Monsters/FingerDemon/FingerDemon"] = { name = "It That Grasps", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_fast_movement", }, + monsterTags = { "demon", "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, evasion = 0.25, @@ -15030,7 +15030,7 @@ minions["Metadata/Monsters/Breach/Monsters/FingerDemon/FingerDemon"] = { minions["Metadata/Monsters/Breach/Monsters/HandSpider/HandSpider"] = { name = "It That Crawls", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", "insect", "melee", "not_int", "not_str", "physical_affinity", "red_blood", }, + monsterTags = { "demon", "fast_movement", "insect", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.25, @@ -15107,7 +15107,7 @@ minions["Metadata/Monsters/Breach/Monsters/FingersBat/FingersBat"] = { minions["Metadata/Monsters/Breach/BreachFodderDemonicSpikeThrower"] = { name = "It That Creeps", - monsterTags = { "allows_additional_projectiles", "Claw_onhit_audio", "demon", "humanoid", "lightning_affinity", "melee", "ranged", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_additional_projectiles", "demon", "humanoid", "lightning_affinity", "melee", "ranged", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -15146,7 +15146,7 @@ minions["Metadata/Monsters/Breach/BreachFodderDemonicSpikeThrower"] = { minions["Metadata/Monsters/Breach/BreachElitePaleElite2"] = { name = "It That Stalks", - monsterTags = { "animal_claw_weapon", "bone_armour", "caster", "Claw_onhit_audio", "demon", "is_unarmed", "lightning_affinity", "medium_movement", "melee", "not_int", "not_str", "red_blood", }, + monsterTags = { "animal_claw_weapon", "bone_armour", "caster", "demon", "is_unarmed", "lightning_affinity", "medium_movement", "melee", "not_int", "not_str", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.33, @@ -15195,9 +15195,9 @@ minions["Metadata/Monsters/Breach/BreachElitePaleElite2"] = { minions["Metadata/Monsters/ChaosGodTriHeadLizard/ChaosGodTriHeadLizard_"] = { name = "Saurian Servant", monsterTags = { "demon", "not_dex", "not_str", "quest_null_monster_mods", "red_blood", "Unarmed_onhit_audio", "very_slow_movement", }, - life = 2.2, + life = 3, baseDamageIgnoresAttackSpeed = true, - energyShield = 0.22, + energyShield = 0.23, fireResist = 0, coldResist = 0, lightningResist = 0, @@ -15206,15 +15206,15 @@ minions["Metadata/Monsters/ChaosGodTriHeadLizard/ChaosGodTriHeadLizard_"] = { companionColdResist = 0, companionLightningResist = 0, companionChaosResist = 0, - damage = 2.2, + damage = 2.7, damageSpread = 0.2, attackTime = 1.5, attackRange = 14, accuracy = 1, critChance = 5, baseMovementSpeed = 12, - spectreReservation = 90, - companionReservation = 44.4, + spectreReservation = 113, + companionReservation = 51.9, monsterCategory = "Demon", spawnLocation = { }, @@ -15304,7 +15304,7 @@ minions["Metadata/Monsters/LeagueRitual/DryadFaction/SplitMonster/SplitMonsterSp minions["Metadata/Monsters/LeagueRitual/DryadFaction/HooksMonster/HooksMonster"] = { name = "Treant Hookhorror", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", "humanoid", "melee", "not_int", "red_blood", "skeleton", }, + monsterTags = { "demon", "fast_movement", "humanoid", "melee", "not_int", "red_blood", "skeleton", "Slice1HMetal_onhit_audio", }, extraFlags = { recommendedSpectre = true, }, @@ -15554,7 +15554,7 @@ minions["Metadata/Monsters/LeagueRitual/DemonFaction/CaveDweller_"] = { minions["Metadata/Monsters/LeagueRitual/DemonFaction/PrimordialMonster3_"] = { name = "Nameless Horror", - monsterTags = { "beast", "Claw_onhit_audio", "fast_movement", "not_int", "red_blood", }, + monsterTags = { "beast", "fast_movement", "not_int", "red_blood", "Slice1HMetal_onhit_audio", }, extraFlags = { recommendedSpectre = true, recommendedBeast = true, @@ -15795,7 +15795,7 @@ minions["Metadata/Monsters/LeagueRitual/DemonFaction/DemonMonkey"] = { minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedDaggersBloodUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "1HSword_onhit_audio", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", "very_fast_movement", }, + monsterTags = { "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", "Sword1H_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.3, @@ -15831,7 +15831,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedDaggersBloodUltimatium minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickBloodUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", }, + monsterTags = { "allows_inc_aoe", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", "Sword1H_onhit_audio", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -15867,7 +15867,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickBloodUltimat minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickChaosUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "chaos_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", }, + monsterTags = { "allows_inc_aoe", "chaos_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", "Sword1H_onhit_audio", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -15903,7 +15903,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickChaosUltimat minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickColdUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "cold_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", }, + monsterTags = { "allows_inc_aoe", "cold_affinity", "cultist", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", "Sword1H_onhit_audio", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -15939,7 +15939,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickColdUltimati minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickFireUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "cultist", "fast_movement", "fire_affinity", "human", "humanoid", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", }, + monsterTags = { "allows_inc_aoe", "cultist", "fast_movement", "fire_affinity", "human", "humanoid", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", "Sword1H_onhit_audio", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -15975,7 +15975,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickFireUltimati minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickLightning__Ultimatium"] = { name = "Chaos Zealot", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", }, + monsterTags = { "allows_inc_aoe", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "melee", "not_int", "not_str", "quest_null_monster_mods", "red_blood", "Sword1H_onhit_audio", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -16011,7 +16011,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedKnifestickLightning__U minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearBloodUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", "Stab_onhit_audio", "very_fast_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "not_str", "physical_affinity", "quest_null_monster_mods", "red_blood", "Stab1HMetal_onhit_audio", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -16049,7 +16049,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearBloodUltimatium"] minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearChaosUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "chaos_affinity", "cultist", "fast_movement", "human", "humanoid", "not_str", "quest_null_monster_mods", "red_blood", "Stab_onhit_audio", "very_fast_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "chaos_affinity", "cultist", "fast_movement", "human", "humanoid", "not_str", "quest_null_monster_mods", "red_blood", "Stab1HMetal_onhit_audio", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -16087,7 +16087,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearChaosUltimatium"] minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearColdUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cold_affinity", "cultist", "fast_movement", "human", "humanoid", "not_str", "quest_null_monster_mods", "red_blood", "Stab_onhit_audio", "very_fast_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cold_affinity", "cultist", "fast_movement", "human", "humanoid", "not_str", "quest_null_monster_mods", "red_blood", "Stab1HMetal_onhit_audio", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -16125,7 +16125,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearColdUltimatium"] minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearFireUltimatium"] = { name = "Chaos Zealot", - monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "fire_affinity", "human", "humanoid", "not_str", "quest_null_monster_mods", "red_blood", "Stab_onhit_audio", "very_fast_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "fire_affinity", "human", "humanoid", "not_str", "quest_null_monster_mods", "red_blood", "Stab1HMetal_onhit_audio", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -16164,7 +16164,7 @@ minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearFireUltimatium"] minions["Metadata/Monsters/VaalMonsters/Zealots/VaalFlayedSpearLightningUltimatium_"] = { name = "Chaos Zealot", - monsterTags = { "2HBluntWood_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "not_str", "quest_null_monster_mods", "red_blood", "very_fast_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "cultist", "fast_movement", "human", "humanoid", "lightning_affinity", "Mace2HWood_onhit_audio", "not_str", "quest_null_monster_mods", "red_blood", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.2, @@ -16247,7 +16247,7 @@ minions["Metadata/Monsters/KaruiSpiritTortoise/SpiritTortoise_"] = { minions["Metadata/Monsters/PlagueBringer/TwilightOrderPlagueBringer"] = { name = "Gargantuan Wasp", - monsterTags = { "beast", "Claw_onhit_audio", "fast_movement", "insect", "melee", "physical_affinity", "very_fast_movement", }, + monsterTags = { "beast", "fast_movement", "insect", "melee", "physical_affinity", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -16288,7 +16288,7 @@ minions["Metadata/Monsters/PlagueBringer/TwilightOrderPlagueBringer"] = { minions["Metadata/Monsters/DrownedCrew/DrownedCrewSword_"] = { name = "Drowned Explorer", - monsterTags = { "1HSword_onhit_audio", "humanoid", "melee", "melee_mod", "monster_barely_moves", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "humanoid", "melee", "melee_mod", "monster_barely_moves", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -16846,7 +16846,7 @@ minions["Metadata/Monsters/HarpyMonster/GullHarpy"] = { minions["Metadata/Monsters/CageSkeleton/CageSkeleton_"] = { name = "Rattling Gibbet", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -16885,7 +16885,7 @@ minions["Metadata/Monsters/CageSkeleton/CageSkeleton_"] = { minions["Metadata/Monsters/PrisonTorturerZombieMonster/ZombieTorturer"] = { name = "Eternal Torturer", - monsterTags = { "2HSharpMetal_onhit_audio", "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "undead", "zombie", }, + monsterTags = { "fast_movement", "humanoid", "melee", "not_int", "physical_affinity", "Sword2H_onhit_audio", "undead", "zombie", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.15, @@ -16927,11 +16927,10 @@ minions["Metadata/Monsters/PrisonTorturerZombieMonster/ZombieTorturer"] = { minions["Metadata/Monsters/NecromancerRemakeBook/SpinedNecromancer"] = { name = "Spined Necromancer", - monsterTags = { "allows_inc_aoe", "caster", "flying", "not_str", "physical_affinity", "red_blood", "slow_movement", "Unarmed_onhit_audio", "undead", }, + monsterTags = { "allows_inc_aoe", "caster", "flying", "not_dex", "not_str", "physical_affinity", "red_blood", "slow_movement", "Unarmed_onhit_audio", "undead", }, life = 1.49, baseDamageIgnoresAttackSpeed = true, energyShield = 0.3, - evasion = 0.25, fireResist = 30, coldResist = 30, lightningResist = 30, @@ -17203,7 +17202,7 @@ minions["Metadata/Monsters/PaleWalker/PaleWalkerShield_"] = { minions["Metadata/Monsters/PrisonStalker/UpperPrisonStalker"] = { name = "Eternal Guard", - monsterTags = { "Claw_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "undead", "very_fast_movement", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "undead", "very_fast_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -17455,7 +17454,7 @@ minions["Metadata/Monsters/ElephantRhino/ElephantRhino"] = { minions["Metadata/Monsters/DeepDwellerBoss/SpikedDweller"] = { name = "Spiked Scuttler", - monsterTags = { "allows_inc_aoe", "beast", "Claw_onhit_audio", "cold_affinity", "crustacean_beast", "melee", "not_dex", "not_int", "physical_affinity", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "beast", "cold_affinity", "crustacean_beast", "melee", "not_dex", "not_int", "physical_affinity", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 2.25, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -17574,7 +17573,7 @@ minions["Metadata/Monsters/StonebackRhoa/GoblinStonebackRhoa"] = { minions["Metadata/Monsters/Goblins/GoblinStabber"] = { name = "Skulltop Kin", - monsterTags = { "fast_movement", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "fast_movement", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "Stab1HMetal_onhit_audio", }, life = 0.7, baseDamageIgnoresAttackSpeed = true, armour = 0.4, @@ -17614,7 +17613,7 @@ minions["Metadata/Monsters/Goblins/GoblinStabber"] = { minions["Metadata/Monsters/Goblins/GoblinStabberNoSkull"] = { name = "Feral Kin", - monsterTags = { "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "fast_movement", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Stab1HMetal_onhit_audio", }, life = 0.7, baseDamageIgnoresAttackSpeed = true, evasion = 0.4, @@ -17654,7 +17653,7 @@ minions["Metadata/Monsters/Goblins/GoblinStabberNoSkull"] = { minions["Metadata/Monsters/Goblins/GoblinSpearman/GoblinSpearman"] = { name = "Spearbearer Kin", - monsterTags = { "allows_additional_projectiles", "humanoid", "medium_movement", "melee", "not_int", "physical_affinity", "ranged", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "allows_additional_projectiles", "humanoid", "medium_movement", "melee", "not_int", "physical_affinity", "ranged", "red_blood", "Stab1HMetal_onhit_audio", }, life = 0.75, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -18441,7 +18440,7 @@ minions["Metadata/Monsters/FallenKarui/FallenKaruiArcher_______"] = { minions["Metadata/Monsters/FallenKarui/FallenKaruiShieldAxe"] = { name = "Ancestral Guardian", - monsterTags = { "1HAxe_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "Axe1HMetal_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -18482,7 +18481,7 @@ minions["Metadata/Monsters/FallenKarui/FallenKaruiShieldAxe"] = { minions["Metadata/Monsters/FallenKarui/FallenKaruiTwoHandAxe"] = { name = "Ancestral Warrior", - monsterTags = { "2HAxe_onhit_audio", "allows_inc_aoe", "human", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "Axe2HMetal_onhit_audio", "human", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -18521,7 +18520,7 @@ minions["Metadata/Monsters/FallenKarui/FallenKaruiTwoHandAxe"] = { minions["Metadata/Monsters/FallenKarui/FallenKaruiOneHandMace"] = { name = "Ancestral Headtaker", - monsterTags = { "1HBluntStone_onhit_audio", "human", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "human", "humanoid", "Mace1HStone_onhit_audio", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -18748,7 +18747,7 @@ minions["Metadata/Monsters/LeagueAncestral/StandaloneTasalio/TrawlerStandalone_" minions["Metadata/Monsters/PlagueSwarm/TwilightOrderPlagueSwarm"] = { name = "Swarming Wasp", monsterTags = { "beast", "fast_movement", "insect", "melee", "not_int", "not_str", "physical_affinity", "Unarmed_onhit_audio", "very_fast_movement", }, - life = 0.5, + life = 0.7, baseDamageIgnoresAttackSpeed = true, evasion = 0.6, fireResist = -30, @@ -18759,15 +18758,15 @@ minions["Metadata/Monsters/PlagueSwarm/TwilightOrderPlagueSwarm"] = { companionColdResist = 0, companionLightningResist = 0, companionChaosResist = 0, - damage = 0.5, + damage = 0.7, damageSpread = 0.2, attackTime = 1.005, attackRange = 6, accuracy = 1, critChance = 5, baseMovementSpeed = 50, - spectreReservation = 29, - companionReservation = 21, + spectreReservation = 38, + companionReservation = 24.9, monsterCategory = "Beast", spawnLocation = { "Arastas (Act 4)", @@ -18823,7 +18822,7 @@ minions["Metadata/Monsters/PlagueSwarm/LargeParasiticCrab"] = { minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Cleaver/ExcavatorCleaver"] = { name = "Zealous Guard", - monsterTags = { "1HBluntStone_onhit_audio", "allows_inc_aoe", "fast_movement", "humanoid", "lightning_affinity", "melee", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "humanoid", "lightning_affinity", "Mace1HStone_onhit_audio", "melee", "physical_affinity", "red_blood", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -18861,7 +18860,7 @@ minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Cleaver/Excavat minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Maul/ExcavatorMaulSpectre"] = { name = "Zealous Pillarcrusher", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "humanoid", "lightning_affinity", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "humanoid", "lightning_affinity", "Mace2HMetal_onhit_audio", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -18900,7 +18899,7 @@ minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Maul/ExcavatorM minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Orb/ExcavatorOrb"] = { name = "Zealous Excavator", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "humanoid", "lightning_affinity", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "humanoid", "lightning_affinity", "Mace2HMetal_onhit_audio", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -18938,7 +18937,7 @@ minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Orb/ExcavatorOr minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Raptor/ExcavatorRaptor"] = { name = "Zealous Courser", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "humanoid", "lightning_affinity", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "humanoid", "lightning_affinity", "Mace2HMetal_onhit_audio", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -18974,7 +18973,7 @@ minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Raptor/Excavato minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Sceptre/ExcavatorSceptre"] = { name = "Zealous Shockwarden", - monsterTags = { "1HBluntMetal_onhit_audio", "allows_inc_aoe", "humanoid", "lightning_affinity", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_inc_aoe", "humanoid", "lightning_affinity", "Mace1HMetal_onhit_audio", "melee", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -19010,7 +19009,7 @@ minions["Metadata/Monsters/TwilightOrder/TwilightOrderExcavators/Sceptre/Excavat minions["Metadata/Monsters/Anchorman/BloatedAnchorman"] = { name = "Bloated Anchorman", - monsterTags = { "2HBluntMetal_onhit_audio", "humanoid", "melee", "not_dex", "not_int", "physical_affinity", "undead", "very_slow_movement", "zombie", }, + monsterTags = { "humanoid", "Mace2HMetal_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "undead", "very_slow_movement", "zombie", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -19055,7 +19054,7 @@ minions["Metadata/Monsters/Anchorman/BloatedAnchorman"] = { minions["Metadata/Monsters/KelpDreg/KelpDregSword"] = { name = "Searot Skeleton", - monsterTags = { "1HSword_onhit_audio", "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "undead", "very_slow_movement", }, + monsterTags = { "melee", "not_dex", "not_int", "physical_affinity", "skeleton", "Sword1H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -19206,7 +19205,7 @@ minions["Metadata/Monsters/KelpDreg/KelpDregCrossbowIceShot"] = { minions["Metadata/Monsters/BloodFeverKarui/BloodFeverDrunk"] = { name = "Blood-fevered Brew-breather", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "human", "humanoid", "karui", "melee", "monster_has_on_death_mechanic", "not_dex", "not_int", "physical_affinity", "red_blood", "slow_movement", }, + monsterTags = { "allows_inc_aoe", "human", "humanoid", "karui", "Mace2HWood_onhit_audio", "melee", "monster_has_on_death_mechanic", "not_dex", "not_int", "physical_affinity", "red_blood", "slow_movement", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -19250,7 +19249,7 @@ minions["Metadata/Monsters/BloodFeverKarui/BloodFeverDrunk"] = { minions["Metadata/Monsters/BloodFeverKarui/BloodFeverHook"] = { name = "Blood-fevered Hookman", - monsterTags = { "2HBluntStone_onhit_audio", "human", "humanoid", "karui", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "human", "humanoid", "karui", "Mace2HStone_onhit_audio", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -19327,7 +19326,7 @@ minions["Metadata/Monsters/BloodFeverKarui/BloodFeverSpear"] = { minions["Metadata/Monsters/BloodFeverKarui/BloodFeverKarui1HAxe_"] = { name = "Blood-fevered Axeman", - monsterTags = { "1HAxe_onhit_audio", "fast_movement", "human", "humanoid", "karui", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "Axe1HMetal_onhit_audio", "fast_movement", "human", "humanoid", "karui", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 1.05, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -19367,7 +19366,7 @@ minions["Metadata/Monsters/BloodFeverKarui/BloodFeverKarui1HAxe_"] = { minions["Metadata/Monsters/BloodFeverKarui/BloodFeverKarui2HAxe"] = { name = "Blood-fevered Warrior", - monsterTags = { "2HAxe_onhit_audio", "human", "humanoid", "karui", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "Axe2HMetal_onhit_audio", "human", "humanoid", "karui", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -19410,7 +19409,7 @@ minions["Metadata/Monsters/BloodFeverKarui/BloodFeverKarui2HAxe"] = { minions["Metadata/Monsters/BloodFeverKarui/BloodFeverKarui1HMace"] = { name = "Blood-fevered Maceman", - monsterTags = { "1HAxe_onhit_audio", "fast_movement", "human", "humanoid", "karui", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "Axe1HMetal_onhit_audio", "fast_movement", "human", "humanoid", "karui", "melee", "not_dex", "not_int", "physical_affinity", "red_blood", }, life = 1, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -19530,7 +19529,7 @@ minions["Metadata/Monsters/BloodFeverKarui/BloodFeverMedicineWoman"] = { minions["Metadata/Monsters/KaruiWarriorHorn/KaruiWarriorHorn_"] = { name = "Ancestral Hornbearer", - monsterTags = { "2HBluntWood_onhit_audio", "human", "humanoid", "not_dex", "not_int", "red_blood", "very_slow_movement", }, + monsterTags = { "human", "humanoid", "Mace2HWood_onhit_audio", "not_dex", "not_int", "red_blood", "very_slow_movement", }, life = 1.65, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -19614,7 +19613,7 @@ minions["Metadata/Monsters/BloodFeverKarui/BloodFeverBloater"] = { minions["Metadata/Monsters/TwilightOrderStigmata/TwilightOrderStigmataAxe_"] = { name = "Righteous Axewielder", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "fast_movement", "human", "humanoid", "karui", "melee", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "human", "humanoid", "karui", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -19653,7 +19652,7 @@ minions["Metadata/Monsters/TwilightOrderStigmata/TwilightOrderStigmataAxe_"] = { minions["Metadata/Monsters/TwilightOrderStigmata/TwilightOrderStigmataMace_"] = { name = "Faithful Warrior", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "fast_movement", "human", "humanoid", "karui", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "human", "humanoid", "karui", "Mace2HMetal_onhit_audio", "melee", "not_int", "physical_affinity", "red_blood", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -19735,11 +19734,10 @@ minions["Metadata/Monsters/TwilightOrderStigmata/TwilightOrderStigmataArcher_"] minions["Metadata/Monsters/TwilightOrderSorceror/TwilightOrderSorcerer"] = { name = "Twilight Order Oathsworn", - monsterTags = { "2HBluntWood_onhit_audio", "allows_additional_projectiles", "allows_inc_aoe", "caster", "human", "humanoid", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "caster", "human", "humanoid", "Mace2HWood_onhit_audio", "not_dex", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, - energyShield = 0.15, - evasion = 0.25, + energyShield = 0.2, fireResist = 30, coldResist = 30, lightningResist = 30, @@ -19921,7 +19919,7 @@ minions["Metadata/Monsters/LeagueAncestral/StandaloneTawhoa/MedicineWoman/Tawhoa minions["Metadata/Monsters/LeagueIncursionNew/Smithy/ProcessionAxeThrowerIncursion"] = { name = "Vaal Embalmed Berserker", - monsterTags = { "2HSharpMetal_onhit_audio", "fast_movement", "humanoid", "red_blood", "undead", }, + monsterTags = { "fast_movement", "humanoid", "red_blood", "Sword2H_onhit_audio", "undead", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -19955,7 +19953,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Smithy/ProcessionAxeThrowerIncursi minions["Metadata/Monsters/LeagueIncursionNew/Smithy/ProcessionSwordShieldIncursion"] = { name = "Vaal Embalmed Warrior", - monsterTags = { "1HSword_onhit_audio", "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "red_blood", "undead", }, + monsterTags = { "humanoid", "medium_movement", "melee", "monster_blocks_damage", "not_dex", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", "undead", }, life = 1.21, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -20102,7 +20100,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Transcended/VaalHumanoidCannonLigh minions["Metadata/Monsters/LeagueIncursionNew/Constructs/VaalBowlingPinIncursion"] = { name = "Vaal Construct", - monsterTags = { "2HBluntMetal_onhit_audio", "construct", "medium_movement", "mud_blood", "not_dex", }, + monsterTags = { "construct", "Mace2HMetal_onhit_audio", "medium_movement", "mud_blood", "not_dex", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -20447,7 +20445,7 @@ minions["Metadata/Monsters/PrecursorCentipedeTrain/PrecursorCentipedeTrainHead"] minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/AntFaction/AntCarrierExpedition"] = { name = "Dezzic Soldier", - monsterTags = { "beast", "expedition_monster", "insect", "not_dex", "not_int", "physical_affinity", "slow_movement", "Stab_onhit_audio", }, + monsterTags = { "beast", "expedition_monster", "insect", "not_dex", "not_int", "physical_affinity", "slow_movement", "Stab1HMetal_onhit_audio", }, life = 2.25, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -20592,7 +20590,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/AntFaction/NettleAntE minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/ArachnidFaction/ShakariExpedition"] = { name = "Krell Fleshgouger", - monsterTags = { "beast", "Claw_onhit_audio", "expedition_monster", "fire_affinity", "insect", "medium_movement", "not_dex", "not_int", }, + monsterTags = { "beast", "expedition_monster", "fire_affinity", "insect", "medium_movement", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -20631,7 +20629,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/ArachnidFaction/Shaka minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/ArachnidFaction/TumourSpiderExpedition"] = { name = "Krell Throatgnasher", - monsterTags = { "Claw_onhit_audio", "demon", "expedition_monster", "fast_movement", "fire_affinity", "not_int", "spider", }, + monsterTags = { "demon", "expedition_monster", "fast_movement", "fire_affinity", "not_int", "Slice1HMetal_onhit_audio", "spider", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, armour = 0.35, @@ -20782,7 +20780,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/HumanoidFaction/IceCa minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/HumanoidFaction/MassGoldSkeletonExpedition"] = { name = "Gold-melted Bonemass", - monsterTags = { "2HSharpMetal_onhit_audio", "bones", "medium_movement", "not_dex", "not_int", "undead", }, + monsterTags = { "bones", "medium_movement", "not_dex", "not_int", "Sword2H_onhit_audio", "undead", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 1, @@ -20886,7 +20884,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/ParasiteFaction/Octop minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/ParasiteFaction/ParasiteHostMonsterExpedition"] = { name = "Ylth Spewer", - monsterTags = { "beast", "Claw_onhit_audio", "cold_affinity", "expedition_monster", "not_dex", "not_int", "very_slow_movement", }, + monsterTags = { "beast", "cold_affinity", "expedition_monster", "not_dex", "not_int", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 3, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -20927,7 +20925,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/ParasiteFaction/Paras minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/Cocoon3Expedition"] = { name = "Starlit Defiler", - monsterTags = { "beast", "Claw_onhit_audio", "expedition_monster", "insect", "medium_movement", "not_dex", "not_int", }, + monsterTags = { "beast", "expedition_monster", "insect", "medium_movement", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, life = 1.2, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -20971,7 +20969,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/Cocoon3Expedit minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueBringerExpedition"] = { name = "Starlit Harvester", - monsterTags = { "beast", "Claw_onhit_audio", "expedition_monster", "fast_movement", "insect", "melee", "physical_affinity", "very_fast_movement", }, + monsterTags = { "beast", "expedition_monster", "fast_movement", "insect", "melee", "physical_affinity", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 2, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -21007,7 +21005,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueBringerE minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph1Expedition"] = { name = "Starlit Bladeflesh", - monsterTags = { "2HSharpMetal_onhit_audio", "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "undead", "very_slow_movement", }, + monsterTags = { "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -21040,7 +21038,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph1Ex minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph2Expedition_"] = { name = "Starlit Pincerflesh", - monsterTags = { "2HSharpMetal_onhit_audio", "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "undead", "very_slow_movement", }, + monsterTags = { "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -21073,7 +21071,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph2Ex minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph3Expedition"] = { name = "Starlit Reaperflesh", - monsterTags = { "2HSharpMetal_onhit_audio", "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "undead", "very_slow_movement", }, + monsterTags = { "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -21106,7 +21104,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph3Ex minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueMorph4Expedition"] = { name = "Starlit Faceless", - monsterTags = { "2HSharpMetal_onhit_audio", "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "undead", "very_slow_movement", }, + monsterTags = { "demon", "expedition_monster", "melee", "monster_barely_moves", "physical_affinity", "Sword2H_onhit_audio", "undead", "very_slow_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -21174,7 +21172,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/PlagueNymphExp minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/TumourStatue2Expedition"] = { name = "Starlit Grotesque", - monsterTags = { "1HSword_onhit_audio", "demon", "expedition_monster", "humanoid", "melee", "not_int", "physical_affinity", "slow_movement", }, + monsterTags = { "demon", "expedition_monster", "humanoid", "melee", "not_int", "physical_affinity", "slow_movement", "Sword1H_onhit_audio", }, life = 1.15, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -21209,7 +21207,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/TumourStatue2E minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/TumourStatueSnakeExpedition"] = { name = "Starlit Statuesque", - monsterTags = { "1HSword_onhit_audio", "demon", "expedition_monster", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", }, + monsterTags = { "demon", "expedition_monster", "humanoid", "medium_movement", "melee", "not_dex", "not_int", "physical_affinity", "Sword1H_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -21245,7 +21243,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/Fodder/TumourStatueSn minions["Metadata/Monsters/CorpseWheel/PlagueCorpseWheel"] = { name = "The Punished", - monsterTags = { "2HBluntWood_onhit_audio", "bones", "medium_movement", "skeleton", "undead", }, + monsterTags = { "bones", "Mace2HWood_onhit_audio", "medium_movement", "skeleton", "undead", }, life = 1, fireResist = 0, coldResist = 0, @@ -21562,7 +21560,7 @@ minions["Metadata/Monsters/BloodClan/BloodClanBird"] = { minions["Metadata/Monsters/VaalConstructs/Monkey/VaalConstructMonkey"] = { name = "Constructed Monkey", - monsterTags = { "caster", "Claw_onhit_audio", "construct", "golem", "is_unarmed", "medium_movement", "metal_armour", "not_dex", "vaal", }, + monsterTags = { "caster", "construct", "golem", "is_unarmed", "medium_movement", "metal_armour", "not_dex", "Slice1HMetal_onhit_audio", "vaal", }, life = 1, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -21596,7 +21594,7 @@ minions["Metadata/Monsters/VaalConstructs/Monkey/VaalConstructMonkey"] = { minions["Metadata/Monsters/VaalConstructs/Monkey/VaalConstructMonkeyHead"] = { name = "Constructed Monkey Head", - monsterTags = { "caster", "Claw_onhit_audio", "construct", "golem", "immobile", "is_unarmed", "metal_armour", "not_dex", "vaal", }, + monsterTags = { "caster", "construct", "golem", "immobile", "is_unarmed", "metal_armour", "not_dex", "Slice1HMetal_onhit_audio", "vaal", }, life = 1, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -21632,7 +21630,7 @@ minions["Metadata/Monsters/VaalConstructs/Monkey/VaalConstructMonkeyHead"] = { minions["Metadata/Monsters/VaalMonsters/ViperNapuatzi/ViperNapuatziSnakeMinion"] = { name = "Viper Servant", - monsterTags = { "beast", "fast_movement", "not_int", "not_str", "reptile_beast", "Stab_onhit_audio", }, + monsterTags = { "beast", "fast_movement", "not_int", "not_str", "reptile_beast", "Stab1HMetal_onhit_audio", }, life = 1, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -21667,7 +21665,7 @@ minions["Metadata/Monsters/VaalMonsters/ViperNapuatzi/ViperNapuatziSnakeMinion"] minions["Metadata/Monsters/VaalMonsters/Living/Minions/VaalJaguarMinion"] = { name = "Jaguar Familiar", - monsterTags = { "beast", "Claw_onhit_audio", "medium_movement", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "beast", "medium_movement", "melee", "not_int", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", }, life = 1.44, baseDamageIgnoresAttackSpeed = true, armour = 0.3, @@ -21704,7 +21702,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/Minions/VaalJaguarMinion"] = { minions["Metadata/Monsters/VaalMonsters/Living/Minions/VaalSnakeMinion"] = { name = "Serpentine Familiar", - monsterTags = { "beast", "fast_movement", "not_int", "not_str", "red_blood", "reptile_beast", "Stab_onhit_audio", }, + monsterTags = { "beast", "fast_movement", "not_int", "not_str", "red_blood", "reptile_beast", "Stab1HMetal_onhit_audio", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -21738,7 +21736,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/Minions/VaalSnakeMinion"] = { minions["Metadata/Monsters/VaalMonsters/Living/Minions/VaalMonkeyMinion_"] = { name = "Primal Familiar", - monsterTags = { "animal_claw_weapon", "beast", "cannot_be_map_archnemesis", "Claw_onhit_audio", "fast_movement", "flesh_armour", "is_unarmed", "mammal_beast", "melee", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "small_height", }, + monsterTags = { "animal_claw_weapon", "beast", "cannot_be_map_archnemesis", "fast_movement", "flesh_armour", "is_unarmed", "mammal_beast", "melee", "not_int", "not_str", "physical_affinity", "ranged", "red_blood", "Slice1HMetal_onhit_audio", "small_height", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.25, @@ -21774,7 +21772,7 @@ minions["Metadata/Monsters/VaalMonsters/Living/Minions/VaalMonkeyMinion_"] = { minions["Metadata/Monsters/SerpentHusk/snakes/SerpentHuskSnake"] = { name = "Snake", - monsterTags = { "beast", "not_int", "not_str", "red_blood", "reptile_beast", "Stab_onhit_audio", "very_slow_movement", }, + monsterTags = { "beast", "not_int", "not_str", "red_blood", "reptile_beast", "Stab1HMetal_onhit_audio", "very_slow_movement", }, life = 0.5, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -21808,7 +21806,7 @@ minions["Metadata/Monsters/SerpentHusk/snakes/SerpentHuskSnake"] = { minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion1"] = { name = "Rage", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", }, + monsterTags = { "demon", "fast_movement", "Slice1HMetal_onhit_audio", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -21842,7 +21840,7 @@ minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion1"] = { minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion2"] = { name = "Spite", - monsterTags = { "Claw_onhit_audio", "demon", "medium_movement", "not_dex", "not_str", }, + monsterTags = { "demon", "medium_movement", "not_dex", "not_str", "Slice1HMetal_onhit_audio", }, life = 0.75, baseDamageIgnoresAttackSpeed = true, energyShield = 0.15, @@ -21877,7 +21875,7 @@ minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion2"] = { minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion3"] = { name = "Disgust", - monsterTags = { "Claw_onhit_audio", "demon", "very_slow_movement", }, + monsterTags = { "demon", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -21917,7 +21915,7 @@ minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion3"] = { minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion4"] = { name = "Malice", - monsterTags = { "Claw_onhit_audio", "demon", "fast_movement", "not_int", "not_str", }, + monsterTags = { "demon", "fast_movement", "not_int", "not_str", "Slice1HMetal_onhit_audio", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -21990,7 +21988,7 @@ minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion5_"] = { minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion6_"] = { name = "Turmoil", - monsterTags = { "Claw_onhit_audio", "demon", "medium_movement", }, + monsterTags = { "demon", "medium_movement", "Slice1HMetal_onhit_audio", }, life = 0.75, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22022,7 +22020,7 @@ minions["Metadata/Monsters/LeagueDelirium/DeliriumMinion6_"] = { minions["Metadata/Monsters/LeagueDelirium/DeliriumDemonColdIceSpear"] = { name = "Manifested Demon", - monsterTags = { "affliction_daemon", "construct", "immobile", "Stab_onhit_audio", }, + monsterTags = { "affliction_daemon", "construct", "immobile", "Stab1HMetal_onhit_audio", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22160,7 +22158,7 @@ minions["Metadata/Monsters/SkeletonSnake/SandSkeletonSnake"] = { minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionDisgust"] = { name = "Disgust", - monsterTags = { "Claw_onhit_audio", "demon", "very_fast_movement", }, + monsterTags = { "demon", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22196,7 +22194,7 @@ minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionDisgust"] = { minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionFury"] = { name = "Fury", - monsterTags = { "Claw_onhit_audio", "demon", "very_fast_movement", }, + monsterTags = { "demon", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22234,7 +22232,7 @@ minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionFury"] = { minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionMalice"] = { name = "Malice", - monsterTags = { "Claw_onhit_audio", "demon", "very_fast_movement", }, + monsterTags = { "demon", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22269,7 +22267,7 @@ minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionMalice"] = { minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionRage"] = { name = "Rage", - monsterTags = { "Claw_onhit_audio", "demon", "very_fast_movement", }, + monsterTags = { "demon", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22305,7 +22303,7 @@ minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionRage"] = { minions["Metadata/Monsters/DeliriumTangmazu/Minions/DeliriumMinionSpite"] = { name = "Spite", - monsterTags = { "Claw_onhit_audio", "demon", "very_fast_movement", }, + monsterTags = { "demon", "Slice1HMetal_onhit_audio", "very_fast_movement", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -22377,7 +22375,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Smithy/ProcessionBannerIncursion"] minions["Metadata/Monsters/LeagueIncursionNew/Smithy/VaalForgemanIncursion"] = { name = "Coztic, the Forgehand", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "construct", "fast_movement", "humanoid", "incursion_rare_forgehand", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_fast_movement", }, + monsterTags = { "allows_inc_aoe", "construct", "fast_movement", "humanoid", "incursion_rare_forgehand", "Mace2HWood_onhit_audio", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_fast_movement", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -22455,7 +22453,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Doctor/DoctorIncursionTier1_"] = { minions["Metadata/Monsters/LeagueIncursionNew/CommanderNew/VaalGuardClawsIncursion"] = { name = "Vaal Excoriator", - monsterTags = { "Claw_onhit_audio", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Slice1HMetal_onhit_audio", "very_slow_movement", }, life = 1.05, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -22500,7 +22498,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/CommanderNew/VaalGuardClawsIncursi minions["Metadata/Monsters/LeagueIncursionNew/CommanderNew/VaalGuardSpearIncursion"] = { name = "Vaal Guard", - monsterTags = { "2HSharpMetal_onhit_audio", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "very_slow_movement", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -22542,7 +22540,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/CommanderNew/VaalGuardSpearIncursi minions["Metadata/Monsters/LeagueIncursionNew/CommanderOld/UndeadVaalGuardSpearIncursion"] = { name = "Undead Vaal Guard", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "human", "humanoid", "medium_movement", "melee", "not_int", "physical_affinity", "red_blood", "undead", "vaal", }, + monsterTags = { "allows_inc_aoe", "human", "humanoid", "medium_movement", "melee", "not_int", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "undead", "vaal", }, life = 1.25, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -22584,7 +22582,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/CommanderOld/UndeadVaalGuardSpearI minions["Metadata/Monsters/LeagueIncursionNew/Garrison/VaalOverseerLivingIncursion"] = { name = "Vaal Overseer", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -22630,7 +22628,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Garrison/VaalOverseerLivingIncursi minions["Metadata/Monsters/LeagueIncursionNew/Garrison/VaalOverseerLivingIncursionRare"] = { name = "Temoc, Drill Overseer", - monsterTags = { "1HSword_onhit_audio", "allows_inc_aoe", "fast_movement", "human", "humanoid", "incursion_rare_drill_sergeant", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "allows_inc_aoe", "fast_movement", "human", "humanoid", "incursion_rare_drill_sergeant", "melee", "not_int", "physical_affinity", "red_blood", "Sword1H_onhit_audio", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.6, @@ -22670,7 +22668,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Garrison/VaalOverseerLivingIncursi minions["Metadata/Monsters/LeagueIncursionNew/Transcended/VaalHumanoidBladeHandsIncursion"] = { name = "Warrior Transcendent", - monsterTags = { "2HSharpMetal_onhit_audio", "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "vaal", "very_fast_movement", }, + monsterTags = { "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "vaal", "very_fast_movement", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, energyShield = 0.1, @@ -22712,7 +22710,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Transcended/VaalHumanoidBladeHands minions["Metadata/Monsters/LeagueIncursionNew/Transcended/VaalHumanoidStalkerIncursion"] = { name = "Bladelash Transcendent", - monsterTags = { "2HSharpMetal_onhit_audio", "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "vaal", "very_fast_movement", }, + monsterTags = { "construct", "fast_movement", "humanoid", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "vaal", "very_fast_movement", }, life = 1.3, baseDamageIgnoresAttackSpeed = true, energyShield = 0.05, @@ -22755,7 +22753,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Transcended/VaalHumanoidStalkerInc minions["Metadata/Monsters/LeagueIncursionNew/ViperLegionnaire/ViperLegionnaireSwordIncursion"] = { name = "Viper Legionnaire", - monsterTags = { "2HSharpMetal_onhit_audio", "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", }, + monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "physical_affinity", "red_blood", "Sword2H_onhit_audio", }, life = 1.6, baseDamageIgnoresAttackSpeed = true, armour = 0.33, @@ -22794,7 +22792,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/ViperLegionnaire/ViperLegionnaireS minions["Metadata/Monsters/LeagueIncursionNew/Constructs/VaalConstructPyramidIncursion"] = { name = "Reconstructor", - monsterTags = { "2HBluntMetal_onhit_audio", "bludgeoning_weapon", "caster", "construct", "golem", "is_unarmed", "lightning_affinity", "metal_armour", "monster_barely_moves", "not_dex", "vaal", "very_slow_movement", }, + monsterTags = { "bludgeoning_weapon", "caster", "construct", "golem", "is_unarmed", "lightning_affinity", "Mace2HMetal_onhit_audio", "metal_armour", "monster_barely_moves", "not_dex", "vaal", "very_slow_movement", }, life = 1.1, baseDamageIgnoresAttackSpeed = true, energyShield = 0.15, @@ -22836,7 +22834,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Constructs/VaalConstructPyramidInc minions["Metadata/Monsters/LeagueIncursionNew/Constructs/VaalConstructSkitterbotIncursion"] = { name = "Crawler Sentinel", - monsterTags = { "2HBluntMetal_onhit_audio", "allows_inc_aoe", "cannot_be_monolith", "caster", "construct", "fire_affinity", "golem", "is_unarmed", "metal_armour", "mud_blood", "no_final_gasp", "no_shroud_walker", "not_dex", "ranged", "slow_movement", "uses_suicide_explode", "vaal", }, + monsterTags = { "allows_inc_aoe", "cannot_be_monolith", "caster", "construct", "fire_affinity", "golem", "is_unarmed", "Mace2HMetal_onhit_audio", "metal_armour", "mud_blood", "no_final_gasp", "no_shroud_walker", "not_dex", "ranged", "slow_movement", "uses_suicide_explode", "vaal", }, life = 0.8, baseDamageIgnoresAttackSpeed = true, energyShield = 0.15, @@ -22879,7 +22877,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Constructs/VaalConstructSkitterbot minions["Metadata/Monsters/LeagueIncursionNew/Thaumaturge/VaalThaumaturgeSpear"] = { name = "Vaal Guard", - monsterTags = { "2HSharpMetal_onhit_audio", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "very_slow_movement", }, + monsterTags = { "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "Sword2H_onhit_audio", "very_slow_movement", }, life = 1.35, baseDamageIgnoresAttackSpeed = true, evasion = 0.5, @@ -22920,7 +22918,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/Thaumaturge/VaalThaumaturgeSpear"] minions["Metadata/Monsters/LeagueIncursionNew/MiniBosses/SoulCoreQuadrillaBoss/SoulCoreQuadrillaMinion"] = { name = "Quadrilla Sergeant", - monsterTags = { "2HBluntStone_onhit_audio", "beast", "fast_movement", "humanoid", "incursion_unique_quadrilla", "not_dex", "not_int", "red_blood", "very_fast_movement", }, + monsterTags = { "beast", "fast_movement", "humanoid", "incursion_unique_quadrilla", "Mace2HStone_onhit_audio", "not_dex", "not_int", "red_blood", "very_fast_movement", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, armour = 0.66, @@ -22966,7 +22964,7 @@ minions["Metadata/Monsters/LeagueIncursionNew/MiniBosses/SoulCoreQuadrillaBoss/S minions["Metadata/Monsters/LeagueIncursionNew/MiniBosses/IncursionChainedBeastBoss/ChainedBeastBossMinion_"] = { name = "Unchained Beast", - monsterTags = { "beast", "Claw_onhit_audio", "incursion_unique_chained_beast", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", }, + monsterTags = { "beast", "incursion_unique_chained_beast", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", "Slice1HMetal_onhit_audio", }, life = 2.5, baseDamageIgnoresAttackSpeed = true, armour = 0.66, @@ -23050,7 +23048,7 @@ minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/HumanoidFaction/Golde minions["Metadata/Monsters/LeagueExpeditionNew/Expedition2/HumanoidFaction/VaalForgeManExpedition"] = { name = "Gold-melted Blacksmith", - monsterTags = { "2HBluntWood_onhit_audio", "allows_inc_aoe", "construct", "fast_movement", "humanoid", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_fast_movement", }, + monsterTags = { "allows_inc_aoe", "construct", "fast_movement", "humanoid", "Mace2HWood_onhit_audio", "melee", "mud_blood", "not_dex", "not_int", "physical_affinity", "very_fast_movement", }, life = 1.8, baseDamageIgnoresAttackSpeed = true, armour = 0.75, @@ -23380,7 +23378,7 @@ minions["Metadata/Monsters/MudBurrower/MudBurrowerHeadBossMinion2"] = { minions["Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion1"] = { name = "Xyclucian, the Chimera", - monsterTags = { "beast", "Claw_onhit_audio", "flying", "mammal_beast", "red_blood", "slow_movement", }, + monsterTags = { "beast", "flying", "mammal_beast", "red_blood", "Slice1HMetal_onhit_audio", "slow_movement", }, extraFlags = { recommendedBeast = true, }, @@ -23397,7 +23395,7 @@ minions["Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion1"] = { damage = 2.5, damageSpread = 0.2, attackTime = 1.5, - attackRange = 18, + attackRange = 20, accuracy = 1, critChance = 5, baseMovementSpeed = 20, @@ -23454,7 +23452,7 @@ minions["Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion1"] = { minions["Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion2"] = { name = "Xilozoma, the Maw-Beast", - monsterTags = { "beast", "Claw_onhit_audio", "flying", "mammal_beast", "red_blood", "slow_movement", }, + monsterTags = { "beast", "flying", "mammal_beast", "red_blood", "Slice1HMetal_onhit_audio", "slow_movement", }, extraFlags = { recommendedBeast = true, }, @@ -23471,7 +23469,7 @@ minions["Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion2"] = { damage = 2.5, damageSpread = 0.2, attackTime = 1.5, - attackRange = 18, + attackRange = 20, accuracy = 1, critChance = 5, baseMovementSpeed = 20, @@ -23528,7 +23526,7 @@ minions["Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion2"] = { minions["Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion1"] = { name = "Uxmal, the Beastlord", - monsterTags = { "beast", "Claw_onhit_audio", "flying", "mammal_beast", "red_blood", "slow_movement", }, + monsterTags = { "beast", "flying", "mammal_beast", "red_blood", "Slice1HMetal_onhit_audio", "slow_movement", }, extraFlags = { recommendedBeast = true, }, @@ -23545,7 +23543,7 @@ minions["Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion1"] = { damage = 2.5, damageSpread = 0.2, attackTime = 1.5, - attackRange = 18, + attackRange = 20, accuracy = 1, critChance = 5, baseMovementSpeed = 20, @@ -23596,7 +23594,7 @@ minions["Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion1"] = { minions["Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion2"] = { name = "Gressor-Kul, the Apex", - monsterTags = { "beast", "Claw_onhit_audio", "flying", "mammal_beast", "red_blood", "slow_movement", }, + monsterTags = { "beast", "flying", "mammal_beast", "red_blood", "Slice1HMetal_onhit_audio", "slow_movement", }, extraFlags = { recommendedBeast = true, }, @@ -23613,7 +23611,7 @@ minions["Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion2"] = { damage = 2.5, damageSpread = 0.2, attackTime = 1.5, - attackRange = 18, + attackRange = 20, accuracy = 1, critChance = 5, baseMovementSpeed = 20, @@ -23840,7 +23838,7 @@ minions["Metadata/Monsters/Bird2/MutantBird2Minion2"] = { minions["Metadata/Monsters/HyenaMonster/RathbreakerBossMinion1"] = { name = "Rathbreaker", - monsterTags = { "2HSharpMetal_onhit_audio", "beast", "fast_movement", "mammal_beast", "melee", "physical_affinity", "red_blood", }, + monsterTags = { "beast", "fast_movement", "mammal_beast", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", }, extraFlags = { recommendedBeast = true, }, @@ -23892,7 +23890,7 @@ minions["Metadata/Monsters/HyenaMonster/RathbreakerBossMinion1"] = { minions["Metadata/Monsters/HyenaMonster/RathbreakerBossMinion2"] = { name = "Caedron, the Hyena Lord", - monsterTags = { "2HSharpMetal_onhit_audio", "beast", "fast_movement", "mammal_beast", "melee", "physical_affinity", "red_blood", }, + monsterTags = { "beast", "fast_movement", "mammal_beast", "melee", "physical_affinity", "red_blood", "Sword2H_onhit_audio", }, extraFlags = { recommendedBeast = true, }, @@ -24306,7 +24304,7 @@ minions["Metadata/Monsters/GreatWhiteOne/GreatWhiteOneMinion2"] = { minions["Metadata/Monsters/Goblins/Beast/ArenaBeastBossMinion1_"] = { name = "The Ravenous Fang", - monsterTags = { "beast", "Claw_onhit_audio", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", }, + monsterTags = { "beast", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", "Slice1HMetal_onhit_audio", }, extraFlags = { recommendedBeast = true, }, @@ -24445,7 +24443,7 @@ minions["Metadata/Monsters/ChaosGodOwlBoss/ChaosGodOwlBossMinion"] = { } minions["Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossMinion1"] = { - name = "Rakkar, the Frozen Talon", + name = "Thraeven, Wing of Winter", monsterTags = { "beast", "Beast_onhit_audio", "flying", "not_str", "red_blood", "slow_movement", }, extraFlags = { recommendedBeast = true, @@ -24692,7 +24690,7 @@ minions["Metadata/Monsters/MarakethSanctumTrial/Boss/Shakari/ShakariMinion2"] = minions["Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossMinion1"] = { name = "Vornas, the Fell Flame", - monsterTags = { "beast", "Claw_onhit_audio", "fast_movement", "fire", "mammal_beast", "not_dex", "not_int", }, + monsterTags = { "beast", "fast_movement", "fire", "mammal_beast", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, extraFlags = { recommendedBeast = true, }, @@ -24755,7 +24753,7 @@ minions["Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossMinion1"] = minions["Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossMinion2"] = { name = "Morvak, the Infernal", - monsterTags = { "beast", "Claw_onhit_audio", "fast_movement", "fire", "mammal_beast", "not_dex", "not_int", }, + monsterTags = { "beast", "fast_movement", "fire", "mammal_beast", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, extraFlags = { recommendedBeast = true, }, @@ -24991,7 +24989,7 @@ minions["Metadata/Monsters/QuillCrab/QuillCrabBigPoisonElite"] = { minions["Metadata/Monsters/HuhuGrub/HuhuGrubLarvaeRanged1Spectre"] = { name = "Flesh Larva", - monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "beast", "cannot_be_monolith", "insect", "medium_movement", "melee", "monster_applies_poison", "monster_barely_moves", "monster_summons_adds", "physical_affinity", "ranged", "red_blood", "Stab_onhit_audio", }, + monsterTags = { "allows_additional_projectiles", "allows_inc_aoe", "beast", "cannot_be_monolith", "insect", "medium_movement", "melee", "monster_applies_poison", "monster_barely_moves", "monster_summons_adds", "physical_affinity", "ranged", "red_blood", "Stab1HMetal_onhit_audio", }, life = 1, baseDamageIgnoresAttackSpeed = true, fireResist = 0, @@ -25032,7 +25030,7 @@ minions["Metadata/Monsters/HuhuGrub/HuhuGrubLarvaeRanged1Spectre"] = { minions["Metadata/Monsters/DemonSpiders/BlackStrider"] = { name = "Black Strider", - monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "melee", "physical_affinity", "spider", "Stab_onhit_audio", }, + monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "melee", "physical_affinity", "spider", "Stab1HMetal_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -25081,7 +25079,7 @@ minions["Metadata/Monsters/DemonSpiders/BlackStrider"] = { minions["Metadata/Monsters/DemonSpiders/BlackStriderSanctumTrial"] = { name = "Black Strider", - monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "melee", "physical_affinity", "sanctum_monster", "spider", "Stab_onhit_audio", }, + monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "melee", "physical_affinity", "sanctum_monster", "spider", "Stab1HMetal_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, fireResist = -30, @@ -25127,7 +25125,7 @@ minions["Metadata/Monsters/DemonSpiders/BlackStriderSanctumTrial"] = { minions["Metadata/Monsters/EtchedBeetles/SmallEtchedBeetleArmouredDullSanctumScorpionBoss"] = { name = "Tarnished Beetle", - monsterTags = { "allows_inc_aoe", "beast", "Claw_onhit_audio", "insect", "lightning_affinity", "medium_movement", "melee", "not_dex", "not_int", "sanctum_monster", }, + monsterTags = { "allows_inc_aoe", "beast", "insect", "lightning_affinity", "medium_movement", "melee", "not_dex", "not_int", "sanctum_monster", "Slice1HMetal_onhit_audio", }, life = 0.85, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -25168,7 +25166,7 @@ minions["Metadata/Monsters/EtchedBeetles/SmallEtchedBeetleArmouredDullSanctumSco minions["Metadata/Monsters/EtchedBeetles/MediumEtchedBeetleArmouredTuskWideSanctumTrial"] = { name = "Adorned Scarab", - monsterTags = { "2HSharpMetal_onhit_audio", "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", "sanctum_monster", }, + monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", "sanctum_monster", "Sword2H_onhit_audio", }, life = 1.5, baseDamageIgnoresAttackSpeed = true, armour = 0.7, @@ -25211,7 +25209,7 @@ minions["Metadata/Monsters/EtchedBeetles/MediumEtchedBeetleArmouredTuskWideSanct minions["Metadata/Monsters/EtchedBeetles/LargeEtchedBeetleBossMinion"] = { name = "Adorned Beetle", - monsterTags = { "allows_inc_aoe", "beast", "Claw_onhit_audio", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", }, + monsterTags = { "allows_inc_aoe", "beast", "fast_movement", "insect", "lightning_affinity", "melee", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, life = 0.85, baseDamageIgnoresAttackSpeed = true, armour = 0.5, @@ -25556,7 +25554,7 @@ minions["Metadata/Monsters/ChawMongrel/ChawMongrelLeashBoss"] = { minions["Metadata/Monsters/Goblins/Beast/ArenaBeastBossMinion2"] = { name = "The Ravenous Fang", - monsterTags = { "beast", "Claw_onhit_audio", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", }, + monsterTags = { "beast", "mammal_beast", "medium_movement", "not_dex", "not_int", "red_blood", "Slice1HMetal_onhit_audio", }, life = 3, baseDamageIgnoresAttackSpeed = true, armour = 0.25, @@ -25855,7 +25853,7 @@ minions["Metadata/Monsters/PlagueNymph/TwilightOrderPlagueNymph"] = { minions["Metadata/Monsters/MudBurrower/DevourerDuo/DevourerBossDuoHeadMinion"] = { name = "Anundr, the Sandworm", - monsterTags = { "beast", "Claw_onhit_audio", "mammal_beast", "medium_movement", "not_dex", "not_int", }, + monsterTags = { "beast", "mammal_beast", "medium_movement", "not_dex", "not_int", "Slice1HMetal_onhit_audio", }, life = 2, baseDamageIgnoresAttackSpeed = true, armour = 0.35, diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fractured_self.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fractured_self.lua index aa36204826..ae21ad0404 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fractured_self.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_fractured_self.lua @@ -91,7 +91,7 @@ return { [2]=1 } }, - text="Limit {0} Fractured Mimics" + text="Limit {0} Fractured Mimic" }, [2]={ limit={ diff --git a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_mana_flare.lua b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_mana_flare.lua index 8d10819656..9c146f192b 100644 --- a/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_mana_flare.lua +++ b/src/Data/StatDescriptions/Specific_Skill_Stat_Descriptions/triggered_mana_flare.lua @@ -42,7 +42,24 @@ return { [1]="active_skill_base_area_of_effect_radius" } }, + [3]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Consumes {0}% of current Mana to deal that much Fire damage" + } + }, + stats={ + [1]="support_mana_flare_%_of_current_mana_consumed" + } + }, ["active_skill_area_of_effect_radius"]=1, ["active_skill_base_area_of_effect_radius"]=2, - parent="skill_stat_descriptions" + parent="skill_stat_descriptions", + ["support_mana_flare_%_of_current_mana_consumed"]=3 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/gem_stat_descriptions.lua b/src/Data/StatDescriptions/gem_stat_descriptions.lua index 036410e3f7..84597e0088 100644 --- a/src/Data/StatDescriptions/gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/gem_stat_descriptions.lua @@ -5635,84 +5635,6 @@ return { } }, [230]={ - [1]={ - [1]={ - ["gem_quality"]=true, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gains {0}% of Damage as Extra Chaos Damage" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gains {0}% of Damage as Extra Chaos Damage" - } - }, - stats={ - [1]="active_skill_base_all_damage_%_to_gain_as_chaos" - } - }, - [231]={ - [1]={ - [1]={ - ["gem_quality"]=true, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0}% damage as Extra Fire Damage" - }, - [2]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Gain {0}% damage as Extra Fire Damage" - } - }, - stats={ - [1]="active_skill_base_all_damage_%_to_gain_as_fire" - } - }, - [232]={ - [1]={ - [1]={ - ["gem_quality"]=true, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Gain {0}% damage as Extra Lightning Damage" - }, - [2]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="Gain {0}% damage as Extra Lightning Damage" - } - }, - stats={ - [1]="active_skill_base_all_damage_%_to_gain_as_lightning" - } - }, - [233]={ [1]={ [1]={ ["gem_quality"]=true, @@ -5752,7 +5674,7 @@ return { [1]="active_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [234]={ + [231]={ [1]={ [1]={ limit={ @@ -5768,7 +5690,7 @@ return { [1]="active_skill_base_physical_damage_%_to_gain_as_fire" } }, - [235]={ + [232]={ [1]={ [1]={ limit={ @@ -5784,7 +5706,7 @@ return { [1]="active_skill_can_overload" } }, - [236]={ + [233]={ [1]={ [1]={ limit={ @@ -5800,7 +5722,7 @@ return { [1]="active_skill_cannot_manually_reload" } }, - [237]={ + [234]={ [1]={ [1]={ ["gem_quality"]=true, @@ -5839,7 +5761,7 @@ return { [1]="active_skill_fire_damage_+%_final" } }, - [238]={ + [235]={ [1]={ [1]={ limit={ @@ -5855,7 +5777,7 @@ return { [1]="active_skill_generates_%_of_life_spent_as_glory" } }, - [239]={ + [236]={ [1]={ [1]={ ["gem_quality"]=true, @@ -5872,7 +5794,7 @@ return { [1]="active_skill_minion_attack_speed_+%_final" } }, - [240]={ + [237]={ [1]={ [1]={ limit={ @@ -5888,7 +5810,7 @@ return { [1]="active_skill_never_freeze_shock_ignite" } }, - [241]={ + [238]={ [1]={ [1]={ ["gem_quality"]=true, @@ -5927,7 +5849,7 @@ return { [1]="active_skill_projectile_speed_+%_final" } }, - [242]={ + [239]={ [1]={ [1]={ limit={ @@ -5952,7 +5874,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [243]={ + [240]={ [1]={ [1]={ limit={ @@ -5968,7 +5890,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [244]={ + [241]={ [1]={ [1]={ limit={ @@ -5984,7 +5906,7 @@ return { [1]="added_cold_damage_%_ward_cost" } }, - [245]={ + [242]={ [1]={ [1]={ limit={ @@ -6013,7 +5935,7 @@ return { [1]="added_damage_+%_final" } }, - [246]={ + [243]={ [1]={ [1]={ limit={ @@ -6029,7 +5951,7 @@ return { [1]="added_physical_damage_%_ward_cost" } }, - [247]={ + [244]={ [1]={ [1]={ [1]={ @@ -6049,7 +5971,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [248]={ + [245]={ [1]={ [1]={ limit={ @@ -6065,7 +5987,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [249]={ + [246]={ [1]={ [1]={ limit={ @@ -6090,7 +6012,7 @@ return { [1]="additional_combo_gain_chance_%" } }, - [250]={ + [247]={ [1]={ [1]={ [1]={ @@ -6110,7 +6032,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [251]={ + [248]={ [1]={ [1]={ [1]={ @@ -6130,7 +6052,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [252]={ + [249]={ [1]={ [1]={ limit={ @@ -6177,7 +6099,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [253]={ + [250]={ [1]={ [1]={ limit={ @@ -6206,7 +6128,7 @@ return { [1]="aftershock_area_of_effect_+%_final_from_support_dual_cascade_aftershocks" } }, - [254]={ + [251]={ [1]={ [1]={ limit={ @@ -6235,7 +6157,7 @@ return { [1]="aftershock_area_of_effect_+%_final" } }, - [255]={ + [252]={ [1]={ [1]={ limit={ @@ -6264,7 +6186,7 @@ return { [1]="aftershock_damage_+%_final_from_support_dual_cascade_aftershocks" } }, - [256]={ + [253]={ [1]={ [1]={ limit={ @@ -6280,7 +6202,7 @@ return { [1]="aftershocks_create_jagged_ground" } }, - [257]={ + [254]={ [1]={ [1]={ limit={ @@ -6305,7 +6227,7 @@ return { [1]="aggravate_bleeding_on_pin_chance_%" } }, - [258]={ + [255]={ [1]={ [1]={ limit={ @@ -6334,7 +6256,7 @@ return { [1]="support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment" } }, - [259]={ + [256]={ [1]={ [1]={ limit={ @@ -6363,7 +6285,7 @@ return { [1]="ailment_effect_+%_while_afflicted_by_relevant_ailment" } }, - [260]={ + [257]={ [1]={ [1]={ limit={ @@ -6392,7 +6314,7 @@ return { [1]="ailment_threshold_+%_while_channelling" } }, - [261]={ + [258]={ [1]={ [1]={ limit={ @@ -6408,7 +6330,7 @@ return { [1]="all_damage_gained_as_cold_instead" } }, - [262]={ + [259]={ [1]={ [1]={ [1]={ @@ -6441,7 +6363,7 @@ return { [1]="all_exposure_on_hit_for_duration_ms" } }, - [263]={ + [260]={ [1]={ [1]={ [1]={ @@ -6466,7 +6388,7 @@ return { [2]="font_of_blood_radius" } }, - [264]={ + [261]={ [1]={ [1]={ [1]={ @@ -6491,7 +6413,7 @@ return { [2]="font_of_mana_radius" } }, - [265]={ + [262]={ [1]={ [1]={ limit={ @@ -6507,7 +6429,7 @@ return { [1]="always_shock_wet_enemies" } }, - [266]={ + [263]={ [1]={ [1]={ limit={ @@ -6536,7 +6458,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [267]={ + [264]={ [1]={ [1]={ limit={ @@ -6565,7 +6487,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [268]={ + [265]={ [1]={ [1]={ limit={ @@ -6581,7 +6503,7 @@ return { [1]="ancestral_aid_required_count_of_recent_blocks" } }, - [269]={ + [266]={ [1]={ [1]={ [1]={ @@ -6614,7 +6536,7 @@ return { [1]="ancestral_call_spirit_strike_interval_ms" } }, - [270]={ + [267]={ [1]={ [1]={ limit={ @@ -6643,7 +6565,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [271]={ + [268]={ [1]={ [1]={ limit={ @@ -6659,7 +6581,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_chill" } }, - [272]={ + [269]={ [1]={ [1]={ limit={ @@ -6675,7 +6597,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_freeze" } }, - [273]={ + [270]={ [1]={ [1]={ limit={ @@ -6700,7 +6622,7 @@ return { [1]="apply_X_incision_on_hit" } }, - [274]={ + [271]={ [1]={ [1]={ limit={ @@ -6716,7 +6638,7 @@ return { [1]="apply_attack_projectile_weakness_%_per_1m_knockback" } }, - [275]={ + [272]={ [1]={ [1]={ [1]={ @@ -6749,7 +6671,7 @@ return { [1]="apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry" } }, - [276]={ + [273]={ [1]={ [1]={ limit={ @@ -6778,7 +6700,7 @@ return { [1]="area_damage_+%" } }, - [277]={ + [274]={ [1]={ [1]={ limit={ @@ -6807,7 +6729,7 @@ return { [1]="area_of_effect_+%_per_combo_stack" } }, - [278]={ + [275]={ [1]={ [1]={ limit={ @@ -6836,7 +6758,7 @@ return { [1]="area_of_effect_+%_per_totem_in_radius_from_support_greatwood" } }, - [279]={ + [276]={ [1]={ [1]={ limit={ @@ -6852,7 +6774,7 @@ return { [1]="armour_break_for_%_of_poison_damage_over_poison_duration" } }, - [280]={ + [277]={ [1]={ [1]={ limit={ @@ -6868,7 +6790,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [281]={ + [278]={ [1]={ [1]={ limit={ @@ -6884,7 +6806,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies" } }, - [282]={ + [279]={ [1]={ [1]={ limit={ @@ -6900,7 +6822,7 @@ return { [1]="armour_+%_while_performing_action_per_250_ms_attack_time" } }, - [283]={ + [280]={ [1]={ [1]={ limit={ @@ -6921,7 +6843,7 @@ return { [2]="attack_maximum_added_physical_damage_as_%_of_strength" } }, - [284]={ + [281]={ [1]={ [1]={ limit={ @@ -6950,7 +6872,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [285]={ + [282]={ [1]={ [1]={ limit={ @@ -6979,7 +6901,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [286]={ + [283]={ [1]={ [1]={ limit={ @@ -7008,7 +6930,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [287]={ + [284]={ [1]={ [1]={ limit={ @@ -7024,7 +6946,7 @@ return { [1]="attack_damage_+1%_per_X_armour" } }, - [288]={ + [285]={ [1]={ [1]={ limit={ @@ -7040,7 +6962,7 @@ return { [1]="attack_damage_is_lucky_if_surrounded" } }, - [289]={ + [286]={ [1]={ [1]={ limit={ @@ -7069,7 +6991,7 @@ return { [1]="attack_damage_+%" } }, - [290]={ + [287]={ [1]={ [1]={ limit={ @@ -7098,7 +7020,7 @@ return { [1]="attack_damage_+%_per_1000_accuracy_rating" } }, - [291]={ + [288]={ [1]={ [1]={ limit={ @@ -7119,7 +7041,7 @@ return { [2]="attack_maximum_added_physical_damage_per_10_rage" } }, - [292]={ + [289]={ [1]={ [1]={ limit={ @@ -7140,7 +7062,7 @@ return { [2]="attack_maximum_added_physical_damage_with_at_least_10_rage" } }, - [293]={ + [290]={ [1]={ [1]={ limit={ @@ -7161,7 +7083,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [294]={ + [291]={ [1]={ [1]={ limit={ @@ -7190,7 +7112,7 @@ return { [1]="attack_speed_+%" } }, - [295]={ + [292]={ [1]={ [1]={ limit={ @@ -7219,7 +7141,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [296]={ + [293]={ [1]={ [1]={ limit={ @@ -7248,7 +7170,7 @@ return { [1]="attack_speed_+%_with_atleast_20_rage" } }, - [297]={ + [294]={ [1]={ [1]={ limit={ @@ -7273,7 +7195,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [298]={ + [295]={ [1]={ [1]={ limit={ @@ -7289,7 +7211,7 @@ return { [1]="attacks_roll_crits_twice" } }, - [299]={ + [296]={ [1]={ [1]={ limit={ @@ -7314,7 +7236,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [300]={ + [297]={ [1]={ [1]={ limit={ @@ -7343,7 +7265,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [301]={ + [298]={ [1]={ [1]={ limit={ @@ -7372,7 +7294,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [302]={ + [299]={ [1]={ [1]={ limit={ @@ -7388,7 +7310,7 @@ return { [1]="base_bleed_chance_is_poison_chance_instead" } }, - [303]={ + [300]={ [1]={ [1]={ limit={ @@ -7417,7 +7339,7 @@ return { [1]="base_bleed_duration_+%" } }, - [304]={ + [301]={ [1]={ [1]={ limit={ @@ -7446,7 +7368,7 @@ return { [1]="base_cast_speed_+%" } }, - [305]={ + [302]={ [1]={ [1]={ limit={ @@ -7462,7 +7384,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [306]={ + [303]={ [1]={ [1]={ limit={ @@ -7509,7 +7431,7 @@ return { [2]="always_freeze" } }, - [307]={ + [304]={ [1]={ [1]={ limit={ @@ -7525,7 +7447,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [308]={ + [305]={ [1]={ [1]={ limit={ @@ -7550,7 +7472,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [309]={ + [306]={ [1]={ [1]={ limit={ @@ -7575,7 +7497,7 @@ return { [1]="base_chance_to_shock_%" } }, - [310]={ + [307]={ [1]={ [1]={ limit={ @@ -7591,7 +7513,7 @@ return { [1]="base_chaos_damage_can_ignite" } }, - [311]={ + [308]={ [1]={ [1]={ [1]={ @@ -7624,7 +7546,7 @@ return { [1]="base_combo_stacks_decay_delay_ms" } }, - [312]={ + [309]={ [1]={ [1]={ limit={ @@ -7640,7 +7562,7 @@ return { [1]="base_consume_enemy_freeze_on_hit" } }, - [313]={ + [310]={ [1]={ [1]={ limit={ @@ -7656,7 +7578,7 @@ return { [1]="base_consume_enemy_shock_on_hit" } }, - [314]={ + [311]={ [1]={ [1]={ [1]={ @@ -7676,7 +7598,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [315]={ + [312]={ [1]={ [1]={ limit={ @@ -7705,7 +7627,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [316]={ + [313]={ [1]={ [1]={ limit={ @@ -7734,7 +7656,7 @@ return { [1]="base_cooldown_speed_+%_final" } }, - [317]={ + [314]={ [1]={ [1]={ limit={ @@ -7763,7 +7685,7 @@ return { [1]="base_curse_delay_+%" } }, - [318]={ + [315]={ [1]={ [1]={ limit={ @@ -7792,7 +7714,7 @@ return { [1]="base_curse_duration_+%" } }, - [319]={ + [316]={ [1]={ [1]={ limit={ @@ -7821,7 +7743,7 @@ return { [1]="base_damage_+%_while_an_ailment_on_you" } }, - [320]={ + [317]={ [1]={ [1]={ limit={ @@ -7837,7 +7759,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [321]={ + [318]={ [1]={ [1]={ limit={ @@ -7866,7 +7788,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [322]={ + [319]={ [1]={ [1]={ limit={ @@ -7882,7 +7804,7 @@ return { [1]="base_es_cost_%" } }, - [323]={ + [320]={ [1]={ [1]={ limit={ @@ -7898,7 +7820,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [324]={ + [321]={ [1]={ [1]={ limit={ @@ -7923,7 +7845,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [325]={ + [322]={ [1]={ [1]={ limit={ @@ -7948,7 +7870,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [326]={ + [323]={ [1]={ [1]={ limit={ @@ -7973,7 +7895,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [327]={ + [324]={ [1]={ [1]={ limit={ @@ -8002,7 +7924,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [328]={ + [325]={ [1]={ [1]={ limit={ @@ -8031,7 +7953,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [329]={ + [326]={ [1]={ [1]={ limit={ @@ -8047,7 +7969,7 @@ return { [1]="base_life_cost_%" } }, - [330]={ + [327]={ [1]={ [1]={ [1]={ @@ -8067,7 +7989,7 @@ return { [1]="base_life_leech_from_physical_attack_damage_permyriad" } }, - [331]={ + [328]={ [1]={ [1]={ limit={ @@ -8096,7 +8018,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [332]={ + [329]={ [1]={ [1]={ limit={ @@ -8125,7 +8047,7 @@ return { [1]="base_life_reservation_+%" } }, - [333]={ + [330]={ [1]={ [1]={ limit={ @@ -8141,7 +8063,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [334]={ + [331]={ [1]={ [1]={ limit={ @@ -8157,7 +8079,7 @@ return { [1]="base_limit_+" } }, - [335]={ + [332]={ [1]={ [1]={ limit={ @@ -8173,7 +8095,7 @@ return { [1]="base_mana_cost_%" } }, - [336]={ + [333]={ [1]={ [1]={ limit={ @@ -8202,7 +8124,7 @@ return { [1]="base_mana_cost_efficiency_+%" } }, - [337]={ + [334]={ [1]={ [1]={ [1]={ @@ -8222,7 +8144,7 @@ return { [1]="base_mana_leech_from_physical_attack_damage_permyriad" } }, - [338]={ + [335]={ [1]={ [1]={ limit={ @@ -8251,7 +8173,7 @@ return { [1]="base_mana_reservation_+%" } }, - [339]={ + [336]={ [1]={ [1]={ limit={ @@ -8276,7 +8198,7 @@ return { [1]="base_maximum_seals_for_skill" } }, - [340]={ + [337]={ [1]={ [1]={ [1]={ @@ -8296,7 +8218,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [341]={ + [338]={ [1]={ [1]={ limit={ @@ -8321,7 +8243,7 @@ return { [1]="base_number_of_additional_fissures" } }, - [342]={ + [339]={ [1]={ [1]={ limit={ @@ -8346,7 +8268,7 @@ return { [1]="base_number_of_runic_aftershocks_allowed" } }, - [343]={ + [340]={ [1]={ [1]={ limit={ @@ -8371,7 +8293,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [344]={ + [341]={ [1]={ [1]={ [1]={ @@ -8404,7 +8326,7 @@ return { [1]="base_overkill_icy_vortex_duration_ms" } }, - [345]={ + [342]={ [1]={ [1]={ limit={ @@ -8420,7 +8342,7 @@ return { [1]="base_poison_chance_is_bleed_chance_instead" } }, - [346]={ + [343]={ [1]={ [1]={ limit={ @@ -8449,7 +8371,7 @@ return { [1]="base_poison_duration_+%" } }, - [347]={ + [344]={ [1]={ [1]={ limit={ @@ -8478,7 +8400,7 @@ return { [1]="base_projectile_speed_+%" } }, - [348]={ + [345]={ [1]={ [1]={ [1]={ @@ -8511,7 +8433,7 @@ return { [1]="base_remnant_duration_ms" } }, - [349]={ + [346]={ [1]={ [1]={ limit={ @@ -8540,7 +8462,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [350]={ + [347]={ [1]={ [1]={ limit={ @@ -8569,7 +8491,7 @@ return { [1]="base_reservation_+%" } }, - [351]={ + [348]={ [1]={ [1]={ limit={ @@ -8594,7 +8516,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [352]={ + [349]={ [1]={ [1]={ limit={ @@ -8610,7 +8532,7 @@ return { [1]="base_skill_no_reservation" } }, - [353]={ + [350]={ [1]={ [1]={ [1]={ @@ -8643,7 +8565,7 @@ return { [1]="base_skill_seal_gain_interval_ms" } }, - [354]={ + [351]={ [1]={ [1]={ limit={ @@ -8659,7 +8581,7 @@ return { [1]="base_skill_ward_cost_as_%_of_life_and_mana_cost" } }, - [355]={ + [352]={ [1]={ [1]={ limit={ @@ -8688,7 +8610,7 @@ return { [1]="base_spell_cooldown_speed_+%" } }, - [356]={ + [353]={ [1]={ [1]={ ["gem_quality"]=true, @@ -8727,7 +8649,7 @@ return { [1]="base_spirit_reservation_efficiency_+%" } }, - [357]={ + [354]={ [1]={ [1]={ limit={ @@ -8756,7 +8678,7 @@ return { [1]="base_stun_duration_+%" } }, - [358]={ + [355]={ [1]={ [1]={ limit={ @@ -8785,7 +8707,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [359]={ + [356]={ [1]={ [1]={ limit={ @@ -8801,7 +8723,7 @@ return { [1]="base_ward_cost_%" } }, - [360]={ + [357]={ [1]={ [1]={ limit={ @@ -8817,7 +8739,7 @@ return { [1]="base_ward_cost_+" } }, - [361]={ + [358]={ [1]={ [1]={ limit={ @@ -8833,7 +8755,7 @@ return { [1]="bleed_chance_%_vs_full_life_enemy" } }, - [362]={ + [359]={ [1]={ [1]={ limit={ @@ -8862,7 +8784,7 @@ return { [1]="bleed_chance_+%_vs_full_life_enemy" } }, - [363]={ + [360]={ [1]={ [1]={ limit={ @@ -8939,7 +8861,7 @@ return { [3]="cannot_cause_bleeding" } }, - [364]={ + [361]={ [1]={ [1]={ limit={ @@ -8968,7 +8890,7 @@ return { [1]="bleeding_monsters_attack_speed_+%" } }, - [365]={ + [362]={ [1]={ [1]={ limit={ @@ -8997,7 +8919,7 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [366]={ + [363]={ [1]={ [1]={ limit={ @@ -9026,7 +8948,7 @@ return { [1]="blind_effect_+%" } }, - [367]={ + [364]={ [1]={ [1]={ limit={ @@ -9055,7 +8977,7 @@ return { [1]="blood_magic_skill_life_cost_+%_final" } }, - [368]={ + [365]={ [1]={ [1]={ limit={ @@ -9071,7 +8993,7 @@ return { [1]="blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life" } }, - [369]={ + [366]={ [1]={ [1]={ limit={ @@ -9096,7 +9018,7 @@ return { [1]="break_armour_equal_to_%_of_dexterity_vs_parried_enemies" } }, - [370]={ + [367]={ [1]={ [1]={ limit={ @@ -9125,7 +9047,7 @@ return { [1]="burn_damage_+%" } }, - [371]={ + [368]={ [1]={ [1]={ limit={ @@ -9141,7 +9063,7 @@ return { [1]="can_only_damage_low_life_enemies" } }, - [372]={ + [369]={ [1]={ [1]={ limit={ @@ -9157,7 +9079,7 @@ return { [1]="cannot_break_armour" } }, - [373]={ + [370]={ [1]={ [1]={ limit={ @@ -9173,7 +9095,7 @@ return { [1]="cannot_cause_stun_but_allow_stun_buildup" } }, - [374]={ + [371]={ [1]={ [1]={ limit={ @@ -9189,7 +9111,7 @@ return { [1]="cannot_consume_impale" } }, - [375]={ + [372]={ [1]={ [1]={ limit={ @@ -9205,7 +9127,7 @@ return { [1]="cannot_consume_infusions" } }, - [376]={ + [373]={ [1]={ [1]={ limit={ @@ -9221,7 +9143,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [377]={ + [374]={ [1]={ [1]={ limit={ @@ -9237,7 +9159,7 @@ return { [1]="cannot_daze" } }, - [378]={ + [375]={ [1]={ [1]={ limit={ @@ -9253,7 +9175,7 @@ return { [1]="cannot_inflict_blind" } }, - [379]={ + [376]={ [1]={ [1]={ limit={ @@ -9269,7 +9191,7 @@ return { [1]="cannot_inflict_maim" } }, - [380]={ + [377]={ [1]={ [1]={ limit={ @@ -9285,7 +9207,7 @@ return { [1]="cannot_kill_enemies_with_hits" } }, - [381]={ + [378]={ [1]={ [1]={ limit={ @@ -9301,7 +9223,7 @@ return { [1]="cannot_miss_against_full_life_enemies" } }, - [382]={ + [379]={ [1]={ [1]={ limit={ @@ -9317,7 +9239,7 @@ return { [1]="cannot_pin" } }, - [383]={ + [380]={ [1]={ [1]={ limit={ @@ -9355,7 +9277,7 @@ return { [2]="cascadeable_offering_support_offering_casted_spell_damage_+%_final" } }, - [384]={ + [381]={ [1]={ [1]={ limit={ @@ -9384,7 +9306,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds" } }, - [385]={ + [382]={ [1]={ [1]={ limit={ @@ -9413,7 +9335,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [386]={ + [383]={ [1]={ [1]={ limit={ @@ -9429,7 +9351,7 @@ return { [1]="cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value" } }, - [387]={ + [384]={ [1]={ [1]={ limit={ @@ -9458,7 +9380,7 @@ return { [1]="cast_when_damage_taken_trigger_threshold_+%" } }, - [388]={ + [385]={ [1]={ [1]={ limit={ @@ -9487,7 +9409,7 @@ return { [1]="chaining_range_+%" } }, - [389]={ + [386]={ [1]={ [1]={ limit={ @@ -9503,7 +9425,7 @@ return { [1]="chance_%_to_gain_power_charges_per_combo_spent" } }, - [390]={ + [387]={ [1]={ [1]={ limit={ @@ -9519,7 +9441,7 @@ return { [1]="chance_for_coin_shower_on_kill_%" } }, - [391]={ + [388]={ [1]={ [1]={ limit={ @@ -9535,7 +9457,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [392]={ + [389]={ [1]={ [1]={ limit={ @@ -9560,7 +9482,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [393]={ + [390]={ [1]={ [1]={ limit={ @@ -9576,7 +9498,7 @@ return { [1]="chance_%_to_create_additional_remnant" } }, - [394]={ + [391]={ [1]={ [1]={ limit={ @@ -9601,7 +9523,7 @@ return { [1]="chance_%_to_double_effect_of_removing_charges" } }, - [395]={ + [392]={ [1]={ [1]={ limit={ @@ -9626,7 +9548,7 @@ return { [1]="chance_%_to_gain_abyssal_modifier_on_minion_death" } }, - [396]={ + [393]={ [1]={ [1]={ limit={ @@ -9651,7 +9573,7 @@ return { [1]="gain_archon_fire_when_you_ignite_enemy_chance_%" } }, - [397]={ + [394]={ [1]={ [1]={ limit={ @@ -9680,7 +9602,7 @@ return { [1]="chance_to_aftershock_+%_per_250_ms_attack_time" } }, - [398]={ + [395]={ [1]={ [1]={ limit={ @@ -9696,7 +9618,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [399]={ + [396]={ [1]={ [1]={ limit={ @@ -9712,7 +9634,7 @@ return { [1]="chance_to_chain_from_shocked_enemy_%" } }, - [400]={ + [397]={ [1]={ [1]={ limit={ @@ -9728,7 +9650,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [401]={ + [398]={ [1]={ [1]={ limit={ @@ -9744,7 +9666,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [402]={ + [399]={ [1]={ [1]={ limit={ @@ -9769,7 +9691,7 @@ return { [1]="chance_to_fork_from_frozen_enemy_%" } }, - [403]={ + [400]={ [1]={ [1]={ limit={ @@ -9794,7 +9716,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [404]={ + [401]={ [1]={ [1]={ limit={ @@ -9819,7 +9741,7 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [405]={ + [402]={ [1]={ [1]={ limit={ @@ -9844,7 +9766,7 @@ return { [1]="chance_to_gain_1_more_random_charge_%" } }, - [406]={ + [403]={ [1]={ [1]={ limit={ @@ -9869,7 +9791,7 @@ return { [1]="chance_to_gain_endurance_charge_on_armour_break_%" } }, - [407]={ + [404]={ [1]={ [1]={ limit={ @@ -9894,7 +9816,7 @@ return { [1]="chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%" } }, - [408]={ + [405]={ [1]={ [1]={ limit={ @@ -9919,7 +9841,7 @@ return { [1]="chance_to_gain_endurance_charge_on_perfect_timing_hit_%" } }, - [409]={ + [406]={ [1]={ [1]={ limit={ @@ -9944,7 +9866,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [410]={ + [407]={ [1]={ [1]={ limit={ @@ -9960,7 +9882,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [411]={ + [408]={ [1]={ [1]={ limit={ @@ -9976,7 +9898,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [412]={ + [409]={ [1]={ [1]={ limit={ @@ -10001,7 +9923,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [413]={ + [410]={ [1]={ [1]={ limit={ @@ -10026,7 +9948,7 @@ return { [1]="chance_to_load_a_bolt_on_killing_an_enemy_%" } }, - [414]={ + [411]={ [1]={ [1]={ limit={ @@ -10051,7 +9973,7 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [415]={ + [412]={ [1]={ [1]={ limit={ @@ -10067,7 +9989,7 @@ return { [1]="chance_to_not_consume_glory_%" } }, - [416]={ + [413]={ [1]={ [1]={ limit={ @@ -10092,7 +10014,7 @@ return { [1]="chance_to_pierce_ignited_enemy_%" } }, - [417]={ + [414]={ [1]={ [1]={ limit={ @@ -10108,7 +10030,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [418]={ + [415]={ [1]={ [1]={ limit={ @@ -10133,7 +10055,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [419]={ + [416]={ [1]={ [1]={ limit={ @@ -10158,7 +10080,7 @@ return { [1]="chance_to_trigger_fiery_death_on_ignited_enemy_death_%" } }, - [420]={ + [417]={ [1]={ [1]={ limit={ @@ -10174,7 +10096,7 @@ return { [1]="supported_skill_triggers_living_lightning_on_dealing_lightning_damage" } }, - [421]={ + [418]={ [1]={ [1]={ limit={ @@ -10199,7 +10121,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [422]={ + [419]={ [1]={ [1]={ limit={ @@ -10228,7 +10150,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [423]={ + [420]={ [1]={ [1]={ limit={ @@ -10244,7 +10166,7 @@ return { [1]="chaos_damage_%_dealt_as_armour_break" } }, - [424]={ + [421]={ [1]={ [1]={ limit={ @@ -10260,7 +10182,7 @@ return { [1]="chaos_damage_can_freeze" } }, - [425]={ + [422]={ [1]={ [1]={ limit={ @@ -10289,7 +10211,7 @@ return { [1]="chaos_damage_+%" } }, - [426]={ + [423]={ [1]={ [1]={ limit={ @@ -10305,7 +10227,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [427]={ + [424]={ [1]={ [1]={ limit={ @@ -10334,7 +10256,7 @@ return { [1]="chilled_ground_applies_%_freeze_multiplier_taken" } }, - [428]={ + [425]={ [1]={ [1]={ [1]={ @@ -10354,7 +10276,7 @@ return { [1]="chilling_ice_create_chilled_ground_on_freeze_base_duration_ms" } }, - [429]={ + [426]={ [1]={ [1]={ limit={ @@ -10383,7 +10305,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [430]={ + [427]={ [1]={ [1]={ limit={ @@ -10399,7 +10321,7 @@ return { [1]="cold_damage_can_impale" } }, - [431]={ + [428]={ [1]={ [1]={ limit={ @@ -10428,7 +10350,7 @@ return { [1]="cold_damage_+%" } }, - [432]={ + [429]={ [1]={ [1]={ limit={ @@ -10457,7 +10379,7 @@ return { [1]="combat_rush_effect_+%" } }, - [433]={ + [430]={ [1]={ [1]={ limit={ @@ -10486,7 +10408,7 @@ return { [1]="combo_falloff_speed_+%" } }, - [434]={ + [431]={ [1]={ [1]={ limit={ @@ -10502,7 +10424,7 @@ return { [1]="companions_are_gigantic" } }, - [435]={ + [432]={ [1]={ [1]={ limit={ @@ -10518,7 +10440,7 @@ return { [1]="companion_evasion_rating_+_per_10_summoner_evasion_rating" } }, - [436]={ + [433]={ [1]={ [1]={ limit={ @@ -10534,7 +10456,7 @@ return { [1]="companion_deflection_rating_+_per_10_summoner_deflection_rating" } }, - [437]={ + [434]={ [1]={ [1]={ limit={ @@ -10550,7 +10472,7 @@ return { [1]="companion_takes_%_damage_before_you_from_support" } }, - [438]={ + [435]={ [1]={ [1]={ [1]={ @@ -10626,7 +10548,7 @@ return { [2]="conditional_skill_additional_usages_duration_ms" } }, - [439]={ + [436]={ [1]={ [1]={ limit={ @@ -10642,7 +10564,7 @@ return { [1]="consume_armour_break_to_trigger_battershout_explosion" } }, - [440]={ + [437]={ [1]={ [1]={ limit={ @@ -10667,7 +10589,7 @@ return { [1]="consume_bleed_to_create_X_haemocrystals" } }, - [441]={ + [438]={ [1]={ [1]={ limit={ @@ -10683,7 +10605,7 @@ return { [1]="consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge" } }, - [442]={ + [439]={ [1]={ [1]={ limit={ @@ -10699,7 +10621,7 @@ return { [1]="consume_enemy_daze_to_always_hit" } }, - [443]={ + [440]={ [1]={ [1]={ limit={ @@ -10715,7 +10637,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [444]={ + [441]={ [1]={ [1]={ limit={ @@ -10731,7 +10653,7 @@ return { [1]="consume_enemy_freeze_to_trigger_morrigan_ward" } }, - [445]={ + [442]={ [1]={ [1]={ limit={ @@ -10747,7 +10669,7 @@ return { [1]="consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge" } }, - [446]={ + [443]={ [1]={ [1]={ limit={ @@ -10763,7 +10685,7 @@ return { [1]="consume_ignite_on_hit" } }, - [447]={ + [444]={ [1]={ [1]={ limit={ @@ -10788,7 +10710,7 @@ return { [1]="consume_maim_on_hit_to_break_%_armour" } }, - [448]={ + [445]={ [1]={ [1]={ limit={ @@ -10813,7 +10735,7 @@ return { [1]="consume_parry_debuff_on_hit_to_gain_X_frenzy_charges" } }, - [449]={ + [446]={ [1]={ [1]={ limit={ @@ -10838,7 +10760,7 @@ return { [1]="cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence" } }, - [450]={ + [447]={ [1]={ [1]={ limit={ @@ -10863,7 +10785,7 @@ return { [1]="create_X_briar_thorns_on_slam" } }, - [451]={ + [448]={ [1]={ [1]={ [1]={ @@ -10914,7 +10836,7 @@ return { [3]="rip_support_buff_base_duration" } }, - [452]={ + [449]={ [1]={ [1]={ limit={ @@ -10930,7 +10852,7 @@ return { [1]="create_mini_bell_on_expending_combo_per_X_combo_expended" } }, - [453]={ + [450]={ [1]={ [1]={ limit={ @@ -10955,7 +10877,7 @@ return { [1]="create_verisium_remmant_on_kill_enemy_%" } }, - [454]={ + [451]={ [1]={ [1]={ limit={ @@ -10984,7 +10906,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [455]={ + [452]={ [1]={ [1]={ limit={ @@ -11000,7 +10922,7 @@ return { [1]="critical_strike_chance_+%_per_5_rage" } }, - [456]={ + [453]={ [1]={ [1]={ limit={ @@ -11029,7 +10951,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [457]={ + [454]={ [1]={ [1]={ limit={ @@ -11058,7 +10980,7 @@ return { [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [458]={ + [455]={ [1]={ [1]={ limit={ @@ -11074,7 +10996,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo" } }, - [459]={ + [456]={ [1]={ [1]={ limit={ @@ -11099,7 +11021,7 @@ return { [1]="crossbow_load_x_bolts_on_dodge" } }, - [460]={ + [457]={ [1]={ [1]={ limit={ @@ -11115,7 +11037,7 @@ return { [1]="crossbow_reload_on_heavy_stun" } }, - [461]={ + [458]={ [1]={ [1]={ limit={ @@ -11144,7 +11066,7 @@ return { [1]="cruelty_effect_+%" } }, - [462]={ + [459]={ [1]={ [1]={ limit={ @@ -11169,7 +11091,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [463]={ + [460]={ [1]={ [1]={ limit={ @@ -11185,7 +11107,7 @@ return { [1]="crushing_blow_vs_ignited_and_fully_armour_broken" } }, - [464]={ + [461]={ [1]={ [1]={ limit={ @@ -11201,7 +11123,7 @@ return { [1]="cull_frozen_enemies_on_hit" } }, - [465]={ + [462]={ [1]={ [1]={ limit={ @@ -11217,7 +11139,7 @@ return { [1]="curse_apply_as_curse_zone" } }, - [466]={ + [463]={ [1]={ [1]={ limit={ @@ -11246,7 +11168,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [467]={ + [464]={ [1]={ [1]={ limit={ @@ -11262,7 +11184,7 @@ return { [1]="curse_ignores_curse_limit" } }, - [468]={ + [465]={ [1]={ [1]={ limit={ @@ -11278,7 +11200,7 @@ return { [1]="curse_triggers_decaying_hex" } }, - [469]={ + [466]={ [1]={ [1]={ limit={ @@ -11294,7 +11216,7 @@ return { [1]="curse_zones_are_hazards" } }, - [470]={ + [467]={ [1]={ [1]={ limit={ @@ -11310,7 +11232,7 @@ return { [1]="curses_reflected_to_self" } }, - [471]={ + [468]={ [1]={ [1]={ limit={ @@ -11339,7 +11261,7 @@ return { [1]="damage_+%_final_per_totem_in_radius_from_support_greatwood" } }, - [472]={ + [469]={ [1]={ [1]={ limit={ @@ -11368,7 +11290,7 @@ return { [1]="damage_over_time_+%" } }, - [473]={ + [470]={ [1]={ [1]={ limit={ @@ -11397,7 +11319,7 @@ return { [1]="damage_+%" } }, - [474]={ + [471]={ [1]={ [1]={ limit={ @@ -11426,7 +11348,7 @@ return { [1]="damage_+%_for_non_minions" } }, - [475]={ + [472]={ [1]={ [1]={ limit={ @@ -11455,7 +11377,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [476]={ + [473]={ [1]={ [1]={ limit={ @@ -11484,7 +11406,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [477]={ + [474]={ [1]={ [1]={ limit={ @@ -11513,7 +11435,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [478]={ + [475]={ [1]={ [1]={ limit={ @@ -11542,7 +11464,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [479]={ + [476]={ [1]={ [1]={ limit={ @@ -11571,7 +11493,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [480]={ + [477]={ [1]={ [1]={ limit={ @@ -11600,7 +11522,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [481]={ + [478]={ [1]={ [1]={ limit={ @@ -11629,7 +11551,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [482]={ + [479]={ [1]={ [1]={ limit={ @@ -11658,7 +11580,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [483]={ + [480]={ [1]={ [1]={ limit={ @@ -11687,7 +11609,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [484]={ + [481]={ [1]={ [1]={ limit={ @@ -11716,7 +11638,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [485]={ + [482]={ [1]={ [1]={ limit={ @@ -11745,7 +11667,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [486]={ + [483]={ [1]={ [1]={ limit={ @@ -11774,7 +11696,7 @@ return { [1]="damage_+%_while_an_ailment_on_you" } }, - [487]={ + [484]={ [1]={ [1]={ limit={ @@ -11803,7 +11725,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [488]={ + [485]={ [1]={ [1]={ limit={ @@ -11832,7 +11754,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [489]={ + [486]={ [1]={ [1]={ limit={ @@ -11848,7 +11770,7 @@ return { [1]="damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time" } }, - [490]={ + [487]={ [1]={ [1]={ limit={ @@ -11864,7 +11786,7 @@ return { [1]="damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time" } }, - [491]={ + [488]={ [1]={ [1]={ limit={ @@ -11893,7 +11815,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [492]={ + [489]={ [1]={ [1]={ limit={ @@ -11909,7 +11831,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [493]={ + [490]={ [1]={ [1]={ limit={ @@ -11925,7 +11847,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [494]={ + [491]={ [1]={ [1]={ limit={ @@ -11941,7 +11863,7 @@ return { [1]="dangerous_resolve_attack_damage_+1%_final_per_X_armour" } }, - [495]={ + [492]={ [1]={ [1]={ [1]={ @@ -11974,7 +11896,7 @@ return { [1]="dangerous_resolve_explosion_cooldown_ms" } }, - [496]={ + [493]={ [1]={ [1]={ [1]={ @@ -12007,7 +11929,7 @@ return { [1]="dangerous_resolve_stack_duration_ms" } }, - [497]={ + [494]={ [1]={ [1]={ limit={ @@ -12023,7 +11945,7 @@ return { [1]="daze_on_hit_vs_enemies_at_full_life" } }, - [498]={ + [495]={ [1]={ [1]={ [1]={ @@ -12056,7 +11978,7 @@ return { [1]="daze_self_on_critical_hit_for_X_ms" } }, - [499]={ + [496]={ [1]={ [1]={ limit={ @@ -12072,7 +11994,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [500]={ + [497]={ [1]={ [1]={ limit={ @@ -12088,7 +12010,7 @@ return { [1]="deal_no_elemental_damage" } }, - [501]={ + [498]={ [1]={ [1]={ limit={ @@ -12113,7 +12035,7 @@ return { [1]="deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger" } }, - [502]={ + [499]={ [1]={ [1]={ limit={ @@ -12138,7 +12060,7 @@ return { [1]="deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger" } }, - [503]={ + [500]={ [1]={ [1]={ limit={ @@ -12167,7 +12089,7 @@ return { [1]="deathmark_minion_damage_+%_final" } }, - [504]={ + [501]={ [1]={ [1]={ limit={ @@ -12196,7 +12118,7 @@ return { [1]="difficulty_of_meeting_conditional_requirement_+%" } }, - [505]={ + [502]={ [1]={ [1]={ [1]={ @@ -12216,7 +12138,7 @@ return { [1]="display_base_intensity_loss" } }, - [506]={ + [503]={ [1]={ [1]={ limit={ @@ -12254,7 +12176,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [507]={ + [504]={ [1]={ [1]={ [1]={ @@ -12296,7 +12218,7 @@ return { [2]="max_toads_per_doedre_cursed_ground" } }, - [508]={ + [505]={ [1]={ [1]={ limit={ @@ -12312,7 +12234,7 @@ return { [1]="dot_multiplier_+" } }, - [509]={ + [506]={ [1]={ [1]={ limit={ @@ -12328,7 +12250,7 @@ return { [1]="double_ancestral_boost_effect" } }, - [510]={ + [507]={ [1]={ [1]={ limit={ @@ -12357,7 +12279,7 @@ return { [1]="echoed_spell_area_of_effect_+%" } }, - [511]={ + [508]={ [1]={ [1]={ limit={ @@ -12373,7 +12295,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [512]={ + [509]={ [1]={ [1]={ limit={ @@ -12402,7 +12324,7 @@ return { [1]="elemental_damage_+%" } }, - [513]={ + [510]={ [1]={ [1]={ limit={ @@ -12431,7 +12353,7 @@ return { [1]="elusive_effect_+%" } }, - [514]={ + [511]={ [1]={ [1]={ limit={ @@ -12464,7 +12386,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [515]={ + [512]={ [1]={ [1]={ limit={ @@ -12493,7 +12415,7 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [516]={ + [513]={ [1]={ [1]={ limit={ @@ -12509,7 +12431,7 @@ return { [1]="support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%" } }, - [517]={ + [514]={ [1]={ [1]={ limit={ @@ -12525,7 +12447,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [518]={ + [515]={ [1]={ [1]={ limit={ @@ -12554,7 +12476,7 @@ return { [1]="energy_generated_+%" } }, - [519]={ + [516]={ [1]={ [1]={ limit={ @@ -12570,7 +12492,7 @@ return { [1]="evasion_+%_while_performing_action_per_250_ms_attack_time" } }, - [520]={ + [517]={ [1]={ [1]={ limit={ @@ -12586,7 +12508,7 @@ return { [1]="explode_on_low_life_%_maximum_life_to_deal" } }, - [521]={ + [518]={ [1]={ [1]={ ["gem_quality"]=true, @@ -12625,7 +12547,7 @@ return { [1]="exposure_effect_+%" } }, - [522]={ + [519]={ [1]={ [1]={ limit={ @@ -12641,7 +12563,7 @@ return { [1]="faster_bleed_%" } }, - [523]={ + [520]={ [1]={ [1]={ limit={ @@ -12670,7 +12592,7 @@ return { [1]="faster_burn_%" } }, - [524]={ + [521]={ [1]={ [1]={ limit={ @@ -12686,7 +12608,7 @@ return { [1]="faster_poison_%" } }, - [525]={ + [522]={ [1]={ [1]={ limit={ @@ -12702,7 +12624,7 @@ return { [1]="faster_poison_%_per_current_rage" } }, - [526]={ + [523]={ [1]={ [1]={ limit={ @@ -12731,7 +12653,7 @@ return { [1]="feeding_frenzy_minion_damage_+%_final" } }, - [527]={ + [524]={ [1]={ [1]={ limit={ @@ -12760,7 +12682,7 @@ return { [1]="feeding_frenzy_minion_damage_taken_+%_final" } }, - [528]={ + [525]={ [1]={ [1]={ limit={ @@ -12776,7 +12698,7 @@ return { [1]="final_strike_attack_damage_%_dealt_as_armour_break" } }, - [529]={ + [526]={ [1]={ [1]={ limit={ @@ -12792,7 +12714,7 @@ return { [1]="final_strike_is_ancestrally_boosted" } }, - [530]={ + [527]={ [1]={ [1]={ limit={ @@ -12821,7 +12743,7 @@ return { [1]="fire_damage_+%" } }, - [531]={ + [528]={ [1]={ [1]={ limit={ @@ -12837,7 +12759,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [532]={ + [529]={ [1]={ [1]={ [1]={ @@ -12857,7 +12779,7 @@ return { [1]="firestorm_drop_burning_ground_duration_ms" } }, - [533]={ + [530]={ [1]={ [1]={ limit={ @@ -12873,7 +12795,7 @@ return { [1]="flame_pillar_support_maximum_pillars_per_skill_use" } }, - [534]={ + [531]={ [1]={ [1]={ limit={ @@ -12902,7 +12824,7 @@ return { [1]="fortify_duration_+%" } }, - [535]={ + [532]={ [1]={ [1]={ limit={ @@ -12918,7 +12840,7 @@ return { [1]="freeze_applies_%_physical_damage_taken_as_armour_break" } }, - [536]={ + [533]={ [1]={ [1]={ limit={ @@ -12934,7 +12856,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [537]={ + [534]={ [1]={ [1]={ limit={ @@ -12963,7 +12885,7 @@ return { [1]="freeze_duration_ms_+" } }, - [538]={ + [535]={ [1]={ [1]={ limit={ @@ -12992,7 +12914,7 @@ return { [1]="freeze_duration_+%" } }, - [539]={ + [536]={ [1]={ [1]={ [1]={ @@ -13012,7 +12934,7 @@ return { [1]="base_freezing_enemy_chills_enemies_in_radius" } }, - [540]={ + [537]={ [1]={ [1]={ limit={ @@ -13028,7 +12950,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [541]={ + [538]={ [1]={ [1]={ limit={ @@ -13057,7 +12979,7 @@ return { [1]="frost_bomb_damage_+%_final_per_100ms_duration" } }, - [542]={ + [539]={ [1]={ [1]={ limit={ @@ -13073,7 +12995,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun" } }, - [543]={ + [540]={ [1]={ [1]={ [1]={ @@ -13093,7 +13015,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_duration_ms_+" } }, - [544]={ + [541]={ [1]={ [1]={ [1]={ @@ -13113,7 +13035,7 @@ return { [1]="fully_broken_armour_duration_ms_removed_on_hit" } }, - [545]={ + [542]={ [1]={ [1]={ limit={ @@ -13129,7 +13051,7 @@ return { [1]="gain_%_of_base_wand_damage_as_added_spell_damage" } }, - [546]={ + [543]={ [1]={ [1]={ limit={ @@ -13145,7 +13067,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [547]={ + [544]={ [1]={ [1]={ [1]={ @@ -13196,7 +13118,7 @@ return { [3]="guard_on_stun_guard_duration_ms" } }, - [548]={ + [545]={ [1]={ [1]={ limit={ @@ -13212,7 +13134,7 @@ return { [1]="gain_X_perfection_on_successful_perfect_timing" } }, - [549]={ + [546]={ [1]={ [1]={ limit={ @@ -13228,7 +13150,7 @@ return { [1]="gain_X_tasalios_perfection_on_perfect_timing" } }, - [550]={ + [547]={ [1]={ [1]={ limit={ @@ -13244,7 +13166,7 @@ return { [1]="gain_X_volatility_on_empowered_skill_use" } }, - [551]={ + [548]={ [1]={ [1]={ limit={ @@ -13269,7 +13191,7 @@ return { [1]="gain_X_wildshard_stacks_on_cast" } }, - [552]={ + [549]={ [1]={ [1]={ [1]={ @@ -13302,7 +13224,7 @@ return { [1]="gain_dangerous_resolve_stack_per_X_ms_channeling" } }, - [553]={ + [550]={ [1]={ [1]={ limit={ @@ -13349,7 +13271,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [554]={ + [551]={ [1]={ [1]={ limit={ @@ -13365,7 +13287,7 @@ return { [1]="gain_energy_shield_cost_equal_to_intelligence" } }, - [555]={ + [552]={ [1]={ [1]={ limit={ @@ -13381,7 +13303,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [556]={ + [553]={ [1]={ [1]={ limit={ @@ -13397,7 +13319,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [557]={ + [554]={ [1]={ [1]={ limit={ @@ -13418,7 +13340,7 @@ return { [2]="consume_%_of_maximum_mana_flask_charges_on_skill_use" } }, - [558]={ + [555]={ [1]={ [1]={ limit={ @@ -13434,7 +13356,7 @@ return { [1]="gain_%_of_damage_as_physical_per_20_life_cost_up_to_40_%" } }, - [559]={ + [556]={ [1]={ [1]={ limit={ @@ -13450,7 +13372,7 @@ return { [1]="gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds" } }, - [560]={ + [557]={ [1]={ [1]={ limit={ @@ -13466,7 +13388,7 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [561]={ + [558]={ [1]={ [1]={ limit={ @@ -13491,7 +13413,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [562]={ + [559]={ [1]={ [1]={ [1]={ @@ -13524,7 +13446,7 @@ return { [1]="gain_unholy_might_for_X_ms_on_command" } }, - [563]={ + [560]={ [1]={ [1]={ [1]={ @@ -13544,7 +13466,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [564]={ + [561]={ [1]={ [1]={ limit={ @@ -13560,7 +13482,7 @@ return { [1]="gain_x%_of_maximum_rage_on_melee_hit" } }, - [565]={ + [562]={ [1]={ [1]={ limit={ @@ -13585,7 +13507,7 @@ return { [1]="gain_x_endurance_charges_on_heavy_stunning_unique_enemy" } }, - [566]={ + [563]={ [1]={ [1]={ limit={ @@ -13601,7 +13523,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [567]={ + [564]={ [1]={ [1]={ limit={ @@ -13617,7 +13539,7 @@ return { [1]="gem_display_quality_has_no_effect" } }, - [568]={ + [565]={ [1]={ [1]={ limit={ @@ -13633,7 +13555,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [569]={ + [566]={ [1]={ [1]={ limit={ @@ -13649,7 +13571,7 @@ return { [1]="global_knockback" } }, - [570]={ + [567]={ [1]={ [1]={ limit={ @@ -13670,7 +13592,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [571]={ + [568]={ [1]={ [1]={ limit={ @@ -13691,7 +13613,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [572]={ + [569]={ [1]={ [1]={ limit={ @@ -13712,7 +13634,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [573]={ + [570]={ [1]={ [1]={ limit={ @@ -13733,7 +13655,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [574]={ + [571]={ [1]={ [1]={ limit={ @@ -13754,7 +13676,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [575]={ + [572]={ [1]={ [1]={ limit={ @@ -13783,7 +13705,7 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [576]={ + [573]={ [1]={ [1]={ limit={ @@ -13799,7 +13721,7 @@ return { [1]="grenade_only_detonate_from_detonators" } }, - [577]={ + [574]={ [1]={ [1]={ limit={ @@ -13824,7 +13746,7 @@ return { [1]="grenade_skill_%_chance_to_explode_twice" } }, - [578]={ + [575]={ [1]={ [1]={ limit={ @@ -13853,7 +13775,7 @@ return { [1]="grenade_skill_cooldown_speed_+%" } }, - [579]={ + [576]={ [1]={ [1]={ limit={ @@ -13869,7 +13791,7 @@ return { [1]="grenade_skill_does_not_bounce_off_ground" } }, - [580]={ + [577]={ [1]={ [1]={ limit={ @@ -13898,7 +13820,7 @@ return { [1]="ground_effects_apply_cooldown_speed_+%_final" } }, - [581]={ + [578]={ [1]={ [1]={ limit={ @@ -13914,7 +13836,7 @@ return { [1]="ground_effects_cannot_trigger" } }, - [582]={ + [579]={ [1]={ [1]={ limit={ @@ -13939,7 +13861,7 @@ return { [1]="grounding_shocks_chance_%_to_create_orb_on_shocking_enemy" } }, - [583]={ + [580]={ [1]={ [1]={ limit={ @@ -13964,7 +13886,7 @@ return { [1]="haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed" } }, - [584]={ + [581]={ [1]={ [1]={ limit={ @@ -13989,7 +13911,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [585]={ + [582]={ [1]={ [1]={ limit={ @@ -14005,7 +13927,7 @@ return { [1]="hazards_trigger_at_end_of_duration_instead" } }, - [586]={ + [583]={ [1]={ [1]={ limit={ @@ -14034,7 +13956,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [587]={ + [584]={ [1]={ [1]={ limit={ @@ -14063,7 +13985,7 @@ return { [1]="hex_transfer_on_death_range_+%" } }, - [588]={ + [585]={ [1]={ [1]={ limit={ @@ -14092,7 +14014,7 @@ return { [1]="hit_damage_+%" } }, - [589]={ + [586]={ [1]={ [1]={ limit={ @@ -14108,7 +14030,7 @@ return { [1]="hits_ignore_enemy_fire_resistance" } }, - [590]={ + [587]={ [1]={ [1]={ limit={ @@ -14124,7 +14046,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [591]={ + [588]={ [1]={ [1]={ limit={ @@ -14140,7 +14062,7 @@ return { [1]="ice_crystal_explosion_cold_damage_can_impale" } }, - [592]={ + [589]={ [1]={ [1]={ limit={ @@ -14156,7 +14078,7 @@ return { [1]="ice_crystal_explosion_impale_chance_%" } }, - [593]={ + [590]={ [1]={ [1]={ limit={ @@ -14185,7 +14107,7 @@ return { [1]="ignite_duration_+%" } }, - [594]={ + [591]={ [1]={ [1]={ limit={ @@ -14214,7 +14136,7 @@ return { [1]="ignite_effect_+%_final_against_frozen_enemies" } }, - [595]={ + [592]={ [1]={ [1]={ limit={ @@ -14230,7 +14152,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [596]={ + [593]={ [1]={ [1]={ limit={ @@ -14259,7 +14181,7 @@ return { [1]="impale_magnitude_+%" } }, - [597]={ + [594]={ [1]={ [1]={ limit={ @@ -14284,7 +14206,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [598]={ + [595]={ [1]={ [1]={ limit={ @@ -14300,7 +14222,7 @@ return { [1]="impale_support_physical_damage_+%_final" } }, - [599]={ + [596]={ [1]={ [1]={ limit={ @@ -14329,7 +14251,7 @@ return { [1]="inc_aoe_plus_more_area_damage_+%_final" } }, - [600]={ + [597]={ [1]={ [1]={ [1]={ @@ -14362,7 +14284,7 @@ return { [1]="inflict_exposure_for_x_ms_on_cold_crit" } }, - [601]={ + [598]={ [1]={ [1]={ [1]={ @@ -14395,7 +14317,7 @@ return { [1]="inflict_exposure_for_x_ms_on_ignite" } }, - [602]={ + [599]={ [1]={ [1]={ [1]={ @@ -14428,7 +14350,7 @@ return { [1]="inflict_exposure_for_x_ms_on_shock" } }, - [603]={ + [600]={ [1]={ [1]={ limit={ @@ -14457,7 +14379,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [604]={ + [601]={ [1]={ [1]={ limit={ @@ -14482,7 +14404,7 @@ return { [1]="instability_on_critical_%_chance" } }, - [605]={ + [602]={ [1]={ [1]={ limit={ @@ -14498,7 +14420,7 @@ return { [1]="instilling_all_damage_%_to_gain_as_instilling_type" } }, - [606]={ + [603]={ [1]={ [1]={ limit={ @@ -14527,7 +14449,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [607]={ + [604]={ [1]={ [1]={ limit={ @@ -14543,7 +14465,7 @@ return { [1]="intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken" } }, - [608]={ + [605]={ [1]={ [1]={ limit={ @@ -14568,7 +14490,7 @@ return { [1]="iron_grip_damage_modifier_effectiveness_%" } }, - [609]={ + [606]={ [1]={ [1]={ limit={ @@ -14593,7 +14515,7 @@ return { [1]="iron_will_damage_modifier_effectiveness_%" } }, - [610]={ + [607]={ [1]={ [1]={ limit={ @@ -14609,7 +14531,7 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [611]={ + [608]={ [1]={ [1]={ limit={ @@ -14625,7 +14547,7 @@ return { [1]="knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently" } }, - [612]={ + [609]={ [1]={ [1]={ limit={ @@ -14641,7 +14563,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [613]={ + [610]={ [1]={ [1]={ limit={ @@ -14670,7 +14592,7 @@ return { [1]="knockback_distance_+%" } }, - [614]={ + [611]={ [1]={ [1]={ limit={ @@ -14686,7 +14608,7 @@ return { [1]="life_leech_from_source_not_removed_at_full_life" } }, - [615]={ + [612]={ [1]={ [1]={ limit={ @@ -14715,7 +14637,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [616]={ + [613]={ [1]={ [1]={ limit={ @@ -14744,7 +14666,7 @@ return { [1]="lightning_damage_+%" } }, - [617]={ + [614]={ [1]={ [1]={ limit={ @@ -14760,7 +14682,7 @@ return { [1]="lightning_damage_roll_always_min_or_max" } }, - [618]={ + [615]={ [1]={ [1]={ limit={ @@ -14789,7 +14711,7 @@ return { [1]="local_gem_dex_requirement_+%" } }, - [619]={ + [616]={ [1]={ [1]={ limit={ @@ -14818,7 +14740,7 @@ return { [1]="local_gem_int_requirement_+%" } }, - [620]={ + [617]={ [1]={ [1]={ limit={ @@ -14847,7 +14769,7 @@ return { [1]="local_gem_str_requirement_+%" } }, - [621]={ + [618]={ [1]={ [1]={ limit={ @@ -14863,7 +14785,7 @@ return { [1]="lose_%_of_life_es_and_mana_when_skill_is_used" } }, - [622]={ + [619]={ [1]={ [1]={ limit={ @@ -14888,7 +14810,7 @@ return { [1]="lose_%_of_maximum_rage_on_dealing_critical_strike" } }, - [623]={ + [620]={ [1]={ [1]={ limit={ @@ -14904,7 +14826,7 @@ return { [1]="loyalty_%_of_redirected_damage_recouped_as_life_for_owner" } }, - [624]={ + [621]={ [1]={ [1]={ limit={ @@ -14933,7 +14855,7 @@ return { [1]="maim_effect_+%" } }, - [625]={ + [622]={ [1]={ [1]={ limit={ @@ -14958,7 +14880,7 @@ return { [1]="maim_on_hit_%" } }, - [626]={ + [623]={ [1]={ [1]={ limit={ @@ -14974,7 +14896,7 @@ return { [1]="mana_leech_from_elemental_instead" } }, - [627]={ + [624]={ [1]={ [1]={ limit={ @@ -15012,7 +14934,7 @@ return { [2]="manaweave_added_lightning_damage_%_cost_if_payable" } }, - [628]={ + [625]={ [1]={ [1]={ limit={ @@ -15028,7 +14950,7 @@ return { [1]="manaweave_added_cold_damage_%_cost_if_payable" } }, - [629]={ + [626]={ [1]={ [1]={ [1]={ @@ -15048,7 +14970,7 @@ return { [1]="marked_enemies_leech_physical_attack_damage_taken_as_mana_to_you_permyriad" } }, - [630]={ + [627]={ [1]={ [1]={ [1]={ @@ -15068,7 +14990,7 @@ return { [1]="marked_enemies_leech_physical_attack_damage_taken_as_life_to_you_permyriad" } }, - [631]={ + [628]={ [1]={ [1]={ limit={ @@ -15084,7 +15006,7 @@ return { [1]="marked_target_%_physical_damage_taken_as_armour_break" } }, - [632]={ + [629]={ [1]={ [1]={ limit={ @@ -15100,7 +15022,7 @@ return { [1]="marks_avoid_consumption_when_first_activated" } }, - [633]={ + [630]={ [1]={ [1]={ limit={ @@ -15129,7 +15051,7 @@ return { [1]="support_melee_physical_damage_+%_final" } }, - [634]={ + [631]={ [1]={ [1]={ limit={ @@ -15154,7 +15076,7 @@ return { [1]="maximum_curse_zones_allowed" } }, - [635]={ + [632]={ [1]={ [1]={ limit={ @@ -15170,7 +15092,7 @@ return { [1]="maximum_dangerous_resolve_stacks" } }, - [636]={ + [633]={ [1]={ [1]={ limit={ @@ -15186,7 +15108,7 @@ return { [1]="maximum_intensify_stacks" } }, - [637]={ + [634]={ [1]={ [1]={ limit={ @@ -15215,7 +15137,7 @@ return { [1]="melee_damage_+%" } }, - [638]={ + [635]={ [1]={ [1]={ limit={ @@ -15244,7 +15166,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [639]={ + [636]={ [1]={ [1]={ limit={ @@ -15273,7 +15195,7 @@ return { [1]="melee_physical_damage_+%" } }, - [640]={ + [637]={ [1]={ [1]={ [1]={ @@ -15293,7 +15215,7 @@ return { [1]="melee_range_+" } }, - [641]={ + [638]={ [1]={ [1]={ limit={ @@ -15322,7 +15244,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [642]={ + [639]={ [1]={ [1]={ limit={ @@ -15351,7 +15273,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [643]={ + [640]={ [1]={ [1]={ limit={ @@ -15380,7 +15302,7 @@ return { [1]="mine_laying_speed_+%" } }, - [644]={ + [641]={ [1]={ [1]={ limit={ @@ -15409,7 +15331,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [645]={ + [642]={ [1]={ [1]={ limit={ @@ -15430,7 +15352,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [646]={ + [643]={ [1]={ [1]={ limit={ @@ -15446,7 +15368,7 @@ return { [1]="minimum_power_from_quality" } }, - [647]={ + [644]={ [1]={ [1]={ limit={ @@ -15475,7 +15397,7 @@ return { [1]="minion_actor_scale_+%" } }, - [648]={ + [645]={ [1]={ [1]={ limit={ @@ -15491,7 +15413,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [649]={ + [646]={ [1]={ [1]={ limit={ @@ -15520,7 +15442,7 @@ return { [1]="minion_attack_speed_+%" } }, - [650]={ + [647]={ [1]={ [1]={ limit={ @@ -15536,7 +15458,7 @@ return { [1]="minion_block_%" } }, - [651]={ + [648]={ [1]={ [1]={ limit={ @@ -15565,7 +15487,7 @@ return { [1]="minion_burning_damage_+%" } }, - [652]={ + [649]={ [1]={ [1]={ limit={ @@ -15594,7 +15516,7 @@ return { [1]="minion_cast_speed_+%" } }, - [653]={ + [650]={ [1]={ [1]={ [1]={ @@ -15614,7 +15536,7 @@ return { [1]="minion_cathas_brilliance_blind_aura_radius" } }, - [654]={ + [651]={ [1]={ [1]={ limit={ @@ -15630,7 +15552,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [655]={ + [652]={ [1]={ [1]={ limit={ @@ -15646,7 +15568,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [656]={ + [653]={ [1]={ [1]={ limit={ @@ -15675,7 +15597,7 @@ return { [1]="minion_command_skill_cooldown_speed_+%" } }, - [657]={ + [654]={ [1]={ [1]={ limit={ @@ -15704,7 +15626,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [658]={ + [655]={ [1]={ [1]={ limit={ @@ -15733,7 +15655,7 @@ return { [1]="minion_damage_+%" } }, - [659]={ + [656]={ [1]={ [1]={ limit={ @@ -15762,7 +15684,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [660]={ + [657]={ [1]={ [1]={ [1]={ @@ -15795,7 +15717,7 @@ return { [1]="minion_gain_unholy_might_for_X_ms_on_command" } }, - [661]={ + [658]={ [1]={ [1]={ limit={ @@ -15824,7 +15746,7 @@ return { [1]="minion_maximum_life_+%" } }, - [662]={ + [659]={ [1]={ [1]={ limit={ @@ -15840,7 +15762,7 @@ return { [1]="minion_melee_splash" } }, - [663]={ + [660]={ [1]={ [1]={ limit={ @@ -15869,7 +15791,7 @@ return { [1]="minion_movement_speed_+%" } }, - [664]={ + [661]={ [1]={ [1]={ [1]={ @@ -15894,7 +15816,7 @@ return { [2]="minion_on_death_heal_radius" } }, - [665]={ + [662]={ [1]={ [1]={ limit={ @@ -15923,7 +15845,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [666]={ + [663]={ [1]={ [1]={ limit={ @@ -15939,7 +15861,7 @@ return { [1]="minion_recover_%_maximum_life_on_hit" } }, - [667]={ + [664]={ [1]={ [1]={ limit={ @@ -15955,7 +15877,7 @@ return { [1]="minions_are_gigantic" } }, - [668]={ + [665]={ [1]={ [1]={ limit={ @@ -15971,7 +15893,7 @@ return { [1]="minions_cannot_be_damaged" } }, - [669]={ + [666]={ [1]={ [1]={ limit={ @@ -15987,7 +15909,7 @@ return { [1]="minions_deal_no_damage" } }, - [670]={ + [667]={ [1]={ [1]={ limit={ @@ -16012,7 +15934,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [671]={ + [668]={ [1]={ [1]={ limit={ @@ -16028,7 +15950,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [672]={ + [669]={ [1]={ [1]={ limit={ @@ -16057,7 +15979,7 @@ return { [1]="mixed_maladies_bleed_effect_+%_final_vs_poisoned" } }, - [673]={ + [670]={ [1]={ [1]={ limit={ @@ -16086,7 +16008,7 @@ return { [1]="mixed_maladies_poison_effect_+%_final_vs_bleeding" } }, - [674]={ + [671]={ [1]={ [1]={ limit={ @@ -16102,7 +16024,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_terrain_only_chains" } }, - [675]={ + [672]={ [1]={ [1]={ limit={ @@ -16131,7 +16053,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_action" } }, - [676]={ + [673]={ [1]={ [1]={ limit={ @@ -16160,7 +16082,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [677]={ + [674]={ [1]={ [1]={ limit={ @@ -16176,7 +16098,7 @@ return { [1]="never_freeze" } }, - [678]={ + [675]={ [1]={ [1]={ limit={ @@ -16192,7 +16114,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [679]={ + [676]={ [1]={ [1]={ limit={ @@ -16208,7 +16130,7 @@ return { [1]="no_cost" } }, - [680]={ + [677]={ [1]={ [1]={ limit={ @@ -16237,7 +16159,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [681]={ + [678]={ [1]={ [1]={ limit={ @@ -16266,7 +16188,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [682]={ + [679]={ [1]={ [1]={ limit={ @@ -16282,7 +16204,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [683]={ + [680]={ [1]={ [1]={ limit={ @@ -16298,7 +16220,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [684]={ + [681]={ [1]={ [1]={ limit={ @@ -16314,7 +16236,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_attacks" } }, - [685]={ + [682]={ [1]={ [1]={ limit={ @@ -16330,7 +16252,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks" } }, - [686]={ + [683]={ [1]={ [1]={ limit={ @@ -16346,7 +16268,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies" } }, - [687]={ + [684]={ [1]={ [1]={ limit={ @@ -16362,7 +16284,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks" } }, - [688]={ + [685]={ [1]={ [1]={ limit={ @@ -16378,7 +16300,7 @@ return { [1]="non_skill_base_cold_damage_%_to_convert_to_fire" } }, - [689]={ + [686]={ [1]={ [1]={ limit={ @@ -16394,7 +16316,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_chaos" } }, - [690]={ + [687]={ [1]={ [1]={ limit={ @@ -16410,7 +16332,7 @@ return { [1]="non_skill_base_cold_damage_%_to_gain_as_fire" } }, - [691]={ + [688]={ [1]={ [1]={ limit={ @@ -16426,7 +16348,7 @@ return { [1]="non_skill_base_fire_damage_%_to_gain_as_chaos" } }, - [692]={ + [689]={ [1]={ [1]={ limit={ @@ -16442,7 +16364,7 @@ return { [1]="non_skill_base_lightning_damage_%_to_gain_as_chaos" } }, - [693]={ + [690]={ [1]={ [1]={ limit={ @@ -16458,7 +16380,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos" } }, - [694]={ + [691]={ [1]={ [1]={ limit={ @@ -16474,7 +16396,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold" } }, - [695]={ + [692]={ [1]={ [1]={ limit={ @@ -16490,7 +16412,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire" } }, - [696]={ + [693]={ [1]={ [1]={ limit={ @@ -16506,7 +16428,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning" } }, - [697]={ + [694]={ [1]={ [1]={ limit={ @@ -16522,7 +16444,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [698]={ + [695]={ [1]={ [1]={ limit={ @@ -16538,7 +16460,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_chaos" } }, - [699]={ + [696]={ [1]={ [1]={ limit={ @@ -16554,7 +16476,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_fire" } }, - [700]={ + [697]={ [1]={ [1]={ limit={ @@ -16570,7 +16492,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning" } }, - [701]={ + [698]={ [1]={ [1]={ limit={ @@ -16586,7 +16508,7 @@ return { [1]="nova_skills_cast_at_target_location" } }, - [702]={ + [699]={ [1]={ [1]={ limit={ @@ -16611,7 +16533,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [703]={ + [700]={ [1]={ [1]={ limit={ @@ -16636,7 +16558,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [704]={ + [701]={ [1]={ [1]={ limit={ @@ -16652,7 +16574,7 @@ return { [1]="number_of_additional_poison_stacks" } }, - [705]={ + [702]={ [1]={ [1]={ limit={ @@ -16686,7 +16608,7 @@ return { [2]="number_of_additional_projectiles" } }, - [706]={ + [703]={ [1]={ [1]={ limit={ @@ -16711,7 +16633,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [707]={ + [704]={ [1]={ [1]={ limit={ @@ -16736,7 +16658,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [708]={ + [705]={ [1]={ [1]={ limit={ @@ -16761,7 +16683,7 @@ return { [1]="number_of_dual_cascade_aftershocks" } }, - [709]={ + [706]={ [1]={ [1]={ limit={ @@ -16790,7 +16712,7 @@ return { [1]="offering_spells_effect_+%" } }, - [710]={ + [707]={ [1]={ [1]={ limit={ @@ -16819,7 +16741,7 @@ return { [1]="offering_spells_effect_+%_if_consumed_additional_skeleton" } }, - [711]={ + [708]={ [1]={ [1]={ limit={ @@ -16844,7 +16766,7 @@ return { [1]="on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies" } }, - [712]={ + [709]={ [1]={ [1]={ [1]={ @@ -16864,7 +16786,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [713]={ + [710]={ [1]={ [1]={ limit={ @@ -16880,7 +16802,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [714]={ + [711]={ [1]={ [1]={ limit={ @@ -16905,7 +16827,7 @@ return { [1]="palm_skill_number_of_spirit_strikes" } }, - [715]={ + [712]={ [1]={ [1]={ limit={ @@ -16934,7 +16856,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [716]={ + [713]={ [1]={ [1]={ limit={ @@ -16959,7 +16881,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [717]={ + [714]={ [1]={ [1]={ limit={ @@ -16984,7 +16906,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [718]={ + [715]={ [1]={ [1]={ limit={ @@ -17009,7 +16931,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [719]={ + [716]={ [1]={ [1]={ limit={ @@ -17034,7 +16956,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [720]={ + [717]={ [1]={ [1]={ ["gem_quality"]=true, @@ -17073,7 +16995,7 @@ return { [1]="perfect_timing_window_ms_+%" } }, - [721]={ + [718]={ [1]={ [1]={ limit={ @@ -17102,7 +17024,7 @@ return { [1]="physical_damage_+%" } }, - [722]={ + [719]={ [1]={ [1]={ limit={ @@ -17127,7 +17049,7 @@ return { [1]="pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite" } }, - [723]={ + [720]={ [1]={ [1]={ limit={ @@ -17143,7 +17065,7 @@ return { [1]="pin_almost_pinned_enemies" } }, - [724]={ + [721]={ [1]={ [1]={ limit={ @@ -17172,7 +17094,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [725]={ + [722]={ [1]={ [1]={ limit={ @@ -17188,7 +17110,7 @@ return { [1]="plant_skill_damage_+%_final_when_wet" } }, - [726]={ + [723]={ [1]={ [1]={ ["gem_quality"]=true, @@ -17227,7 +17149,7 @@ return { [1]="poison_effect_+%_vs_non_poisoned_enemies" } }, - [727]={ + [724]={ [1]={ [1]={ limit={ @@ -17243,7 +17165,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [728]={ + [725]={ [1]={ [1]={ limit={ @@ -17268,7 +17190,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [729]={ + [726]={ [1]={ [1]={ limit={ @@ -17297,7 +17219,7 @@ return { [1]="projectile_damage_+%" } }, - [730]={ + [727]={ [1]={ [1]={ limit={ @@ -17326,7 +17248,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [731]={ + [728]={ [1]={ [1]={ limit={ @@ -17342,7 +17264,7 @@ return { [1]="projectile_randomly_fork_chain_or_pierce" } }, - [732]={ + [729]={ [1]={ [1]={ limit={ @@ -17358,7 +17280,7 @@ return { [1]="projectile_speed_additive_modifiers_also_apply_to_projectile_damage" } }, - [733]={ + [730]={ [1]={ [1]={ limit={ @@ -17387,7 +17309,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [734]={ + [731]={ [1]={ [1]={ limit={ @@ -17403,7 +17325,7 @@ return { [1]="projectiles_nova" } }, - [735]={ + [732]={ [1]={ [1]={ limit={ @@ -17419,7 +17341,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [736]={ + [733]={ [1]={ [1]={ limit={ @@ -17435,7 +17357,7 @@ return { [1]="projectiles_spiral" } }, - [737]={ + [734]={ [1]={ [1]={ [1]={ @@ -17455,7 +17377,7 @@ return { [1]="pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet" } }, - [738]={ + [735]={ [1]={ [1]={ limit={ @@ -17480,7 +17402,7 @@ return { [1]="rage_skip_consume_chance_%" } }, - [739]={ + [736]={ [1]={ [1]={ limit={ @@ -17496,7 +17418,7 @@ return { [1]="random_projectile_direction" } }, - [740]={ + [737]={ [1]={ [1]={ limit={ @@ -17512,7 +17434,7 @@ return { [1]="randomly_curse_self_on_skill_use" } }, - [741]={ + [738]={ [1]={ [1]={ limit={ @@ -17528,7 +17450,7 @@ return { [1]="recoup_mana_%_on_minion_death" } }, - [742]={ + [739]={ [1]={ [1]={ limit={ @@ -17544,7 +17466,7 @@ return { [1]="recoup_%_of_spell_cost_as_mana_on_cast" } }, - [743]={ + [740]={ [1]={ [1]={ [1]={ @@ -17564,7 +17486,7 @@ return { [1]="recover_%_life_and_mana_per_minute_for_supported_offering_lifetime" } }, - [744]={ + [741]={ [1]={ [1]={ limit={ @@ -17580,7 +17502,7 @@ return { [1]="recover_mana_%_on_minion_death" } }, - [745]={ + [742]={ [1]={ [1]={ [1]={ @@ -17600,7 +17522,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [746]={ + [743]={ [1]={ [1]={ ["gem_quality"]=true, @@ -17626,7 +17548,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [747]={ + [744]={ [1]={ [1]={ limit={ @@ -17642,7 +17564,7 @@ return { [1]="recover_%_maximum_mana_on_cull" } }, - [748]={ + [745]={ [1]={ [1]={ [1]={ @@ -17662,7 +17584,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [749]={ + [746]={ [1]={ [1]={ limit={ @@ -17678,7 +17600,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [750]={ + [747]={ [1]={ [1]={ limit={ @@ -17703,7 +17625,7 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [751]={ + [748]={ [1]={ [1]={ limit={ @@ -17728,7 +17650,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [752]={ + [749]={ [1]={ [1]={ limit={ @@ -17744,7 +17666,7 @@ return { [1]="regenerate_%_life_over_1_second_on_skill_use" } }, - [753]={ + [750]={ [1]={ [1]={ limit={ @@ -17773,7 +17695,7 @@ return { [1]="reload_speed_+%" } }, - [754]={ + [751]={ [1]={ [1]={ [1]={ @@ -17806,7 +17728,7 @@ return { [1]="remnant_delay_X_ms" } }, - [755]={ + [752]={ [1]={ [1]={ limit={ @@ -17835,7 +17757,7 @@ return { [1]="remnant_effect_+%" } }, - [756]={ + [753]={ [1]={ [1]={ limit={ @@ -17864,7 +17786,7 @@ return { [1]="remnant_pickup_range_+%" } }, - [757]={ + [754]={ [1]={ [1]={ limit={ @@ -17880,7 +17802,7 @@ return { [1]="remnants_affect_allies_in_presence_instead" } }, - [758]={ + [755]={ [1]={ [1]={ [1]={ @@ -17913,7 +17835,7 @@ return { [1]="remnants_vanish_after_X_ms" } }, - [759]={ + [756]={ [1]={ [1]={ limit={ @@ -17929,7 +17851,7 @@ return { [1]="remote_mined_by_support" } }, - [760]={ + [757]={ [1]={ [1]={ limit={ @@ -17945,7 +17867,7 @@ return { [1]="remove_ailment_when_applying_relevant_ailment" } }, - [761]={ + [758]={ [1]={ [1]={ limit={ @@ -17961,7 +17883,7 @@ return { [1]="remove_freeze_on_ignite" } }, - [762]={ + [759]={ [1]={ [1]={ limit={ @@ -17977,7 +17899,7 @@ return { [1]="repeat_last_step_of_combo_attack" } }, - [763]={ + [760]={ [1]={ [1]={ limit={ @@ -17993,7 +17915,7 @@ return { [1]="restore_%_life_on_skill_use_per_1000_ms_cooldown" } }, - [764]={ + [761]={ [1]={ [1]={ limit={ @@ -18009,7 +17931,7 @@ return { [1]="return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling" } }, - [765]={ + [762]={ [1]={ [1]={ [1]={ @@ -18029,7 +17951,7 @@ return { [1]="rip_support_life_remnant_creation_radius" } }, - [766]={ + [763]={ [1]={ [1]={ limit={ @@ -18045,7 +17967,7 @@ return { [1]="runic_boosted_attack_damage_%_gained_as_physical" } }, - [767]={ + [764]={ [1]={ [1]={ limit={ @@ -18061,7 +17983,7 @@ return { [1]="sacrifice_%_life_on_skill_use" } }, - [768]={ + [765]={ [1]={ [1]={ limit={ @@ -18077,7 +17999,7 @@ return { [1]="sacrificial_lamb_minion_always_detonatable" } }, - [769]={ + [766]={ [1]={ [1]={ limit={ @@ -18106,7 +18028,7 @@ return { [1]="seal_gain_frequency_+%" } }, - [770]={ + [767]={ [1]={ [1]={ limit={ @@ -18122,7 +18044,7 @@ return { [1]="shapeshift_slam_skill_aftershock_chance_%" } }, - [771]={ + [768]={ [1]={ [1]={ limit={ @@ -18151,7 +18073,7 @@ return { [1]="shock_chance_+%" } }, - [772]={ + [769]={ [1]={ [1]={ limit={ @@ -18180,7 +18102,7 @@ return { [1]="shock_duration_+%" } }, - [773]={ + [770]={ [1]={ [1]={ limit={ @@ -18209,7 +18131,7 @@ return { [1]="shock_effect_+%" } }, - [774]={ + [771]={ [1]={ [1]={ limit={ @@ -18225,7 +18147,7 @@ return { [1]="shocks_reflected_to_self" } }, - [775]={ + [772]={ [1]={ [1]={ limit={ @@ -18254,7 +18176,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [776]={ + [773]={ [1]={ [1]={ limit={ @@ -18270,7 +18192,7 @@ return { [1]="skill_is_blessing_skill" } }, - [777]={ + [774]={ [1]={ [1]={ limit={ @@ -18295,7 +18217,7 @@ return { [1]="skill_additional_projectiles_per_seal_broken" } }, - [778]={ + [775]={ [1]={ [1]={ limit={ @@ -18324,7 +18246,7 @@ return { [1]="skill_area_of_effect_+%_per_broken_seal" } }, - [779]={ + [776]={ [1]={ [1]={ limit={ @@ -18340,7 +18262,7 @@ return { [1]="skill_aura_also_disables_non_blessing_mana_reservation_skills" } }, - [780]={ + [777]={ [1]={ [1]={ limit={ @@ -18369,7 +18291,7 @@ return { [1]="skill_buff_effect_+%" } }, - [781]={ + [778]={ [1]={ [1]={ limit={ @@ -18385,7 +18307,7 @@ return { [1]="skill_can_own_mirage_archers" } }, - [782]={ + [779]={ [1]={ [1]={ [1]={ @@ -18418,7 +18340,7 @@ return { [1]="skill_cannot_be_used_unless_stationary_for_X_ms" } }, - [783]={ + [780]={ [1]={ [1]={ limit={ @@ -18434,7 +18356,7 @@ return { [1]="skill_cannot_generate_endurance_charges" } }, - [784]={ + [781]={ [1]={ [1]={ limit={ @@ -18450,7 +18372,7 @@ return { [1]="skill_cannot_generate_frenzy_charges" } }, - [785]={ + [782]={ [1]={ [1]={ limit={ @@ -18466,7 +18388,7 @@ return { [1]="skill_cannot_generate_power_charges" } }, - [786]={ + [783]={ [1]={ [1]={ limit={ @@ -18482,7 +18404,7 @@ return { [1]="skill_conditional_requires_X_volatility" } }, - [787]={ + [784]={ [1]={ [1]={ [1]={ @@ -18524,7 +18446,7 @@ return { [2]="skill_consume_up_to_X_corpses_on_use" } }, - [788]={ + [785]={ [1]={ [1]={ limit={ @@ -18540,7 +18462,7 @@ return { [1]="skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage" } }, - [789]={ + [786]={ [1]={ [1]={ limit={ @@ -18569,7 +18491,7 @@ return { [1]="skill_consume_frenzy_charge_to_gain_skill_speed_+%_final" } }, - [790]={ + [787]={ [1]={ [1]={ limit={ @@ -18598,7 +18520,7 @@ return { [1]="skill_consume_power_charge_to_gain_critical_strike_chance_+%_final" } }, - [791]={ + [788]={ [1]={ [1]={ limit={ @@ -18614,7 +18536,7 @@ return { [1]="skill_detonate_random_volatility_amount_on_use" } }, - [792]={ + [789]={ [1]={ [1]={ ["gem_quality"]=true, @@ -18667,7 +18589,7 @@ return { [1]="skill_detonation_time_+%" } }, - [793]={ + [790]={ [1]={ [1]={ limit={ @@ -18692,7 +18614,7 @@ return { [1]="skill_echoes_per_seal_broken" } }, - [794]={ + [791]={ [1]={ [1]={ limit={ @@ -18721,7 +18643,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [795]={ + [792]={ [1]={ [1]={ limit={ @@ -18750,7 +18672,7 @@ return { [1]="skill_effect_duration_+%" } }, - [796]={ + [793]={ [1]={ [1]={ limit={ @@ -18779,7 +18701,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [797]={ + [794]={ [1]={ [1]={ limit={ @@ -18808,7 +18730,7 @@ return { [1]="skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%" } }, - [798]={ + [795]={ [1]={ [1]={ limit={ @@ -18833,7 +18755,7 @@ return { [1]="skill_gain_seal_every_x_hits_blocked" } }, - [799]={ + [796]={ [1]={ [1]={ limit={ @@ -18849,7 +18771,7 @@ return { [1]="skill_grenade_detonate_only_at_end_of_duration" } }, - [800]={ + [797]={ [1]={ [1]={ limit={ @@ -18865,7 +18787,7 @@ return { [1]="skill_has_double_limit" } }, - [801]={ + [798]={ [1]={ [1]={ limit={ @@ -18881,7 +18803,7 @@ return { [1]="skill_has_spectral_arrows" } }, - [802]={ + [799]={ [1]={ [1]={ limit={ @@ -18897,7 +18819,7 @@ return { [1]="skill_hyena_cackle_size" } }, - [803]={ + [800]={ [1]={ [1]={ limit={ @@ -18926,7 +18848,7 @@ return { [1]="skill_maximum_energy_+%" } }, - [804]={ + [801]={ [1]={ [1]={ limit={ @@ -18942,7 +18864,7 @@ return { [1]="skill_offering_targets_an_additional_skeleton" } }, - [805]={ + [802]={ [1]={ [1]={ limit={ @@ -18958,7 +18880,7 @@ return { [1]="skill_rapid_fire_repeats_per_broken_seal" } }, - [806]={ + [803]={ [1]={ [1]={ limit={ @@ -18974,7 +18896,7 @@ return { [1]="skill_reserves_X_life_permyriad_per_spirit_instead_of_spirit" } }, - [807]={ + [804]={ [1]={ [1]={ limit={ @@ -19003,7 +18925,7 @@ return { [1]="trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant" } }, - [808]={ + [805]={ [1]={ [1]={ [1]={ @@ -19023,7 +18945,7 @@ return { [1]="skill_unusable_until_moved_X_distance" } }, - [809]={ + [806]={ [1]={ [1]={ limit={ @@ -19052,7 +18974,7 @@ return { [1]="skill_used_by_fractured_mimic_spell_damage_+%_final" } }, - [810]={ + [807]={ [1]={ [1]={ limit={ @@ -19068,7 +18990,7 @@ return { [1]="skill_wolf_pack_size" } }, - [811]={ + [808]={ [1]={ [1]={ limit={ @@ -19084,7 +19006,7 @@ return { [1]="skills_are_usable_without_mana_cost_while_surrounded" } }, - [812]={ + [809]={ [1]={ [1]={ limit={ @@ -19100,7 +19022,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [813]={ + [810]={ [1]={ [1]={ limit={ @@ -19129,7 +19051,7 @@ return { [1]="snipe_triggered_skill_damage_+%_final" } }, - [814]={ + [811]={ [1]={ [1]={ [1]={ @@ -19149,7 +19071,7 @@ return { [1]="solar_orb_base_pulse_frequency_ms" } }, - [815]={ + [812]={ [1]={ [1]={ limit={ @@ -19178,7 +19100,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [816]={ + [813]={ [1]={ [1]={ limit={ @@ -19207,7 +19129,7 @@ return { [1]="spell_damage_+%" } }, - [817]={ + [814]={ [1]={ [1]={ limit={ @@ -19223,7 +19145,7 @@ return { [1]="spell_daze_on_critical_hit_dealing_physical_damage" } }, - [818]={ + [815]={ [1]={ [1]={ limit={ @@ -19239,7 +19161,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [819]={ + [816]={ [1]={ [1]={ limit={ @@ -19255,7 +19177,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack" } }, - [820]={ + [817]={ [1]={ [1]={ [1]={ @@ -19288,7 +19210,7 @@ return { [1]="static_strike_base_zap_frequency_ms" } }, - [821]={ + [818]={ [1]={ [1]={ limit={ @@ -19304,7 +19226,7 @@ return { [1]="static_strike_zap_speed_+%" } }, - [822]={ + [819]={ [1]={ [1]={ [1]={ @@ -19324,7 +19246,7 @@ return { [1]="storm_barrier_grants_life_regeneration_rate_per_minute_%" } }, - [823]={ + [820]={ [1]={ [1]={ limit={ @@ -19340,7 +19262,7 @@ return { [1]="storm_skills_spawn_at_initiator_location" } }, - [824]={ + [821]={ [1]={ [1]={ limit={ @@ -19356,7 +19278,7 @@ return { [1]="stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets" } }, - [825]={ + [822]={ [1]={ [1]={ limit={ @@ -19372,7 +19294,7 @@ return { [1]="strikes_are_ancestrally_boosted" } }, - [826]={ + [823]={ [1]={ [1]={ limit={ @@ -19388,7 +19310,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [827]={ + [824]={ [1]={ [1]={ limit={ @@ -19417,7 +19339,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [828]={ + [825]={ [1]={ [1]={ [1]={ @@ -19447,7 +19369,7 @@ return { [3]="shock_nearby_enemy_base_area_of_effect_radius" } }, - [829]={ + [826]={ [1]={ [1]={ limit={ @@ -19472,7 +19394,7 @@ return { [1]="support_%_chance_to_trigger_deadly_current_on_shock" } }, - [830]={ + [827]={ [1]={ [1]={ limit={ @@ -19488,7 +19410,7 @@ return { [1]="support_%_of_total_cast_time_as_base_skill_seal_gain_interval" } }, - [831]={ + [828]={ [1]={ [1]={ limit={ @@ -19517,7 +19439,7 @@ return { [1]="support_ablation_offering_skill_damage_+%_final" } }, - [832]={ + [829]={ [1]={ [1]={ limit={ @@ -19542,7 +19464,7 @@ return { [1]="support_added_cooldown_count_if_not_instant" } }, - [833]={ + [830]={ [1]={ [1]={ limit={ @@ -19571,7 +19493,7 @@ return { [1]="support_additional_accurary_rating_+%_final" } }, - [834]={ + [831]={ [1]={ [1]={ limit={ @@ -19600,7 +19522,7 @@ return { [1]="support_additional_fissures_damage_+%_final" } }, - [835]={ + [832]={ [1]={ [1]={ limit={ @@ -19629,7 +19551,7 @@ return { [1]="support_additional_fissures_skill_speed_+%_final" } }, - [836]={ + [833]={ [1]={ [1]={ limit={ @@ -19645,7 +19567,7 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [837]={ + [834]={ [1]={ [1]={ limit={ @@ -19674,7 +19596,7 @@ return { [1]="support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds" } }, - [838]={ + [835]={ [1]={ [1]={ limit={ @@ -19703,7 +19625,7 @@ return { [1]="support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds" } }, - [839]={ + [836]={ [1]={ [1]={ limit={ @@ -19741,7 +19663,7 @@ return { [1]="support_advancing_assault_projectile_damage_+%_final" } }, - [840]={ + [837]={ [1]={ [1]={ limit={ @@ -19770,7 +19692,7 @@ return { [1]="support_ailment_cooldown_ailment_chance_+%_final" } }, - [841]={ + [838]={ [1]={ [1]={ limit={ @@ -19799,7 +19721,7 @@ return { [1]="support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment" } }, - [842]={ + [839]={ [1]={ [1]={ limit={ @@ -19828,7 +19750,7 @@ return { [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [843]={ + [840]={ [1]={ [1]={ limit={ @@ -19857,7 +19779,7 @@ return { [1]="support_ammo_conservation_crossbow_reload_speed_+%_final" } }, - [844]={ + [841]={ [1]={ [1]={ limit={ @@ -19886,7 +19808,7 @@ return { [1]="support_ancestral_call_damage_+%_final" } }, - [845]={ + [842]={ [1]={ [1]={ limit={ @@ -19915,7 +19837,7 @@ return { [1]="support_ancestral_warrior_totem_attack_speed_+%_final" } }, - [846]={ + [843]={ [1]={ [1]={ limit={ @@ -19944,7 +19866,7 @@ return { [1]="support_aoe_cooldown_aoe_+%_final" } }, - [847]={ + [844]={ [1]={ [1]={ limit={ @@ -19960,7 +19882,7 @@ return { [1]="support_apply_daze_on_armour_break" } }, - [848]={ + [845]={ [1]={ [1]={ limit={ @@ -19976,7 +19898,7 @@ return { [1]="support_apply_daze_on_warcry" } }, - [849]={ + [846]={ [1]={ [1]={ limit={ @@ -20005,7 +19927,7 @@ return { [1]="support_arcane_archery_damage_+%_final" } }, - [850]={ + [847]={ [1]={ [1]={ limit={ @@ -20034,7 +19956,7 @@ return { [1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge" } }, - [851]={ + [848]={ [1]={ [1]={ limit={ @@ -20063,7 +19985,7 @@ return { [1]="support_area_of_effect_+%_final" } }, - [852]={ + [849]={ [1]={ [1]={ limit={ @@ -20079,7 +20001,7 @@ return { [1]="support_armour_explosion" } }, - [853]={ + [850]={ [1]={ [1]={ limit={ @@ -20108,7 +20030,7 @@ return { [1]="support_arms_length_knockback_distance_+%_final" } }, - [854]={ + [851]={ [1]={ [1]={ limit={ @@ -20137,7 +20059,7 @@ return { [1]="support_astral_projection_aoe_+%_final" } }, - [855]={ + [852]={ [1]={ [1]={ limit={ @@ -20166,7 +20088,7 @@ return { [1]="support_attack_damage_spirit_cost_attack_damage_+%_on_low_life" } }, - [856]={ + [853]={ [1]={ [1]={ limit={ @@ -20195,7 +20117,7 @@ return { [1]="support_atziri_curse_effect_+%_final" } }, - [857]={ + [854]={ [1]={ [1]={ [1]={ @@ -20215,7 +20137,7 @@ return { [1]="support_aura_duration_base_buff_duration" } }, - [858]={ + [855]={ [1]={ [1]={ limit={ @@ -20244,7 +20166,7 @@ return { [1]="support_auto_shotgun_attack_speed_+%_final" } }, - [859]={ + [856]={ [1]={ [1]={ limit={ @@ -20273,7 +20195,7 @@ return { [1]="support_auto_shotgun_damage_+%_final" } }, - [860]={ + [857]={ [1]={ [1]={ limit={ @@ -20302,7 +20224,7 @@ return { [1]="support_auto_shotgun_projectile_count_+%_final" } }, - [861]={ + [858]={ [1]={ [1]={ limit={ @@ -20331,7 +20253,7 @@ return { [1]="support_auto_shotgun_reload_speed_+%_final" } }, - [862]={ + [859]={ [1]={ [1]={ limit={ @@ -20360,7 +20282,7 @@ return { [1]="support_barrage_attack_time_+%_per_projectile_fired" } }, - [863]={ + [860]={ [1]={ [1]={ limit={ @@ -20389,7 +20311,7 @@ return { [1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired" } }, - [864]={ + [861]={ [1]={ [1]={ limit={ @@ -20418,7 +20340,7 @@ return { [1]="support_biting_frost_damage_+%_final_vs_frozen_unique_enemies" } }, - [865]={ + [862]={ [1]={ [1]={ [1]={ @@ -20460,7 +20382,7 @@ return { [2]="support_blazing_crits_base_duration_ms" } }, - [866]={ + [863]={ [1]={ [1]={ [1]={ @@ -20480,7 +20402,7 @@ return { [1]="support_blood_fountain_life_regeneration_rate_per_minute_%" } }, - [867]={ + [864]={ [1]={ [1]={ limit={ @@ -20509,7 +20431,7 @@ return { [1]="support_blood_thirst_damage_+%_final" } }, - [868]={ + [865]={ [1]={ [1]={ limit={ @@ -20534,7 +20456,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [869]={ + [866]={ [1]={ [1]={ limit={ @@ -20550,7 +20472,7 @@ return { [1]="support_bone_shrapnel_physical_damage_equal_to_%_monster_life" } }, - [870]={ + [867]={ [1]={ [1]={ limit={ @@ -20579,7 +20501,7 @@ return { [1]="support_brand_area_of_effect_+%_final" } }, - [871]={ + [868]={ [1]={ [1]={ limit={ @@ -20608,7 +20530,7 @@ return { [1]="support_brand_damage_+%_final" } }, - [872]={ + [869]={ [1]={ [1]={ limit={ @@ -20624,7 +20546,7 @@ return { [1]="support_break_%_armour_on_freeze_or_electrocute" } }, - [873]={ + [870]={ [1]={ [1]={ limit={ @@ -20653,7 +20575,7 @@ return { [1]="support_brink_damage_+%_final_vs_heavy_stunned_target" } }, - [874]={ + [871]={ [1]={ [1]={ limit={ @@ -20682,7 +20604,7 @@ return { [1]="support_brink_hit_damage_stun_multiplier_+%_final" } }, - [875]={ + [872]={ [1]={ [1]={ limit={ @@ -20711,7 +20633,7 @@ return { [1]="support_burning_damage_+%_final" } }, - [876]={ + [873]={ [1]={ [1]={ limit={ @@ -20727,7 +20649,7 @@ return { [1]="support_burning_runes_base_fire_damage_equal_to_%_maximum_mana" } }, - [877]={ + [874]={ [1]={ [1]={ limit={ @@ -20748,7 +20670,7 @@ return { [2]="support_bursting_plague_max_value_%_of_max_life" } }, - [878]={ + [875]={ [1]={ [1]={ limit={ @@ -20764,7 +20686,7 @@ return { [1]="support_called_shots_additional_projectiles_when_matching_indicated_direction" } }, - [879]={ + [876]={ [1]={ [1]={ limit={ @@ -20793,7 +20715,7 @@ return { [1]="support_called_shots_projectile_damage_+%_final_when_matching_direction" } }, - [880]={ + [877]={ [1]={ [1]={ limit={ @@ -20809,7 +20731,7 @@ return { [1]="support_cannibalism_recover_%_maximum_life_on_kill" } }, - [881]={ + [878]={ [1]={ [1]={ limit={ @@ -20838,7 +20760,7 @@ return { [1]="support_cast_on_crit_quality_attack_damage_+%_final" } }, - [882]={ + [879]={ [1]={ [1]={ limit={ @@ -20867,7 +20789,7 @@ return { [1]="support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%" } }, - [883]={ + [880]={ [1]={ [1]={ limit={ @@ -20883,7 +20805,7 @@ return { [1]="support_catalysing_elements_triggers_elemental_discharge" } }, - [884]={ + [881]={ [1]={ [1]={ limit={ @@ -20912,7 +20834,7 @@ return { [1]="support_chance_to_bleed_bleeding_effect_+%_final" } }, - [885]={ + [882]={ [1]={ [1]={ limit={ @@ -20954,7 +20876,7 @@ return { [2]="support_channelling_damage_cap" } }, - [886]={ + [883]={ [1]={ [1]={ limit={ @@ -20983,7 +20905,7 @@ return { [1]="support_chaos_attacks_damage_+%_final" } }, - [887]={ + [884]={ [1]={ [1]={ limit={ @@ -21012,7 +20934,7 @@ return { [1]="support_chaos_damage_+%_final_if_corpse_consumed_on_use" } }, - [888]={ + [885]={ [1]={ [1]={ limit={ @@ -21041,7 +20963,7 @@ return { [1]="support_chaos_damage_+%_final_per_corpse_consumed_on_use" } }, - [889]={ + [886]={ [1]={ [1]={ limit={ @@ -21070,7 +20992,7 @@ return { [1]="support_chaos_support_non_chaos_damage_+%_final" } }, - [890]={ + [887]={ [1]={ [1]={ limit={ @@ -21086,7 +21008,7 @@ return { [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" } }, - [891]={ + [888]={ [1]={ [1]={ limit={ @@ -21115,7 +21037,7 @@ return { [1]="support_chaotic_assassination_skill_effect_duration_+%_final" } }, - [892]={ + [889]={ [1]={ [1]={ limit={ @@ -21131,7 +21053,7 @@ return { [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" } }, - [893]={ + [890]={ [1]={ [1]={ limit={ @@ -21156,7 +21078,7 @@ return { [1]="support_charged_shots_applies_every_X_shots" } }, - [894]={ + [891]={ [1]={ [1]={ limit={ @@ -21172,7 +21094,7 @@ return { [1]="support_charged_shots_%_damage_to_gain_as_lightning" } }, - [895]={ + [892]={ [1]={ [1]={ limit={ @@ -21188,7 +21110,7 @@ return { [1]="support_charged_shots_recover_%_mana_cost_on_use" } }, - [896]={ + [893]={ [1]={ [1]={ limit={ @@ -21217,7 +21139,7 @@ return { [1]="support_charm_charges_gained_+%_final_from_killing_blow" } }, - [897]={ + [894]={ [1]={ [1]={ limit={ @@ -21246,7 +21168,7 @@ return { [1]="support_chilled_ground_effect_duration_+%_final" } }, - [898]={ + [895]={ [1]={ [1]={ limit={ @@ -21275,7 +21197,7 @@ return { [1]="support_clarity_mana_regeneration_rate_+%" } }, - [899]={ + [896]={ [1]={ [1]={ limit={ @@ -21291,7 +21213,7 @@ return { [1]="support_close_combat_attack_damage_+%_final_from_distance" } }, - [900]={ + [897]={ [1]={ [1]={ limit={ @@ -21320,7 +21242,7 @@ return { [1]="support_clustertrap_damage_+%_final" } }, - [901]={ + [898]={ [1]={ [1]={ limit={ @@ -21349,7 +21271,7 @@ return { [1]="support_cold_and_fire_damage_+%_final" } }, - [902]={ + [899]={ [1]={ [1]={ limit={ @@ -21378,7 +21300,7 @@ return { [1]="support_cold_and_lightning_damage_+%_final" } }, - [903]={ + [900]={ [1]={ [1]={ limit={ @@ -21407,7 +21329,7 @@ return { [1]="support_cold_exposure_damage_+%_final" } }, - [904]={ + [901]={ [1]={ [1]={ limit={ @@ -21436,7 +21358,7 @@ return { [1]="support_combo_finisher_damage_+%_final" } }, - [905]={ + [902]={ [1]={ [1]={ limit={ @@ -21465,7 +21387,7 @@ return { [1]="support_combo_finisher_damage_+%_final_per_combo" } }, - [906]={ + [903]={ [1]={ [1]={ limit={ @@ -21481,7 +21403,7 @@ return { [1]="support_combo_finisher_next_use_requires_x_additional_combo" } }, - [907]={ + [904]={ [1]={ [1]={ limit={ @@ -21515,7 +21437,7 @@ return { [2]="support_combo_finisher_max_combo_required" } }, - [908]={ + [905]={ [1]={ [1]={ limit={ @@ -21544,7 +21466,7 @@ return { [1]="support_command_skill_damage_+%_final" } }, - [909]={ + [906]={ [1]={ [1]={ limit={ @@ -21582,7 +21504,7 @@ return { [2]="consume_%_of_maximum_life_flask_charges_on_skill_use" } }, - [910]={ + [907]={ [1]={ [1]={ limit={ @@ -21611,7 +21533,7 @@ return { [1]="support_conduction_chance_to_shock_+%_final" } }, - [911]={ + [908]={ [1]={ [1]={ limit={ @@ -21636,7 +21558,7 @@ return { [1]="support_consume_X_endurance_charges_on_use" } }, - [912]={ + [909]={ [1]={ [1]={ limit={ @@ -21665,7 +21587,7 @@ return { [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" } }, - [913]={ + [910]={ [1]={ [1]={ limit={ @@ -21694,7 +21616,7 @@ return { [1]="support_cooldown_reduction_cooldown_recovery_+%" } }, - [914]={ + [911]={ [1]={ [1]={ limit={ @@ -21710,7 +21632,7 @@ return { [1]="support_corrupting_cry_%_life_cost_per_supported_skill_trigger_or_use_recently_up_to_30%" } }, - [915]={ + [912]={ [1]={ [1]={ limit={ @@ -21739,7 +21661,7 @@ return { [1]="support_corrupting_cry_area_of_effect_+%_final" } }, - [916]={ + [913]={ [1]={ [1]={ limit={ @@ -21755,7 +21677,7 @@ return { [1]="support_corrupting_cry_%_life_lost_per_corrupting_blood_applied" } }, - [917]={ + [914]={ [1]={ [1]={ limit={ @@ -21784,7 +21706,7 @@ return { [1]="support_crazed_minions_minion_damage_+%_final_if_revived_recently" } }, - [918]={ + [915]={ [1]={ [1]={ limit={ @@ -21800,7 +21722,7 @@ return { [1]="support_create_jagged_ground_if_consumed_endurance_charge" } }, - [919]={ + [916]={ [1]={ [1]={ limit={ @@ -21825,7 +21747,7 @@ return { [1]="support_creeping_chill_consume_X_power_charges_to_trigger_on_ice_crystals" } }, - [920]={ + [917]={ [1]={ [1]={ limit={ @@ -21854,7 +21776,7 @@ return { [1]="support_crescendo_non_final_strike_attack_speed_+%_final" } }, - [921]={ + [918]={ [1]={ [1]={ limit={ @@ -21883,7 +21805,7 @@ return { [1]="support_crit_cooldown_crit_chance_+%_final" } }, - [922]={ + [919]={ [1]={ [1]={ limit={ @@ -21912,7 +21834,7 @@ return { [1]="support_critical_damage_critical_strike_chance_+%_final" } }, - [923]={ + [920]={ [1]={ [1]={ limit={ @@ -21941,7 +21863,7 @@ return { [1]="support_critical_damage_hit_damage_+%_final" } }, - [924]={ + [921]={ [1]={ [1]={ [1]={ @@ -21961,7 +21883,7 @@ return { [1]="support_crushing_stuns_crush_on_stun_ms" } }, - [925]={ + [922]={ [1]={ [1]={ [1]={ @@ -21986,7 +21908,7 @@ return { [2]="support_crystalshatter_buff_duration" } }, - [926]={ + [923]={ [1]={ [1]={ limit={ @@ -22002,7 +21924,7 @@ return { [1]="support_culling_strike_vs_rare_or_unique_enemy" } }, - [927]={ + [924]={ [1]={ [1]={ limit={ @@ -22031,7 +21953,7 @@ return { [1]="support_culmination_damage_+%_final_per_combo_stack" } }, - [928]={ + [925]={ [1]={ [1]={ limit={ @@ -22060,7 +21982,7 @@ return { [1]="support_focus_curse_curse_delay_+%_final" } }, - [929]={ + [926]={ [1]={ [1]={ limit={ @@ -22089,7 +22011,7 @@ return { [1]="support_curse_effect_+%_final" } }, - [930]={ + [927]={ [1]={ [1]={ limit={ @@ -22114,7 +22036,7 @@ return { [1]="support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%" } }, - [931]={ + [928]={ [1]={ [1]={ limit={ @@ -22143,7 +22065,7 @@ return { [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" } }, - [932]={ + [929]={ [1]={ [1]={ limit={ @@ -22172,7 +22094,7 @@ return { [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds" } }, - [933]={ + [930]={ [1]={ [1]={ limit={ @@ -22201,7 +22123,7 @@ return { [1]="support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton" } }, - [934]={ + [931]={ [1]={ [1]={ [1]={ @@ -22247,7 +22169,7 @@ return { [1]="support_daze_break_duration_ms" } }, - [935]={ + [932]={ [1]={ [1]={ [1]={ @@ -22293,7 +22215,7 @@ return { [1]="support_dazed_cry_duration_ms" } }, - [936]={ + [933]={ [1]={ [1]={ limit={ @@ -22322,7 +22244,7 @@ return { [1]="support_deadly_poison_hit_damage_+%_final" } }, - [937]={ + [934]={ [1]={ [1]={ limit={ @@ -22351,7 +22273,7 @@ return { [1]="support_deadly_poison_poison_effect_+%_final" } }, - [938]={ + [935]={ [1]={ [1]={ limit={ @@ -22380,7 +22302,7 @@ return { [1]="support_deep_cuts_bleeding_effect_+%_final" } }, - [939]={ + [936]={ [1]={ [1]={ limit={ @@ -22409,7 +22331,7 @@ return { [1]="support_deep_cuts_hit_damage_+%_final" } }, - [940]={ + [937]={ [1]={ [1]={ limit={ @@ -22438,7 +22360,7 @@ return { [1]="support_deliberation_damage_+%_final" } }, - [941]={ + [938]={ [1]={ [1]={ limit={ @@ -22467,7 +22389,7 @@ return { [1]="support_deliberation_movement_speed_penalty_+%_final_while_performing_action" } }, - [942]={ + [939]={ [1]={ [1]={ limit={ @@ -22483,7 +22405,7 @@ return { [1]="support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%" } }, - [943]={ + [940]={ [1]={ [1]={ limit={ @@ -22512,7 +22434,7 @@ return { [1]="support_discount_accuracy_rating_+%_final_if_empowered" } }, - [944]={ + [941]={ [1]={ [1]={ limit={ @@ -22541,7 +22463,7 @@ return { [1]="support_discount_skill_cost_+%_final_if_empowered" } }, - [945]={ + [942]={ [1]={ [1]={ limit={ @@ -22570,7 +22492,7 @@ return { [1]="support_divine_cry_damage_+%_final" } }, - [946]={ + [943]={ [1]={ [1]={ limit={ @@ -22599,7 +22521,7 @@ return { [1]="support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds" } }, - [947]={ + [944]={ [1]={ [1]={ limit={ @@ -22628,7 +22550,7 @@ return { [1]="support_double_barrel_crossbow_reload_speed_-%_final" } }, - [948]={ + [945]={ [1]={ [1]={ limit={ @@ -22653,7 +22575,7 @@ return { [1]="support_double_barrel_number_of_crossbow_bolts_+" } }, - [949]={ + [946]={ [1]={ [1]={ limit={ @@ -22669,7 +22591,7 @@ return { [1]="support_double_number_of_cooldown_uses" } }, - [950]={ + [947]={ [1]={ [1]={ limit={ @@ -22685,7 +22607,7 @@ return { [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" } }, - [951]={ + [948]={ [1]={ [1]={ limit={ @@ -22714,7 +22636,7 @@ return { [1]="support_dual_cascade_aftershocks_attack_speed_+%_final" } }, - [952]={ + [949]={ [1]={ [1]={ limit={ @@ -22743,7 +22665,7 @@ return { [1]="support_echoing_cry_area_of_effect_+%_final" } }, - [953]={ + [950]={ [1]={ [1]={ limit={ @@ -22772,7 +22694,7 @@ return { [1]="support_echoing_cry_damage_+%_final" } }, - [954]={ + [951]={ [1]={ [1]={ [1]={ @@ -22805,7 +22727,7 @@ return { [1]="support_echoing_cry_warcry_monster_power_+%_final" } }, - [955]={ + [952]={ [1]={ [1]={ limit={ @@ -22834,7 +22756,7 @@ return { [1]="support_electrocute_damage_+%_final" } }, - [956]={ + [953]={ [1]={ [1]={ limit={ @@ -22850,7 +22772,7 @@ return { [1]="support_electrocute_lineage_triggers_explosion" } }, - [957]={ + [954]={ [1]={ [1]={ limit={ @@ -22879,7 +22801,7 @@ return { [1]="support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target" } }, - [958]={ + [955]={ [1]={ [1]={ limit={ @@ -22908,7 +22830,7 @@ return { [1]="support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target" } }, - [959]={ + [956]={ [1]={ [1]={ limit={ @@ -22937,7 +22859,7 @@ return { [1]="support_elemental_damage_+%_final_per_different_elemental_skill_used_recently" } }, - [960]={ + [957]={ [1]={ [1]={ limit={ @@ -22953,7 +22875,7 @@ return { [1]="support_empower_X_attacks_with_spark_on_power_charge_gain" } }, - [961]={ + [958]={ [1]={ [1]={ limit={ @@ -22969,7 +22891,7 @@ return { [1]="support_empowered_culling_strike" } }, - [962]={ + [959]={ [1]={ [1]={ limit={ @@ -22998,7 +22920,7 @@ return { [1]="support_empowered_damage_+%_final" } }, - [963]={ + [960]={ [1]={ [1]={ limit={ @@ -23023,7 +22945,7 @@ return { [1]="support_empowers_x_additional_other_skills" } }, - [964]={ + [961]={ [1]={ [1]={ limit={ @@ -23052,7 +22974,7 @@ return { [1]="support_eternal_flame_chance_to_ignite_+%_final" } }, - [965]={ + [962]={ [1]={ [1]={ limit={ @@ -23081,7 +23003,7 @@ return { [1]="support_executioner_damage_+%_final_while_on_low_life" } }, - [966]={ + [963]={ [1]={ [1]={ limit={ @@ -23110,7 +23032,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [967]={ + [964]={ [1]={ [1]={ [1]={ @@ -23130,7 +23052,7 @@ return { [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [968]={ + [965]={ [1]={ [1]={ [1]={ @@ -23150,7 +23072,7 @@ return { [1]="support_executioner_gain_two_rare_monster_mod_on_kill_ms" } }, - [969]={ + [966]={ [1]={ [1]={ limit={ @@ -23166,7 +23088,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [970]={ + [967]={ [1]={ [1]={ limit={ @@ -23182,7 +23104,7 @@ return { [1]="support_explosive_growth_trigger_explosion_on_plant_growth" } }, - [971]={ + [968]={ [1]={ [1]={ limit={ @@ -23198,7 +23120,7 @@ return { [1]="support_fan_the_flames_trigger_explosion_on_hit_vs_ignited_enemies" } }, - [972]={ + [969]={ [1]={ [1]={ limit={ @@ -23214,7 +23136,7 @@ return { [1]="support_far_combat_attack_damage_+%_final_from_distance" } }, - [973]={ + [970]={ [1]={ [1]={ limit={ @@ -23243,7 +23165,7 @@ return { [1]="support_faster_attacks_attack_speed_+%_final" } }, - [974]={ + [971]={ [1]={ [1]={ limit={ @@ -23272,7 +23194,7 @@ return { [1]="support_faster_attacks_damage_+%_final" } }, - [975]={ + [972]={ [1]={ [1]={ limit={ @@ -23301,7 +23223,7 @@ return { [1]="support_faster_casting_cast_speed_+%_final" } }, - [976]={ + [973]={ [1]={ [1]={ limit={ @@ -23330,7 +23252,7 @@ return { [1]="support_faster_casting_damage_+%_final" } }, - [977]={ + [974]={ [1]={ [1]={ limit={ @@ -23359,7 +23281,7 @@ return { [1]="support_faster_projectiles_projectile_speed_+%_final" } }, - [978]={ + [975]={ [1]={ [1]={ limit={ @@ -23388,7 +23310,7 @@ return { [1]="support_fire_and_lightning_damage_+%_final" } }, - [979]={ + [976]={ [1]={ [1]={ limit={ @@ -23417,7 +23339,7 @@ return { [1]="support_fire_exposure_damage_+%_final" } }, - [980]={ + [977]={ [1]={ [1]={ limit={ @@ -23442,7 +23364,7 @@ return { [1]="support_fissure_on_landing_create_X_fissures_on_impact" } }, - [981]={ + [978]={ [1]={ [1]={ limit={ @@ -23471,7 +23393,7 @@ return { [1]="support_focus_curse_curse_delay_+%_final" } }, - [982]={ + [979]={ [1]={ [1]={ limit={ @@ -23500,7 +23422,7 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [983]={ + [980]={ [1]={ [1]={ limit={ @@ -23529,7 +23451,7 @@ return { [1]="support_focused_ballista_totem_damage_+%_final" } }, - [984]={ + [981]={ [1]={ [1]={ limit={ @@ -23558,7 +23480,7 @@ return { [1]="support_fortify_melee_damage_+%_final" } }, - [985]={ + [982]={ [1]={ [1]={ limit={ @@ -23587,7 +23509,7 @@ return { [1]="support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final" } }, - [986]={ + [983]={ [1]={ [1]={ limit={ @@ -23603,7 +23525,7 @@ return { [1]="support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage" } }, - [987]={ + [984]={ [1]={ [1]={ limit={ @@ -23632,7 +23554,7 @@ return { [1]="support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies" } }, - [988]={ + [985]={ [1]={ [1]={ limit={ @@ -23648,7 +23570,7 @@ return { [1]="support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage" } }, - [989]={ + [986]={ [1]={ [1]={ limit={ @@ -23677,7 +23599,7 @@ return { [1]="support_fusillade_skill_speed_+%_final" } }, - [990]={ + [987]={ [1]={ [1]={ limit={ @@ -23706,7 +23628,7 @@ return { [1]="support_gambleshot_projectile_damage_+%_final" } }, - [991]={ + [988]={ [1]={ [1]={ limit={ @@ -23735,7 +23657,7 @@ return { [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [992]={ + [989]={ [1]={ [1]={ [1]={ @@ -23755,7 +23677,7 @@ return { [1]="support_ghost_base_duration" } }, - [993]={ + [990]={ [1]={ [1]={ limit={ @@ -23784,7 +23706,7 @@ return { [1]="support_glacier_ice_crystal_maximum_life_+%_final" } }, - [994]={ + [991]={ [1]={ [1]={ limit={ @@ -23813,7 +23735,7 @@ return { [1]="support_glory_required_+%_final" } }, - [995]={ + [992]={ [1]={ [1]={ limit={ @@ -23829,7 +23751,7 @@ return { [1]="support_grants_X_life_flask_charges_on_using_corpse" } }, - [996]={ + [993]={ [1]={ [1]={ limit={ @@ -23845,7 +23767,7 @@ return { [1]="support_grants_X_mana_flask_charges_on_using_corpse" } }, - [997]={ + [994]={ [1]={ [1]={ limit={ @@ -23874,7 +23796,7 @@ return { [1]="support_greater_projectile_intensity_projectile_damage_+%_final" } }, - [998]={ + [995]={ [1]={ [1]={ [1]={ @@ -23894,7 +23816,7 @@ return { [1]="support_greatwood_life_regeneration_rate_per_minute_%_per_totem_in_radius" } }, - [999]={ + [996]={ [1]={ [1]={ limit={ @@ -23923,7 +23845,7 @@ return { [1]="support_greatwood_maximum_life_+%_final" } }, - [1000]={ + [997]={ [1]={ [1]={ limit={ @@ -23939,7 +23861,7 @@ return { [1]="support_greatwood_maximum_number_of_active_totems_in_radius_for_effects" } }, - [1001]={ + [998]={ [1]={ [1]={ [1]={ @@ -23972,7 +23894,7 @@ return { [1]="support_greatwood_number_of_active_totems_in_base_radius_to_track" } }, - [1002]={ + [999]={ [1]={ [1]={ limit={ @@ -24001,7 +23923,7 @@ return { [1]="support_grenade_ballista_attack_speed_+%_final" } }, - [1003]={ + [1000]={ [1]={ [1]={ limit={ @@ -24030,7 +23952,7 @@ return { [1]="support_grenade_ballista_damage_+%_final" } }, - [1004]={ + [1001]={ [1]={ [1]={ limit={ @@ -24059,7 +23981,7 @@ return { [1]="support_grenade_damage_+%_final" } }, - [1005]={ + [1002]={ [1]={ [1]={ limit={ @@ -24101,7 +24023,7 @@ return { [2]="support_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1006]={ + [1003]={ [1]={ [1]={ limit={ @@ -24117,7 +24039,7 @@ return { [1]="support_haemocrystals_maximum_allowed_crystals" } }, - [1007]={ + [1004]={ [1]={ [1]={ limit={ @@ -24142,7 +24064,7 @@ return { [1]="support_hardy_totems_trigger_splinter_explosion_on_death_chance_%" } }, - [1008]={ + [1005]={ [1]={ [1]={ [1]={ @@ -24218,7 +24140,7 @@ return { [2]="support_hatching_elementals_base_radius" } }, - [1009]={ + [1006]={ [1]={ [1]={ [1]={ @@ -24269,7 +24191,7 @@ return { [3]="support_healing_runes_healing_per_ward_spent_%" } }, - [1010]={ + [1007]={ [1]={ [1]={ limit={ @@ -24298,7 +24220,7 @@ return { [1]="support_heft_maximum_physical_damage_+%_final" } }, - [1011]={ + [1008]={ [1]={ [1]={ limit={ @@ -24327,7 +24249,7 @@ return { [1]="support_herbalism_life_recovery_+%_from_life_flasks" } }, - [1012]={ + [1009]={ [1]={ [1]={ [1]={ @@ -24360,7 +24282,7 @@ return { [1]="support_hide_of_helbrym_soak_duration_ms" } }, - [1013]={ + [1010]={ [1]={ [1]={ limit={ @@ -24376,7 +24298,7 @@ return { [1]="support_hinder_dots_also_apply_hinder" } }, - [1014]={ + [1011]={ [1]={ [1]={ limit={ @@ -24401,7 +24323,7 @@ return { [1]="support_hit_damage_stun_multiplier_+%_final_from_current_poise" } }, - [1015]={ + [1012]={ [1]={ [1]={ [1]={ @@ -24421,7 +24343,7 @@ return { [1]="support_holy_descent_consecrated_ground_base_duration_ms" } }, - [1016]={ + [1013]={ [1]={ [1]={ [1]={ @@ -24454,7 +24376,7 @@ return { [1]="support_holy_descent_consecrated_ground_on_landing_radius" } }, - [1017]={ + [1014]={ [1]={ [1]={ [1]={ @@ -24487,7 +24409,7 @@ return { [1]="support_hourglass_display_cooldown_time_ms" } }, - [1018]={ + [1015]={ [1]={ [1]={ limit={ @@ -24516,7 +24438,7 @@ return { [1]="support_hypothermia_cold_damage_over_time_+%_final" } }, - [1019]={ + [1016]={ [1]={ [1]={ limit={ @@ -24545,7 +24467,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [1020]={ + [1017]={ [1]={ [1]={ limit={ @@ -24574,7 +24496,7 @@ return { [1]="support_hypothermia_hit_damage_freeze_multiplier_+%_final" } }, - [1021]={ + [1018]={ [1]={ [1]={ [1]={ @@ -24599,7 +24521,7 @@ return { [2]="support_ice_bite_base_buff_duration" } }, - [1022]={ + [1019]={ [1]={ [1]={ limit={ @@ -24628,7 +24550,7 @@ return { [1]="support_icicle_ice_crystal_maximum_life_+%_final" } }, - [1023]={ + [1020]={ [1]={ [1]={ limit={ @@ -24657,7 +24579,7 @@ return { [1]="support_ignite_duration_ignite_effect_+%_final" } }, - [1024]={ + [1021]={ [1]={ [1]={ limit={ @@ -24686,7 +24608,7 @@ return { [1]="support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final" } }, - [1025]={ + [1022]={ [1]={ [1]={ limit={ @@ -24715,7 +24637,7 @@ return { [1]="support_ignited_ground_effect_duration_+%_final" } }, - [1026]={ + [1023]={ [1]={ [1]={ limit={ @@ -24744,7 +24666,7 @@ return { [1]="support_ignition_chance_to_ignite_+%_final" } }, - [1027]={ + [1024]={ [1]={ [1]={ [1]={ @@ -24777,7 +24699,7 @@ return { [1]="support_impact_shockwave_base_non_slam_aftershock_on_heavy_stun_radius" } }, - [1028]={ + [1025]={ [1]={ [1]={ limit={ @@ -24793,7 +24715,7 @@ return { [1]="support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%" } }, - [1029]={ + [1026]={ [1]={ [1]={ limit={ @@ -24822,7 +24744,7 @@ return { [1]="support_increased_area_damage_+%_final" } }, - [1030]={ + [1027]={ [1]={ [1]={ limit={ @@ -24851,7 +24773,7 @@ return { [1]="support_increased_armour_break_armour_break_amount_+%_final" } }, - [1031]={ + [1028]={ [1]={ [1]={ limit={ @@ -24872,7 +24794,7 @@ return { [2]="support_inevitable_criticals_critical_strike_chance_+%_cap" } }, - [1032]={ + [1029]={ [1]={ [1]={ [1]={ @@ -24922,7 +24844,7 @@ return { [2]="support_inevitable_criticals_critical_strike_multiplier_+%_final_cap" } }, - [1033]={ + [1030]={ [1]={ [1]={ limit={ @@ -24951,7 +24873,7 @@ return { [1]="support_inhibitor_damage_+%_final_per_charge_type_or_infusion_type" } }, - [1034]={ + [1031]={ [1]={ [1]={ [1]={ @@ -24976,7 +24898,7 @@ return { [2]="support_innervate_buff_base_duration_ms" } }, - [1035]={ + [1032]={ [1]={ [1]={ limit={ @@ -25005,7 +24927,7 @@ return { [1]="support_inspiration_cost_+%_final" } }, - [1036]={ + [1033]={ [1]={ [1]={ limit={ @@ -25034,7 +24956,7 @@ return { [1]="support_jagged_ground_area_of_effect_+%_final" } }, - [1037]={ + [1034]={ [1]={ [1]={ [1]={ @@ -25054,7 +24976,7 @@ return { [1]="support_jagged_ground_base_duration_ms" } }, - [1038]={ + [1035]={ [1]={ [1]={ limit={ @@ -25070,7 +24992,7 @@ return { [1]="support_knights_legacy_heavy_stun_threshold_+%_final_while_performing_action" } }, - [1039]={ + [1036]={ [1]={ [1]={ limit={ @@ -25086,7 +25008,7 @@ return { [1]="support_knockback_wave_on_stunned" } }, - [1040]={ + [1037]={ [1]={ [1]={ [1]={ @@ -25119,7 +25041,7 @@ return { [1]="support_last_gasp_duration_ms" } }, - [1041]={ + [1038]={ [1]={ [1]={ limit={ @@ -25135,7 +25057,7 @@ return { [1]="support_last_gasp_minion_soul_eater_while_undying" } }, - [1042]={ + [1039]={ [1]={ [1]={ limit={ @@ -25164,7 +25086,7 @@ return { [1]="support_lasting_shock_chance_to_shock_+%_final" } }, - [1043]={ + [1040]={ [1]={ [1]={ limit={ @@ -25193,7 +25115,7 @@ return { [1]="support_life_flask_charges_gained_+%_final_from_killing_blow" } }, - [1044]={ + [1041]={ [1]={ [1]={ limit={ @@ -25209,7 +25131,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [1045]={ + [1042]={ [1]={ [1]={ limit={ @@ -25238,7 +25160,7 @@ return { [1]="support_lifetap_damage_+%_final_while_buffed" } }, - [1046]={ + [1043]={ [1]={ [1]={ [1]={ @@ -25297,7 +25219,7 @@ return { [2]="quality_display_lifetap_is_gem" } }, - [1047]={ + [1044]={ [1]={ [1]={ limit={ @@ -25326,7 +25248,7 @@ return { [1]="support_lightning_exposure_damage_+%_final" } }, - [1048]={ + [1045]={ [1]={ [1]={ limit={ @@ -25355,7 +25277,7 @@ return { [1]="support_limit_skill_effect_duration_+%_final" } }, - [1049]={ + [1046]={ [1]={ [1]={ limit={ @@ -25371,7 +25293,7 @@ return { [1]="support_lineage_remnants_grant_cdr_buff_on_collection" } }, - [1050]={ + [1047]={ [1]={ [1]={ limit={ @@ -25400,7 +25322,7 @@ return { [1]="support_lingering_mirage_damage_+%_final" } }, - [1051]={ + [1048]={ [1]={ [1]={ limit={ @@ -25429,7 +25351,7 @@ return { [1]="support_lockdown_distance_based_pin_damage_+%_final" } }, - [1052]={ + [1049]={ [1]={ [1]={ limit={ @@ -25458,7 +25380,7 @@ return { [1]="support_long_fuse_detonation_damage_+%_final" } }, - [1053]={ + [1050]={ [1]={ [1]={ limit={ @@ -25487,23 +25409,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [1054]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Consumes {0}% of current Mana to deal that much Fire damage" - } - }, - stats={ - [1]="support_mana_flare_%_of_current_mana_consumed" - } - }, - [1055]={ + [1051]={ [1]={ [1]={ limit={ @@ -25532,7 +25438,7 @@ return { [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" } }, - [1056]={ + [1052]={ [1]={ [1]={ limit={ @@ -25561,7 +25467,7 @@ return { [1]="support_mana_fountain_mana_regeneration_rate_+%" } }, - [1057]={ + [1053]={ [1]={ [1]={ limit={ @@ -25590,7 +25496,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final" } }, - [1058]={ + [1054]={ [1]={ [1]={ limit={ @@ -25606,7 +25512,7 @@ return { [1]="support_manaforged_arrows_hit_damage_+%_final_per_mana_spent" } }, - [1059]={ + [1055]={ [1]={ [1]={ limit={ @@ -25635,7 +25541,7 @@ return { [1]="support_max_attack_damage_+%_final_from_current_poise" } }, - [1060]={ + [1056]={ [1]={ [1]={ limit={ @@ -25664,7 +25570,7 @@ return { [1]="support_measured_speed_attack_speed_+%_final_per_stack" } }, - [1061]={ + [1057]={ [1]={ [1]={ [1]={ @@ -25706,7 +25612,7 @@ return { [2]="support_measured_speed_disabled_ms" } }, - [1062]={ + [1058]={ [1]={ [1]={ limit={ @@ -25735,7 +25641,7 @@ return { [1]="support_meat_shield_minion_damage_+%_final" } }, - [1063]={ + [1059]={ [1]={ [1]={ limit={ @@ -25811,7 +25717,7 @@ return { [2]="support_melee_damage_+%_final_vs_lower_percent_life_target" } }, - [1064]={ + [1060]={ [1]={ [1]={ limit={ @@ -25840,7 +25746,7 @@ return { [1]="support_melee_physical_damage_attack_speed_+%_final" } }, - [1065]={ + [1061]={ [1]={ [1]={ limit={ @@ -25869,7 +25775,7 @@ return { [1]="support_minefield_mine_damage_+%_final" } }, - [1066]={ + [1062]={ [1]={ [1]={ limit={ @@ -25898,7 +25804,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1067]={ + [1063]={ [1]={ [1]={ limit={ @@ -25919,7 +25825,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1068]={ + [1064]={ [1]={ [1]={ limit={ @@ -25948,7 +25854,7 @@ return { [1]="support_minion_damage_+%_final" } }, - [1069]={ + [1065]={ [1]={ [1]={ limit={ @@ -25977,7 +25883,7 @@ return { [1]="support_minion_damage_minion_life_+%_final" } }, - [1070]={ + [1066]={ [1]={ [1]={ limit={ @@ -26006,7 +25912,7 @@ return { [1]="support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana" } }, - [1071]={ + [1067]={ [1]={ [1]={ limit={ @@ -26035,7 +25941,7 @@ return { [1]="support_minion_damage_with_non_command_skills_+%_final" } }, - [1072]={ + [1068]={ [1]={ [1]={ limit={ @@ -26064,7 +25970,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1073]={ + [1069]={ [1]={ [1]={ limit={ @@ -26093,7 +25999,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1074]={ + [1070]={ [1]={ [1]={ limit={ @@ -26109,7 +26015,7 @@ return { [1]="minion_fire_damage_resistance_%" } }, - [1075]={ + [1071]={ [1]={ [1]={ limit={ @@ -26138,7 +26044,7 @@ return { [1]="support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target" } }, - [1076]={ + [1072]={ [1]={ [1]={ limit={ @@ -26154,7 +26060,7 @@ return { [1]="support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target" } }, - [1077]={ + [1073]={ [1]={ [1]={ limit={ @@ -26183,7 +26089,7 @@ return { [1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target" } }, - [1078]={ + [1074]={ [1]={ [1]={ limit={ @@ -26212,7 +26118,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [1079]={ + [1075]={ [1]={ [1]={ limit={ @@ -26233,7 +26139,7 @@ return { [2]="support_minion_pact_damage_+%_final" } }, - [1080]={ + [1076]={ [1]={ [1]={ limit={ @@ -26262,7 +26168,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1081]={ + [1077]={ [1]={ [1]={ limit={ @@ -26278,7 +26184,7 @@ return { [1]="support_minion_use_focussed_target" } }, - [1082]={ + [1078]={ [1]={ [1]={ [1]={ @@ -26303,7 +26209,7 @@ return { [2]="infernal_legion_minion_burning_effect_radius" } }, - [1083]={ + [1079]={ [1]={ [1]={ limit={ @@ -26332,7 +26238,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1084]={ + [1080]={ [1]={ [1]={ [1]={ @@ -26352,7 +26258,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [1085]={ + [1081]={ [1]={ [1]={ limit={ @@ -26381,7 +26287,7 @@ return { [1]="support_mirage_archer_damage_+%_final" } }, - [1086]={ + [1082]={ [1]={ [1]={ limit={ @@ -26410,7 +26316,7 @@ return { [1]="support_mobile_assault_skill_speed_+%_final" } }, - [1087]={ + [1083]={ [1]={ [1]={ limit={ @@ -26439,7 +26345,7 @@ return { [1]="support_mobility_damage_+%_final" } }, - [1088]={ + [1084]={ [1]={ [1]={ limit={ @@ -26468,7 +26374,7 @@ return { [1]="support_mobility_movement_speed_penalty_+%_final_while_performing_action" } }, - [1089]={ + [1085]={ [1]={ [1]={ [1]={ @@ -26552,7 +26458,7 @@ return { [2]="support_momnetum_damage_+%_final_with_momentum" } }, - [1090]={ + [1086]={ [1]={ [1]={ limit={ @@ -26581,7 +26487,7 @@ return { [1]="support_more_duration_skill_effect_duration_+%_final" } }, - [1091]={ + [1087]={ [1]={ [1]={ [1]={ @@ -26614,7 +26520,7 @@ return { [1]="support_mothers_declaration_intimidate_enemies_when_they_enter_your_presence_base_duration_ms" } }, - [1092]={ + [1088]={ [1]={ [1]={ [1]={ @@ -26634,7 +26540,7 @@ return { [1]="support_mothers_ward_base_duration_ms" } }, - [1093]={ + [1089]={ [1]={ [1]={ limit={ @@ -26667,7 +26573,7 @@ return { [1]="support_multi_poison_poison_duration_+%_final" } }, - [1094]={ + [1090]={ [1]={ [1]={ limit={ @@ -26696,7 +26602,7 @@ return { [1]="support_multiple_attack_and_cast_speed_+%_final" } }, - [1095]={ + [1091]={ [1]={ [1]={ limit={ @@ -26725,7 +26631,7 @@ return { [1]="support_multiple_orbs_area_of_effect_+%_final" } }, - [1096]={ + [1092]={ [1]={ [1]={ [1]={ @@ -26745,7 +26651,7 @@ return { [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" } }, - [1097]={ + [1093]={ [1]={ [1]={ limit={ @@ -26761,7 +26667,7 @@ return { [1]="support_no_fear_damage_+%_final_per_second_up_to_30%" } }, - [1098]={ + [1094]={ [1]={ [1]={ limit={ @@ -26790,7 +26696,7 @@ return { [1]="support_nova_projectiles_damage_+%_final" } }, - [1099]={ + [1095]={ [1]={ [1]={ limit={ @@ -26815,7 +26721,7 @@ return { [1]="support_number_of_additional_uses_before_expiry" } }, - [1100]={ + [1096]={ [1]={ [1]={ limit={ @@ -26844,7 +26750,7 @@ return { [1]="support_overextend_critical_strike_multiplier_+%_final" } }, - [1101]={ + [1097]={ [1]={ [1]={ limit={ @@ -26873,7 +26779,7 @@ return { [1]="support_overpower_damage_+%_final" } }, - [1102]={ + [1098]={ [1]={ [1]={ limit={ @@ -26898,7 +26804,7 @@ return { [1]="support_overpower_hit_damage_stun_multiplier_+%_final" } }, - [1103]={ + [1099]={ [1]={ [1]={ limit={ @@ -26923,7 +26829,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1104]={ + [1100]={ [1]={ [1]={ limit={ @@ -26952,7 +26858,7 @@ return { [1]="support_parallel_projectiles_damage_+%_final" } }, - [1105]={ + [1101]={ [1]={ [1]={ limit={ @@ -26981,7 +26887,7 @@ return { [1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final" } }, - [1106]={ + [1102]={ [1]={ [1]={ limit={ @@ -27010,7 +26916,7 @@ return { [1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final" } }, - [1107]={ + [1103]={ [1]={ [1]={ limit={ @@ -27039,7 +26945,7 @@ return { [1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final" } }, - [1108]={ + [1104]={ [1]={ [1]={ limit={ @@ -27055,7 +26961,7 @@ return { [1]="support_physical_damage_%_to_gain_as_daze_build_up" } }, - [1109]={ + [1105]={ [1]={ [1]={ limit={ @@ -27084,7 +26990,7 @@ return { [1]="support_pierce_damage_+%_final_per_pierced_target" } }, - [1110]={ + [1106]={ [1]={ [1]={ limit={ @@ -27113,7 +27019,7 @@ return { [1]="support_pierce_projectile_damage_+%_final_if_pierced_enemy" } }, - [1111]={ + [1107]={ [1]={ [1]={ limit={ @@ -27129,7 +27035,7 @@ return { [1]="support_pin_buildup_pin_instead_of_stun" } }, - [1112]={ + [1108]={ [1]={ [1]={ limit={ @@ -27167,7 +27073,7 @@ return { [1]="support_pin_hit_damage_stun_multiplier_+%_final" } }, - [1113]={ + [1109]={ [1]={ [1]={ limit={ @@ -27183,7 +27089,7 @@ return { [1]="support_pin_physical_damage_can_pin" } }, - [1114]={ + [1110]={ [1]={ [1]={ limit={ @@ -27212,7 +27118,7 @@ return { [1]="support_pin_pin_buildup_+%_final" } }, - [1115]={ + [1111]={ [1]={ [1]={ limit={ @@ -27241,7 +27147,7 @@ return { [1]="support_pin_pin_duration_+%_final" } }, - [1116]={ + [1112]={ [1]={ [1]={ limit={ @@ -27270,7 +27176,7 @@ return { [1]="support_pinpoint_critical_strike_chance_+%_final" } }, - [1117]={ + [1113]={ [1]={ [1]={ limit={ @@ -27299,7 +27205,7 @@ return { [1]="support_pinpoint_critical_strike_multiplier_+%_final" } }, - [1118]={ + [1114]={ [1]={ [1]={ limit={ @@ -27328,7 +27234,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1119]={ + [1115]={ [1]={ [1]={ limit={ @@ -27357,7 +27263,7 @@ return { [1]="support_precision_accuracy_rating_+%" } }, - [1120]={ + [1116]={ [1]={ [1]={ limit={ @@ -27386,7 +27292,7 @@ return { [1]="support_projectile_attack_physical_damage_+%_final" } }, - [1121]={ + [1117]={ [1]={ [1]={ limit={ @@ -27415,7 +27321,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [1122]={ + [1118]={ [1]={ [1]={ limit={ @@ -27444,7 +27350,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1123]={ + [1119]={ [1]={ [1]={ limit={ @@ -27473,7 +27379,7 @@ return { [1]="support_pulverise_attack_speed_+%_final" } }, - [1124]={ + [1120]={ [1]={ [1]={ limit={ @@ -27502,7 +27408,7 @@ return { [1]="support_pulverise_melee_area_damage_+%_final" } }, - [1125]={ + [1121]={ [1]={ [1]={ limit={ @@ -27531,7 +27437,7 @@ return { [1]="support_pure_shock_shock_duration_+%_final" } }, - [1126]={ + [1122]={ [1]={ [1]={ limit={ @@ -27560,7 +27466,7 @@ return { [1]="support_greater_volley_projectile_damage_+%_final" } }, - [1127]={ + [1123]={ [1]={ [1]={ limit={ @@ -27589,7 +27495,7 @@ return { [1]="support_rage_attack_damage_+%_final" } }, - [1128]={ + [1124]={ [1]={ [1]={ limit={ @@ -27618,7 +27524,7 @@ return { [1]="support_rage_attack_speed_+%_while_not_at_maximum_rage" } }, - [1129]={ + [1125]={ [1]={ [1]={ [1]={ @@ -27638,7 +27544,7 @@ return { [1]="support_rage_fountain_rage_regeneration_per_minute" } }, - [1130]={ + [1126]={ [1]={ [1]={ [1]={ @@ -27658,7 +27564,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1131]={ + [1127]={ [1]={ [1]={ limit={ @@ -27696,7 +27602,7 @@ return { [2]="support_rageforged_enraged_damage_+%_final" } }, - [1132]={ + [1128]={ [1]={ [1]={ [1]={ @@ -27721,7 +27627,7 @@ return { [2]="support_randomise_higher_aoe_+%_final" } }, - [1133]={ + [1129]={ [1]={ [1]={ [1]={ @@ -27746,7 +27652,7 @@ return { [2]="support_randomise_higher_projectile_speed_+%_final" } }, - [1134]={ + [1130]={ [1]={ [1]={ [1]={ @@ -27771,7 +27677,7 @@ return { [2]="support_randomise_higher_damage_+%_final" } }, - [1135]={ + [1131]={ [1]={ [1]={ [1]={ @@ -27796,7 +27702,7 @@ return { [2]="support_randomise_higher_recover_%_cost_on_use" } }, - [1136]={ + [1132]={ [1]={ [1]={ limit={ @@ -27825,7 +27731,7 @@ return { [1]="support_rapid_activation_brand_activation_rate_+%_final" } }, - [1137]={ + [1133]={ [1]={ [1]={ limit={ @@ -27854,7 +27760,7 @@ return { [1]="support_reach_accuracy_within_2m_+%_final" } }, - [1138]={ + [1134]={ [1]={ [1]={ limit={ @@ -27883,7 +27789,7 @@ return { [1]="support_reach_area_of_effect_+%_final" } }, - [1139]={ + [1135]={ [1]={ [1]={ limit={ @@ -27899,7 +27805,7 @@ return { [1]="support_recover_%_maximum_energy_shield_killing_shocked_enemies" } }, - [1140]={ + [1136]={ [1]={ [1]={ limit={ @@ -27928,7 +27834,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [1141]={ + [1137]={ [1]={ [1]={ limit={ @@ -27957,7 +27863,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [1142]={ + [1138]={ [1]={ [1]={ limit={ @@ -27973,7 +27879,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1143]={ + [1139]={ [1]={ [1]={ [1]={ @@ -27993,7 +27899,7 @@ return { [1]="support_regenerate_mana_per_minute_on_shock" } }, - [1144]={ + [1140]={ [1]={ [1]={ limit={ @@ -28014,7 +27920,7 @@ return { [2]="support_relentless_rage_gain_X_rage_on_skill_use_if_enough_was_spent" } }, - [1145]={ + [1141]={ [1]={ [1]={ [1]={ @@ -28034,7 +27940,7 @@ return { [1]="support_remote_mine_2_base_mine_detonation_time_ms" } }, - [1146]={ + [1142]={ [1]={ [1]={ limit={ @@ -28063,7 +27969,7 @@ return { [1]="support_remote_mine_2_damage_+%_final" } }, - [1147]={ + [1143]={ [1]={ [1]={ limit={ @@ -28092,7 +27998,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1148]={ + [1144]={ [1]={ [1]={ limit={ @@ -28121,7 +28027,7 @@ return { [1]="support_remote_mine_hit_damage_+%_final" } }, - [1149]={ + [1145]={ [1]={ [1]={ limit={ @@ -28159,7 +28065,7 @@ return { [1]="support_retreating_assault_melee_damage_+%_final" } }, - [1150]={ + [1146]={ [1]={ [1]={ limit={ @@ -28168,7 +28074,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last two seconds" + text="Supported Skills deal {0}% more Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last 2 seconds" }, [2]={ [1]={ @@ -28181,14 +28087,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last two seconds" + text="Supported Skills deal {0}% less Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last 2 seconds" } }, stats={ [1]="support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds" } }, - [1151]={ + [1147]={ [1]={ [1]={ limit={ @@ -28197,7 +28103,7 @@ return { [2]="#" } }, - text="Supported Skills deal {0}% more Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last eight seconds" + text="Supported Skills deal {0}% more Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last 8 seconds" }, [2]={ [1]={ @@ -28210,14 +28116,14 @@ return { [2]=-1 } }, - text="Supported Skills deal {0}% less Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last eight seconds" + text="Supported Skills deal {0}% less Projectile Damage if you have Damaged an Enemy with a Melee Hit in the last 8 seconds" } }, stats={ [1]="support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds" } }, - [1152]={ + [1148]={ [1]={ [1]={ limit={ @@ -28246,7 +28152,7 @@ return { [1]="support_ritual_curse_curse_delay_+%_final" } }, - [1153]={ + [1149]={ [1]={ [1]={ limit={ @@ -28262,7 +28168,7 @@ return { [1]="support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy" } }, - [1154]={ + [1150]={ [1]={ [1]={ [1]={ @@ -28295,7 +28201,7 @@ return { [1]="support_sacrificial_lamb_base_radius" } }, - [1155]={ + [1151]={ [1]={ [1]={ limit={ @@ -28324,7 +28230,7 @@ return { [1]="support_scattershot_skill_speed_+%_final" } }, - [1156]={ + [1152]={ [1]={ [1]={ limit={ @@ -28353,7 +28259,7 @@ return { [1]="support_scion_onslaught_duration_+%" } }, - [1157]={ + [1153]={ [1]={ [1]={ limit={ @@ -28374,7 +28280,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1158]={ + [1154]={ [1]={ [1]={ [1]={ @@ -28404,7 +28310,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1159]={ + [1155]={ [1]={ [1]={ limit={ @@ -28433,7 +28339,7 @@ return { [1]="support_scouring_flame_ignite_effect_+%_final" } }, - [1160]={ + [1156]={ [1]={ [1]={ limit={ @@ -28462,7 +28368,7 @@ return { [1]="support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence" } }, - [1161]={ + [1157]={ [1]={ [1]={ limit={ @@ -28491,7 +28397,7 @@ return { [1]="support_shock_protection_spirit_cost_shock_duration_on_self_+%_final" } }, - [1162]={ + [1158]={ [1]={ [1]={ limit={ @@ -28520,7 +28426,7 @@ return { [1]="support_shocked_ground_effect_duration_+%_final" } }, - [1163]={ + [1159]={ [1]={ [1]={ [1]={ @@ -28612,7 +28518,7 @@ return { [2]="support_shocking_leap_shocked_ground_radius" } }, - [1164]={ + [1160]={ [1]={ [1]={ limit={ @@ -28641,7 +28547,7 @@ return { [1]="support_short_fuse_damage_+%_final" } }, - [1165]={ + [1161]={ [1]={ [1]={ limit={ @@ -28666,7 +28572,7 @@ return { [1]="support_slam_spend_%_supported_skill_cost_as_ward_for_runic_boost" } }, - [1166]={ + [1162]={ [1]={ [1]={ [1]={ @@ -28699,7 +28605,7 @@ return { [1]="support_slashing_buff_base_duration_ms" } }, - [1167]={ + [1163]={ [1]={ [1]={ limit={ @@ -28728,7 +28634,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1168]={ + [1164]={ [1]={ [1]={ limit={ @@ -28757,7 +28663,7 @@ return { [1]="support_slow_cast_cast_speed_+%_final" } }, - [1169]={ + [1165]={ [1]={ [1]={ limit={ @@ -28786,7 +28692,7 @@ return { [1]="support_slow_cast_spell_damage_+%_final" } }, - [1170]={ + [1166]={ [1]={ [1]={ limit={ @@ -28815,7 +28721,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [1171]={ + [1167]={ [1]={ [1]={ limit={ @@ -28831,7 +28737,7 @@ return { [1]="support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage" } }, - [1172]={ + [1168]={ [1]={ [1]={ [1]={ @@ -28864,7 +28770,7 @@ return { [1]="support_spectral_arrows_base_duration_ms" } }, - [1173]={ + [1169]={ [1]={ [1]={ limit={ @@ -28893,7 +28799,7 @@ return { [1]="support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles" } }, - [1174]={ + [1170]={ [1]={ [1]={ limit={ @@ -28922,7 +28828,7 @@ return { [1]="support_spectral_arrows_damage_+%_final_with_spectral_projectiles" } }, - [1175]={ + [1171]={ [1]={ [1]={ limit={ @@ -28938,7 +28844,7 @@ return { [1]="support_spectral_arrows_maximum_spectral_arrows" } }, - [1176]={ + [1172]={ [1]={ [1]={ limit={ @@ -29014,7 +28920,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1177]={ + [1173]={ [1]={ [1]={ limit={ @@ -29043,7 +28949,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1178]={ + [1174]={ [1]={ [1]={ limit={ @@ -29072,7 +28978,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1179]={ + [1175]={ [1]={ [1]={ limit={ @@ -29101,7 +29007,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_for_cascade" } }, - [1180]={ + [1176]={ [1]={ [1]={ limit={ @@ -29130,7 +29036,7 @@ return { [1]="support_spell_cascade_damage_+%_final" } }, - [1181]={ + [1177]={ [1]={ [1]={ limit={ @@ -29164,7 +29070,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [1182]={ + [1178]={ [1]={ [1]={ limit={ @@ -29193,7 +29099,7 @@ return { [1]="support_spell_damage_+%_final_while_above_90%_maximum_mana" } }, - [1183]={ + [1179]={ [1]={ [1]={ limit={ @@ -29222,7 +29128,7 @@ return { [1]="support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield" } }, - [1184]={ + [1180]={ [1]={ [1]={ limit={ @@ -29251,7 +29157,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final" } }, - [1185]={ + [1181]={ [1]={ [1]={ limit={ @@ -29280,7 +29186,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_0" } }, - [1186]={ + [1182]={ [1]={ [1]={ limit={ @@ -29309,7 +29215,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_1" } }, - [1187]={ + [1183]={ [1]={ [1]={ limit={ @@ -29338,7 +29244,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_2" } }, - [1188]={ + [1184]={ [1]={ [1]={ limit={ @@ -29367,7 +29273,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_3" } }, - [1189]={ + [1185]={ [1]={ [1]={ limit={ @@ -29396,7 +29302,7 @@ return { [1]="support_spell_echo_damage_+%_final" } }, - [1190]={ + [1186]={ [1]={ [1]={ limit={ @@ -29425,7 +29331,7 @@ return { [1]="support_spellslinger_damage_+%_final" } }, - [1191]={ + [1187]={ [1]={ [1]={ limit={ @@ -29454,7 +29360,7 @@ return { [1]="support_spiral_projectiles_damage_+%_final" } }, - [1192]={ + [1188]={ [1]={ [1]={ limit={ @@ -29483,7 +29389,7 @@ return { [1]="support_spiritual_cry_damage_+%_final" } }, - [1193]={ + [1189]={ [1]={ [1]={ limit={ @@ -29508,7 +29414,7 @@ return { [1]="support_splinter_totem_X_times" } }, - [1194]={ + [1190]={ [1]={ [1]={ [1]={ @@ -29537,7 +29443,7 @@ return { [1]="support_splinter_totem_area_of_effect_+%_final_each_splinter" } }, - [1195]={ + [1191]={ [1]={ [1]={ [1]={ @@ -29566,7 +29472,7 @@ return { [1]="support_splinter_totem_damage_+%_final_each_splinter" } }, - [1196]={ + [1192]={ [1]={ [1]={ [1]={ @@ -29595,7 +29501,7 @@ return { [1]="support_splinter_totem_maximum_life_+%_final_each_splinter" } }, - [1197]={ + [1193]={ [1]={ [1]={ [1]={ @@ -29624,7 +29530,7 @@ return { [1]="support_splinter_totem_skill_speed_+%_final_each_splinter" } }, - [1198]={ + [1194]={ [1]={ [1]={ limit={ @@ -29649,7 +29555,7 @@ return { [1]="support_splinter_totem_splinter_after_X_actions" } }, - [1199]={ + [1195]={ [1]={ [1]={ limit={ @@ -29678,7 +29584,7 @@ return { [1]="support_stability_heavy_stun_threshold_+%_final_while_performing_action" } }, - [1200]={ + [1196]={ [1]={ [1]={ limit={ @@ -29703,7 +29609,7 @@ return { [1]="support_static_charge_X_chains_per_10_charge" } }, - [1201]={ + [1197]={ [1]={ [1]={ limit={ @@ -29719,7 +29625,7 @@ return { [1]="support_static_charge_%_damage_gained_as_lightning_per_10_charge" } }, - [1202]={ + [1198]={ [1]={ [1]={ limit={ @@ -29748,7 +29654,7 @@ return { [1]="support_steadfast_ailment_threshold_+%_final_while_channelling" } }, - [1203]={ + [1199]={ [1]={ [1]={ limit={ @@ -29777,7 +29683,7 @@ return { [1]="support_steadfast_stun_threshold_+%_final_while_channelling" } }, - [1204]={ + [1200]={ [1]={ [1]={ limit={ @@ -29806,7 +29712,7 @@ return { [1]="support_sticky_grenade_damage_+%_final" } }, - [1205]={ + [1201]={ [1]={ [1]={ limit={ @@ -29822,7 +29728,7 @@ return { [1]="support_stomping_ground" } }, - [1206]={ + [1202]={ [1]={ [1]={ [1]={ @@ -29855,7 +29761,7 @@ return { [1]="support_storm_barrier_damage_buff_base_duration_ms" } }, - [1207]={ + [1203]={ [1]={ [1]={ [1]={ @@ -29927,7 +29833,7 @@ return { [2]="support_storm_barrier_damage_buff_time_threshold_ms" } }, - [1208]={ + [1204]={ [1]={ [1]={ limit={ @@ -29956,7 +29862,7 @@ return { [1]="support_storm_barrier_damage_+%_final" } }, - [1209]={ + [1205]={ [1]={ [1]={ limit={ @@ -29985,7 +29891,7 @@ return { [1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final" } }, - [1210]={ + [1206]={ [1]={ [1]={ limit={ @@ -30014,7 +29920,7 @@ return { [1]="support_storm_barrier_skill_type_damage_+%_final" } }, - [1211]={ + [1207]={ [1]={ [1]={ [1]={ @@ -30034,7 +29940,7 @@ return { [1]="support_storm_barrier_skill_type_damage_taken_when_hit_+%_final" } }, - [1212]={ + [1208]={ [1]={ [1]={ limit={ @@ -30050,7 +29956,7 @@ return { [1]="support_stormfire_targets_shocked_by_this_take_%_of_damage_from_ignite_as_lightning_damage" } }, - [1213]={ + [1209]={ [1]={ [1]={ limit={ @@ -30079,7 +29985,7 @@ return { [1]="support_stronger_ignites_hit_damage_+%_final" } }, - [1214]={ + [1210]={ [1]={ [1]={ limit={ @@ -30108,7 +30014,7 @@ return { [1]="support_stronger_ignites_ignite_effect_+%_final" } }, - [1215]={ + [1211]={ [1]={ [1]={ [1]={ @@ -30150,7 +30056,7 @@ return { [2]="support_stunning_magic_buff_duration_ms" } }, - [1216]={ + [1212]={ [1]={ [1]={ limit={ @@ -30179,7 +30085,7 @@ return { [1]="support_sunblast_hazard_hazard_damage_+%_final" } }, - [1217]={ + [1213]={ [1]={ [1]={ limit={ @@ -30208,7 +30114,7 @@ return { [1]="support_sunblast_hazard_hazard_duration_+%_final" } }, - [1218]={ + [1214]={ [1]={ [1]={ limit={ @@ -30237,7 +30143,7 @@ return { [1]="support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second" } }, - [1219]={ + [1215]={ [1]={ [1]={ limit={ @@ -30266,7 +30172,7 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [1220]={ + [1216]={ [1]={ [1]={ limit={ @@ -30282,7 +30188,7 @@ return { [1]="support_tangmazu_light_radius_+%" } }, - [1221]={ + [1217]={ [1]={ [1]={ limit={ @@ -30311,7 +30217,7 @@ return { [1]="support_tangmazu_slow_potency_+%" } }, - [1222]={ + [1218]={ [1]={ [1]={ limit={ @@ -30327,7 +30233,7 @@ return { [1]="support_tangmazu_sprint_speed_+%" } }, - [1223]={ + [1219]={ [1]={ [1]={ limit={ @@ -30343,7 +30249,7 @@ return { [1]="support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour" } }, - [1224]={ + [1220]={ [1]={ [1]={ limit={ @@ -30359,7 +30265,7 @@ return { [1]="support_tempered_valour_deflection_rating_%_of_evasion_rating" } }, - [1225]={ + [1221]={ [1]={ [1]={ limit={ @@ -30375,7 +30281,7 @@ return { [1]="support_tempered_valour_%_armour_to_apply_to_elemental_damage" } }, - [1226]={ + [1222]={ [1]={ [1]={ limit={ @@ -30404,7 +30310,7 @@ return { [1]="support_thorns_spirit_cost_thorns_damage_+%" } }, - [1227]={ + [1223]={ [1]={ [1]={ [1]={ @@ -30429,7 +30335,7 @@ return { [2]="support_thrill_of_the_kill_buff_base_duration_ms" } }, - [1228]={ + [1224]={ [1]={ [1]={ limit={ @@ -30458,7 +30364,7 @@ return { [1]="support_thrill_of_the_kill_buff_shock_chance_+%" } }, - [1229]={ + [1225]={ [1]={ [1]={ limit={ @@ -30483,7 +30389,7 @@ return { [1]="support_timerot_stacks_gained_per_500_ms" } }, - [1230]={ + [1226]={ [1]={ [1]={ limit={ @@ -30512,7 +30418,7 @@ return { [1]="support_titanic_arrows_attack_speed_+%_final" } }, - [1231]={ + [1227]={ [1]={ [1]={ limit={ @@ -30541,7 +30447,7 @@ return { [1]="support_titanic_arrows_projectile_speed_+%_final" } }, - [1232]={ + [1228]={ [1]={ [1]={ limit={ @@ -30570,7 +30476,7 @@ return { [1]="support_trap_and_mine_damage_mine_throwing_speed_+%_final" } }, - [1233]={ + [1229]={ [1]={ [1]={ limit={ @@ -30599,7 +30505,7 @@ return { [1]="support_trap_and_mine_damage_trap_throwing_speed_+%_final" } }, - [1234]={ + [1230]={ [1]={ [1]={ limit={ @@ -30628,7 +30534,7 @@ return { [1]="support_trap_hit_damage_+%_final" } }, - [1235]={ + [1231]={ [1]={ [1]={ limit={ @@ -30644,7 +30550,7 @@ return { [1]="support_trigger_mana_flare_on_crit" } }, - [1236]={ + [1232]={ [1]={ [1]={ limit={ @@ -30660,7 +30566,7 @@ return { [1]="support_trigger_pummel_on_heavy_stun" } }, - [1237]={ + [1233]={ [1]={ [1]={ limit={ @@ -30676,7 +30582,7 @@ return { [1]="support_trigger_shocked_ground_on_mark_activate" } }, - [1238]={ + [1234]={ [1]={ [1]={ limit={ @@ -30692,7 +30598,7 @@ return { [1]="support_triple_number_of_cooldown_uses" } }, - [1239]={ + [1235]={ [1]={ [1]={ limit={ @@ -30721,7 +30627,7 @@ return { [1]="support_trusty_companion_minion_life_+%_final" } }, - [1240]={ + [1236]={ [1]={ [1]={ limit={ @@ -30750,7 +30656,7 @@ return { [1]="support_uhtred_damage_+%_final_per_different_cooldown_skill_in_last_8_seconds" } }, - [1241]={ + [1237]={ [1]={ [1]={ limit={ @@ -30779,7 +30685,7 @@ return { [1]="support_unbound_ailments_damaging_ailment_effect_+%_final" } }, - [1242]={ + [1238]={ [1]={ [1]={ limit={ @@ -30808,7 +30714,7 @@ return { [1]="support_unbreakable_light_stun_threshold_+%_final_while_performing_action" } }, - [1243]={ + [1239]={ [1]={ [1]={ limit={ @@ -30837,7 +30743,7 @@ return { [1]="support_unending_ailments_all_ailment_duration_+%_final" } }, - [1244]={ + [1240]={ [1]={ [1]={ limit={ @@ -30875,7 +30781,7 @@ return { [2]="support_unmoving_damage_multiplier_cap" } }, - [1245]={ + [1241]={ [1]={ [1]={ limit={ @@ -30904,7 +30810,7 @@ return { [1]="support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies" } }, - [1246]={ + [1242]={ [1]={ [1]={ limit={ @@ -30933,7 +30839,7 @@ return { [1]="support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies" } }, - [1247]={ + [1243]={ [1]={ [1]={ limit={ @@ -30962,7 +30868,7 @@ return { [1]="support_upheaval_area_of_effect_+%_final" } }, - [1248]={ + [1244]={ [1]={ [1]={ limit={ @@ -30978,7 +30884,7 @@ return { [1]="support_vaal_lineage_trigger_detonate_on_landing" } }, - [1249]={ + [1245]={ [1]={ [1]={ limit={ @@ -31007,7 +30913,7 @@ return { [1]="support_varied_troops_damage_+%_final_per_different_persistent_ominion" } }, - [1250]={ + [1246]={ [1]={ [1]={ limit={ @@ -31036,7 +30942,7 @@ return { [1]="support_vicious_projectiles_physical_damage_+%_final" } }, - [1251]={ + [1247]={ [1]={ [1]={ limit={ @@ -31065,7 +30971,7 @@ return { [1]="support_vicious_projectiles_chaos_damage_+%_final" } }, - [1252]={ + [1248]={ [1]={ [1]={ [1]={ @@ -31085,7 +30991,7 @@ return { [1]="support_vitality_life_regeneration_rate_per_minute_%" } }, - [1253]={ + [1249]={ [1]={ [1]={ limit={ @@ -31110,7 +31016,7 @@ return { [1]="support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies" } }, - [1254]={ + [1250]={ [1]={ [1]={ limit={ @@ -31126,7 +31032,7 @@ return { [1]="support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies" } }, - [1255]={ + [1251]={ [1]={ [1]={ limit={ @@ -31155,7 +31061,7 @@ return { [1]="support_wall_fortress_area_of_effect_+%_final" } }, - [1256]={ + [1252]={ [1]={ [1]={ limit={ @@ -31188,7 +31094,7 @@ return { [1]="support_wall_fortress_hit_damage_+%_final" } }, - [1257]={ + [1253]={ [1]={ [1]={ limit={ @@ -31209,7 +31115,7 @@ return { [2]="support_enraged_warcry_+%_damage_final_for_exerted_attacks" } }, - [1258]={ + [1254]={ [1]={ [1]={ limit={ @@ -31238,7 +31144,7 @@ return { [1]="support_window_of_opportunity_perfect_timing_damage_+%_final" } }, - [1259]={ + [1255]={ [1]={ [1]={ limit={ @@ -31267,7 +31173,7 @@ return { [1]="support_winterblast_chill_effect_+%_final" } }, - [1260]={ + [1256]={ [1]={ [1]={ limit={ @@ -31296,7 +31202,7 @@ return { [1]="support_withering_touch_damage_+%_final" } }, - [1261]={ + [1257]={ [1]={ [1]={ limit={ @@ -31312,7 +31218,7 @@ return { [1]="support_zerphis_legacy_area_of_effect_+%" } }, - [1262]={ + [1258]={ [1]={ [1]={ limit={ @@ -31328,7 +31234,7 @@ return { [1]="support_zerphis_legacy_damage_+%_final" } }, - [1263]={ + [1259]={ [1]={ [1]={ [1]={ @@ -31348,7 +31254,7 @@ return { [1]="supported_offerings_grant_you_a_powercharge_every_x_ms" } }, - [1264]={ + [1260]={ [1]={ [1]={ limit={ @@ -31364,7 +31270,7 @@ return { [1]="supported_skill_attack_speed_+%_per_5_rage" } }, - [1265]={ + [1261]={ [1]={ [1]={ limit={ @@ -31380,7 +31286,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1266]={ + [1262]={ [1]={ [1]={ limit={ @@ -31396,7 +31302,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1267]={ + [1263]={ [1]={ [1]={ limit={ @@ -31412,7 +31318,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1268]={ + [1264]={ [1]={ [1]={ limit={ @@ -31428,7 +31334,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1269]={ + [1265]={ [1]={ [1]={ limit={ @@ -31444,7 +31350,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1270]={ + [1266]={ [1]={ [1]={ [1]={ @@ -31477,7 +31383,7 @@ return { [1]="supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze" } }, - [1271]={ + [1267]={ [1]={ [1]={ limit={ @@ -31493,7 +31399,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [1272]={ + [1268]={ [1]={ [1]={ [1]={ @@ -31526,7 +31432,7 @@ return { [1]="totem_gain_onslaught_for_x_ms_after_summon" } }, - [1273]={ + [1269]={ [1]={ [1]={ limit={ @@ -31542,7 +31448,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [1274]={ + [1270]={ [1]={ [1]={ limit={ @@ -31558,7 +31464,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1275]={ + [1271]={ [1]={ [1]={ limit={ @@ -31587,7 +31493,7 @@ return { [1]="trap_damage_+%" } }, - [1276]={ + [1272]={ [1]={ [1]={ limit={ @@ -31616,7 +31522,7 @@ return { [1]="trap_spread_+%" } }, - [1277]={ + [1273]={ [1]={ [1]={ limit={ @@ -31645,7 +31551,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1278]={ + [1274]={ [1]={ [1]={ limit={ @@ -31674,7 +31580,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1279]={ + [1275]={ [1]={ [1]={ limit={ @@ -31703,7 +31609,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1280]={ + [1276]={ [1]={ [1]={ limit={ @@ -31732,7 +31638,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1281]={ + [1277]={ [1]={ [1]={ limit={ @@ -31757,7 +31663,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [1282]={ + [1278]={ [1]={ [1]={ limit={ @@ -31773,7 +31679,7 @@ return { [1]="trigger_ballistic_ice_chunks_on_killing_frozen_enemy" } }, - [1283]={ + [1279]={ [1]={ [1]={ limit={ @@ -31789,7 +31695,7 @@ return { [1]="trigger_bone_shrapnel_explosion_on_killing_pinned_enemy" } }, - [1284]={ + [1280]={ [1]={ [1]={ limit={ @@ -31818,7 +31724,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1285]={ + [1281]={ [1]={ [1]={ limit={ @@ -31834,7 +31740,7 @@ return { [1]="trigger_caltrops_at_end_of_projectile_flight" } }, - [1286]={ + [1282]={ [1]={ [1]={ [1]={ @@ -31867,7 +31773,7 @@ return { [1]="trigger_from_hayhoxis_binding_after_x_ms" } }, - [1287]={ + [1283]={ [1]={ [1]={ limit={ @@ -31883,7 +31789,7 @@ return { [1]="trigger_frozen_vortex_on_shattering_enemy" } }, - [1288]={ + [1284]={ [1]={ [1]={ limit={ @@ -31899,7 +31805,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1289]={ + [1285]={ [1]={ [1]={ limit={ @@ -31915,7 +31821,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1290]={ + [1286]={ [1]={ [1]={ limit={ @@ -31931,7 +31837,7 @@ return { [1]="trigger_poison_spore_pustule" } }, - [1291]={ + [1287]={ [1]={ [1]={ limit={ @@ -31956,7 +31862,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1292]={ + [1288]={ [1]={ [1]={ limit={ @@ -31972,7 +31878,7 @@ return { [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [1293]={ + [1289]={ [1]={ [1]={ limit={ @@ -31997,7 +31903,7 @@ return { [1]="trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger" } }, - [1294]={ + [1290]={ [1]={ [1]={ limit={ @@ -32013,7 +31919,7 @@ return { [1]="trigger_titanic_arrows_on_impact" } }, - [1295]={ + [1291]={ [1]={ [1]={ limit={ @@ -32029,7 +31935,7 @@ return { [1]="triggered_by_brand_support" } }, - [1296]={ + [1292]={ [1]={ [1]={ limit={ @@ -32045,7 +31951,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1297]={ + [1293]={ [1]={ [1]={ limit={ @@ -32079,7 +31985,7 @@ return { [2]="support_manaforged_arrows_mana_cost_%_threshold" } }, - [1298]={ + [1294]={ [1]={ [1]={ limit={ @@ -32095,7 +32001,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1299]={ + [1295]={ [1]={ [1]={ limit={ @@ -32111,7 +32017,7 @@ return { [1]="triggered_fan_the_flames_spread_ignite_to_hit_enemies" } }, - [1300]={ + [1296]={ [1]={ [1]={ ["gem_quality"]=true, @@ -32150,14 +32056,14 @@ return { [1]="triggered_skill_damage_+%" } }, - [1301]={ + [1297]={ [1]={ }, stats={ [1]="triggers_burning_runes_on_placing_ground_rune" } }, - [1302]={ + [1298]={ [1]={ [1]={ [1]={ @@ -32233,7 +32139,7 @@ return { [2]="consume_shock_of_X_enemies_to_trigger_shocking_rift" } }, - [1303]={ + [1299]={ [1]={ [1]={ limit={ @@ -32249,7 +32155,7 @@ return { [1]="wall_is_created_along_a_fissure_instead" } }, - [1304]={ + [1300]={ [1]={ [1]={ limit={ @@ -32265,7 +32171,7 @@ return { [1]="wall_is_created_in_a_circle_instead" } }, - [1305]={ + [1301]={ [1]={ [1]={ limit={ @@ -32281,7 +32187,7 @@ return { [1]="warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge" } }, - [1306]={ + [1302]={ [1]={ [1]={ limit={ @@ -32349,7 +32255,7 @@ return { [2]="warcry_echo_delay_ms_from_support" } }, - [1307]={ + [1303]={ [1]={ [1]={ [1]={ @@ -32378,7 +32284,7 @@ return { [1]="warcry_echo_area_of_effect_+%_final_per_repeat" } }, - [1308]={ + [1304]={ [1]={ [1]={ limit={ @@ -32394,7 +32300,7 @@ return { [1]="warcry_grant_X_rage_per_5_power" } }, - [1309]={ + [1305]={ [1]={ [1]={ limit={ @@ -32423,7 +32329,7 @@ return { [1]="warcry_speed_+%" } }, - [1310]={ + [1306]={ [1]={ [1]={ limit={ @@ -32439,7 +32345,7 @@ return { [1]="warcry_triggers_corrupting_cry" } }, - [1311]={ + [1307]={ [1]={ [1]={ limit={ @@ -32455,7 +32361,7 @@ return { [1]="warcry_triggers_paquates_pact" } }, - [1312]={ + [1308]={ [1]={ [1]={ limit={ @@ -32484,7 +32390,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1313]={ + [1309]={ [1]={ [1]={ limit={ @@ -32500,7 +32406,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1314]={ + [1310]={ [1]={ [1]={ limit={ @@ -32516,7 +32422,7 @@ return { [1]="wither_on_hit_chance_rollovercapped" } }, - [1315]={ + [1311]={ [1]={ [1]={ limit={ @@ -32541,7 +32447,7 @@ return { [1]="withered_on_chaos_damage_hit_chance_%" } }, - [1316]={ + [1312]={ [1]={ [1]={ [1]={ @@ -32561,7 +32467,7 @@ return { [1]="withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage" } }, - [1317]={ + [1313]={ [1]={ [1]={ limit={ @@ -32590,7 +32496,7 @@ return { [1]="support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [1318]={ + [1314]={ [1]={ [1]={ limit={ @@ -32619,7 +32525,7 @@ return { [1]="support_morrigans_refuge_damage_+%_final_vs_frozen_enemies" } }, - [1319]={ + [1315]={ [1]={ [1]={ limit={ @@ -32644,7 +32550,7 @@ return { [1]="your_marks_spread_to_a_nearby_enemies_on_consume_%_chance" } }, - [1320]={ + [1316]={ [1]={ [1]={ limit={ @@ -32660,7 +32566,7 @@ return { [1]="support_active_skill_consume_enemy_freeze_to_apply_chill" } }, - [1321]={ + [1317]={ [1]={ [1]={ limit={ @@ -32689,7 +32595,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1322]={ + [1318]={ [1]={ [1]={ limit={ @@ -32705,7 +32611,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1323]={ + [1319]={ [1]={ [1]={ limit={ @@ -32721,7 +32627,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1324]={ + [1320]={ [1]={ [1]={ limit={ @@ -32737,7 +32643,7 @@ return { [1]="minions_are_defensive" } }, - [1325]={ + [1321]={ [1]={ [1]={ limit={ @@ -32753,7 +32659,7 @@ return { [1]="support_slam_chance_for_one_additional_aftershock_%" } }, - [1326]={ + [1322]={ [1]={ [1]={ limit={ @@ -32769,7 +32675,7 @@ return { [1]="support_warcries_explode_ice_crystals" } }, - [1327]={ + [1323]={ [1]={ [1]={ limit={ @@ -32785,7 +32691,7 @@ return { [1]="support_slam_chance_for_two_additional_aftershocks_%" } }, - [1328]={ + [1324]={ [1]={ [1]={ limit={ @@ -32801,7 +32707,7 @@ return { [1]="support_warcries_detonate_your_ice_fragments" } }, - [1329]={ + [1325]={ [1]={ [1]={ limit={ @@ -32817,7 +32723,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage" } }, - [1330]={ + [1326]={ [1]={ [1]={ limit={ @@ -32846,7 +32752,7 @@ return { [1]="support_culling_strike_threshold_+%_on_cull_for_seconds_from_code" } }, - [1331]={ + [1327]={ [1]={ [1]={ limit={ @@ -32875,7 +32781,7 @@ return { [1]="support_last_gasp_attack_and_cast_speed_+%_while_undying" } }, - [1332]={ + [1328]={ [1]={ [1]={ limit={ @@ -32891,7 +32797,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [1333]={ + [1329]={ [1]={ [1]={ limit={ @@ -32907,7 +32813,7 @@ return { [1]="support_slam_chance_for_three_additional_aftershocks_%" } }, - [1334]={ + [1330]={ [1]={ [1]={ [1]={ @@ -32940,7 +32846,7 @@ return { [1]="support_timerot_reparation_duration_per_timerot_lost_ms" } }, - [1335]={ + [1331]={ [1]={ [1]={ limit={ @@ -32969,7 +32875,7 @@ return { [1]="support_unstable_earth_damage_+%_final" } }, - [1336]={ + [1332]={ [1]={ [1]={ limit={ @@ -32985,220 +32891,217 @@ return { [1]="support_warcries_empower_x_additional_per_5_total_ice_crystals_or_fragments_destroyed" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=716, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=717, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=718, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=719, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=713, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=714, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=715, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=716, ["accuracy_rating"]=227, ["accuracy_rating_+%"]=228, - ["active_skill_additional_projectiles_description_mode"]=705, + ["active_skill_additional_projectiles_description_mode"]=702, ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=229, - ["active_skill_base_all_damage_%_to_gain_as_chaos"]=230, - ["active_skill_base_all_damage_%_to_gain_as_fire"]=231, - ["active_skill_base_all_damage_%_to_gain_as_lightning"]=232, - ["active_skill_base_physical_damage_%_to_convert_to_lightning"]=233, - ["active_skill_base_physical_damage_%_to_gain_as_fire"]=234, - ["active_skill_can_overload"]=235, - ["active_skill_cannot_manually_reload"]=236, - ["active_skill_fire_damage_+%_final"]=237, - ["active_skill_generates_%_of_life_spent_as_glory"]=238, - ["active_skill_minion_attack_speed_+%_final"]=239, - ["active_skill_never_freeze_shock_ignite"]=240, - ["active_skill_projectile_speed_+%_final"]=241, + ["active_skill_base_physical_damage_%_to_convert_to_lightning"]=230, + ["active_skill_base_physical_damage_%_to_gain_as_fire"]=231, + ["active_skill_can_overload"]=232, + ["active_skill_cannot_manually_reload"]=233, + ["active_skill_fire_damage_+%_final"]=234, + ["active_skill_generates_%_of_life_spent_as_glory"]=235, + ["active_skill_minion_attack_speed_+%_final"]=236, + ["active_skill_never_freeze_shock_ignite"]=237, + ["active_skill_projectile_speed_+%_final"]=238, ["active_skill_requires_X_glory"]=2, - ["add_power_charge_on_critical_strike_%"]=242, - ["add_power_charge_on_kill_%_chance"]=243, - ["added_cold_damage_%_ward_cost"]=244, - ["added_damage_+%_final"]=245, - ["added_physical_damage_%_ward_cost"]=246, - ["additional_base_critical_strike_chance"]=247, - ["additional_chance_to_freeze_chilled_enemies_%"]=248, - ["additional_combo_gain_chance_%"]=249, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=251, - ["additional_critical_strike_chance_permyriad_while_dead"]=250, - ["additional_projectiles_per_intensity"]=252, - ["aftershock_area_of_effect_+%_final"]=254, - ["aftershock_area_of_effect_+%_final_from_support_dual_cascade_aftershocks"]=253, - ["aftershock_damage_+%_final_from_support_dual_cascade_aftershocks"]=255, - ["aftershocks_create_jagged_ground"]=256, - ["aggravate_bleeding_on_pin_chance_%"]=257, - ["ailment_effect_+%_while_afflicted_by_relevant_ailment"]=259, - ["ailment_threshold_+%_while_channelling"]=260, - ["all_damage_gained_as_cold_instead"]=261, - ["all_exposure_on_hit_for_duration_ms"]=262, - ["allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life"]=263, - ["allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana"]=264, - ["always_freeze"]=306, + ["add_power_charge_on_critical_strike_%"]=239, + ["add_power_charge_on_kill_%_chance"]=240, + ["added_cold_damage_%_ward_cost"]=241, + ["added_damage_+%_final"]=242, + ["added_physical_damage_%_ward_cost"]=243, + ["additional_base_critical_strike_chance"]=244, + ["additional_chance_to_freeze_chilled_enemies_%"]=245, + ["additional_combo_gain_chance_%"]=246, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=248, + ["additional_critical_strike_chance_permyriad_while_dead"]=247, + ["additional_projectiles_per_intensity"]=249, + ["aftershock_area_of_effect_+%_final"]=251, + ["aftershock_area_of_effect_+%_final_from_support_dual_cascade_aftershocks"]=250, + ["aftershock_damage_+%_final_from_support_dual_cascade_aftershocks"]=252, + ["aftershocks_create_jagged_ground"]=253, + ["aggravate_bleeding_on_pin_chance_%"]=254, + ["ailment_effect_+%_while_afflicted_by_relevant_ailment"]=256, + ["ailment_threshold_+%_while_channelling"]=257, + ["all_damage_gained_as_cold_instead"]=258, + ["all_exposure_on_hit_for_duration_ms"]=259, + ["allies_in_font_of_blood_radius_leech_%_of_my_physical_damage_as_life"]=260, + ["allies_in_font_of_mana_radius_leech_%_of_my_physical_damage_as_mana"]=261, + ["always_freeze"]=303, ["always_pierce"]=210, - ["always_shock_wet_enemies"]=265, - ["ancestor_totem_buff_effect_+%"]=266, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=267, - ["ancestral_aid_required_count_of_recent_blocks"]=268, - ["ancestral_call_spirit_strike_interval_ms"]=269, + ["always_shock_wet_enemies"]=262, + ["ancestor_totem_buff_effect_+%"]=263, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=264, + ["ancestral_aid_required_count_of_recent_blocks"]=265, + ["ancestral_call_spirit_strike_interval_ms"]=266, ["ancestral_slam_interval_duration"]=196, - ["ancestral_slam_stun_threshold_reduction_+%"]=270, - ["apply_%_cold_exposure_for_4_seconds_on_chill"]=271, - ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=272, - ["apply_X_incision_on_hit"]=273, - ["apply_attack_projectile_weakness_%_per_1m_knockback"]=274, + ["ancestral_slam_stun_threshold_reduction_+%"]=267, + ["apply_%_cold_exposure_for_4_seconds_on_chill"]=268, + ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=269, + ["apply_X_incision_on_hit"]=270, + ["apply_attack_projectile_weakness_%_per_1m_knockback"]=271, ["apply_linked_curses_on_hit_%"]=133, - ["apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry"]=275, - ["area_damage_+%"]=276, - ["area_of_effect_+%_per_combo_stack"]=277, - ["area_of_effect_+%_per_totem_in_radius_from_support_greatwood"]=278, + ["apply_unaffected_by_pacifying_curses_for_x_ms_on_curse_expiry"]=272, + ["area_damage_+%"]=273, + ["area_of_effect_+%_per_combo_stack"]=274, + ["area_of_effect_+%_per_totem_in_radius_from_support_greatwood"]=275, ["area_of_effect_+%_while_dead"]=47, - ["armour_+%_while_performing_action_per_250_ms_attack_time"]=282, - ["armour_break_for_%_of_poison_damage_over_poison_duration"]=279, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=280, - ["armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies"]=281, - ["attack_and_cast_speed_+%"]=284, - ["attack_and_cast_speed_+%_during_onslaught"]=285, + ["armour_+%_while_performing_action_per_250_ms_attack_time"]=279, + ["armour_break_for_%_of_poison_damage_over_poison_duration"]=276, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=277, + ["armour_break_physical_damage_%_dealt_as_armour_break_vs_parried_enemies"]=278, + ["attack_and_cast_speed_+%"]=281, + ["attack_and_cast_speed_+%_during_onslaught"]=282, ["attack_and_cast_speed_+%_while_all_resonance_is_at_least_25"]=202, - ["attack_critical_strike_chance_+%"]=286, - ["attack_damage_+%"]=289, - ["attack_damage_+%_per_1000_accuracy_rating"]=290, - ["attack_damage_+1%_per_X_armour"]=287, - ["attack_damage_is_lucky_if_surrounded"]=288, - ["attack_maximum_added_physical_damage_as_%_of_strength"]=283, - ["attack_maximum_added_physical_damage_per_10_rage"]=291, - ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=292, - ["attack_maximum_added_physical_damage_with_weapons"]=293, - ["attack_minimum_added_physical_damage_as_%_of_strength"]=283, - ["attack_minimum_added_physical_damage_per_10_rage"]=291, - ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=292, - ["attack_minimum_added_physical_damage_with_weapons"]=293, + ["attack_critical_strike_chance_+%"]=283, + ["attack_damage_+%"]=286, + ["attack_damage_+%_per_1000_accuracy_rating"]=287, + ["attack_damage_+1%_per_X_armour"]=284, + ["attack_damage_is_lucky_if_surrounded"]=285, + ["attack_maximum_added_physical_damage_as_%_of_strength"]=280, + ["attack_maximum_added_physical_damage_per_10_rage"]=288, + ["attack_maximum_added_physical_damage_with_at_least_10_rage"]=289, + ["attack_maximum_added_physical_damage_with_weapons"]=290, + ["attack_minimum_added_physical_damage_as_%_of_strength"]=280, + ["attack_minimum_added_physical_damage_per_10_rage"]=288, + ["attack_minimum_added_physical_damage_with_at_least_10_rage"]=289, + ["attack_minimum_added_physical_damage_with_weapons"]=290, ["attack_skills_additional_ballista_totems_allowed"]=70, - ["attack_speed_+%"]=294, - ["attack_speed_+%_when_on_low_life"]=295, - ["attack_speed_+%_with_atleast_20_rage"]=296, - ["attacks_impale_on_hit_%_chance"]=297, - ["attacks_inflict_bleeding_on_hit"]=363, - ["attacks_roll_crits_twice"]=298, + ["attack_speed_+%"]=291, + ["attack_speed_+%_when_on_low_life"]=292, + ["attack_speed_+%_with_atleast_20_rage"]=293, + ["attacks_impale_on_hit_%_chance"]=294, + ["attacks_inflict_bleeding_on_hit"]=360, + ["attacks_roll_crits_twice"]=295, ["aura_can_affect_self"]=157, ["aura_effect_+%"]=49, - ["avoid_interruption_while_using_this_skill_%"]=299, - ["barrage_support_projectile_spread_+%"]=300, - ["base_all_ailment_duration_+%"]=301, + ["avoid_interruption_while_using_this_skill_%"]=296, + ["barrage_support_projectile_spread_+%"]=297, + ["base_all_ailment_duration_+%"]=298, ["base_aura_area_of_effect_+%"]=48, - ["base_bleed_chance_is_poison_chance_instead"]=302, - ["base_bleed_duration_+%"]=303, - ["base_cast_speed_+%"]=304, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=305, - ["base_chance_to_freeze_%"]=306, - ["base_chance_to_inflict_bleeding_%"]=307, - ["base_chance_to_not_consume_corpse_%"]=414, - ["base_chance_to_pierce_%"]=308, + ["base_bleed_chance_is_poison_chance_instead"]=299, + ["base_bleed_duration_+%"]=300, + ["base_cast_speed_+%"]=301, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=302, + ["base_chance_to_freeze_%"]=303, + ["base_chance_to_inflict_bleeding_%"]=304, + ["base_chance_to_not_consume_corpse_%"]=411, + ["base_chance_to_pierce_%"]=305, ["base_chance_to_poison_on_hit_%"]=166, - ["base_chance_to_shock_%"]=309, - ["base_chaos_damage_can_ignite"]=310, + ["base_chance_to_shock_%"]=306, + ["base_chaos_damage_can_ignite"]=307, ["base_chaos_damage_to_deal_per_minute"]=145, ["base_cold_damage_to_deal_per_minute"]=149, - ["base_combo_stacks_decay_delay_ms"]=311, - ["base_consume_enemy_freeze_on_hit"]=312, - ["base_consume_enemy_shock_on_hit"]=313, - ["base_cooldown_modifier_ms"]=314, - ["base_cooldown_speed_+%"]=315, - ["base_cooldown_speed_+%_final"]=316, + ["base_combo_stacks_decay_delay_ms"]=308, + ["base_consume_enemy_freeze_on_hit"]=309, + ["base_consume_enemy_shock_on_hit"]=310, + ["base_cooldown_modifier_ms"]=311, + ["base_cooldown_speed_+%"]=312, + ["base_cooldown_speed_+%_final"]=313, ["base_cost_+%"]=39, ["base_critical_strike_multiplier_+"]=81, - ["base_curse_delay_+%"]=317, - ["base_curse_duration_+%"]=318, - ["base_damage_+%_while_an_ailment_on_you"]=319, - ["base_deal_no_chaos_damage"]=320, - ["base_debuff_slow_magnitude_+%"]=321, - ["base_es_cost_%"]=322, + ["base_curse_delay_+%"]=314, + ["base_curse_duration_+%"]=315, + ["base_damage_+%_while_an_ailment_on_you"]=316, + ["base_deal_no_chaos_damage"]=317, + ["base_debuff_slow_magnitude_+%"]=318, + ["base_es_cost_%"]=319, ["base_fire_damage_to_deal_per_minute"]=146, - ["base_freezing_enemy_chills_enemies_in_radius"]=539, - ["base_global_chance_to_knockback_%"]=323, - ["base_inflict_cold_exposure_on_hit_%_chance"]=324, - ["base_inflict_fire_exposure_on_hit_%_chance"]=325, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=326, - ["base_killed_monster_dropped_item_quantity_+%"]=327, - ["base_killed_monster_dropped_item_rarity_+%"]=328, - ["base_life_cost_%"]=329, + ["base_freezing_enemy_chills_enemies_in_radius"]=536, + ["base_global_chance_to_knockback_%"]=320, + ["base_inflict_cold_exposure_on_hit_%_chance"]=321, + ["base_inflict_fire_exposure_on_hit_%_chance"]=322, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=323, + ["base_killed_monster_dropped_item_quantity_+%"]=324, + ["base_killed_monster_dropped_item_rarity_+%"]=325, + ["base_life_cost_%"]=326, ["base_life_cost_+%"]=40, ["base_life_gain_per_target"]=117, - ["base_life_leech_from_physical_attack_damage_permyriad"]=330, - ["base_life_reservation_+%"]=332, - ["base_life_reservation_efficiency_+%"]=331, - ["base_lightning_damage_can_electrocute"]=333, - ["base_limit_+"]=334, - ["base_mana_cost_%"]=335, + ["base_life_leech_from_physical_attack_damage_permyriad"]=327, + ["base_life_reservation_+%"]=329, + ["base_life_reservation_efficiency_+%"]=328, + ["base_lightning_damage_can_electrocute"]=330, + ["base_limit_+"]=331, + ["base_mana_cost_%"]=332, ["base_mana_cost_+"]=207, ["base_mana_cost_-%"]=41, - ["base_mana_cost_efficiency_+%"]=336, + ["base_mana_cost_efficiency_+%"]=333, ["base_mana_cost_efficiency_+%_during_mana_flask"]=222, - ["base_mana_leech_from_physical_attack_damage_permyriad"]=337, - ["base_mana_reservation_+%"]=338, - ["base_maximum_seals_for_skill"]=339, - ["base_mine_detonation_time_ms"]=340, + ["base_mana_leech_from_physical_attack_damage_permyriad"]=334, + ["base_mana_reservation_+%"]=335, + ["base_maximum_seals_for_skill"]=336, + ["base_mine_detonation_time_ms"]=337, ["base_mine_duration"]=68, - ["base_number_of_additional_fissures"]=341, + ["base_number_of_additional_fissures"]=338, ["base_number_of_remote_mines_allowed"]=74, - ["base_number_of_runic_aftershocks_allowed"]=342, - ["base_number_of_support_ghosts_allowed"]=343, + ["base_number_of_runic_aftershocks_allowed"]=339, + ["base_number_of_support_ghosts_allowed"]=340, ["base_number_of_totems_allowed"]=71, ["base_number_of_traps_allowed"]=73, - ["base_overkill_icy_vortex_duration_ms"]=344, + ["base_overkill_icy_vortex_duration_ms"]=341, ["base_physical_damage_to_deal_per_minute"]=147, - ["base_poison_chance_is_bleed_chance_instead"]=345, - ["base_poison_duration_+%"]=346, - ["base_projectile_speed_+%"]=347, + ["base_poison_chance_is_bleed_chance_instead"]=342, + ["base_poison_duration_+%"]=343, + ["base_projectile_speed_+%"]=344, ["base_reduce_enemy_cold_resistance_%"]=83, ["base_reduce_enemy_fire_resistance_%"]=82, ["base_reduce_enemy_lightning_resistance_%"]=85, - ["base_remnant_duration_ms"]=348, - ["base_reservation_+%"]=350, - ["base_reservation_efficiency_+%"]=349, + ["base_remnant_duration_ms"]=345, + ["base_reservation_+%"]=347, + ["base_reservation_efficiency_+%"]=346, ["base_skill_area_of_effect_+%"]=45, ["base_skill_cost_life_instead_of_mana"]=51, - ["base_skill_cost_life_instead_of_mana_%"]=351, - ["base_skill_no_reservation"]=352, + ["base_skill_cost_life_instead_of_mana_%"]=348, + ["base_skill_no_reservation"]=349, ["base_skill_reserve_life_instead_of_mana"]=52, - ["base_skill_seal_gain_interval_ms"]=353, - ["base_skill_ward_cost_as_%_of_life_and_mana_cost"]=354, - ["base_spell_cooldown_speed_+%"]=355, - ["base_spirit_reservation_efficiency_+%"]=356, - ["base_stun_duration_+%"]=357, - ["base_stun_threshold_reduction_+%"]=358, + ["base_skill_seal_gain_interval_ms"]=350, + ["base_skill_ward_cost_as_%_of_life_and_mana_cost"]=351, + ["base_spell_cooldown_speed_+%"]=352, + ["base_spirit_reservation_efficiency_+%"]=353, + ["base_stun_duration_+%"]=354, + ["base_stun_threshold_reduction_+%"]=355, ["base_totem_duration"]=65, ["base_trap_duration"]=67, ["base_use_life_in_place_of_mana"]=53, - ["base_warcry_echo_X_times"]=1306, - ["base_ward_cost_%"]=359, - ["base_ward_cost_+"]=360, + ["base_warcry_echo_X_times"]=1302, + ["base_ward_cost_%"]=356, + ["base_ward_cost_+"]=357, ["base_ward_cost_+_%_of_maximum_ward"]=208, - ["bleed_chance_%_vs_full_life_enemy"]=361, - ["bleed_chance_+%_vs_full_life_enemy"]=362, + ["bleed_chance_%_vs_full_life_enemy"]=358, + ["bleed_chance_+%_vs_full_life_enemy"]=359, ["bleed_on_hit_base_duration"]=156, - ["bleed_on_hit_with_attacks_%"]=363, - ["bleeding_monsters_attack_speed_+%"]=364, - ["bleeding_monsters_movement_velocity_+%"]=365, + ["bleed_on_hit_with_attacks_%"]=360, + ["bleeding_monsters_attack_speed_+%"]=361, + ["bleeding_monsters_movement_velocity_+%"]=362, ["blind_duration_+%"]=78, - ["blind_effect_+%"]=366, - ["blood_magic_skill_life_cost_+%_final"]=367, - ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=368, + ["blind_effect_+%"]=363, + ["blood_magic_skill_life_cost_+%_final"]=364, + ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=365, ["branching_fissure_area_of_effect_+%_final"]=206, ["branching_fissure_damage_+%_final"]=205, - ["break_armour_equal_to_%_of_dexterity_vs_parried_enemies"]=369, - ["burn_damage_+%"]=370, - ["can_only_damage_low_life_enemies"]=371, - ["cannot_break_armour"]=372, + ["break_armour_equal_to_%_of_dexterity_vs_parried_enemies"]=366, + ["burn_damage_+%"]=367, + ["can_only_damage_low_life_enemies"]=368, + ["cannot_break_armour"]=369, ["cannot_cast_curses"]=134, - ["cannot_cause_bleeding"]=363, - ["cannot_cause_stun_but_allow_stun_buildup"]=373, - ["cannot_consume_impale"]=374, - ["cannot_consume_infusions"]=375, - ["cannot_consume_power_frenzy_endurance_charges"]=376, - ["cannot_daze"]=377, - ["cannot_inflict_blind"]=378, + ["cannot_cause_bleeding"]=360, + ["cannot_cause_stun_but_allow_stun_buildup"]=370, + ["cannot_consume_impale"]=371, + ["cannot_consume_infusions"]=372, + ["cannot_consume_power_frenzy_endurance_charges"]=373, + ["cannot_daze"]=374, + ["cannot_inflict_blind"]=375, ["cannot_inflict_elemental_ailments"]=168, - ["cannot_inflict_maim"]=379, - ["cannot_kill_enemies_with_hits"]=380, - ["cannot_miss_against_full_life_enemies"]=381, - ["cannot_pin"]=382, - ["cascadeable_offering_support_offering_casted_spell_damage_+%_final"]=383, - ["cascadeable_spells_occur_from_offering"]=383, + ["cannot_inflict_maim"]=376, + ["cannot_kill_enemies_with_hits"]=377, + ["cannot_miss_against_full_life_enemies"]=378, + ["cannot_pin"]=379, + ["cascadeable_offering_support_offering_casted_spell_damage_+%_final"]=380, + ["cascadeable_spells_occur_from_offering"]=380, ["cast_linked_spells_on_attack_crit_%"]=135, ["cast_linked_spells_on_melee_kill_%"]=136, ["cast_on_damage_taken_%"]=143, @@ -33207,1121 +33110,1120 @@ return { ["cast_on_death_%"]=140, ["cast_on_death_damage_+%_final_while_dead"]=128, ["cast_on_stunned_%"]=141, - ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=384, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=385, - ["cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value"]=386, - ["cast_when_damage_taken_trigger_threshold_+%"]=387, + ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=381, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=382, + ["cast_speed_additive_modifiers_also_apply_to_projectile_speed_at_%_value"]=383, + ["cast_when_damage_taken_trigger_threshold_+%"]=384, ["cast_while_channelling_time_ms"]=144, - ["chaining_range_+%"]=388, - ["chance_%_to_create_additional_remnant"]=393, - ["chance_%_to_double_effect_of_removing_charges"]=394, - ["chance_%_to_gain_abyssal_modifier_on_minion_death"]=395, - ["chance_%_to_gain_power_charges_per_combo_spent"]=389, - ["chance_for_coin_shower_on_kill_%"]=390, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=391, - ["chance_for_extra_damage_roll_%"]=392, - ["chance_to_aftershock_+%_per_250_ms_attack_time"]=397, - ["chance_to_bleed_on_hit_%_vs_maimed"]=398, - ["chance_to_chain_from_shocked_enemy_%"]=399, + ["chaining_range_+%"]=385, + ["chance_%_to_create_additional_remnant"]=390, + ["chance_%_to_double_effect_of_removing_charges"]=391, + ["chance_%_to_gain_abyssal_modifier_on_minion_death"]=392, + ["chance_%_to_gain_power_charges_per_combo_spent"]=386, + ["chance_for_coin_shower_on_kill_%"]=387, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=388, + ["chance_for_extra_damage_roll_%"]=389, + ["chance_to_aftershock_+%_per_250_ms_attack_time"]=394, + ["chance_to_bleed_on_hit_%_vs_maimed"]=395, + ["chance_to_chain_from_shocked_enemy_%"]=396, ["chance_to_crush_on_hit_%"]=224, - ["chance_to_double_stun_duration_%"]=400, - ["chance_to_fork_extra_projectile_%"]=401, - ["chance_to_fork_from_frozen_enemy_%"]=402, - ["chance_to_fortify_on_melee_hit_+%"]=403, - ["chance_to_gain_1_more_charge_%"]=404, - ["chance_to_gain_1_more_random_charge_%"]=405, - ["chance_to_gain_endurance_charge_on_armour_break_%"]=406, - ["chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%"]=407, - ["chance_to_gain_endurance_charge_on_perfect_timing_hit_%"]=408, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=409, - ["chance_to_ignore_hexproof_%"]=410, - ["chance_to_inflict_additional_impale_%"]=411, - ["chance_to_intimidate_on_hit_%"]=412, - ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=413, - ["chance_to_not_consume_glory_%"]=415, - ["chance_to_pierce_ignited_enemy_%"]=416, - ["chance_to_place_an_additional_mine_%"]=417, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=418, + ["chance_to_double_stun_duration_%"]=397, + ["chance_to_fork_extra_projectile_%"]=398, + ["chance_to_fork_from_frozen_enemy_%"]=399, + ["chance_to_fortify_on_melee_hit_+%"]=400, + ["chance_to_gain_1_more_charge_%"]=401, + ["chance_to_gain_1_more_random_charge_%"]=402, + ["chance_to_gain_endurance_charge_on_armour_break_%"]=403, + ["chance_to_gain_endurance_charge_on_heavy_stunning_non_unique_enemy_%"]=404, + ["chance_to_gain_endurance_charge_on_perfect_timing_hit_%"]=405, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=406, + ["chance_to_ignore_hexproof_%"]=407, + ["chance_to_inflict_additional_impale_%"]=408, + ["chance_to_intimidate_on_hit_%"]=409, + ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=410, + ["chance_to_not_consume_glory_%"]=412, + ["chance_to_pierce_ignited_enemy_%"]=413, + ["chance_to_place_an_additional_mine_%"]=414, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=415, ["chance_to_summon_support_ghost_on_killing_blow_%"]=180, - ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=419, - ["chance_to_unnerve_on_hit_%"]=421, - ["channelled_skill_damage_+%"]=422, - ["chaos_damage_%_dealt_as_armour_break"]=423, - ["chaos_damage_+%"]=425, - ["chaos_damage_can_freeze"]=424, + ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=416, + ["chance_to_unnerve_on_hit_%"]=418, + ["channelled_skill_damage_+%"]=419, + ["chaos_damage_%_dealt_as_armour_break"]=420, + ["chaos_damage_+%"]=422, + ["chaos_damage_can_freeze"]=421, ["chaos_damage_can_shock"]=219, - ["charge_skip_consume_chance_%"]=426, + ["charge_skip_consume_chance_%"]=423, ["chill_duration_+%"]=182, ["chill_effect_+%"]=181, - ["chilled_ground_applies_%_freeze_multiplier_taken"]=427, - ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=428, - ["cold_ailment_effect_+%"]=429, - ["cold_damage_+%"]=431, - ["cold_damage_can_impale"]=430, - ["combat_rush_effect_+%"]=432, - ["combo_falloff_speed_+%"]=433, - ["companion_deflection_rating_+_per_10_summoner_deflection_rating"]=436, - ["companion_evasion_rating_+_per_10_summoner_evasion_rating"]=435, - ["companion_takes_%_damage_before_you_from_support"]=437, - ["companions_are_gigantic"]=434, - ["conditional_skill_additional_usages_after_meeting_requirement"]=438, - ["conditional_skill_additional_usages_duration_ms"]=438, - ["consume_%_of_maximum_life_flask_charges_on_skill_use"]=909, - ["consume_%_of_maximum_mana_flask_charges_on_skill_use"]=557, - ["consume_armour_break_to_trigger_battershout_explosion"]=439, - ["consume_bleed_to_create_X_haemocrystals"]=440, - ["consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge"]=441, - ["consume_enemy_daze_to_always_hit"]=442, - ["consume_enemy_freeze_to_guarantee_crit"]=443, - ["consume_enemy_freeze_to_trigger_morrigan_ward"]=444, - ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=445, - ["consume_ignite_on_hit"]=446, - ["consume_maim_on_hit_to_break_%_armour"]=447, - ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=448, - ["consume_shock_of_X_enemies_to_trigger_shocking_rift"]=1302, - ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=449, - ["create_X_briar_thorns_on_slam"]=450, - ["create_life_remnant_on_melee_kill_bleeding_enemy_%"]=451, - ["create_mini_bell_on_expending_combo_per_X_combo_expended"]=452, - ["create_verisium_remmant_on_kill_enemy_%"]=453, - ["critical_hit_damaging_ailment_effect_+%"]=454, + ["chilled_ground_applies_%_freeze_multiplier_taken"]=424, + ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=425, + ["cold_ailment_effect_+%"]=426, + ["cold_damage_+%"]=428, + ["cold_damage_can_impale"]=427, + ["combat_rush_effect_+%"]=429, + ["combo_falloff_speed_+%"]=430, + ["companion_deflection_rating_+_per_10_summoner_deflection_rating"]=433, + ["companion_evasion_rating_+_per_10_summoner_evasion_rating"]=432, + ["companion_takes_%_damage_before_you_from_support"]=434, + ["companions_are_gigantic"]=431, + ["conditional_skill_additional_usages_after_meeting_requirement"]=435, + ["conditional_skill_additional_usages_duration_ms"]=435, + ["consume_%_of_maximum_life_flask_charges_on_skill_use"]=906, + ["consume_%_of_maximum_mana_flask_charges_on_skill_use"]=554, + ["consume_armour_break_to_trigger_battershout_explosion"]=436, + ["consume_bleed_to_create_X_haemocrystals"]=437, + ["consume_endurance_charges_on_use_to_recover_%_maximum_life_per_charge"]=438, + ["consume_enemy_daze_to_always_hit"]=439, + ["consume_enemy_freeze_to_guarantee_crit"]=440, + ["consume_enemy_freeze_to_trigger_morrigan_ward"]=441, + ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=442, + ["consume_ignite_on_hit"]=443, + ["consume_maim_on_hit_to_break_%_armour"]=444, + ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=445, + ["consume_shock_of_X_enemies_to_trigger_shocking_rift"]=1298, + ["cooldown_recovery_rate_+%_when_a_unique_enemy_in_your_presence"]=446, + ["create_X_briar_thorns_on_slam"]=447, + ["create_life_remnant_on_melee_kill_bleeding_enemy_%"]=448, + ["create_mini_bell_on_expending_combo_per_X_combo_expended"]=449, + ["create_verisium_remmant_on_kill_enemy_%"]=450, + ["critical_hit_damaging_ailment_effect_+%"]=451, ["critical_strike_chance_+%"]=79, - ["critical_strike_chance_+%_per_5_rage"]=455, - ["critical_strike_chance_+%_per_righteous_charge"]=1140, - ["critical_strike_chance_+%_vs_blinded_enemies"]=456, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=457, + ["critical_strike_chance_+%_per_5_rage"]=452, + ["critical_strike_chance_+%_per_righteous_charge"]=1136, + ["critical_strike_chance_+%_vs_blinded_enemies"]=453, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=454, ["critical_strike_multiplier_+_while_affected_by_elusive"]=170, - ["crossbow_attack_%_chance_to_not_consume_ammo"]=458, - ["crossbow_load_x_bolts_on_dodge"]=459, - ["crossbow_reload_on_heavy_stun"]=460, + ["crossbow_attack_%_chance_to_not_consume_ammo"]=455, + ["crossbow_load_x_bolts_on_dodge"]=456, + ["crossbow_reload_on_heavy_stun"]=457, ["cruelty_duration_+%"]=172, - ["cruelty_effect_+%"]=461, - ["crush_for_2_seconds_on_hit_%_chance"]=462, + ["cruelty_effect_+%"]=458, + ["crush_for_2_seconds_on_hit_%_chance"]=459, ["crushed_target_%_physical_damage_taken_as_armour_break"]=226, - ["crushing_blow_vs_ignited_and_fully_armour_broken"]=463, - ["cull_frozen_enemies_on_hit"]=464, + ["crushing_blow_vs_ignited_and_fully_armour_broken"]=460, + ["cull_frozen_enemies_on_hit"]=461, ["curse_apply_as_aura"]=19, - ["curse_apply_as_curse_zone"]=465, - ["curse_area_of_effect_+%"]=466, + ["curse_apply_as_curse_zone"]=462, + ["curse_area_of_effect_+%"]=463, ["curse_effect_+%"]=150, - ["curse_ignores_curse_limit"]=467, + ["curse_ignores_curse_limit"]=464, ["curse_pacify_for_final_%_of_duration"]=177, ["curse_supported_by_blasphemy"]=19, - ["curse_triggers_decaying_hex"]=468, - ["curse_zones_are_hazards"]=469, - ["curses_reflected_to_self"]=470, - ["damage_+%"]=473, - ["damage_+%_final_per_totem_in_radius_from_support_greatwood"]=471, - ["damage_+%_for_non_minions"]=474, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=475, - ["damage_+%_on_full_energy_shield"]=483, - ["damage_+%_per_200_mana_spent_recently"]=476, - ["damage_+%_per_endurance_charge"]=477, - ["damage_+%_per_frenzy_charge"]=478, - ["damage_+%_per_power_charge"]=479, - ["damage_+%_vs_enemies_on_full_life"]=480, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=481, - ["damage_+%_vs_frozen_enemies"]=482, - ["damage_+%_when_on_full_life"]=484, - ["damage_+%_when_on_low_life"]=485, - ["damage_+%_while_an_ailment_on_you"]=486, - ["damage_+%_while_life_leeching"]=487, - ["damage_+%_while_mana_leeching"]=488, - ["damage_over_time_+%"]=472, + ["curse_triggers_decaying_hex"]=465, + ["curse_zones_are_hazards"]=466, + ["curses_reflected_to_self"]=467, + ["damage_+%"]=470, + ["damage_+%_final_per_totem_in_radius_from_support_greatwood"]=468, + ["damage_+%_for_non_minions"]=471, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=472, + ["damage_+%_on_full_energy_shield"]=480, + ["damage_+%_per_200_mana_spent_recently"]=473, + ["damage_+%_per_endurance_charge"]=474, + ["damage_+%_per_frenzy_charge"]=475, + ["damage_+%_per_power_charge"]=476, + ["damage_+%_vs_enemies_on_full_life"]=477, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=478, + ["damage_+%_vs_frozen_enemies"]=479, + ["damage_+%_when_on_full_life"]=481, + ["damage_+%_when_on_low_life"]=482, + ["damage_+%_while_an_ailment_on_you"]=483, + ["damage_+%_while_life_leeching"]=484, + ["damage_+%_while_mana_leeching"]=485, + ["damage_over_time_+%"]=469, ["damage_penetrates_%_elemental_resistances_while_all_resonance_is_25"]=201, - ["damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=489, - ["damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=490, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=491, - ["damage_vs_enemies_on_low_life_+%"]=492, - ["damaging_ailments_deal_damage_+%_faster"]=493, - ["dangerous_resolve_attack_damage_+1%_final_per_X_armour"]=494, - ["dangerous_resolve_explosion_cooldown_ms"]=495, - ["dangerous_resolve_stack_duration_ms"]=496, - ["daze_on_hit_vs_enemies_at_full_life"]=497, - ["daze_self_on_critical_hit_for_X_ms"]=498, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=499, - ["deal_no_elemental_damage"]=500, - ["deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger"]=501, - ["deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger"]=502, - ["deathmark_minion_damage_+%_final"]=503, - ["difficulty_of_meeting_conditional_requirement_+%"]=504, - ["display_base_intensity_loss"]=505, - ["distance_scaled_accuracy_rating_penalty_+%"]=506, - ["doedre_cursed_ground_toad_spawn_interval_ms"]=507, - ["dot_multiplier_+"]=508, - ["double_ancestral_boost_effect"]=509, - ["echoed_spell_area_of_effect_+%"]=510, - ["elemental_damage_+%"]=512, + ["damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=486, + ["damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=487, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=488, + ["damage_vs_enemies_on_low_life_+%"]=489, + ["damaging_ailments_deal_damage_+%_faster"]=490, + ["dangerous_resolve_attack_damage_+1%_final_per_X_armour"]=491, + ["dangerous_resolve_explosion_cooldown_ms"]=492, + ["dangerous_resolve_stack_duration_ms"]=493, + ["daze_on_hit_vs_enemies_at_full_life"]=494, + ["daze_self_on_critical_hit_for_X_ms"]=495, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=496, + ["deal_no_elemental_damage"]=497, + ["deal_thorns_damage_on_hit_for_X_hits_after_thorns_trigger"]=498, + ["deal_thorns_damage_twice_on_hit_for_X_hits_after_thorns_trigger"]=499, + ["deathmark_minion_damage_+%_final"]=500, + ["difficulty_of_meeting_conditional_requirement_+%"]=501, + ["display_base_intensity_loss"]=502, + ["distance_scaled_accuracy_rating_penalty_+%"]=503, + ["doedre_cursed_ground_toad_spawn_interval_ms"]=504, + ["dot_multiplier_+"]=505, + ["double_ancestral_boost_effect"]=506, + ["echoed_spell_area_of_effect_+%"]=507, + ["elemental_damage_+%"]=509, ["elemental_damage_+%_final_per_5_lowest_resonance"]=200, - ["elemental_damage_+%_final_per_righteous_charge"]=1141, - ["elemental_damage_cannot_be_reflected"]=511, - ["elusive_effect_+%"]=513, - ["enemies_you_shock_movement_speed_+%"]=514, - ["enemies_you_shock_take_%_increased_physical_damage"]=515, - ["enemy_phys_reduction_%_penalty_vs_hit"]=517, - ["energy_generated_+%"]=518, - ["evasion_+%_while_performing_action_per_250_ms_attack_time"]=519, - ["explode_on_low_life_%_maximum_life_to_deal"]=520, - ["exposure_effect_+%"]=521, + ["elemental_damage_+%_final_per_righteous_charge"]=1137, + ["elemental_damage_cannot_be_reflected"]=508, + ["elusive_effect_+%"]=510, + ["enemies_you_shock_movement_speed_+%"]=511, + ["enemies_you_shock_take_%_increased_physical_damage"]=512, + ["enemy_phys_reduction_%_penalty_vs_hit"]=514, + ["energy_generated_+%"]=515, + ["evasion_+%_while_performing_action_per_250_ms_attack_time"]=516, + ["explode_on_low_life_%_maximum_life_to_deal"]=517, + ["exposure_effect_+%"]=518, ["extra_target_targeting_distance_+%"]=44, - ["faster_bleed_%"]=522, - ["faster_burn_%"]=523, - ["faster_poison_%"]=524, - ["faster_poison_%_per_current_rage"]=525, - ["feeding_frenzy_minion_damage_+%_final"]=526, - ["feeding_frenzy_minion_damage_taken_+%_final"]=527, - ["final_strike_attack_damage_%_dealt_as_armour_break"]=528, - ["final_strike_is_ancestrally_boosted"]=529, - ["fire_damage_+%"]=530, - ["fire_dot_multiplier_+"]=531, - ["firestorm_drop_burning_ground_duration_ms"]=532, - ["flame_pillar_support_maximum_pillars_per_skill_use"]=533, - ["font_of_blood_radius"]=263, - ["font_of_mana_radius"]=264, - ["fortify_duration_+%"]=534, - ["freeze_applies_%_physical_damage_taken_as_armour_break"]=535, - ["freeze_applies_cold_resistance_+"]=536, - ["freeze_duration_+%"]=538, - ["freeze_duration_ms_+"]=537, + ["faster_bleed_%"]=519, + ["faster_burn_%"]=520, + ["faster_poison_%"]=521, + ["faster_poison_%_per_current_rage"]=522, + ["feeding_frenzy_minion_damage_+%_final"]=523, + ["feeding_frenzy_minion_damage_taken_+%_final"]=524, + ["final_strike_attack_damage_%_dealt_as_armour_break"]=525, + ["final_strike_is_ancestrally_boosted"]=526, + ["fire_damage_+%"]=527, + ["fire_dot_multiplier_+"]=528, + ["firestorm_drop_burning_ground_duration_ms"]=529, + ["flame_pillar_support_maximum_pillars_per_skill_use"]=530, + ["font_of_blood_radius"]=260, + ["font_of_mana_radius"]=261, + ["fortify_duration_+%"]=531, + ["freeze_applies_%_physical_damage_taken_as_armour_break"]=532, + ["freeze_applies_cold_resistance_+"]=533, + ["freeze_duration_+%"]=535, + ["freeze_duration_ms_+"]=534, ["freeze_mine_cold_resistance_+_while_frozen"]=169, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=540, - ["frost_bomb_damage_+%_final_per_100ms_duration"]=541, - ["fully_break_enemies_armour_on_heavy_stun"]=542, - ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=543, - ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage"]=1329, - ["fully_broken_armour_duration_ms_removed_on_hit"]=544, - ["gain_%_damage_as_lighting_per_mana_flask_charge_consumed"]=557, - ["gain_%_of_base_wand_damage_as_added_spell_damage"]=545, - ["gain_%_of_damage_as_physical_per_20_life_cost_up_to_40_%"]=558, - ["gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds"]=559, - ["gain_1_rage_on_use_%_chance"]=546, - ["gain_X_guard_on_heavy_stun_per_10_strength"]=547, - ["gain_X_guard_on_stun_per_10_strength"]=547, - ["gain_X_perfection_on_successful_perfect_timing"]=548, - ["gain_X_tasalios_perfection_on_perfect_timing"]=549, - ["gain_X_volatility_on_empowered_skill_use"]=550, - ["gain_X_wildshard_stacks_on_cast"]=551, - ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=396, - ["gain_dangerous_resolve_stack_per_X_ms_channeling"]=552, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=537, + ["frost_bomb_damage_+%_final_per_100ms_duration"]=538, + ["fully_break_enemies_armour_on_heavy_stun"]=539, + ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=540, + ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage"]=1325, + ["fully_broken_armour_duration_ms_removed_on_hit"]=541, + ["gain_%_damage_as_lighting_per_mana_flask_charge_consumed"]=554, + ["gain_%_of_base_wand_damage_as_added_spell_damage"]=542, + ["gain_%_of_damage_as_physical_per_20_life_cost_up_to_40_%"]=555, + ["gain_%_of_evasion_as_deflection_rating_on_perfect_timing_for_8_seconds"]=556, + ["gain_1_rage_on_use_%_chance"]=543, + ["gain_X_guard_on_heavy_stun_per_10_strength"]=544, + ["gain_X_guard_on_stun_per_10_strength"]=544, + ["gain_X_perfection_on_successful_perfect_timing"]=545, + ["gain_X_tasalios_perfection_on_perfect_timing"]=546, + ["gain_X_volatility_on_empowered_skill_use"]=547, + ["gain_X_wildshard_stacks_on_cast"]=548, + ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=393, + ["gain_dangerous_resolve_stack_per_X_ms_channeling"]=549, ["gain_elusive_on_crit_%_chance"]=164, - ["gain_endurance_charge_on_melee_stun"]=553, - ["gain_endurance_charge_on_melee_stun_%"]=553, - ["gain_energy_shield_cost_equal_to_intelligence"]=554, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=555, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=556, - ["gain_power_charge_on_kill_with_hit_%"]=560, + ["gain_endurance_charge_on_melee_stun"]=550, + ["gain_endurance_charge_on_melee_stun_%"]=550, + ["gain_energy_shield_cost_equal_to_intelligence"]=551, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=552, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=553, + ["gain_power_charge_on_kill_with_hit_%"]=557, ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=199, - ["gain_righteous_charge_on_mana_spent_%"]=561, - ["gain_unholy_might_for_X_ms_on_command"]=562, - ["gain_vaal_soul_on_hit_cooldown_ms"]=563, - ["gain_x%_of_maximum_rage_on_melee_hit"]=564, - ["gain_x_endurance_charges_on_heavy_stunning_unique_enemy"]=565, - ["gain_x_rage_on_melee_hit"]=566, - ["gem_display_quality_has_no_effect"]=567, + ["gain_righteous_charge_on_mana_spent_%"]=558, + ["gain_unholy_might_for_X_ms_on_command"]=559, + ["gain_vaal_soul_on_hit_cooldown_ms"]=560, + ["gain_x%_of_maximum_rage_on_melee_hit"]=561, + ["gain_x_endurance_charges_on_heavy_stunning_unique_enemy"]=562, + ["gain_x_rage_on_melee_hit"]=563, + ["gem_display_quality_has_no_effect"]=564, ["global_cannot_crit"]=209, ["global_chance_to_blind_on_hit_%"]=77, - ["global_hit_causes_monster_flee_%"]=568, - ["global_knockback"]=569, - ["global_maximum_added_chaos_damage"]=570, - ["global_maximum_added_cold_damage"]=571, - ["global_maximum_added_fire_damage"]=572, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1067, - ["global_maximum_added_lightning_damage"]=573, - ["global_maximum_added_physical_damage"]=574, - ["global_minimum_added_chaos_damage"]=570, - ["global_minimum_added_cold_damage"]=571, - ["global_minimum_added_fire_damage"]=572, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1067, - ["global_minimum_added_lightning_damage"]=573, - ["global_minimum_added_physical_damage"]=574, + ["global_hit_causes_monster_flee_%"]=565, + ["global_knockback"]=566, + ["global_maximum_added_chaos_damage"]=567, + ["global_maximum_added_cold_damage"]=568, + ["global_maximum_added_fire_damage"]=569, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=1063, + ["global_maximum_added_lightning_damage"]=570, + ["global_maximum_added_physical_damage"]=571, + ["global_minimum_added_chaos_damage"]=567, + ["global_minimum_added_cold_damage"]=568, + ["global_minimum_added_fire_damage"]=569, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=1063, + ["global_minimum_added_lightning_damage"]=570, + ["global_minimum_added_physical_damage"]=571, ["global_poison_on_hit"]=165, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=575, - ["grenade_only_detonate_from_detonators"]=576, - ["grenade_skill_%_chance_to_explode_twice"]=577, - ["grenade_skill_cooldown_speed_+%"]=578, - ["grenade_skill_does_not_bounce_off_ground"]=579, - ["ground_effects_apply_cooldown_speed_+%_final"]=580, - ["ground_effects_cannot_trigger"]=581, - ["grounding_shocks_chance_%_to_create_orb_on_shocking_enemy"]=582, - ["guard_on_stun_guard_duration_ms"]=547, - ["haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed"]=583, - ["hazard_rearm_%_chance"]=584, - ["hazards_trigger_at_end_of_duration_instead"]=585, - ["herald_effect_on_self_+%"]=586, - ["hex_transfer_on_death_range_+%"]=587, - ["hit_damage_+%"]=588, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=572, + ["grenade_only_detonate_from_detonators"]=573, + ["grenade_skill_%_chance_to_explode_twice"]=574, + ["grenade_skill_cooldown_speed_+%"]=575, + ["grenade_skill_does_not_bounce_off_ground"]=576, + ["ground_effects_apply_cooldown_speed_+%_final"]=577, + ["ground_effects_cannot_trigger"]=578, + ["grounding_shocks_chance_%_to_create_orb_on_shocking_enemy"]=579, + ["guard_on_stun_guard_duration_ms"]=544, + ["haemocrystals_X_additional_crystals_on_consuming_aggravated_bleed"]=580, + ["hazard_rearm_%_chance"]=581, + ["hazards_trigger_at_end_of_duration_instead"]=582, + ["herald_effect_on_self_+%"]=583, + ["hex_transfer_on_death_range_+%"]=584, + ["hit_damage_+%"]=585, ["hits_grant_cruelty"]=203, - ["hits_ignore_enemy_fire_resistance"]=589, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=590, - ["ice_crystal_explosion_cold_damage_can_impale"]=591, - ["ice_crystal_explosion_impale_chance_%"]=592, - ["ignite_duration_+%"]=593, - ["ignite_effect_+%_final_against_frozen_enemies"]=594, - ["ignites_apply_fire_resistance_+"]=595, - ["impale_magnitude_+%"]=596, - ["impale_on_hit_%_chance"]=597, - ["impale_support_physical_damage_+%_final"]=598, - ["inc_aoe_plus_more_area_damage_+%_final"]=599, - ["infernal_legion_minion_burning_effect_radius"]=1082, + ["hits_ignore_enemy_fire_resistance"]=586, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=587, + ["ice_crystal_explosion_cold_damage_can_impale"]=588, + ["ice_crystal_explosion_impale_chance_%"]=589, + ["ignite_duration_+%"]=590, + ["ignite_effect_+%_final_against_frozen_enemies"]=591, + ["ignites_apply_fire_resistance_+"]=592, + ["impale_magnitude_+%"]=593, + ["impale_on_hit_%_chance"]=594, + ["impale_support_physical_damage_+%_final"]=595, + ["inc_aoe_plus_more_area_damage_+%_final"]=596, + ["infernal_legion_minion_burning_effect_radius"]=1078, ["infernal_legion_minions_have_burning_effect_radius_+"]=195, - ["inflict_exposure_for_x_ms_on_cold_crit"]=600, - ["inflict_exposure_for_x_ms_on_ignite"]=601, - ["inflict_exposure_for_x_ms_on_shock"]=602, - ["inspiration_charge_duration_+%"]=603, - ["instability_on_critical_%_chance"]=604, - ["instilling_all_damage_%_to_gain_as_instilling_type"]=605, - ["intensity_loss_frequency_while_moving_+%"]=606, - ["intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken"]=607, - ["iron_grip_damage_modifier_effectiveness_%"]=608, - ["iron_will_damage_modifier_effectiveness_%"]=609, + ["inflict_exposure_for_x_ms_on_cold_crit"]=597, + ["inflict_exposure_for_x_ms_on_ignite"]=598, + ["inflict_exposure_for_x_ms_on_shock"]=599, + ["inspiration_charge_duration_+%"]=600, + ["instability_on_critical_%_chance"]=601, + ["instilling_all_damage_%_to_gain_as_instilling_type"]=602, + ["intensity_loss_frequency_while_moving_+%"]=603, + ["intimidate_on_heavy_stun_vs_ignited_and_fully_armour_broken"]=604, + ["iron_grip_damage_modifier_effectiveness_%"]=605, + ["iron_will_damage_modifier_effectiveness_%"]=606, ["is_remote_mine"]=59, ["keystone_point_blank"]=58, ["kill_enemy_on_hit_if_under_10%_life"]=57, - ["knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently"]=611, - ["knockback_chance_%_at_close_range"]=612, - ["knockback_distance_+%"]=613, - ["life_leech_from_source_not_removed_at_full_life"]=614, - ["lightning_ailment_effect_+%"]=615, - ["lightning_damage_+%"]=616, - ["lightning_damage_roll_always_min_or_max"]=617, - ["local_gem_dex_requirement_+%"]=618, - ["local_gem_int_requirement_+%"]=619, - ["local_gem_str_requirement_+%"]=620, - ["lose_%_of_life_es_and_mana_when_skill_is_used"]=621, - ["lose_%_of_maximum_rage_on_dealing_critical_strike"]=622, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1142, + ["knights_legacy_non_active_blocking_melee_skill_damage_+%_final_to_grant_if_active_blocked_with_supported_skills_recently"]=608, + ["knockback_chance_%_at_close_range"]=609, + ["knockback_distance_+%"]=610, + ["life_leech_from_source_not_removed_at_full_life"]=611, + ["lightning_ailment_effect_+%"]=612, + ["lightning_damage_+%"]=613, + ["lightning_damage_roll_always_min_or_max"]=614, + ["local_gem_dex_requirement_+%"]=615, + ["local_gem_int_requirement_+%"]=616, + ["local_gem_str_requirement_+%"]=617, + ["lose_%_of_life_es_and_mana_when_skill_is_used"]=618, + ["lose_%_of_maximum_rage_on_dealing_critical_strike"]=619, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1138, ["lose_x%_of_life_per_5_rage_on_supported_skill_use"]=223, - ["loyalty_%_of_redirected_damage_recouped_as_life_for_owner"]=623, - ["maim_effect_+%"]=624, - ["maim_on_hit_%"]=625, + ["loyalty_%_of_redirected_damage_recouped_as_life_for_owner"]=620, + ["maim_effect_+%"]=621, + ["maim_on_hit_%"]=622, ["mana_gain_per_target"]=118, - ["mana_leech_from_elemental_instead"]=626, - ["manaweave_added_cold_damage_%_cost_if_payable"]=628, - ["manaweave_added_lightning_damage_%_cost_if_payable"]=627, - ["manaweave_cost_equals_%_unreserved_mana"]=627, + ["mana_leech_from_elemental_instead"]=623, + ["manaweave_added_cold_damage_%_cost_if_payable"]=625, + ["manaweave_added_lightning_damage_%_cost_if_payable"]=624, + ["manaweave_cost_equals_%_unreserved_mana"]=624, ["mark_effect_+%"]=218, - ["marked_enemies_leech_physical_attack_damage_taken_as_life_to_you_permyriad"]=630, - ["marked_enemies_leech_physical_attack_damage_taken_as_mana_to_you_permyriad"]=629, - ["marked_target_%_physical_damage_taken_as_armour_break"]=631, - ["marks_avoid_consumption_when_first_activated"]=632, - ["max_toads_per_doedre_cursed_ground"]=507, - ["maximum_added_cold_damage_per_frenzy_charge"]=645, - ["maximum_curse_zones_allowed"]=634, - ["maximum_dangerous_resolve_stacks"]=635, - ["maximum_intensify_stacks"]=636, + ["marked_enemies_leech_physical_attack_damage_taken_as_life_to_you_permyriad"]=627, + ["marked_enemies_leech_physical_attack_damage_taken_as_mana_to_you_permyriad"]=626, + ["marked_target_%_physical_damage_taken_as_armour_break"]=628, + ["marks_avoid_consumption_when_first_activated"]=629, + ["max_toads_per_doedre_cursed_ground"]=504, + ["maximum_added_cold_damage_per_frenzy_charge"]=642, + ["maximum_curse_zones_allowed"]=631, + ["maximum_dangerous_resolve_stacks"]=632, + ["maximum_intensify_stacks"]=633, ["melee_attack_number_of_spirit_strikes"]=42, - ["melee_damage_+%"]=637, - ["melee_damage_vs_bleeding_enemies_+%"]=638, - ["melee_physical_damage_+%"]=639, - ["melee_range_+"]=640, + ["melee_damage_+%"]=634, + ["melee_damage_vs_bleeding_enemies_+%"]=635, + ["melee_physical_damage_+%"]=636, + ["melee_range_+"]=637, ["melee_splash"]=120, ["mine_critical_strike_chance_+%_per_power_charge"]=184, - ["mine_detonation_radius_+%"]=641, - ["mine_detonation_speed_+%"]=642, + ["mine_detonation_radius_+%"]=638, + ["mine_detonation_speed_+%"]=639, ["mine_duration_+%"]=76, - ["mine_laying_speed_+%"]=643, - ["mine_projectile_speed_+%_per_frenzy_charge"]=644, + ["mine_laying_speed_+%"]=640, + ["mine_projectile_speed_+%_per_frenzy_charge"]=641, ["mine_throwing_speed_+%_per_frenzy_charge"]=183, - ["minimum_added_cold_damage_per_frenzy_charge"]=645, - ["minimum_power_from_quality"]=646, - ["minion_actor_scale_+%"]=647, - ["minion_additional_physical_damage_reduction_%"]=648, - ["minion_attack_speed_+%"]=649, - ["minion_block_%"]=650, - ["minion_burning_damage_+%"]=651, - ["minion_cast_speed_+%"]=652, - ["minion_cathas_brilliance_blind_aura_radius"]=653, - ["minion_chance_to_deal_double_damage_%"]=654, - ["minion_chance_to_taunt_on_hit_%"]=655, - ["minion_command_skill_cooldown_speed_+%"]=656, - ["minion_cooldown_recovery_+%"]=657, - ["minion_damage_+%"]=658, - ["minion_damage_+%_on_full_life"]=659, + ["minimum_added_cold_damage_per_frenzy_charge"]=642, + ["minimum_power_from_quality"]=643, + ["minion_actor_scale_+%"]=644, + ["minion_additional_physical_damage_reduction_%"]=645, + ["minion_attack_speed_+%"]=646, + ["minion_block_%"]=647, + ["minion_burning_damage_+%"]=648, + ["minion_cast_speed_+%"]=649, + ["minion_cathas_brilliance_blind_aura_radius"]=650, + ["minion_chance_to_deal_double_damage_%"]=651, + ["minion_chance_to_taunt_on_hit_%"]=652, + ["minion_command_skill_cooldown_speed_+%"]=653, + ["minion_cooldown_recovery_+%"]=654, + ["minion_damage_+%"]=655, + ["minion_damage_+%_on_full_life"]=656, ["minion_elemental_resistance_%"]=185, ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=192, - ["minion_fire_damage_resistance_%"]=1074, + ["minion_fire_damage_resistance_%"]=1070, ["minion_fire_damage_taken_+%"]=193, - ["minion_gain_unholy_might_for_X_ms_on_command"]=660, - ["minion_larger_aggro_radius"]=1323, + ["minion_gain_unholy_might_for_X_ms_on_command"]=657, + ["minion_larger_aggro_radius"]=1319, ["minion_maximum_all_elemental_resistances_%"]=186, - ["minion_maximum_life_+%"]=661, - ["minion_melee_splash"]=662, - ["minion_movement_speed_+%"]=663, - ["minion_on_death_heal_nearby_minions_for_%_of_life_and_remove_ailments"]=664, - ["minion_on_death_heal_radius"]=664, - ["minion_projectile_speed_+%"]=665, - ["minion_recover_%_maximum_life_on_hit"]=666, - ["minions_are_defensive"]=1324, - ["minions_are_gigantic"]=667, - ["minions_cannot_be_damaged"]=668, - ["minions_deal_no_damage"]=669, - ["minions_inflict_exposure_on_hit_%_chance"]=670, - ["mirage_archer_number_of_additional_projectiles"]=671, - ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"]=672, - ["mixed_maladies_poison_effect_+%_final_vs_bleeding"]=673, - ["modifiers_to_number_of_projectiles_instead_apply_to_terrain_only_chains"]=674, - ["movement_speed_penalty_+%_while_performing_action"]=675, - ["multiple_projectiles_projectile_spread_+%"]=676, - ["never_freeze"]=677, + ["minion_maximum_life_+%"]=658, + ["minion_melee_splash"]=659, + ["minion_movement_speed_+%"]=660, + ["minion_on_death_heal_nearby_minions_for_%_of_life_and_remove_ailments"]=661, + ["minion_on_death_heal_radius"]=661, + ["minion_projectile_speed_+%"]=662, + ["minion_recover_%_maximum_life_on_hit"]=663, + ["minions_are_defensive"]=1320, + ["minions_are_gigantic"]=664, + ["minions_cannot_be_damaged"]=665, + ["minions_deal_no_damage"]=666, + ["minions_inflict_exposure_on_hit_%_chance"]=667, + ["mirage_archer_number_of_additional_projectiles"]=668, + ["mixed_maladies_bleed_effect_+%_final_vs_poisoned"]=669, + ["mixed_maladies_poison_effect_+%_final_vs_bleeding"]=670, + ["modifiers_to_number_of_projectiles_instead_apply_to_terrain_only_chains"]=671, + ["movement_speed_penalty_+%_while_performing_action"]=672, + ["multiple_projectiles_projectile_spread_+%"]=673, + ["never_freeze"]=674, ["never_ignite"]=214, ["never_shock"]=215, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=678, - ["no_cost"]=679, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=675, + ["no_cost"]=676, ["no_spirit_strikes"]=43, - ["non_curse_aura_effect_+%"]=680, - ["non_damaging_ailment_effect_+%"]=681, - ["non_skill_base_all_damage_%_to_gain_as_chaos"]=682, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=683, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=684, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=685, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=686, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=687, - ["non_skill_base_cold_damage_%_to_convert_to_fire"]=688, - ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=689, - ["non_skill_base_cold_damage_%_to_gain_as_fire"]=690, - ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=691, - ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=692, - ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=693, - ["non_skill_base_physical_damage_%_to_convert_to_cold"]=694, - ["non_skill_base_physical_damage_%_to_convert_to_fire"]=695, - ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=696, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=697, - ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=698, - ["non_skill_base_physical_damage_%_to_gain_as_fire"]=699, - ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=700, - ["nova_skills_cast_at_target_location"]=701, - ["number_of_additional_curses_allowed"]=702, + ["non_curse_aura_effect_+%"]=677, + ["non_damaging_ailment_effect_+%"]=678, + ["non_skill_base_all_damage_%_to_gain_as_chaos"]=679, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=680, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=681, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=682, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=683, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=684, + ["non_skill_base_cold_damage_%_to_convert_to_fire"]=685, + ["non_skill_base_cold_damage_%_to_gain_as_chaos"]=686, + ["non_skill_base_cold_damage_%_to_gain_as_fire"]=687, + ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=688, + ["non_skill_base_lightning_damage_%_to_gain_as_chaos"]=689, + ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=690, + ["non_skill_base_physical_damage_%_to_convert_to_cold"]=691, + ["non_skill_base_physical_damage_%_to_convert_to_fire"]=692, + ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=693, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=694, + ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=695, + ["non_skill_base_physical_damage_%_to_gain_as_fire"]=696, + ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=697, + ["nova_skills_cast_at_target_location"]=698, + ["number_of_additional_curses_allowed"]=699, ["number_of_additional_forks_base"]=90, - ["number_of_additional_mines_to_place"]=703, - ["number_of_additional_poison_stacks"]=704, - ["number_of_additional_projectiles"]=705, - ["number_of_additional_remote_mines_allowed"]=706, - ["number_of_additional_traps_allowed"]=707, + ["number_of_additional_mines_to_place"]=700, + ["number_of_additional_poison_stacks"]=701, + ["number_of_additional_projectiles"]=702, + ["number_of_additional_remote_mines_allowed"]=703, + ["number_of_additional_traps_allowed"]=704, ["number_of_additional_traps_to_throw"]=60, ["number_of_branching_fissures"]=204, ["number_of_chains"]=86, - ["number_of_dual_cascade_aftershocks"]=708, + ["number_of_dual_cascade_aftershocks"]=705, ["number_of_mines_to_place"]=59, ["number_of_totems_allowed_is_1"]=1, - ["number_of_warcries_exerting_this_action"]=610, - ["offering_spells_effect_+%"]=709, - ["offering_spells_effect_+%_if_consumed_additional_skeleton"]=710, - ["on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies"]=711, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=712, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=713, - ["palm_skill_number_of_spirit_strikes"]=714, - ["parallel_projectile_firing_point_x_dist_+%"]=715, + ["number_of_warcries_exerting_this_action"]=607, + ["offering_spells_effect_+%"]=706, + ["offering_spells_effect_+%_if_consumed_additional_skeleton"]=707, + ["on_kill_effect_occur_twice_chance_%_vs_bleeding_enemies"]=708, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=709, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=710, + ["palm_skill_number_of_spirit_strikes"]=711, + ["parallel_projectile_firing_point_x_dist_+%"]=712, parent="stat_descriptions", - ["perfect_timing_window_ms_+%"]=720, - ["physical_damage_+%"]=721, - ["pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite"]=722, + ["perfect_timing_window_ms_+%"]=717, + ["physical_damage_+%"]=718, + ["pillar_of_flame_X_additional_pillars_on_consuming_aggravated_ignite"]=719, ["pillar_of_flame_consume_ignite_to_create_X_pillars"]=178, - ["pin_almost_pinned_enemies"]=723, - ["placing_traps_cooldown_recovery_+%"]=724, - ["plant_skill_damage_+%_final_when_wet"]=725, - ["poison_effect_+%_vs_non_poisoned_enemies"]=726, + ["pin_almost_pinned_enemies"]=720, + ["placing_traps_cooldown_recovery_+%"]=721, + ["plant_skill_damage_+%_final_when_wet"]=722, + ["poison_effect_+%_vs_non_poisoned_enemies"]=723, ["projectile_base_number_of_targets_to_pierce"]=66, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=727, - ["projectile_chance_to_not_pierce_%"]=728, - ["projectile_damage_+%"]=729, - ["projectile_damage_+%_if_pierced_enemy"]=730, - ["projectile_damage_+%_vs_nearby_enemies"]=733, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=724, + ["projectile_chance_to_not_pierce_%"]=725, + ["projectile_damage_+%"]=726, + ["projectile_damage_+%_if_pierced_enemy"]=727, + ["projectile_damage_+%_vs_nearby_enemies"]=730, ["projectile_number_to_split"]=88, - ["projectile_randomly_fork_chain_or_pierce"]=731, + ["projectile_randomly_fork_chain_or_pierce"]=728, ["projectile_return_%_chance"]=91, - ["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"]=732, + ["projectile_speed_additive_modifiers_also_apply_to_projectile_damage"]=729, ["projectiles_fork"]=89, - ["projectiles_nova"]=734, - ["projectiles_pierce_all_targets_in_x_range"]=735, + ["projectiles_nova"]=731, + ["projectiles_pierce_all_targets_in_x_range"]=732, ["projectiles_rain"]=54, ["projectiles_return"]=91, - ["projectiles_spiral"]=736, - ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=737, + ["projectiles_spiral"]=733, + ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=734, ["quality_display_base_totem_duration_is_gem"]=65, - ["quality_display_lifetap_is_gem"]=1046, + ["quality_display_lifetap_is_gem"]=1043, ["quality_display_melee_splash_is_gem"]=121, ["quality_display_swiftbrand_is_gem"]=162, - ["rage_skip_consume_chance_%"]=738, - ["random_projectile_direction"]=739, - ["randomly_curse_self_on_skill_use"]=740, - ["recoup_%_of_spell_cost_as_mana_on_cast"]=742, - ["recoup_mana_%_on_minion_death"]=741, - ["recover_%_life_and_mana_per_minute_for_supported_offering_lifetime"]=743, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=745, - ["recover_%_maximum_life_on_cull"]=746, - ["recover_%_maximum_mana_on_cull"]=747, - ["recover_mana_%_on_minion_death"]=744, - ["recover_permyriad_life_on_skill_use"]=748, - ["reduce_enemy_chaos_resistance_%"]=749, + ["rage_skip_consume_chance_%"]=735, + ["random_projectile_direction"]=736, + ["randomly_curse_self_on_skill_use"]=737, + ["recoup_%_of_spell_cost_as_mana_on_cast"]=739, + ["recoup_mana_%_on_minion_death"]=738, + ["recover_%_life_and_mana_per_minute_for_supported_offering_lifetime"]=740, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=742, + ["recover_%_maximum_life_on_cull"]=743, + ["recover_%_maximum_mana_on_cull"]=744, + ["recover_mana_%_on_minion_death"]=741, + ["recover_permyriad_life_on_skill_use"]=745, + ["reduce_enemy_chaos_resistance_%"]=746, ["reduce_enemy_elemental_resistance_%"]=84, - ["refresh_bleeding_duration_on_hit_%_chance"]=750, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=751, - ["regenerate_%_life_over_1_second_on_skill_use"]=752, - ["reload_speed_+%"]=753, - ["remnant_delay_X_ms"]=754, - ["remnant_effect_+%"]=755, - ["remnant_pickup_range_+%"]=756, - ["remnants_affect_allies_in_presence_instead"]=757, - ["remnants_vanish_after_X_ms"]=758, - ["remote_mined_by_support"]=759, - ["remove_ailment_when_applying_relevant_ailment"]=760, - ["remove_freeze_on_ignite"]=761, - ["repeat_last_step_of_combo_attack"]=762, - ["restore_%_life_on_skill_use_per_1000_ms_cooldown"]=763, - ["return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling"]=764, - ["returning_projectiles_always_pierce"]=1332, - ["rip_support_buff_base_duration"]=451, - ["rip_support_life_regeneration_rate_+%"]=451, - ["rip_support_life_remnant_creation_radius"]=765, - ["runic_boosted_attack_damage_%_gained_as_physical"]=766, - ["sacrifice_%_life_on_skill_use"]=767, - ["sacrificial_lamb_minion_always_detonatable"]=768, - ["seal_gain_frequency_+%"]=769, + ["refresh_bleeding_duration_on_hit_%_chance"]=747, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=748, + ["regenerate_%_life_over_1_second_on_skill_use"]=749, + ["reload_speed_+%"]=750, + ["remnant_delay_X_ms"]=751, + ["remnant_effect_+%"]=752, + ["remnant_pickup_range_+%"]=753, + ["remnants_affect_allies_in_presence_instead"]=754, + ["remnants_vanish_after_X_ms"]=755, + ["remote_mined_by_support"]=756, + ["remove_ailment_when_applying_relevant_ailment"]=757, + ["remove_freeze_on_ignite"]=758, + ["repeat_last_step_of_combo_attack"]=759, + ["restore_%_life_on_skill_use_per_1000_ms_cooldown"]=760, + ["return_%_of_maximum_mana_as_lightning_damage_to_attacker_while_channelling"]=761, + ["returning_projectiles_always_pierce"]=1328, + ["rip_support_buff_base_duration"]=448, + ["rip_support_life_regeneration_rate_+%"]=448, + ["rip_support_life_remnant_creation_radius"]=762, + ["runic_boosted_attack_damage_%_gained_as_physical"]=763, + ["sacrifice_%_life_on_skill_use"]=764, + ["sacrificial_lamb_minion_always_detonatable"]=765, + ["seal_gain_frequency_+%"]=766, ["secondary_base_fire_damage_to_deal_per_minute"]=148, - ["shapeshift_slam_skill_aftershock_chance_%"]=770, - ["shock_chance_+%"]=771, - ["shock_duration_+%"]=772, - ["shock_effect_+%"]=773, - ["shock_nearby_enemy_area_of_effect_radius"]=828, - ["shock_nearby_enemy_base_area_of_effect_radius"]=828, - ["shocks_reflected_to_self"]=774, - ["sigil_repeat_frequency_+%"]=775, - ["skill_additional_projectiles_per_seal_broken"]=777, - ["skill_area_of_effect_+%_per_broken_seal"]=778, - ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=779, - ["skill_buff_effect_+%"]=780, - ["skill_can_only_use_bow"]=1266, - ["skill_can_only_use_non_melee_weapons"]=1269, - ["skill_can_own_mirage_archers"]=781, - ["skill_cannot_be_used_unless_stationary_for_X_ms"]=782, - ["skill_cannot_generate_endurance_charges"]=783, - ["skill_cannot_generate_frenzy_charges"]=784, - ["skill_cannot_generate_power_charges"]=785, - ["skill_conditional_requires_X_volatility"]=786, - ["skill_consume_corpse_within_X_units_on_use"]=787, - ["skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage"]=788, - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=789, - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=790, - ["skill_consume_up_to_X_corpses_on_use"]=787, - ["skill_detonate_random_volatility_amount_on_use"]=791, - ["skill_detonation_time_+%"]=792, - ["skill_echoes_per_seal_broken"]=793, - ["skill_effect_and_damaging_ailment_duration_+%"]=794, - ["skill_effect_duration_+%"]=795, - ["skill_effect_duration_+%_while_dead"]=796, - ["skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%"]=797, - ["skill_gain_seal_every_x_hits_blocked"]=798, - ["skill_grenade_detonate_only_at_end_of_duration"]=799, - ["skill_has_double_limit"]=800, - ["skill_has_spectral_arrows"]=801, - ["skill_hyena_cackle_size"]=802, - ["skill_is_blessing_skill"]=776, - ["skill_maximum_energy_+%"]=803, + ["shapeshift_slam_skill_aftershock_chance_%"]=767, + ["shock_chance_+%"]=768, + ["shock_duration_+%"]=769, + ["shock_effect_+%"]=770, + ["shock_nearby_enemy_area_of_effect_radius"]=825, + ["shock_nearby_enemy_base_area_of_effect_radius"]=825, + ["shocks_reflected_to_self"]=771, + ["sigil_repeat_frequency_+%"]=772, + ["skill_additional_projectiles_per_seal_broken"]=774, + ["skill_area_of_effect_+%_per_broken_seal"]=775, + ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=776, + ["skill_buff_effect_+%"]=777, + ["skill_can_only_use_bow"]=1262, + ["skill_can_only_use_non_melee_weapons"]=1265, + ["skill_can_own_mirage_archers"]=778, + ["skill_cannot_be_used_unless_stationary_for_X_ms"]=779, + ["skill_cannot_generate_endurance_charges"]=780, + ["skill_cannot_generate_frenzy_charges"]=781, + ["skill_cannot_generate_power_charges"]=782, + ["skill_conditional_requires_X_volatility"]=783, + ["skill_consume_corpse_within_X_units_on_use"]=784, + ["skill_consume_frenzy_charge_to_armour_break_for_%_of_physical_damage"]=785, + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=786, + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=787, + ["skill_consume_up_to_X_corpses_on_use"]=784, + ["skill_detonate_random_volatility_amount_on_use"]=788, + ["skill_detonation_time_+%"]=789, + ["skill_echoes_per_seal_broken"]=790, + ["skill_effect_and_damaging_ailment_duration_+%"]=791, + ["skill_effect_duration_+%"]=792, + ["skill_effect_duration_+%_while_dead"]=793, + ["skill_enemies_affected_by_non_ailment_damage_over_time_life_regeneration_rate_+%"]=794, + ["skill_gain_seal_every_x_hits_blocked"]=795, + ["skill_grenade_detonate_only_at_end_of_duration"]=796, + ["skill_has_double_limit"]=797, + ["skill_has_spectral_arrows"]=798, + ["skill_hyena_cackle_size"]=799, + ["skill_is_blessing_skill"]=773, + ["skill_maximum_energy_+%"]=800, ["skill_maximum_number_of_combo_stacks"]=211, - ["skill_offering_targets_an_additional_skeleton"]=804, - ["skill_rapid_fire_repeats_per_broken_seal"]=805, - ["skill_reserves_X_life_permyriad_per_spirit_instead_of_spirit"]=806, + ["skill_offering_targets_an_additional_skeleton"]=801, + ["skill_rapid_fire_repeats_per_broken_seal"]=802, + ["skill_reserves_X_life_permyriad_per_spirit_instead_of_spirit"]=803, ["skill_uncapped_combo_counter"]=212, - ["skill_unusable_until_moved_X_distance"]=808, - ["skill_used_by_fractured_mimic_spell_damage_+%_final"]=809, - ["skill_wolf_pack_size"]=810, - ["skills_are_usable_without_mana_cost_while_surrounded"]=811, - ["slam_aftershock_chance_%"]=812, - ["snipe_triggered_skill_damage_+%_final"]=813, - ["solar_orb_base_pulse_frequency_ms"]=814, - ["spell_critical_strike_chance_+%"]=815, - ["spell_damage_+%"]=816, - ["spell_daze_on_critical_hit_dealing_physical_damage"]=817, + ["skill_unusable_until_moved_X_distance"]=805, + ["skill_used_by_fractured_mimic_spell_damage_+%_final"]=806, + ["skill_wolf_pack_size"]=807, + ["skills_are_usable_without_mana_cost_while_surrounded"]=808, + ["slam_aftershock_chance_%"]=809, + ["snipe_triggered_skill_damage_+%_final"]=810, + ["solar_orb_base_pulse_frequency_ms"]=811, + ["spell_critical_strike_chance_+%"]=812, + ["spell_damage_+%"]=813, + ["spell_daze_on_critical_hit_dealing_physical_damage"]=814, ["spell_only_castable_on_death"]=139, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=818, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack"]=819, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=815, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova_per_wildshard_stack"]=816, ["spell_uncastable_if_triggerable"]=139, ["spellslinger_trigger_on_wand_attack_%"]=142, - ["static_strike_base_zap_frequency_ms"]=820, - ["static_strike_zap_speed_+%"]=821, - ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=822, - ["storm_skills_spawn_at_initiator_location"]=823, - ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=824, - ["strikes_are_ancestrally_boosted"]=825, + ["static_strike_base_zap_frequency_ms"]=817, + ["static_strike_zap_speed_+%"]=818, + ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=819, + ["storm_skills_spawn_at_initiator_location"]=820, + ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=821, + ["strikes_are_ancestrally_boosted"]=822, ["summon_2_totems"]=72, ["summon_cold_resistance_+"]=131, ["summon_fire_resistance_+"]=130, ["summon_lightning_resistance_+"]=132, - ["summon_mirage_archer_on_hit"]=826, - ["summon_totem_cast_speed_+%"]=827, - ["support_%_chance_to_shock_nearby_enemy_on_shock"]=828, - ["support_%_chance_to_trigger_deadly_current_on_shock"]=829, - ["support_%_of_total_cast_time_as_base_skill_seal_gain_interval"]=830, - ["support_ablation_offering_skill_damage_+%_final"]=831, - ["support_active_skill_consume_enemy_freeze_to_apply_chill"]=1320, - ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1317, - ["support_added_cooldown_count_if_not_instant"]=832, - ["support_additional_accurary_rating_+%_final"]=833, - ["support_additional_fissures_damage_+%_final"]=834, - ["support_additional_fissures_skill_speed_+%_final"]=835, + ["summon_mirage_archer_on_hit"]=823, + ["summon_totem_cast_speed_+%"]=824, + ["support_%_chance_to_shock_nearby_enemy_on_shock"]=825, + ["support_%_chance_to_trigger_deadly_current_on_shock"]=826, + ["support_%_of_total_cast_time_as_base_skill_seal_gain_interval"]=827, + ["support_ablation_offering_skill_damage_+%_final"]=828, + ["support_active_skill_consume_enemy_freeze_to_apply_chill"]=1316, + ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1313, + ["support_added_cooldown_count_if_not_instant"]=829, + ["support_additional_accurary_rating_+%_final"]=830, + ["support_additional_fissures_damage_+%_final"]=831, + ["support_additional_fissures_skill_speed_+%_final"]=832, ["support_additional_totem_damage_+%_final"]=106, - ["support_additional_trap_%_chance_for_1_additional_trap"]=836, + ["support_additional_trap_%_chance_for_1_additional_trap"]=833, ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=61, ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=62, ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=63, - ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds"]=837, - ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"]=838, - ["support_advancing_assault_projectile_damage_+%_final"]=839, - ["support_ailment_cooldown_ailment_chance_+%_final"]=840, - ["support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment"]=841, - ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=842, - ["support_ammo_conservation_crossbow_reload_speed_+%_final"]=843, + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_2_seconds"]=834, + ["support_advancing_assault_melee_damage_+%_final_if_projectile_attack_damage_hit_in_past_8_seconds"]=835, + ["support_advancing_assault_projectile_damage_+%_final"]=836, + ["support_ailment_cooldown_ailment_chance_+%_final"]=837, + ["support_ailment_effect_+%_final_while_afflicted_by_relevant_ailment"]=838, + ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=839, + ["support_ammo_conservation_crossbow_reload_speed_+%_final"]=840, ["support_ancestor_slam_totem_damage_+%_final"]=20, - ["support_ancestral_call_damage_+%_final"]=844, + ["support_ancestral_call_damage_+%_final"]=841, ["support_ancestral_slam_big_hit_area_+%"]=198, ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=197, - ["support_ancestral_warrior_totem_attack_speed_+%_final"]=845, - ["support_aoe_cooldown_aoe_+%_final"]=846, - ["support_apply_daze_on_armour_break"]=847, - ["support_apply_daze_on_warcry"]=848, - ["support_arcane_archery_damage_+%_final"]=849, + ["support_ancestral_warrior_totem_attack_speed_+%_final"]=842, + ["support_aoe_cooldown_aoe_+%_final"]=843, + ["support_apply_daze_on_armour_break"]=844, + ["support_apply_daze_on_warcry"]=845, + ["support_arcane_archery_damage_+%_final"]=846, ["support_arcane_surge_base_duration_ms"]=171, ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=171, - ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=850, + ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=847, ["support_area_concentrate_area_damage_+%_final"]=26, - ["support_area_of_effect_+%_final"]=851, - ["support_armour_explosion"]=852, - ["support_arms_length_knockback_distance_+%_final"]=853, - ["support_astral_projection_aoe_+%_final"]=854, - ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"]=855, + ["support_area_of_effect_+%_final"]=848, + ["support_armour_explosion"]=849, + ["support_arms_length_knockback_distance_+%_final"]=850, + ["support_astral_projection_aoe_+%_final"]=851, + ["support_attack_damage_spirit_cost_attack_damage_+%_on_low_life"]=852, ["support_attack_skills_elemental_damage_+%_final"]=24, ["support_attack_totem_attack_speed_+%_final"]=155, - ["support_atziri_curse_effect_+%_final"]=856, - ["support_aura_duration_base_buff_duration"]=857, - ["support_auto_shotgun_attack_speed_+%_final"]=858, - ["support_auto_shotgun_damage_+%_final"]=859, - ["support_auto_shotgun_projectile_count_+%_final"]=860, - ["support_auto_shotgun_reload_speed_+%_final"]=861, + ["support_atziri_curse_effect_+%_final"]=853, + ["support_aura_duration_base_buff_duration"]=854, + ["support_auto_shotgun_attack_speed_+%_final"]=855, + ["support_auto_shotgun_damage_+%_final"]=856, + ["support_auto_shotgun_projectile_count_+%_final"]=857, + ["support_auto_shotgun_reload_speed_+%_final"]=858, ["support_bane_curse_effect_+%_final"]=151, - ["support_barrage_attack_time_+%_per_projectile_fired"]=862, + ["support_barrage_attack_time_+%_per_projectile_fired"]=859, ["support_barrage_damage_+%_final"]=27, - ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=863, + ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=860, ["support_base_cruelty_duration_ms"]=173, - ["support_base_lifetap_buff_duration"]=1046, + ["support_base_lifetap_buff_duration"]=1043, ["support_better_ailments_damaging_ailment_effect_+%_final"]=107, ["support_better_ailments_hit_damage_+%_final"]=108, - ["support_biting_frost_damage_+%_final_vs_frozen_unique_enemies"]=864, + ["support_biting_frost_damage_+%_final_vs_frozen_unique_enemies"]=861, ["support_blasphemy_curse_effect_+%_final"]=152, - ["support_blazing_crits_base_duration_ms"]=865, - ["support_blazing_crits_gain_%_fire_damage_with_attacks_on_critical_hit"]=865, - ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=866, - ["support_blood_thirst_damage_+%_final"]=867, + ["support_blazing_crits_base_duration_ms"]=862, + ["support_blazing_crits_gain_%_fire_damage_with_attacks_on_critical_hit"]=862, + ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=863, + ["support_blood_thirst_damage_+%_final"]=864, ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=158, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=868, - ["support_bone_shrapnel_physical_damage_equal_to_%_monster_life"]=869, - ["support_brand_area_of_effect_+%_final"]=870, - ["support_brand_damage_+%_final"]=871, - ["support_break_%_armour_on_freeze_or_electrocute"]=872, - ["support_brink_damage_+%_final_vs_heavy_stunned_target"]=873, - ["support_brink_hit_damage_stun_multiplier_+%_final"]=874, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=865, + ["support_bone_shrapnel_physical_damage_equal_to_%_monster_life"]=866, + ["support_brand_area_of_effect_+%_final"]=867, + ["support_brand_damage_+%_final"]=868, + ["support_break_%_armour_on_freeze_or_electrocute"]=869, + ["support_brink_damage_+%_final_vs_heavy_stunned_target"]=870, + ["support_brink_hit_damage_stun_multiplier_+%_final"]=871, ["support_brutality_physical_damage_+%_final"]=109, - ["support_burning_damage_+%_final"]=875, - ["support_burning_runes_base_fire_damage_equal_to_%_maximum_mana"]=876, - ["support_bursting_plague_max_value_%_of_max_life"]=877, - ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=877, - ["support_called_shots_additional_projectiles_when_matching_indicated_direction"]=878, + ["support_burning_damage_+%_final"]=872, + ["support_burning_runes_base_fire_damage_equal_to_%_maximum_mana"]=873, + ["support_bursting_plague_max_value_%_of_max_life"]=874, + ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=874, + ["support_called_shots_additional_projectiles_when_matching_indicated_direction"]=875, ["support_called_shots_enable_directional_buff"]=213, - ["support_called_shots_projectile_damage_+%_final_when_matching_direction"]=879, - ["support_cannibalism_recover_%_maximum_life_on_kill"]=880, - ["support_cast_on_crit_quality_attack_damage_+%_final"]=881, + ["support_called_shots_projectile_damage_+%_final_when_matching_direction"]=876, + ["support_cannibalism_recover_%_maximum_life_on_kill"]=877, + ["support_cast_on_crit_quality_attack_damage_+%_final"]=878, ["support_cast_on_crit_spell_damage_+%_final"]=35, ["support_cast_on_melee_kill_spell_damage_+%_final"]=36, ["support_cast_while_channelling_triggered_skill_damage_+%_final"]=37, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=882, - ["support_catalysing_elements_triggers_elemental_discharge"]=883, + ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=879, + ["support_catalysing_elements_triggers_elemental_discharge"]=880, ["support_chain_hit_damage_+%_final"]=92, - ["support_chance_to_bleed_bleeding_effect_+%_final"]=884, + ["support_chance_to_bleed_bleeding_effect_+%_final"]=881, ["support_chance_to_ignite_fire_damage_+%_final"]=110, - ["support_chanelling_damage_+%_final_per_second_channelling"]=885, - ["support_channelling_damage_cap"]=885, - ["support_chaos_attacks_damage_+%_final"]=886, - ["support_chaos_damage_+%_final_if_corpse_consumed_on_use"]=887, - ["support_chaos_damage_+%_final_per_corpse_consumed_on_use"]=888, - ["support_chaos_support_non_chaos_damage_+%_final"]=889, - ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=890, - ["support_chaotic_assassination_skill_effect_duration_+%_final"]=891, - ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=892, - ["support_charged_shots_%_damage_to_gain_as_lightning"]=894, - ["support_charged_shots_applies_every_X_shots"]=893, - ["support_charged_shots_recover_%_mana_cost_on_use"]=895, - ["support_charm_charges_gained_+%_final_from_killing_blow"]=896, - ["support_chilled_ground_effect_duration_+%_final"]=897, - ["support_clarity_mana_regeneration_rate_+%"]=898, - ["support_close_combat_attack_damage_+%_final_from_distance"]=899, - ["support_clustertrap_damage_+%_final"]=900, - ["support_cold_and_fire_damage_+%_final"]=901, - ["support_cold_and_lightning_damage_+%_final"]=902, - ["support_cold_exposure_damage_+%_final"]=903, - ["support_combo_finisher_damage_+%_final"]=904, - ["support_combo_finisher_damage_+%_final_per_combo"]=905, - ["support_combo_finisher_max_combo_required"]=907, - ["support_combo_finisher_next_use_requires_x_additional_combo"]=906, - ["support_combo_finisher_required_number_of_combo_stacks"]=907, - ["support_command_skill_damage_+%_final"]=908, + ["support_chanelling_damage_+%_final_per_second_channelling"]=882, + ["support_channelling_damage_cap"]=882, + ["support_chaos_attacks_damage_+%_final"]=883, + ["support_chaos_damage_+%_final_if_corpse_consumed_on_use"]=884, + ["support_chaos_damage_+%_final_per_corpse_consumed_on_use"]=885, + ["support_chaos_support_non_chaos_damage_+%_final"]=886, + ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=887, + ["support_chaotic_assassination_skill_effect_duration_+%_final"]=888, + ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=889, + ["support_charged_shots_%_damage_to_gain_as_lightning"]=891, + ["support_charged_shots_applies_every_X_shots"]=890, + ["support_charged_shots_recover_%_mana_cost_on_use"]=892, + ["support_charm_charges_gained_+%_final_from_killing_blow"]=893, + ["support_chilled_ground_effect_duration_+%_final"]=894, + ["support_clarity_mana_regeneration_rate_+%"]=895, + ["support_close_combat_attack_damage_+%_final_from_distance"]=896, + ["support_clustertrap_damage_+%_final"]=897, + ["support_cold_and_fire_damage_+%_final"]=898, + ["support_cold_and_lightning_damage_+%_final"]=899, + ["support_cold_exposure_damage_+%_final"]=900, + ["support_combo_finisher_damage_+%_final"]=901, + ["support_combo_finisher_damage_+%_final_per_combo"]=902, + ["support_combo_finisher_max_combo_required"]=904, + ["support_combo_finisher_next_use_requires_x_additional_combo"]=903, + ["support_combo_finisher_required_number_of_combo_stacks"]=904, + ["support_command_skill_damage_+%_final"]=905, ["support_concentrated_effect_skill_area_of_effect_+%_final"]=46, - ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"]=909, - ["support_conduction_chance_to_shock_+%_final"]=910, - ["support_consume_X_endurance_charges_on_use"]=911, - ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=912, + ["support_concoct_bleed_effect_+%_final_per_life_flask_charge_consumed"]=906, + ["support_conduction_chance_to_shock_+%_final"]=907, + ["support_consume_X_endurance_charges_on_use"]=908, + ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=909, ["support_controlled_destruction_critical_strike_chance_+%_final"]=80, ["support_controlled_destruction_spell_damage_+%_final"]=102, - ["support_cooldown_reduction_cooldown_recovery_+%"]=913, - ["support_corrupting_cry_%_life_cost_per_supported_skill_trigger_or_use_recently_up_to_30%"]=914, - ["support_corrupting_cry_%_life_lost_per_corrupting_blood_applied"]=916, - ["support_corrupting_cry_area_of_effect_+%_final"]=915, - ["support_crazed_minions_minion_damage_+%_final_if_revived_recently"]=917, - ["support_create_jagged_ground_if_consumed_endurance_charge"]=918, - ["support_creeping_chill_consume_X_power_charges_to_trigger_on_ice_crystals"]=919, - ["support_crescendo_non_final_strike_attack_speed_+%_final"]=920, - ["support_crit_cooldown_crit_chance_+%_final"]=921, - ["support_critical_damage_critical_strike_chance_+%_final"]=922, - ["support_critical_damage_hit_damage_+%_final"]=923, + ["support_cooldown_reduction_cooldown_recovery_+%"]=910, + ["support_corrupting_cry_%_life_cost_per_supported_skill_trigger_or_use_recently_up_to_30%"]=911, + ["support_corrupting_cry_%_life_lost_per_corrupting_blood_applied"]=913, + ["support_corrupting_cry_area_of_effect_+%_final"]=912, + ["support_crazed_minions_minion_damage_+%_final_if_revived_recently"]=914, + ["support_create_jagged_ground_if_consumed_endurance_charge"]=915, + ["support_creeping_chill_consume_X_power_charges_to_trigger_on_ice_crystals"]=916, + ["support_crescendo_non_final_strike_attack_speed_+%_final"]=917, + ["support_crit_cooldown_crit_chance_+%_final"]=918, + ["support_critical_damage_critical_strike_chance_+%_final"]=919, + ["support_critical_damage_hit_damage_+%_final"]=920, ["support_cruelty_hit_damage_+%_final"]=111, - ["support_crushing_stuns_crush_on_stun_ms"]=924, - ["support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life"]=925, - ["support_crystalshatter_buff_duration"]=925, - ["support_culling_strike_threshold_+%_on_cull_for_seconds_from_code"]=1330, - ["support_culling_strike_vs_rare_or_unique_enemy"]=926, - ["support_culmination_damage_+%_final_per_combo_stack"]=927, - ["support_curse_effect_+%_final"]=929, - ["support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%"]=930, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=931, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=932, + ["support_crushing_stuns_crush_on_stun_ms"]=921, + ["support_crystalshatter_buff_damage_%_gained_as_extra_cold_per_2000_crystal_life"]=922, + ["support_crystalshatter_buff_duration"]=922, + ["support_culling_strike_threshold_+%_on_cull_for_seconds_from_code"]=1326, + ["support_culling_strike_vs_rare_or_unique_enemy"]=923, + ["support_culmination_damage_+%_final_per_combo_stack"]=924, + ["support_curse_effect_+%_final"]=926, + ["support_cursed_ground_trigger_curse_explosion_on_hazard_trigger_chance_%"]=927, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=928, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=929, ["support_damage_while_on_full_life_+%_final"]=23, - ["support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton"]=933, - ["support_daze_break_duration_ms"]=934, - ["support_dazed_cry_duration_ms"]=935, - ["support_deadly_poison_hit_damage_+%_final"]=936, - ["support_deadly_poison_poison_effect_+%_final"]=937, + ["support_danse_macabre_offering_skill_damage_+%_final_if_consumed_additional_skeleton"]=930, + ["support_daze_break_duration_ms"]=931, + ["support_dazed_cry_duration_ms"]=932, + ["support_deadly_poison_hit_damage_+%_final"]=933, + ["support_deadly_poison_poison_effect_+%_final"]=934, ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=96, ["support_debilitate_hit_damage_max_poison_stacks"]=96, ["support_debilitate_poison_effect_+%_final"]=97, - ["support_deep_cuts_bleeding_effect_+%_final"]=938, - ["support_deep_cuts_hit_damage_+%_final"]=939, - ["support_deliberation_damage_+%_final"]=940, - ["support_deliberation_movement_speed_penalty_+%_final_while_performing_action"]=941, - ["support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%"]=942, - ["support_discount_accuracy_rating_+%_final_if_empowered"]=943, - ["support_discount_skill_cost_+%_final_if_empowered"]=944, - ["support_divine_cry_damage_+%_final"]=945, - ["support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds"]=946, + ["support_deep_cuts_bleeding_effect_+%_final"]=935, + ["support_deep_cuts_hit_damage_+%_final"]=936, + ["support_deliberation_damage_+%_final"]=937, + ["support_deliberation_movement_speed_penalty_+%_final_while_performing_action"]=938, + ["support_demolisher_physical_damage_taken_+%_on_fully_armour_breaking_up_to_20%"]=939, + ["support_discount_accuracy_rating_+%_final_if_empowered"]=940, + ["support_discount_skill_cost_+%_final_if_empowered"]=941, + ["support_divine_cry_damage_+%_final"]=942, + ["support_djinn_lineage_damage_+%_final_per_different_command_in_last_8_seconds"]=943, ["support_dominus_grasp_chain_count_+%_final"]=87, - ["support_double_barrel_crossbow_reload_speed_-%_final"]=947, - ["support_double_barrel_number_of_crossbow_bolts_+"]=948, - ["support_double_number_of_cooldown_uses"]=949, - ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=950, - ["support_dual_cascade_aftershocks_attack_speed_+%_final"]=951, + ["support_double_barrel_crossbow_reload_speed_-%_final"]=944, + ["support_double_barrel_number_of_crossbow_bolts_+"]=945, + ["support_double_number_of_cooldown_uses"]=946, + ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=947, + ["support_dual_cascade_aftershocks_attack_speed_+%_final"]=948, ["support_echo_damage_+%_final"]=21, - ["support_echoing_cry_area_of_effect_+%_final"]=952, - ["support_echoing_cry_damage_+%_final"]=953, - ["support_echoing_cry_warcry_monster_power_+%_final"]=954, + ["support_echoing_cry_area_of_effect_+%_final"]=949, + ["support_echoing_cry_damage_+%_final"]=950, + ["support_echoing_cry_warcry_monster_power_+%_final"]=951, ["support_efficacy_damage_over_time_+%_final"]=105, ["support_efficacy_spell_damage_+%_final"]=103, - ["support_electrocute_damage_+%_final"]=955, - ["support_electrocute_lineage_triggers_explosion"]=956, - ["support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target"]=957, - ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"]=958, - ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"]=959, + ["support_electrocute_damage_+%_final"]=952, + ["support_electrocute_lineage_triggers_explosion"]=953, + ["support_elemental_armament_attack_damage_+%_final_per_elemental_ailment_on_target"]=954, + ["support_elemental_assault_melee_damage_+%_final_per_elemental_ailment_on_target"]=955, + ["support_elemental_damage_+%_final_per_different_elemental_skill_used_recently"]=956, ["support_elemental_proliferation_damage_+%_final"]=22, - ["support_empower_X_attacks_with_spark_on_power_charge_gain"]=960, - ["support_empowered_culling_strike"]=961, - ["support_empowered_damage_+%_final"]=962, - ["support_empowers_x_additional_other_skills"]=963, - ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1257, - ["support_eternal_flame_chance_to_ignite_+%_final"]=964, - ["support_executioner_damage_+%_final_while_on_low_life"]=965, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=966, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=967, - ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=968, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=969, - ["support_explosive_growth_trigger_explosion_on_plant_growth"]=970, - ["support_fan_the_flames_trigger_explosion_on_hit_vs_ignited_enemies"]=971, - ["support_far_combat_attack_damage_+%_final_from_distance"]=972, - ["support_faster_attacks_attack_speed_+%_final"]=973, - ["support_faster_attacks_damage_+%_final"]=974, - ["support_faster_casting_cast_speed_+%_final"]=975, - ["support_faster_casting_damage_+%_final"]=976, - ["support_faster_projectiles_projectile_speed_+%_final"]=977, - ["support_fire_and_lightning_damage_+%_final"]=978, - ["support_fire_exposure_damage_+%_final"]=979, - ["support_fissure_on_landing_create_X_fissures_on_impact"]=980, - ["support_focus_curse_curse_delay_+%_final"]=981, - ["support_focused_ballista_totem_attack_speed_+%_final"]=982, - ["support_focused_ballista_totem_damage_+%_final"]=983, + ["support_empower_X_attacks_with_spark_on_power_charge_gain"]=957, + ["support_empowered_culling_strike"]=958, + ["support_empowered_damage_+%_final"]=959, + ["support_empowers_x_additional_other_skills"]=960, + ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1253, + ["support_eternal_flame_chance_to_ignite_+%_final"]=961, + ["support_executioner_damage_+%_final_while_on_low_life"]=962, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=963, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=964, + ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=965, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=966, + ["support_explosive_growth_trigger_explosion_on_plant_growth"]=967, + ["support_fan_the_flames_trigger_explosion_on_hit_vs_ignited_enemies"]=968, + ["support_far_combat_attack_damage_+%_final_from_distance"]=969, + ["support_faster_attacks_attack_speed_+%_final"]=970, + ["support_faster_attacks_damage_+%_final"]=971, + ["support_faster_casting_cast_speed_+%_final"]=972, + ["support_faster_casting_damage_+%_final"]=973, + ["support_faster_projectiles_projectile_speed_+%_final"]=974, + ["support_fire_and_lightning_damage_+%_final"]=975, + ["support_fire_exposure_damage_+%_final"]=976, + ["support_fissure_on_landing_create_X_fissures_on_impact"]=977, + ["support_focus_curse_curse_delay_+%_final"]=978, + ["support_focused_ballista_totem_attack_speed_+%_final"]=979, + ["support_focused_ballista_totem_damage_+%_final"]=980, ["support_fork_forked_projectile_damage_+%_final"]=98, ["support_fork_projectile_damage_+%_final"]=95, - ["support_fortify_melee_damage_+%_final"]=984, - ["support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final"]=985, - ["support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage"]=986, - ["support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies"]=987, - ["support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage"]=988, - ["support_fusillade_skill_speed_+%_final"]=989, - ["support_gambleshot_projectile_damage_+%_final"]=990, - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=991, + ["support_fortify_melee_damage_+%_final"]=981, + ["support_freeze_protection_spirit_cost_freeze_duration_on_self_+%_final"]=982, + ["support_from_the_grave_%_minion_maximum_life_dealt_as_cold_damage"]=983, + ["support_frostfire_ignite_effect_+%_final_vs_frozen_unique_enemies"]=984, + ["support_frozen_spite_%_enemy_maximum_life_dealt_as_cold_damage"]=985, + ["support_fusillade_skill_speed_+%_final"]=986, + ["support_gambleshot_projectile_damage_+%_final"]=987, + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=988, ["support_gem_elemental_damage_+%_final"]=112, ["support_gem_mine_damage_+%_final"]=31, - ["support_ghost_base_duration"]=992, - ["support_glacier_ice_crystal_maximum_life_+%_final"]=993, - ["support_glory_required_+%_final"]=994, - ["support_grants_X_life_flask_charges_on_using_corpse"]=995, - ["support_grants_X_mana_flask_charges_on_using_corpse"]=996, - ["support_greater_projectile_intensity_projectile_damage_+%_final"]=997, - ["support_greater_volley_projectile_damage_+%_final"]=1126, - ["support_greatwood_life_regeneration_rate_per_minute_%_per_totem_in_radius"]=998, - ["support_greatwood_maximum_life_+%_final"]=999, - ["support_greatwood_maximum_number_of_active_totems_in_radius_for_effects"]=1000, - ["support_greatwood_number_of_active_totems_in_base_radius_to_track"]=1001, - ["support_grenade_ballista_attack_speed_+%_final"]=1002, - ["support_grenade_ballista_damage_+%_final"]=1003, - ["support_grenade_damage_+%_final"]=1004, - ["support_ground_effect_area_of_effect_+%_final_per_second"]=1005, - ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1005, - ["support_haemocrystals_maximum_allowed_crystals"]=1006, - ["support_hardy_totems_trigger_splinter_explosion_on_death_chance_%"]=1007, - ["support_hatching_elementals_base_radius"]=1008, - ["support_hatching_elementals_hatch_after_X_deaths_in_radius"]=1008, - ["support_healing_runes_healing_per_ward_spent_%"]=1009, - ["support_healing_runes_healing_pulse_interval_ms"]=1009, - ["support_healing_runes_maximum_ward_spent_per_pulse_%"]=1009, - ["support_heft_maximum_physical_damage_+%_final"]=1010, - ["support_herbalism_life_recovery_+%_from_life_flasks"]=1011, + ["support_ghost_base_duration"]=989, + ["support_glacier_ice_crystal_maximum_life_+%_final"]=990, + ["support_glory_required_+%_final"]=991, + ["support_grants_X_life_flask_charges_on_using_corpse"]=992, + ["support_grants_X_mana_flask_charges_on_using_corpse"]=993, + ["support_greater_projectile_intensity_projectile_damage_+%_final"]=994, + ["support_greater_volley_projectile_damage_+%_final"]=1122, + ["support_greatwood_life_regeneration_rate_per_minute_%_per_totem_in_radius"]=995, + ["support_greatwood_maximum_life_+%_final"]=996, + ["support_greatwood_maximum_number_of_active_totems_in_radius_for_effects"]=997, + ["support_greatwood_number_of_active_totems_in_base_radius_to_track"]=998, + ["support_grenade_ballista_attack_speed_+%_final"]=999, + ["support_grenade_ballista_damage_+%_final"]=1000, + ["support_grenade_damage_+%_final"]=1001, + ["support_ground_effect_area_of_effect_+%_final_per_second"]=1002, + ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1002, + ["support_haemocrystals_maximum_allowed_crystals"]=1003, + ["support_hardy_totems_trigger_splinter_explosion_on_death_chance_%"]=1004, + ["support_hatching_elementals_base_radius"]=1005, + ["support_hatching_elementals_hatch_after_X_deaths_in_radius"]=1005, + ["support_healing_runes_healing_per_ward_spent_%"]=1006, + ["support_healing_runes_healing_pulse_interval_ms"]=1006, + ["support_healing_runes_maximum_ward_spent_per_pulse_%"]=1006, + ["support_heft_maximum_physical_damage_+%_final"]=1007, + ["support_herbalism_life_recovery_+%_from_life_flasks"]=1008, ["support_hextouch_curse_effect_+%_final"]=153, - ["support_hide_of_helbrym_soak_duration_ms"]=1012, - ["support_hinder_dots_also_apply_hinder"]=1013, - ["support_hit_damage_stun_multiplier_+%_final_from_current_poise"]=1014, - ["support_holy_descent_consecrated_ground_base_duration_ms"]=1015, - ["support_holy_descent_consecrated_ground_on_landing_radius"]=1016, - ["support_hourglass_display_cooldown_time_ms"]=1017, - ["support_hypothermia_cold_damage_over_time_+%_final"]=1018, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=1019, - ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1020, - ["support_ice_bite_base_buff_duration"]=1021, - ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1021, - ["support_icicle_ice_crystal_maximum_life_+%_final"]=1022, - ["support_ignite_duration_ignite_effect_+%_final"]=1023, + ["support_hide_of_helbrym_soak_duration_ms"]=1009, + ["support_hinder_dots_also_apply_hinder"]=1010, + ["support_hit_damage_stun_multiplier_+%_final_from_current_poise"]=1011, + ["support_holy_descent_consecrated_ground_base_duration_ms"]=1012, + ["support_holy_descent_consecrated_ground_on_landing_radius"]=1013, + ["support_hourglass_display_cooldown_time_ms"]=1014, + ["support_hypothermia_cold_damage_over_time_+%_final"]=1015, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=1016, + ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1017, + ["support_ice_bite_base_buff_duration"]=1018, + ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1018, + ["support_icicle_ice_crystal_maximum_life_+%_final"]=1019, + ["support_ignite_duration_ignite_effect_+%_final"]=1020, ["support_ignite_prolif_ignite_effect_+%_final"]=113, ["support_ignite_proliferation_radius"]=55, - ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"]=1024, - ["support_ignited_ground_effect_duration_+%_final"]=1025, - ["support_ignition_chance_to_ignite_+%_final"]=1026, - ["support_impact_shockwave_base_non_slam_aftershock_on_heavy_stun_radius"]=1027, - ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"]=1028, - ["support_increased_area_damage_+%_final"]=1029, - ["support_increased_armour_break_armour_break_amount_+%_final"]=1030, - ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1031, - ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1031, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1032, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1032, - ["support_inhibitor_damage_+%_final_per_charge_type_or_infusion_type"]=1033, - ["support_innervate_buff_base_duration_ms"]=1034, - ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1034, - ["support_inspiration_cost_+%_final"]=1035, - ["support_jagged_ground_area_of_effect_+%_final"]=1036, - ["support_jagged_ground_base_duration_ms"]=1037, + ["support_ignite_protection_spirit_cost_ignite_duration_on_self_+%_final"]=1021, + ["support_ignited_ground_effect_duration_+%_final"]=1022, + ["support_ignition_chance_to_ignite_+%_final"]=1023, + ["support_impact_shockwave_base_non_slam_aftershock_on_heavy_stun_radius"]=1024, + ["support_incision_bleeding_effect_+%_final_per_incision_consumed_recently_up_to_30%"]=1025, + ["support_increased_area_damage_+%_final"]=1026, + ["support_increased_armour_break_armour_break_amount_+%_final"]=1027, + ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1028, + ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1028, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1029, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1029, + ["support_inhibitor_damage_+%_final_per_charge_type_or_infusion_type"]=1030, + ["support_innervate_buff_base_duration_ms"]=1031, + ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1031, + ["support_inspiration_cost_+%_final"]=1032, + ["support_jagged_ground_area_of_effect_+%_final"]=1033, + ["support_jagged_ground_base_duration_ms"]=1034, ["support_knights_ferocity_crush_on_hit_ms"]=225, - ["support_knights_legacy_heavy_stun_threshold_+%_final_while_performing_action"]=1038, - ["support_knockback_wave_on_stunned"]=1039, - ["support_last_gasp_attack_and_cast_speed_+%_while_undying"]=1331, - ["support_last_gasp_duration_ms"]=1040, - ["support_last_gasp_minion_soul_eater_while_undying"]=1041, - ["support_lasting_shock_chance_to_shock_+%_final"]=1042, + ["support_knights_legacy_heavy_stun_threshold_+%_final_while_performing_action"]=1035, + ["support_knockback_wave_on_stunned"]=1036, + ["support_last_gasp_attack_and_cast_speed_+%_while_undying"]=1327, + ["support_last_gasp_duration_ms"]=1037, + ["support_last_gasp_minion_soul_eater_while_undying"]=1038, + ["support_lasting_shock_chance_to_shock_+%_final"]=1039, ["support_lesser_multiple_projectile_damage_+%_final"]=30, - ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1043, - ["support_lifetap_damage_+%_final_while_buffed"]=1045, - ["support_lifetap_spent_life_threshold"]=1044, - ["support_lightning_exposure_damage_+%_final"]=1047, - ["support_limit_skill_effect_duration_+%_final"]=1048, - ["support_lineage_remnants_grant_cdr_buff_on_collection"]=1049, - ["support_lingering_mirage_damage_+%_final"]=1050, - ["support_lockdown_distance_based_pin_damage_+%_final"]=1051, - ["support_long_fuse_detonation_damage_+%_final"]=1052, + ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1040, + ["support_lifetap_damage_+%_final_while_buffed"]=1042, + ["support_lifetap_spent_life_threshold"]=1041, + ["support_lightning_exposure_damage_+%_final"]=1044, + ["support_limit_skill_effect_duration_+%_final"]=1045, + ["support_lineage_remnants_grant_cdr_buff_on_collection"]=1046, + ["support_lingering_mirage_damage_+%_final"]=1047, + ["support_lockdown_distance_based_pin_damage_+%_final"]=1048, + ["support_long_fuse_detonation_damage_+%_final"]=1049, ["support_maim_chance_physical_damage_+%_final"]=114, - ["support_maimed_enemies_physical_damage_taken_+%"]=1053, - ["support_mana_flare_%_of_current_mana_consumed"]=1054, - ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1055, - ["support_mana_fountain_mana_regeneration_rate_+%"]=1056, - ["support_manaforged_arrows_damage_+%_final"]=1057, - ["support_manaforged_arrows_hit_damage_+%_final_per_mana_spent"]=1058, - ["support_manaforged_arrows_mana_cost_%_threshold"]=1297, - ["support_max_attack_damage_+%_final_from_current_poise"]=1059, - ["support_measured_speed_attack_speed_+%_final_per_stack"]=1060, - ["support_measured_speed_disabled_ms"]=1061, - ["support_measured_speed_maximum_stacks"]=1061, - ["support_meat_shield_minion_damage_+%_final"]=1062, - ["support_melee_damage_+%_final_vs_higher_percent_life_target"]=1063, - ["support_melee_damage_+%_final_vs_lower_percent_life_target"]=1063, - ["support_melee_physical_damage_+%_final"]=633, - ["support_melee_physical_damage_attack_speed_+%_final"]=1064, + ["support_maimed_enemies_physical_damage_taken_+%"]=1050, + ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1051, + ["support_mana_fountain_mana_regeneration_rate_+%"]=1052, + ["support_manaforged_arrows_damage_+%_final"]=1053, + ["support_manaforged_arrows_hit_damage_+%_final_per_mana_spent"]=1054, + ["support_manaforged_arrows_mana_cost_%_threshold"]=1293, + ["support_max_attack_damage_+%_final_from_current_poise"]=1055, + ["support_measured_speed_attack_speed_+%_final_per_stack"]=1056, + ["support_measured_speed_disabled_ms"]=1057, + ["support_measured_speed_maximum_stacks"]=1057, + ["support_meat_shield_minion_damage_+%_final"]=1058, + ["support_melee_damage_+%_final_vs_higher_percent_life_target"]=1059, + ["support_melee_damage_+%_final_vs_lower_percent_life_target"]=1059, + ["support_melee_physical_damage_+%_final"]=630, + ["support_melee_physical_damage_attack_speed_+%_final"]=1060, ["support_melee_splash_damage_+%_final"]=119, ["support_melee_splash_damage_+%_final_for_splash"]=121, - ["support_minefield_mine_damage_+%_final"]=1065, - ["support_minefield_mine_throwing_speed_+%_final"]=1066, - ["support_minion_damage_+%_final"]=1068, - ["support_minion_damage_minion_life_+%_final"]=1069, - ["support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana"]=1070, - ["support_minion_damage_with_non_command_skills_+%_final"]=1071, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1072, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1073, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=1075, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=1076, - ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=1077, + ["support_minefield_mine_damage_+%_final"]=1061, + ["support_minefield_mine_throwing_speed_+%_final"]=1062, + ["support_minion_damage_+%_final"]=1064, + ["support_minion_damage_minion_life_+%_final"]=1065, + ["support_minion_damage_spirit_cost_minion_damage_+%_while_missing_mana"]=1066, + ["support_minion_damage_with_non_command_skills_+%_final"]=1067, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1068, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1069, + ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=1071, + ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=1072, + ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=1073, ["support_minion_instability_minion_base_fire_area_damage_%_of_maximum_life_per_minute"]=194, - ["support_minion_maximum_life_+%_final"]=1078, - ["support_minion_pact_damage_+%_final"]=1079, - ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1079, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1080, - ["support_minion_use_focussed_target"]=1081, - ["support_minions_ignite_for_%_max_life"]=1082, - ["support_mirage_archer_attack_speed_+%_final"]=1083, - ["support_mirage_archer_base_duration"]=1084, - ["support_mirage_archer_damage_+%_final"]=1085, - ["support_mobile_assault_skill_speed_+%_final"]=1086, - ["support_mobility_damage_+%_final"]=1087, - ["support_mobility_movement_speed_penalty_+%_final_while_performing_action"]=1088, - ["support_momentum_distance_travelled_to_gain_momentum"]=1089, - ["support_momnetum_damage_+%_final_with_momentum"]=1089, - ["support_more_duration_skill_effect_duration_+%_final"]=1090, - ["support_morrigans_refuge_damage_+%_final_vs_frozen_enemies"]=1318, - ["support_mothers_declaration_intimidate_enemies_when_they_enter_your_presence_base_duration_ms"]=1091, - ["support_mothers_ward_base_duration_ms"]=1092, - ["support_multi_poison_poison_duration_+%_final"]=1093, + ["support_minion_maximum_life_+%_final"]=1074, + ["support_minion_pact_damage_+%_final"]=1075, + ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1075, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1076, + ["support_minion_use_focussed_target"]=1077, + ["support_minions_ignite_for_%_max_life"]=1078, + ["support_mirage_archer_attack_speed_+%_final"]=1079, + ["support_mirage_archer_base_duration"]=1080, + ["support_mirage_archer_damage_+%_final"]=1081, + ["support_mobile_assault_skill_speed_+%_final"]=1082, + ["support_mobility_damage_+%_final"]=1083, + ["support_mobility_movement_speed_penalty_+%_final_while_performing_action"]=1084, + ["support_momentum_distance_travelled_to_gain_momentum"]=1085, + ["support_momnetum_damage_+%_final_with_momentum"]=1085, + ["support_more_duration_skill_effect_duration_+%_final"]=1086, + ["support_morrigans_refuge_damage_+%_final_vs_frozen_enemies"]=1314, + ["support_mothers_declaration_intimidate_enemies_when_they_enter_your_presence_base_duration_ms"]=1087, + ["support_mothers_ward_base_duration_ms"]=1088, + ["support_multi_poison_poison_duration_+%_final"]=1089, ["support_multicast_cast_speed_+%_final"]=123, - ["support_multiple_attack_and_cast_speed_+%_final"]=1094, + ["support_multiple_attack_and_cast_speed_+%_final"]=1090, ["support_multiple_attack_damage_+%_final"]=125, ["support_multiple_attacks_melee_attack_speed_+%_final"]=124, ["support_multiple_damage_+%_final"]=28, - ["support_multiple_orbs_area_of_effect_+%_final"]=1095, + ["support_multiple_orbs_area_of_effect_+%_final"]=1091, ["support_multiple_projectiles_critical_strike_chance_+%_final"]=50, ["support_multithrow_damage_+%_final"]=127, - ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1096, - ["support_no_fear_damage_+%_final_per_second_up_to_30%"]=1097, - ["support_nova_projectiles_damage_+%_final"]=1098, - ["support_number_of_additional_uses_before_expiry"]=1099, - ["support_overextend_critical_strike_multiplier_+%_final"]=1100, - ["support_overpower_damage_+%_final"]=1101, - ["support_overpower_hit_damage_stun_multiplier_+%_final"]=1102, - ["support_parallel_projectile_number_of_points_per_side"]=1103, - ["support_parallel_projectiles_damage_+%_final"]=1104, - ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=1105, - ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=1106, - ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=1107, - ["support_physical_damage_%_to_gain_as_daze_build_up"]=1108, - ["support_pierce_damage_+%_final_per_pierced_target"]=1109, - ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1110, - ["support_pin_buildup_pin_instead_of_stun"]=1111, - ["support_pin_hit_damage_stun_multiplier_+%_final"]=1112, - ["support_pin_physical_damage_can_pin"]=1113, - ["support_pin_pin_buildup_+%_final"]=1114, - ["support_pin_pin_duration_+%_final"]=1115, - ["support_pinpoint_critical_strike_chance_+%_final"]=1116, - ["support_pinpoint_critical_strike_multiplier_+%_final"]=1117, + ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1092, + ["support_no_fear_damage_+%_final_per_second_up_to_30%"]=1093, + ["support_nova_projectiles_damage_+%_final"]=1094, + ["support_number_of_additional_uses_before_expiry"]=1095, + ["support_overextend_critical_strike_multiplier_+%_final"]=1096, + ["support_overpower_damage_+%_final"]=1097, + ["support_overpower_hit_damage_stun_multiplier_+%_final"]=1098, + ["support_parallel_projectile_number_of_points_per_side"]=1099, + ["support_parallel_projectiles_damage_+%_final"]=1100, + ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=1101, + ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=1102, + ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=1103, + ["support_physical_damage_%_to_gain_as_daze_build_up"]=1104, + ["support_pierce_damage_+%_final_per_pierced_target"]=1105, + ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1106, + ["support_pin_buildup_pin_instead_of_stun"]=1107, + ["support_pin_hit_damage_stun_multiplier_+%_final"]=1108, + ["support_pin_physical_damage_can_pin"]=1109, + ["support_pin_pin_buildup_+%_final"]=1110, + ["support_pin_pin_duration_+%_final"]=1111, + ["support_pinpoint_critical_strike_chance_+%_final"]=1112, + ["support_pinpoint_critical_strike_multiplier_+%_final"]=1113, ["support_poison_poison_effect_+%_final"]=99, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1118, - ["support_precision_accuracy_rating_+%"]=1119, - ["support_projectile_attack_physical_damage_+%_final"]=1120, - ["support_projectile_attack_speed_+%_final"]=1121, - ["support_pulverise_area_of_effect_+%_final"]=1122, - ["support_pulverise_attack_speed_+%_final"]=1123, - ["support_pulverise_melee_area_damage_+%_final"]=1124, - ["support_pure_shock_shock_duration_+%_final"]=1125, - ["support_rage_attack_damage_+%_final"]=1127, - ["support_rage_attack_speed_+%_while_not_at_maximum_rage"]=1128, - ["support_rage_fountain_rage_regeneration_per_minute"]=1129, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1130, - ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1131, - ["support_rageforged_enraged_damage_+%_final"]=1131, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1114, + ["support_precision_accuracy_rating_+%"]=1115, + ["support_projectile_attack_physical_damage_+%_final"]=1116, + ["support_projectile_attack_speed_+%_final"]=1117, + ["support_pulverise_area_of_effect_+%_final"]=1118, + ["support_pulverise_attack_speed_+%_final"]=1119, + ["support_pulverise_melee_area_damage_+%_final"]=1120, + ["support_pure_shock_shock_duration_+%_final"]=1121, + ["support_rage_attack_damage_+%_final"]=1123, + ["support_rage_attack_speed_+%_while_not_at_maximum_rage"]=1124, + ["support_rage_fountain_rage_regeneration_per_minute"]=1125, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1126, + ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1127, + ["support_rageforged_enraged_damage_+%_final"]=1127, ["support_rain_projectile_damage_+%_final"]=29, - ["support_randomise_higher_aoe_+%_final"]=1132, - ["support_randomise_higher_damage_+%_final"]=1134, - ["support_randomise_higher_projectile_speed_+%_final"]=1133, - ["support_randomise_higher_recover_%_cost_on_use"]=1135, - ["support_randomise_lower_aoe_+%_final"]=1132, - ["support_randomise_lower_damage_+%_final"]=1134, - ["support_randomise_lower_projectile_speed_+%_final"]=1133, - ["support_randomise_lower_recover_%_cost_on_use"]=1135, - ["support_rapid_activation_brand_activation_rate_+%_final"]=1136, + ["support_randomise_higher_aoe_+%_final"]=1128, + ["support_randomise_higher_damage_+%_final"]=1130, + ["support_randomise_higher_projectile_speed_+%_final"]=1129, + ["support_randomise_higher_recover_%_cost_on_use"]=1131, + ["support_randomise_lower_aoe_+%_final"]=1128, + ["support_randomise_lower_damage_+%_final"]=1130, + ["support_randomise_lower_projectile_speed_+%_final"]=1129, + ["support_randomise_lower_recover_%_cost_on_use"]=1131, + ["support_rapid_activation_brand_activation_rate_+%_final"]=1132, ["support_rapid_activation_brand_skill_only_primary_duration_+%_final"]=162, ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"]=163, ["support_rapid_decay_damage_over_time_+%_final"]=104, - ["support_reach_accuracy_within_2m_+%_final"]=1137, - ["support_reach_area_of_effect_+%_final"]=1138, - ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1139, + ["support_reach_accuracy_within_2m_+%_final"]=1133, + ["support_reach_area_of_effect_+%_final"]=1134, + ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1135, ["support_reduced_duration_damage_+%_final"]=160, ["support_reduced_duration_skill_effect_duration_+%_final"]=161, - ["support_regenerate_mana_per_minute_on_shock"]=1143, - ["support_relentless_rage_gain_X_rage_on_skill_use_if_enough_was_spent"]=1144, - ["support_relentless_rage_spending_X_rage_grants_rage_on_next_skill_use"]=1144, - ["support_remote_mine_2_base_mine_detonation_time_ms"]=1145, + ["support_regenerate_mana_per_minute_on_shock"]=1139, + ["support_relentless_rage_gain_X_rage_on_skill_use_if_enough_was_spent"]=1140, + ["support_relentless_rage_spending_X_rage_grants_rage_on_next_skill_use"]=1140, + ["support_remote_mine_2_base_mine_detonation_time_ms"]=1141, ["support_remote_mine_2_base_mine_duration"]=69, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1322, - ["support_remote_mine_2_damage_+%_final"]=1146, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1147, - ["support_remote_mine_hit_damage_+%_final"]=1148, - ["support_retreating_assault_melee_damage_+%_final"]=1149, - ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"]=1150, - ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"]=1151, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1318, + ["support_remote_mine_2_damage_+%_final"]=1142, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1143, + ["support_remote_mine_hit_damage_+%_final"]=1144, + ["support_retreating_assault_melee_damage_+%_final"]=1145, + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_2_seconds"]=1146, + ["support_retreating_assault_projectile_damage_+%_final_if_melee_hit_in_past_8_seconds"]=1147, ["support_return_projectile_damage_+%_final"]=100, ["support_rigwald_attack_speed_+%_in_weapon_set_one"]=188, ["support_rigwald_attack_speed_+%_in_weapon_set_two"]=190, ["support_rigwald_damage_+%_final_in_weapon_set_one"]=189, ["support_rigwald_damage_+%_final_in_weapon_set_two"]=191, - ["support_ritual_curse_curse_delay_+%_final"]=1152, - ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1153, + ["support_ritual_curse_curse_delay_+%_final"]=1148, + ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1149, ["support_ruthless_big_hit_max_count"]=176, ["support_ruthless_big_hit_stun_damage_+%_final"]=176, - ["support_sacrificial_lamb_base_radius"]=1154, - ["support_scattershot_skill_speed_+%_final"]=1155, - ["support_scion_onslaught_duration_+%"]=1156, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1157, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1158, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1158, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1157, - ["support_scouring_flame_ignite_effect_+%_final"]=1159, - ["support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%"]=516, - ["support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence"]=1160, - ["support_shock_protection_spirit_cost_shock_duration_on_self_+%_final"]=1161, - ["support_shocked_ground_effect_duration_+%_final"]=1162, - ["support_shocking_leap_shocked_ground_duration_ms"]=1163, - ["support_shocking_leap_shocked_ground_radius"]=1163, - ["support_short_fuse_damage_+%_final"]=1164, - ["support_slam_chance_for_one_additional_aftershock_%"]=1325, - ["support_slam_chance_for_three_additional_aftershocks_%"]=1333, - ["support_slam_chance_for_two_additional_aftershocks_%"]=1327, - ["support_slam_spend_%_supported_skill_cost_as_ward_for_runic_boost"]=1165, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1167, - ["support_slashing_buff_base_duration_ms"]=1166, + ["support_sacrificial_lamb_base_radius"]=1150, + ["support_scattershot_skill_speed_+%_final"]=1151, + ["support_scion_onslaught_duration_+%"]=1152, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1153, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1154, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1154, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1153, + ["support_scouring_flame_ignite_effect_+%_final"]=1155, + ["support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%"]=513, + ["support_shield_sacrifice_damage_over_time_+%_final_per_100_intelligence"]=1156, + ["support_shock_protection_spirit_cost_shock_duration_on_self_+%_final"]=1157, + ["support_shocked_ground_effect_duration_+%_final"]=1158, + ["support_shocking_leap_shocked_ground_duration_ms"]=1159, + ["support_shocking_leap_shocked_ground_radius"]=1159, + ["support_short_fuse_damage_+%_final"]=1160, + ["support_slam_chance_for_one_additional_aftershock_%"]=1321, + ["support_slam_chance_for_three_additional_aftershocks_%"]=1329, + ["support_slam_chance_for_two_additional_aftershocks_%"]=1323, + ["support_slam_spend_%_supported_skill_cost_as_ward_for_runic_boost"]=1161, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1163, + ["support_slashing_buff_base_duration_ms"]=1162, ["support_slashing_damage_+%_final_from_distance"]=115, - ["support_slow_cast_cast_speed_+%_final"]=1168, - ["support_slow_cast_spell_damage_+%_final"]=1169, - ["support_slower_projectiles_damage_+%_final"]=1170, + ["support_slow_cast_cast_speed_+%_final"]=1164, + ["support_slow_cast_spell_damage_+%_final"]=1165, + ["support_slower_projectiles_damage_+%_final"]=1166, ["support_slower_projectiles_projectile_speed_+%_final"]=159, - ["support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage"]=1171, - ["support_spectral_arrows_base_duration_ms"]=1172, - ["support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles"]=1173, - ["support_spectral_arrows_damage_+%_final_with_spectral_projectiles"]=1174, - ["support_spectral_arrows_maximum_spectral_arrows"]=1175, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1176, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1176, - ["support_spell_cascade_area_delay_+%"]=1177, - ["support_spell_cascade_area_of_effect_+%_final"]=1178, - ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1179, - ["support_spell_cascade_damage_+%_final"]=1180, - ["support_spell_cascade_number_of_cascades_per_side"]=1181, - ["support_spell_cascade_sideways"]=1181, - ["support_spell_damage_+%_final_while_above_90%_maximum_mana"]=1182, - ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"]=1183, - ["support_spell_echo_area_of_effect_+%_final"]=1184, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1185, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1186, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1187, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1188, - ["support_spell_echo_damage_+%_final"]=1189, + ["support_soulbreaker_%_enemy_energy_shield_dealt_as_chaos_damage"]=1167, + ["support_spectral_arrows_base_duration_ms"]=1168, + ["support_spectral_arrows_damage_+%_final_with_non_spectral_projectiles"]=1169, + ["support_spectral_arrows_damage_+%_final_with_spectral_projectiles"]=1170, + ["support_spectral_arrows_maximum_spectral_arrows"]=1171, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1172, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1172, + ["support_spell_cascade_area_delay_+%"]=1173, + ["support_spell_cascade_area_of_effect_+%_final"]=1174, + ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1175, + ["support_spell_cascade_damage_+%_final"]=1176, + ["support_spell_cascade_number_of_cascades_per_side"]=1177, + ["support_spell_cascade_sideways"]=1177, + ["support_spell_damage_+%_final_while_above_90%_maximum_mana"]=1178, + ["support_spell_damage_spirit_cost_spell_damage_+%_on_full_energy_shield"]=1179, + ["support_spell_echo_area_of_effect_+%_final"]=1180, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1181, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1182, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1183, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1184, + ["support_spell_echo_damage_+%_final"]=1185, ["support_spell_echo_number_of_echo_cascades"]=122, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1321, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1317, ["support_spell_totem_cast_speed_+%_final"]=154, - ["support_spellslinger_damage_+%_final"]=1190, - ["support_spiral_projectiles_damage_+%_final"]=1191, + ["support_spellslinger_damage_+%_final"]=1186, + ["support_spiral_projectiles_damage_+%_final"]=1187, ["support_spirit_strike_damage_+%_final"]=93, - ["support_spiritual_cry_damage_+%_final"]=1192, - ["support_splinter_totem_X_times"]=1193, - ["support_splinter_totem_area_of_effect_+%_final_each_splinter"]=1194, - ["support_splinter_totem_damage_+%_final_each_splinter"]=1195, - ["support_splinter_totem_maximum_life_+%_final_each_splinter"]=1196, - ["support_splinter_totem_skill_speed_+%_final_each_splinter"]=1197, - ["support_splinter_totem_splinter_after_X_actions"]=1198, + ["support_spiritual_cry_damage_+%_final"]=1188, + ["support_splinter_totem_X_times"]=1189, + ["support_splinter_totem_area_of_effect_+%_final_each_splinter"]=1190, + ["support_splinter_totem_damage_+%_final_each_splinter"]=1191, + ["support_splinter_totem_maximum_life_+%_final_each_splinter"]=1192, + ["support_splinter_totem_skill_speed_+%_final_each_splinter"]=1193, + ["support_splinter_totem_splinter_after_X_actions"]=1194, ["support_split_projectile_damage_+%_final"]=94, - ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1199, - ["support_static_charge_%_damage_gained_as_lightning_per_10_charge"]=1201, - ["support_static_charge_X_chains_per_10_charge"]=1200, + ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1195, + ["support_static_charge_%_damage_gained_as_lightning_per_10_charge"]=1197, + ["support_static_charge_X_chains_per_10_charge"]=1196, ["support_static_charge_charge_gain_per_metre"]=32, ["support_static_charge_maximum_charge"]=56, - ["support_steadfast_ailment_threshold_+%_final_while_channelling"]=1202, - ["support_steadfast_stun_threshold_+%_final_while_channelling"]=1203, - ["support_sticky_grenade_damage_+%_final"]=1204, - ["support_stomping_ground"]=1205, - ["support_storm_barrier_damage_+%_final"]=1208, - ["support_storm_barrier_damage_buff_base_duration_ms"]=1206, - ["support_storm_barrier_damage_buff_time_threshold_ms"]=1207, - ["support_storm_barrier_damage_buff_uses_time_threshold"]=1207, - ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1209, - ["support_storm_barrier_skill_type_damage_+%_final"]=1210, - ["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=1211, + ["support_steadfast_ailment_threshold_+%_final_while_channelling"]=1198, + ["support_steadfast_stun_threshold_+%_final_while_channelling"]=1199, + ["support_sticky_grenade_damage_+%_final"]=1200, + ["support_stomping_ground"]=1201, + ["support_storm_barrier_damage_+%_final"]=1204, + ["support_storm_barrier_damage_buff_base_duration_ms"]=1202, + ["support_storm_barrier_damage_buff_time_threshold_ms"]=1203, + ["support_storm_barrier_damage_buff_uses_time_threshold"]=1203, + ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1205, + ["support_storm_barrier_skill_type_damage_+%_final"]=1206, + ["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=1207, ["support_storm_skill_limit_+"]=3, - ["support_stormfire_targets_shocked_by_this_take_%_of_damage_from_ignite_as_lightning_damage"]=1212, - ["support_stronger_ignites_hit_damage_+%_final"]=1213, - ["support_stronger_ignites_ignite_effect_+%_final"]=1214, - ["support_stunning_magic_buff_duration_ms"]=1215, - ["support_stunning_magic_grant_spell_damage_+%_buff_on_heavy_stunning"]=1215, - ["support_sunblast_hazard_hazard_damage_+%_final"]=1216, - ["support_sunblast_hazard_hazard_duration_+%_final"]=1217, - ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"]=1218, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1219, - ["support_tangmazu_light_radius_+%"]=1220, - ["support_tangmazu_slow_potency_+%"]=1221, - ["support_tangmazu_sprint_speed_+%"]=1222, - ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"]=1225, - ["support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour"]=1223, - ["support_tempered_valour_deflection_rating_%_of_evasion_rating"]=1224, - ["support_thorns_spirit_cost_thorns_damage_+%"]=1226, - ["support_thrill_of_the_kill_buff_base_duration_ms"]=1227, - ["support_thrill_of_the_kill_buff_grant_%_added_lightning_attack_damage"]=1227, - ["support_thrill_of_the_kill_buff_shock_chance_+%"]=1228, - ["support_timerot_reparation_duration_per_timerot_lost_ms"]=1334, - ["support_timerot_stacks_gained_per_500_ms"]=1229, - ["support_titanic_arrows_attack_speed_+%_final"]=1230, - ["support_titanic_arrows_projectile_speed_+%_final"]=1231, + ["support_stormfire_targets_shocked_by_this_take_%_of_damage_from_ignite_as_lightning_damage"]=1208, + ["support_stronger_ignites_hit_damage_+%_final"]=1209, + ["support_stronger_ignites_ignite_effect_+%_final"]=1210, + ["support_stunning_magic_buff_duration_ms"]=1211, + ["support_stunning_magic_grant_spell_damage_+%_buff_on_heavy_stunning"]=1211, + ["support_sunblast_hazard_hazard_damage_+%_final"]=1212, + ["support_sunblast_hazard_hazard_duration_+%_final"]=1213, + ["support_swift_affliction_non_ailment_damage_over_time_+%_final_if_duration_below_1_second"]=1214, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1215, + ["support_tangmazu_light_radius_+%"]=1216, + ["support_tangmazu_slow_potency_+%"]=1217, + ["support_tangmazu_sprint_speed_+%"]=1218, + ["support_tempered_valour_%_armour_to_apply_to_elemental_damage"]=1221, + ["support_tempered_valour_banner_applies_%_elemental_exposure_per_1000_armour"]=1219, + ["support_tempered_valour_deflection_rating_%_of_evasion_rating"]=1220, + ["support_thorns_spirit_cost_thorns_damage_+%"]=1222, + ["support_thrill_of_the_kill_buff_base_duration_ms"]=1223, + ["support_thrill_of_the_kill_buff_grant_%_added_lightning_attack_damage"]=1223, + ["support_thrill_of_the_kill_buff_shock_chance_+%"]=1224, + ["support_timerot_reparation_duration_per_timerot_lost_ms"]=1330, + ["support_timerot_stacks_gained_per_500_ms"]=1225, + ["support_titanic_arrows_attack_speed_+%_final"]=1226, + ["support_titanic_arrows_projectile_speed_+%_final"]=1227, ["support_totem_damage_+%_final"]=33, ["support_totem_life_+%_final"]=179, ["support_trap_and_mine_damage_+%_final"]=116, - ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=1232, - ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=1233, + ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=1228, + ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=1229, ["support_trap_damage_+%_final"]=126, - ["support_trap_hit_damage_+%_final"]=1234, + ["support_trap_hit_damage_+%_final"]=1230, ["support_tricksters_shard_trigger_fractured_self_on_cast"]=138, ["support_trigger_link_damage_+%_final"]=38, - ["support_trigger_mana_flare_on_crit"]=1235, - ["support_trigger_pummel_on_heavy_stun"]=1236, - ["support_trigger_shocked_ground_on_mark_activate"]=1237, - ["support_triple_number_of_cooldown_uses"]=1238, - ["support_trusty_companion_minion_life_+%_final"]=1239, - ["support_uhtred_damage_+%_final_per_different_cooldown_skill_in_last_8_seconds"]=1240, + ["support_trigger_mana_flare_on_crit"]=1231, + ["support_trigger_pummel_on_heavy_stun"]=1232, + ["support_trigger_shocked_ground_on_mark_activate"]=1233, + ["support_triple_number_of_cooldown_uses"]=1234, + ["support_trusty_companion_minion_life_+%_final"]=1235, + ["support_uhtred_damage_+%_final_per_different_cooldown_skill_in_last_8_seconds"]=1236, ["support_uhtreds_chalice_buff_on_skill_use_duration_ms_per_1000_ms_cooldown"]=220, ["support_uhtreds_chalice_damage_+%_final_during_life_flask"]=221, - ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1241, - ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1242, - ["support_unending_ailments_all_ailment_duration_+%_final"]=1243, - ["support_unmoving_damage_+%_final_per_250_ms_stationary"]=1244, - ["support_unmoving_damage_multiplier_cap"]=1244, - ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"]=1245, - ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"]=1246, - ["support_unstable_earth_damage_+%_final"]=1335, - ["support_upheaval_area_of_effect_+%_final"]=1247, - ["support_vaal_lineage_trigger_detonate_on_landing"]=1248, - ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"]=1249, - ["support_vicious_projectiles_chaos_damage_+%_final"]=1251, - ["support_vicious_projectiles_physical_damage_+%_final"]=1250, - ["support_vitality_life_regeneration_rate_per_minute_%"]=1252, + ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1237, + ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1238, + ["support_unending_ailments_all_ailment_duration_+%_final"]=1239, + ["support_unmoving_damage_+%_final_per_250_ms_stationary"]=1240, + ["support_unmoving_damage_multiplier_cap"]=1240, + ["support_unseen_critical_damage_multiplier_+%_final_vs_blinded_enemies"]=1241, + ["support_unseen_critical_strike_chance_+%_final_vs_blinded_enemies"]=1242, + ["support_unstable_earth_damage_+%_final"]=1331, + ["support_upheaval_area_of_effect_+%_final"]=1243, + ["support_vaal_lineage_trigger_detonate_on_landing"]=1244, + ["support_varied_troops_damage_+%_final_per_different_persistent_ominion"]=1245, + ["support_vicious_projectiles_chaos_damage_+%_final"]=1247, + ["support_vicious_projectiles_physical_damage_+%_final"]=1246, + ["support_vitality_life_regeneration_rate_per_minute_%"]=1248, ["support_void_manipulation_chaos_damage_+%_final"]=101, - ["support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies"]=1253, - ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"]=1254, - ["support_wall_fortress_area_of_effect_+%_final"]=1255, - ["support_wall_fortress_hit_damage_+%_final"]=1256, - ["support_warcries_detonate_your_ice_fragments"]=1328, - ["support_warcries_empower_x_additional_per_5_total_ice_crystals_or_fragments_destroyed"]=1336, - ["support_warcries_explode_ice_crystals"]=1326, - ["support_warcry_consumes_up_to_X_rage"]=1257, + ["support_volcanic_eruption_%_chance_to_trigger_vs_ignited_enemies"]=1249, + ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"]=1250, + ["support_wall_fortress_area_of_effect_+%_final"]=1251, + ["support_wall_fortress_hit_damage_+%_final"]=1252, + ["support_warcries_detonate_your_ice_fragments"]=1324, + ["support_warcries_empower_x_additional_per_5_total_ice_crystals_or_fragments_destroyed"]=1332, + ["support_warcries_explode_ice_crystals"]=1322, + ["support_warcry_consumes_up_to_X_rage"]=1253, ["support_weapon_elemental_damage_+%_final"]=25, - ["support_window_of_opportunity_perfect_timing_damage_+%_final"]=1258, - ["support_winterblast_chill_effect_+%_final"]=1259, + ["support_window_of_opportunity_perfect_timing_damage_+%_final"]=1254, + ["support_winterblast_chill_effect_+%_final"]=1255, ["support_withered_base_duration_ms"]=175, - ["support_withering_touch_damage_+%_final"]=1260, - ["support_zerphis_legacy_area_of_effect_+%"]=1261, - ["support_zerphis_legacy_damage_+%_final"]=1262, + ["support_withering_touch_damage_+%_final"]=1256, + ["support_zerphis_legacy_area_of_effect_+%"]=1257, + ["support_zerphis_legacy_damage_+%_final"]=1258, ["supported_active_skill_gem_level_+"]=6, ["supported_active_skill_gem_level_+_if_no_other_supports"]=7, ["supported_active_skill_gem_level_+_if_one_other_support"]=4, @@ -34334,71 +34236,71 @@ return { ["supported_fire_skill_gem_level_+"]=13, ["supported_lightning_skill_gem_level_+"]=14, ["supported_minion_skill_gem_level_+"]=15, - ["supported_offerings_grant_you_a_powercharge_every_x_ms"]=1263, + ["supported_offerings_grant_you_a_powercharge_every_x_ms"]=1259, ["supported_physical_skill_gem_level_+"]=16, - ["supported_skill_attack_speed_+%_per_5_rage"]=1264, - ["supported_skill_can_only_use_axe_and_sword"]=1265, - ["supported_skill_can_only_use_dagger_and_claw"]=1267, - ["supported_skill_can_only_use_mace_and_staff"]=1268, - ["supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze"]=1270, - ["supported_skill_triggers_living_lightning_on_dealing_lightning_damage"]=420, + ["supported_skill_attack_speed_+%_per_5_rage"]=1260, + ["supported_skill_can_only_use_axe_and_sword"]=1261, + ["supported_skill_can_only_use_dagger_and_claw"]=1263, + ["supported_skill_can_only_use_mace_and_staff"]=1264, + ["supported_skill_grants_shatter_fang_to_you_and_allies_in_presence_for_base_X_ms_on_freeze"]=1266, + ["supported_skill_triggers_living_lightning_on_dealing_lightning_damage"]=417, ["supported_strike_skill_gem_level_+"]=17, ["throw_traps_in_circle_radius"]=64, - ["totem_elemental_resistance_%"]=1271, - ["totem_gain_onslaught_for_x_ms_after_summon"]=1272, + ["totem_elemental_resistance_%"]=1267, + ["totem_gain_onslaught_for_x_ms_after_summon"]=1268, ["totem_maximum_all_elemental_resistances_%"]=187, ["totem_skill_attack_speed_+%"]=217, ["totem_skill_cast_speed_+%"]=216, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1273, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1274, - ["trap_damage_+%"]=1275, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1269, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1270, + ["trap_damage_+%"]=1271, ["trap_duration_+%"]=75, - ["trap_spread_+%"]=1276, - ["trap_throwing_speed_+%"]=1277, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1278, - ["trap_trigger_radius_+%"]=1279, - ["trap_trigger_radius_+%_per_power_charge"]=1280, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1281, - ["trigger_ballistic_ice_chunks_on_killing_frozen_enemy"]=1282, - ["trigger_bone_shrapnel_explosion_on_killing_pinned_enemy"]=1283, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1284, - ["trigger_caltrops_at_end_of_projectile_flight"]=1285, - ["trigger_from_hayhoxis_binding_after_x_ms"]=1286, - ["trigger_frozen_vortex_on_shattering_enemy"]=1287, - ["trigger_on_attack_hit_against_rare_or_unique"]=1288, - ["trigger_on_trigger_link_target_hit"]=1289, - ["trigger_poison_spore_pustule"]=1290, - ["trigger_prismatic_burst_on_hit_%_chance"]=1291, - ["trigger_skills_refund_half_energy_spent_chance_%"]=1292, - ["trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger"]=1293, - ["trigger_titanic_arrows_on_impact"]=1294, + ["trap_spread_+%"]=1272, + ["trap_throwing_speed_+%"]=1273, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1274, + ["trap_trigger_radius_+%"]=1275, + ["trap_trigger_radius_+%_per_power_charge"]=1276, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1277, + ["trigger_ballistic_ice_chunks_on_killing_frozen_enemy"]=1278, + ["trigger_bone_shrapnel_explosion_on_killing_pinned_enemy"]=1279, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1280, + ["trigger_caltrops_at_end_of_projectile_flight"]=1281, + ["trigger_from_hayhoxis_binding_after_x_ms"]=1282, + ["trigger_frozen_vortex_on_shattering_enemy"]=1283, + ["trigger_on_attack_hit_against_rare_or_unique"]=1284, + ["trigger_on_trigger_link_target_hit"]=1285, + ["trigger_poison_spore_pustule"]=1286, + ["trigger_prismatic_burst_on_hit_%_chance"]=1287, + ["trigger_skills_refund_half_energy_spent_chance_%"]=1288, + ["trigger_spiked_gauntlets_for_X_hits_after_thorns_trigger"]=1289, + ["trigger_titanic_arrows_on_impact"]=1290, ["trigger_vicious_hex_explosion_when_curse_ends"]=137, - ["triggered_by_brand_support"]=1295, - ["triggered_by_divine_cry"]=1296, - ["triggered_by_manaforged_arrows_support_%_chance"]=1297, - ["triggered_by_spiritual_cry"]=1298, - ["triggered_fan_the_flames_spread_ignite_to_hit_enemies"]=1299, - ["triggered_skill_damage_+%"]=1300, + ["triggered_by_brand_support"]=1291, + ["triggered_by_divine_cry"]=1292, + ["triggered_by_manaforged_arrows_support_%_chance"]=1293, + ["triggered_by_spiritual_cry"]=1294, + ["triggered_fan_the_flames_spread_ignite_to_hit_enemies"]=1295, + ["triggered_skill_damage_+%"]=1296, ["triggered_spell_spell_damage_+%"]=34, - ["triggers_burning_runes_on_placing_ground_rune"]=1301, - ["trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant"]=807, - ["try_consuming_shock_to_trigger_shocking_rift_in_radius_on_shocking_enemy"]=1302, + ["triggers_burning_runes_on_placing_ground_rune"]=1297, + ["trinity_skill_speed_+%_while_all_resonance_is_at_least_250_to_grant"]=804, + ["try_consuming_shock_to_trigger_shocking_rift_in_radius_on_shocking_enemy"]=1298, ["virtual_cast_when_damage_taken_threshold"]=143, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1158, - ["wall_is_created_along_a_fissure_instead"]=1303, - ["wall_is_created_in_a_circle_instead"]=1304, - ["warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge"]=1305, - ["warcry_echo_area_of_effect_+%_final_per_repeat"]=1307, - ["warcry_echo_delay_ms_from_support"]=1306, - ["warcry_grant_X_rage_per_5_power"]=1308, - ["warcry_speed_+%"]=1309, - ["warcry_triggers_corrupting_cry"]=1310, - ["warcry_triggers_paquates_pact"]=1311, - ["weapon_elemental_damage_+%"]=1312, - ["wither_applies_additional_wither_%"]=1313, - ["wither_on_hit_chance_rollovercapped"]=1314, - ["withered_on_chaos_damage_hit_chance_%"]=1315, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1154, + ["wall_is_created_along_a_fissure_instead"]=1299, + ["wall_is_created_in_a_circle_instead"]=1300, + ["warcry_bypass_cooldown_spending_X_rage_instead_of_endurance_charge"]=1301, + ["warcry_echo_area_of_effect_+%_final_per_repeat"]=1303, + ["warcry_echo_delay_ms_from_support"]=1302, + ["warcry_grant_X_rage_per_5_power"]=1304, + ["warcry_speed_+%"]=1305, + ["warcry_triggers_corrupting_cry"]=1306, + ["warcry_triggers_paquates_pact"]=1307, + ["weapon_elemental_damage_+%"]=1308, + ["wither_applies_additional_wither_%"]=1309, + ["wither_on_hit_chance_rollovercapped"]=1310, + ["withered_on_chaos_damage_hit_chance_%"]=1311, ["withered_on_hit_chance_%"]=167, - ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1316, - ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=1319 + ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1312, + ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=1315 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/skill_stat_descriptions.lua b/src/Data/StatDescriptions/skill_stat_descriptions.lua index bd988cc8cf..4be716d86c 100644 --- a/src/Data/StatDescriptions/skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/skill_stat_descriptions.lua @@ -9330,6 +9330,86 @@ return { } }, [399]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of damage as Chaos damage" + } + }, + stats={ + [1]="active_skill_base_all_damage_%_to_gain_as_chaos" + } + }, + [400]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of damage as Cold damage" + } + }, + stats={ + [1]="active_skill_base_all_damage_%_to_gain_as_cold" + } + }, + [401]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of damage as Fire damage" + } + }, + stats={ + [1]="active_skill_base_all_damage_%_to_gain_as_fire" + } + }, + [402]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of damage as Lightning damage" + } + }, + stats={ + [1]="active_skill_base_all_damage_%_to_gain_as_lightning" + } + }, + [403]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of damage as Physical damage" + } + }, + stats={ + [1]="active_skill_base_all_damage_%_to_gain_as_physical" + } + }, + [404]={ [1]={ [1]={ limit={ @@ -9345,7 +9425,7 @@ return { [1]="active_skill_base_area_length_+" } }, - [400]={ + [405]={ [1]={ [1]={ [1]={ @@ -9365,7 +9445,7 @@ return { [1]="active_skill_base_slow_debuff_movement_speed_+%_final" } }, - [401]={ + [406]={ [1]={ [1]={ limit={ @@ -9394,7 +9474,7 @@ return { [1]="active_skill_bleeding_effect_+%_final_in_blood_stance" } }, - [402]={ + [407]={ [1]={ [1]={ limit={ @@ -9423,14 +9503,14 @@ return { [1]="active_skill_bleeding_effect_+%_final" } }, - [403]={ + [408]={ [1]={ }, stats={ [1]="active_skill_can_overload" } }, - [404]={ + [409]={ [1]={ [1]={ limit={ @@ -9459,7 +9539,7 @@ return { [1]="active_skill_chaos_damage_+%_final" } }, - [405]={ + [410]={ [1]={ [1]={ limit={ @@ -9488,7 +9568,7 @@ return { [1]="active_skill_chill_as_though_damage_+%_final" } }, - [406]={ + [411]={ [1]={ [1]={ limit={ @@ -9504,7 +9584,7 @@ return { [1]="active_skill_compounding_ignites" } }, - [407]={ + [412]={ [1]={ [1]={ limit={ @@ -9533,7 +9613,7 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [408]={ + [413]={ [1]={ [1]={ limit={ @@ -9562,7 +9642,7 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final" } }, - [409]={ + [414]={ [1]={ [1]={ limit={ @@ -9591,7 +9671,7 @@ return { [1]="active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final" } }, - [410]={ + [415]={ [1]={ [1]={ limit={ @@ -9607,7 +9687,7 @@ return { [1]="active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [411]={ + [416]={ [1]={ [1]={ limit={ @@ -9636,7 +9716,7 @@ return { [1]="active_skill_damage_+%_final_against_heavy_stunned_enemies" } }, - [412]={ + [417]={ [1]={ [1]={ limit={ @@ -9687,7 +9767,7 @@ return { [2]="quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem" } }, - [413]={ + [418]={ [1]={ [1]={ limit={ @@ -9716,7 +9796,7 @@ return { [1]="active_skill_damage_+%_final_vs_unique_enemies" } }, - [414]={ + [419]={ [1]={ [1]={ limit={ @@ -9745,7 +9825,7 @@ return { [1]="active_skill_damage_+%_final_while_dual_wielding" } }, - [415]={ + [420]={ [1]={ [1]={ limit={ @@ -9761,7 +9841,7 @@ return { [1]="active_skill_damage_+%_final_against_enemies_on_full_life" } }, - [416]={ + [421]={ [1]={ [1]={ limit={ @@ -9790,7 +9870,7 @@ return { [1]="active_skill_damage_+%_final_per_time_chained" } }, - [417]={ + [422]={ [1]={ [1]={ limit={ @@ -9819,7 +9899,7 @@ return { [1]="active_skill_damage_+%_final_vs_burning_enemies" } }, - [418]={ + [423]={ [1]={ [1]={ limit={ @@ -9848,7 +9928,7 @@ return { [1]="active_skill_damage_+%_final_vs_chilled_enemies" } }, - [419]={ + [424]={ [1]={ [1]={ limit={ @@ -9877,7 +9957,7 @@ return { [1]="active_skill_damage_+%_final_vs_fully_broken_armour" } }, - [420]={ + [425]={ [1]={ [1]={ limit={ @@ -9906,7 +9986,7 @@ return { [1]="active_skill_damage_+%_when_cast_on_frostbolt" } }, - [421]={ + [426]={ [1]={ [1]={ limit={ @@ -9935,7 +10015,7 @@ return { [1]="active_skill_damaging_ailment_effect_+%_final" } }, - [422]={ + [427]={ [1]={ [1]={ limit={ @@ -9964,7 +10044,7 @@ return { [1]="active_skill_electrocutes_as_though_dealt_damage_+%_final" } }, - [423]={ + [428]={ [1]={ [1]={ limit={ @@ -9980,7 +10060,7 @@ return { [1]="active_skill_generates_mp_%_glory_per_chaos_hit" } }, - [424]={ + [429]={ [1]={ [1]={ limit={ @@ -9996,7 +10076,7 @@ return { [1]="active_skill_has_%_standard_scaling_attack_damage" } }, - [425]={ + [430]={ [1]={ [1]={ limit={ @@ -10034,7 +10114,7 @@ return { [1]="active_skill_hit_damage_freeze_multiplier_+%_final" } }, - [426]={ + [431]={ [1]={ [1]={ limit={ @@ -10072,7 +10152,7 @@ return { [1]="active_skill_hit_damage_stun_multiplier_+%_final" } }, - [427]={ + [432]={ [1]={ [1]={ limit={ @@ -10101,7 +10181,7 @@ return { [1]="active_skill_if_used_through_frostbolt_damage_+%_final" } }, - [428]={ + [433]={ [1]={ [1]={ limit={ @@ -10130,7 +10210,7 @@ return { [1]="active_skill_ignite_chance_+%_final" } }, - [429]={ + [434]={ [1]={ [1]={ limit={ @@ -10159,7 +10239,7 @@ return { [1]="active_skill_ignite_duration_+%_final" } }, - [430]={ + [435]={ [1]={ [1]={ limit={ @@ -10188,7 +10268,7 @@ return { [1]="active_skill_ignite_effect_+%_final" } }, - [431]={ + [436]={ [1]={ [1]={ [1]={ @@ -10221,7 +10301,7 @@ return { [1]="active_skill_ignite_proliferation_radius" } }, - [432]={ + [437]={ [1]={ [1]={ limit={ @@ -10237,7 +10317,7 @@ return { [1]="active_skill_knockback_distance_+%_final" } }, - [433]={ + [438]={ [1]={ [1]={ limit={ @@ -10266,7 +10346,7 @@ return { [1]="active_skill_lightning_damage_+%_final" } }, - [434]={ + [439]={ [1]={ [1]={ limit={ @@ -10295,7 +10375,7 @@ return { [1]="active_skill_minion_hit_damage_stun_multiplier_+%_final" } }, - [435]={ + [440]={ [1]={ [1]={ limit={ @@ -10311,7 +10391,7 @@ return { [1]="active_skill_never_freeze_shock_ignite" } }, - [436]={ + [441]={ [1]={ [1]={ limit={ @@ -10362,7 +10442,7 @@ return { [2]="quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem" } }, - [437]={ + [442]={ [1]={ [1]={ limit={ @@ -10395,7 +10475,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [438]={ + [443]={ [1]={ [1]={ limit={ @@ -10424,7 +10504,7 @@ return { [1]="active_skill_projectile_damage_+%_final_for_each_remaining_chain" } }, - [439]={ + [444]={ [1]={ [1]={ limit={ @@ -10453,7 +10533,7 @@ return { [1]="active_skill_projectile_damage_+%_final_if_pierced_enemy" } }, - [440]={ + [445]={ [1]={ [1]={ limit={ @@ -10482,7 +10562,7 @@ return { [1]="active_skill_reload_speed_+%_final" } }, - [441]={ + [446]={ [1]={ [1]={ [1]={ @@ -10520,7 +10600,7 @@ return { [2]="quality_display_active_skill_required_number_of_combo_stacks_is_gem" } }, - [442]={ + [447]={ [1]={ [1]={ limit={ @@ -10549,7 +10629,7 @@ return { [1]="active_skill_shock_as_though_damage_+%_final" } }, - [443]={ + [448]={ [1]={ [1]={ limit={ @@ -10574,7 +10654,7 @@ return { [1]="active_skill_shock_chance_+%_final" } }, - [444]={ + [449]={ [1]={ [1]={ limit={ @@ -10603,7 +10683,7 @@ return { [1]="active_skill_shock_duration_+%_final" } }, - [445]={ + [450]={ [1]={ [1]={ limit={ @@ -10632,7 +10712,7 @@ return { [1]="active_skill_shock_effect_+%_final" } }, - [446]={ + [451]={ [1]={ [1]={ limit={ @@ -10661,7 +10741,7 @@ return { [1]="active_skill_stun_threshold_+%_while_performing_action" } }, - [447]={ + [452]={ [1]={ [1]={ limit={ @@ -10686,7 +10766,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [448]={ + [453]={ [1]={ [1]={ limit={ @@ -10702,7 +10782,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [449]={ + [454]={ [1]={ [1]={ limit={ @@ -10718,7 +10798,7 @@ return { [1]="additional_block_chance_against_projectiles_%_per_steel_charge" } }, - [450]={ + [455]={ [1]={ [1]={ limit={ @@ -10734,7 +10814,7 @@ return { [1]="additional_chain_chance_%" } }, - [451]={ + [456]={ [1]={ [1]={ limit={ @@ -10750,7 +10830,7 @@ return { [1]="additional_combo_gain_chance_%" } }, - [452]={ + [457]={ [1]={ [1]={ [1]={ @@ -10770,7 +10850,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [453]={ + [458]={ [1]={ [1]={ [1]={ @@ -10790,7 +10870,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [454]={ + [459]={ [1]={ [1]={ limit={ @@ -10815,7 +10895,7 @@ return { [1]="additional_infusion_gain_chance_%" } }, - [455]={ + [460]={ [1]={ [1]={ limit={ @@ -10862,7 +10942,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [456]={ + [461]={ [1]={ [1]={ limit={ @@ -10878,7 +10958,7 @@ return { [1]="additive_thorns_damage_modifiers_apply_to_attack_damage" } }, - [457]={ + [462]={ [1]={ [1]={ limit={ @@ -10907,7 +10987,7 @@ return { [1]="alchemists_boon_attack_speed_granted_+%_during_life_flask" } }, - [458]={ + [463]={ [1]={ [1]={ limit={ @@ -10936,7 +11016,7 @@ return { [1]="alchemists_boon_cast_speed_granted_+%_during_mana_flask" } }, - [459]={ + [464]={ [1]={ [1]={ limit={ @@ -10952,7 +11032,7 @@ return { [1]="all_damage_can_ignite_freeze_shock" } }, - [460]={ + [465]={ [1]={ [1]={ limit={ @@ -10968,7 +11048,7 @@ return { [1]="all_damage_can_sap" } }, - [461]={ + [466]={ [1]={ [1]={ limit={ @@ -10984,7 +11064,7 @@ return { [1]="already_split_if_no_steel_shards" } }, - [462]={ + [467]={ [1]={ [1]={ limit={ @@ -11000,7 +11080,7 @@ return { [1]="always_chain_from_cursed_enemies" } }, - [463]={ + [468]={ [1]={ [1]={ limit={ @@ -11016,7 +11096,7 @@ return { [1]="always_chain_from_shocked_enemies" } }, - [464]={ + [469]={ [1]={ [1]={ limit={ @@ -11032,7 +11112,7 @@ return { [1]="always_crit" } }, - [465]={ + [470]={ [1]={ [1]={ limit={ @@ -11048,7 +11128,7 @@ return { [1]="always_ignite" } }, - [466]={ + [471]={ [1]={ [1]={ limit={ @@ -11064,7 +11144,7 @@ return { [1]="always_pierce" } }, - [467]={ + [472]={ [1]={ [1]={ limit={ @@ -11080,7 +11160,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [468]={ + [473]={ [1]={ [1]={ limit={ @@ -11109,7 +11189,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [469]={ + [474]={ [1]={ [1]={ limit={ @@ -11138,14 +11218,14 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [470]={ + [475]={ [1]={ }, stats={ [1]="ancestral_aid_required_count_of_recent_blocks" } }, - [471]={ + [476]={ [1]={ [1]={ limit={ @@ -11174,7 +11254,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [472]={ + [477]={ [1]={ [1]={ limit={ @@ -11190,7 +11270,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [473]={ + [478]={ [1]={ [1]={ [1]={ @@ -11210,7 +11290,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [474]={ + [479]={ [1]={ [1]={ limit={ @@ -11226,7 +11306,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_chill" } }, - [475]={ + [480]={ [1]={ [1]={ limit={ @@ -11242,7 +11322,7 @@ return { [1]="apply_%_cold_exposure_for_4_seconds_on_freeze" } }, - [476]={ + [481]={ [1]={ [1]={ limit={ @@ -11258,7 +11338,7 @@ return { [1]="apply_linked_curses_with_dark_ritual" } }, - [477]={ + [482]={ [1]={ [1]={ limit={ @@ -11287,7 +11367,7 @@ return { [1]="arc_chain_hit_damage_+%_final" } }, - [478]={ + [483]={ [1]={ [1]={ limit={ @@ -11303,7 +11383,7 @@ return { [1]="arc_chains_gained_from_infusion_consumption" } }, - [479]={ + [484]={ [1]={ [1]={ limit={ @@ -11332,7 +11412,7 @@ return { [1]="arc_damage_+%_final_from_infusion_consumption" } }, - [480]={ + [485]={ [1]={ [1]={ limit={ @@ -11361,7 +11441,7 @@ return { [1]="arc_damage_+%_final_per_chain" } }, - [481]={ + [486]={ [1]={ [1]={ limit={ @@ -11377,7 +11457,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [482]={ + [487]={ [1]={ [1]={ limit={ @@ -11393,7 +11473,7 @@ return { [1]="arcane_cloak_damage_absorbed_%" } }, - [483]={ + [488]={ [1]={ [1]={ [1]={ @@ -11413,7 +11493,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [484]={ + [489]={ [1]={ [1]={ limit={ @@ -11429,7 +11509,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage" } }, - [485]={ + [490]={ [1]={ [1]={ limit={ @@ -11445,7 +11525,7 @@ return { [1]="archon_of_chayula_physical_and_chaos_damage_+%_final" } }, - [486]={ + [491]={ [1]={ [1]={ limit={ @@ -11461,7 +11541,7 @@ return { [1]="archon_of_chayula_withered_on_hit_for_4_seconds_%_chance" } }, - [487]={ + [492]={ [1]={ [1]={ limit={ @@ -11490,7 +11570,7 @@ return { [1]="archon_of_chayula_spawn_chaos_tornado_interval_ms" } }, - [488]={ + [493]={ [1]={ [1]={ limit={ @@ -11519,7 +11599,7 @@ return { [1]="arctic_armour_armour_granted_+%_per_stage" } }, - [489]={ + [494]={ [1]={ [1]={ [1]={ @@ -11539,7 +11619,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [490]={ + [495]={ [1]={ [1]={ limit={ @@ -11568,7 +11648,7 @@ return { [1]="arctic_armour_fire_damage_taken_+%_final" } }, - [491]={ + [496]={ [1]={ [1]={ limit={ @@ -11597,7 +11677,7 @@ return { [1]="arctic_armour_physical_damage_taken_+%_final" } }, - [492]={ + [497]={ [1]={ [1]={ limit={ @@ -11622,7 +11702,7 @@ return { [1]="arctic_breath_maximum_number_of_skulls_allowed" } }, - [493]={ + [498]={ [1]={ [1]={ limit={ @@ -11651,14 +11731,14 @@ return { [1]="area_of_effect_+%_final_from_whirling_assault_level" } }, - [494]={ + [499]={ [1]={ }, stats={ [1]="area_of_effect_+%_per_combo_stack" } }, - [495]={ + [500]={ [1]={ [1]={ limit={ @@ -11687,7 +11767,7 @@ return { [1]="area_of_effect_+%_per_frost_fury_stage" } }, - [496]={ + [501]={ [1]={ [1]={ limit={ @@ -11716,7 +11796,7 @@ return { [1]="area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge" } }, - [497]={ + [502]={ [1]={ [1]={ limit={ @@ -11745,7 +11825,7 @@ return { [1]="area_of_effect_+%_when_cast_on_frostbolt" } }, - [498]={ + [503]={ [1]={ [1]={ limit={ @@ -11774,7 +11854,7 @@ return { [1]="area_of_effect_+%_while_not_dual_wielding" } }, - [499]={ + [504]={ [1]={ [1]={ limit={ @@ -11790,7 +11870,7 @@ return { [1]="armour_break_for_%_of_poison_damage_over_poison_duration" } }, - [500]={ + [505]={ [1]={ [1]={ limit={ @@ -11806,7 +11886,7 @@ return { [1]="armour_break_physical_damage_%_dealt_as_armour_break" } }, - [501]={ + [506]={ [1]={ [1]={ limit={ @@ -11835,7 +11915,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [502]={ + [507]={ [1]={ [1]={ limit={ @@ -11864,7 +11944,7 @@ return { [1]="attack_damage_+%" } }, - [503]={ + [508]={ [1]={ [1]={ limit={ @@ -11893,14 +11973,14 @@ return { [1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour" } }, - [504]={ + [509]={ [1]={ }, stats={ [1]="attack_duration_ms" } }, - [505]={ + [510]={ [1]={ [1]={ limit={ @@ -11916,7 +11996,7 @@ return { [1]="attack_speed_cannot_be_modified" } }, - [506]={ + [511]={ [1]={ [1]={ limit={ @@ -11932,7 +12012,7 @@ return { [1]="attack_speed_modifiers_apply_to_over_time_cost" } }, - [507]={ + [512]={ [1]={ [1]={ limit={ @@ -11957,7 +12037,7 @@ return { [1]="attack_trigger_on_hitting_bleeding_enemy_%" } }, - [508]={ + [513]={ [1]={ [1]={ limit={ @@ -11982,7 +12062,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [509]={ + [514]={ [1]={ [1]={ limit={ @@ -12007,7 +12087,7 @@ return { [1]="avoid_damage_%" } }, - [510]={ + [515]={ [1]={ [1]={ limit={ @@ -12032,7 +12112,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [511]={ + [516]={ [1]={ [1]={ limit={ @@ -12048,7 +12128,7 @@ return { [1]="ball_lightning_superball_%_chance" } }, - [512]={ + [517]={ [1]={ [1]={ limit={ @@ -12077,7 +12157,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [513]={ + [518]={ [1]={ [1]={ limit={ @@ -12093,7 +12173,7 @@ return { [1]="barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit" } }, - [514]={ + [519]={ [1]={ [1]={ limit={ @@ -12144,7 +12224,7 @@ return { [2]="quality_display_spear_puncture_is_gem" } }, - [515]={ + [520]={ [1]={ [1]={ limit={ @@ -12160,7 +12240,7 @@ return { [1]="base_bleeding_effect_+100%_final_chance" } }, - [516]={ + [521]={ [1]={ [1]={ limit={ @@ -12185,7 +12265,7 @@ return { [1]="base_chance_to_daze_%" } }, - [517]={ + [522]={ [1]={ [1]={ limit={ @@ -12201,7 +12281,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [518]={ + [523]={ [1]={ [1]={ limit={ @@ -12217,7 +12297,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [519]={ + [524]={ [1]={ [1]={ limit={ @@ -12242,7 +12322,7 @@ return { [1]="base_chance_to_inflict_bleeding_%" } }, - [520]={ + [525]={ [1]={ [1]={ limit={ @@ -12258,7 +12338,7 @@ return { [1]="base_chance_to_pierce_%" } }, - [521]={ + [526]={ [1]={ [1]={ [1]={ @@ -12291,7 +12371,7 @@ return { [1]="base_combo_stacks_decay_delay_ms" } }, - [522]={ + [527]={ [1]={ [1]={ limit={ @@ -12307,7 +12387,7 @@ return { [1]="base_consume_enemy_freeze_on_hit" } }, - [523]={ + [528]={ [1]={ [1]={ limit={ @@ -12323,7 +12403,7 @@ return { [1]="base_consume_enemy_shock_on_hit" } }, - [524]={ + [529]={ [1]={ [1]={ [1]={ @@ -12343,7 +12423,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [525]={ + [530]={ [1]={ [1]={ limit={ @@ -12372,7 +12452,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [526]={ + [531]={ [1]={ [1]={ limit={ @@ -12401,7 +12481,7 @@ return { [1]="base_curse_delay_+%" } }, - [527]={ + [532]={ [1]={ [1]={ limit={ @@ -12430,7 +12510,7 @@ return { [1]="base_damage_taken_+%" } }, - [528]={ + [533]={ [1]={ [1]={ limit={ @@ -12446,7 +12526,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [529]={ + [534]={ [1]={ [1]={ limit={ @@ -12475,7 +12555,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [530]={ + [535]={ [1]={ [1]={ limit={ @@ -12500,7 +12580,7 @@ return { [1]="base_extra_damage_rolls" } }, - [531]={ + [536]={ [1]={ [1]={ limit={ @@ -12529,7 +12609,7 @@ return { [1]="base_ignite_effect_+%" } }, - [532]={ + [537]={ [1]={ [1]={ limit={ @@ -12554,7 +12634,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [533]={ + [538]={ [1]={ [1]={ limit={ @@ -12579,7 +12659,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [534]={ + [539]={ [1]={ [1]={ limit={ @@ -12604,7 +12684,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [535]={ + [540]={ [1]={ [1]={ limit={ @@ -12620,7 +12700,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [536]={ + [541]={ [1]={ [1]={ limit={ @@ -12645,7 +12725,7 @@ return { [1]="base_maximum_seals_for_skill" } }, - [537]={ + [542]={ [1]={ [1]={ limit={ @@ -12722,7 +12802,7 @@ return { [2]="quality_display_base_number_of_crossbow_bolts_is_gem" } }, - [538]={ + [543]={ [1]={ [1]={ ["gem_quality"]=true, @@ -12801,7 +12881,7 @@ return { [3]="quality_display_base_number_of_projectiles_is_gem" } }, - [539]={ + [544]={ [1]={ [1]={ limit={ @@ -12826,7 +12906,7 @@ return { [1]="base_number_of_projectiles_in_spiral_nova" } }, - [540]={ + [545]={ [1]={ [1]={ limit={ @@ -12851,7 +12931,7 @@ return { [1]="number_of_support_ghosts_allowed" } }, - [541]={ + [546]={ [1]={ [1]={ limit={ @@ -12876,7 +12956,7 @@ return { [1]="base_number_of_tempest_bells_allowed" } }, - [542]={ + [547]={ [1]={ [1]={ limit={ @@ -12892,7 +12972,7 @@ return { [1]="base_poison_effect_+100%_final_chance" } }, - [543]={ + [548]={ [1]={ [1]={ limit={ @@ -12908,7 +12988,7 @@ return { [1]="base_power_charge_skip_consume_chance_%" } }, - [544]={ + [549]={ [1]={ [1]={ limit={ @@ -12924,7 +13004,7 @@ return { [1]="base_projectiles_cannot_chain" } }, - [545]={ + [550]={ [1]={ [1]={ [1]={ @@ -12957,7 +13037,7 @@ return { [1]="base_remnant_duration_ms" } }, - [546]={ + [551]={ [1]={ [1]={ [1]={ @@ -12977,7 +13057,7 @@ return { [1]="base_skill_seal_gain_interval_ms" } }, - [547]={ + [552]={ [1]={ [1]={ limit={ @@ -12993,7 +13073,7 @@ return { [1]="base_skill_ward_cost_as_%_of_life_and_mana_cost" } }, - [548]={ + [553]={ [1]={ [1]={ limit={ @@ -13018,7 +13098,7 @@ return { [1]="base_smite_number_of_targets" } }, - [549]={ + [554]={ [1]={ [1]={ limit={ @@ -13039,7 +13119,7 @@ return { [2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge" } }, - [550]={ + [555]={ [1]={ [1]={ limit={ @@ -13055,14 +13135,14 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [551]={ + [556]={ [1]={ }, stats={ [1]="bear_companion_intimidate_on_hit_with_warcry_for_ms" } }, - [552]={ + [557]={ [1]={ [1]={ [1]={ @@ -13095,7 +13175,7 @@ return { [1]="bear_skills_additional_base_attack_time_when_performing_from_default_stance" } }, - [553]={ + [558]={ [1]={ [1]={ [1]={ @@ -13128,7 +13208,7 @@ return { [1]="bear_skills_additional_base_attack_time_when_performing_from_standing_stance" } }, - [554]={ + [559]={ [1]={ [1]={ limit={ @@ -13144,7 +13224,7 @@ return { [1]="berserk_maximum_rage_granted_+" } }, - [555]={ + [560]={ [1]={ [1]={ limit={ @@ -13173,7 +13253,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [556]={ + [561]={ [1]={ [1]={ [1]={ @@ -13193,7 +13273,7 @@ return { [1]="blackhole_hinder_%" } }, - [557]={ + [562]={ [1]={ [1]={ [1]={ @@ -13226,7 +13306,7 @@ return { [1]="blackhole_tick_rate_ms" } }, - [558]={ + [563]={ [1]={ [1]={ limit={ @@ -13242,7 +13322,7 @@ return { [1]="blade_blast_detonated_blades_not_removed_%_chance" } }, - [559]={ + [564]={ [1]={ [1]={ limit={ @@ -13271,7 +13351,7 @@ return { [1]="blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated" } }, - [560]={ + [565]={ [1]={ [1]={ limit={ @@ -13300,7 +13380,7 @@ return { [1]="blade_flurry_elemental_damage_+%_while_channeling" } }, - [561]={ + [566]={ [1]={ [1]={ limit={ @@ -13329,7 +13409,7 @@ return { [1]="blade_flurry_final_flurry_area_of_effect_+%" } }, - [562]={ + [567]={ [1]={ [1]={ limit={ @@ -13345,7 +13425,7 @@ return { [1]="blade_vortex_additional_blade_chance_%" } }, - [563]={ + [568]={ [1]={ [1]={ limit={ @@ -13374,7 +13454,7 @@ return { [1]="blade_vortex_critical_strike_chance_+%_per_blade" } }, - [564]={ + [569]={ [1]={ [1]={ limit={ @@ -13403,7 +13483,7 @@ return { [1]="blade_vortex_damage_+%_with_5_or_fewer_blades" } }, - [565]={ + [570]={ [1]={ [1]={ [1]={ @@ -13432,7 +13512,7 @@ return { [1]="blade_vortex_hit_rate_ms" } }, - [566]={ + [571]={ [1]={ [1]={ limit={ @@ -13461,7 +13541,7 @@ return { [1]="bladefall_critical_strike_chance_+%_per_stage" } }, - [567]={ + [572]={ [1]={ [1]={ limit={ @@ -13490,7 +13570,7 @@ return { [1]="bladefall_volley_gap_distance_+%" } }, - [568]={ + [573]={ [1]={ [1]={ limit={ @@ -13515,7 +13595,7 @@ return { [1]="bladefall_volleys_needed_per_vestige_blade" } }, - [569]={ + [574]={ [1]={ [1]={ limit={ @@ -13531,7 +13611,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [570]={ + [575]={ [1]={ [1]={ limit={ @@ -13560,7 +13640,7 @@ return { [1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm" } }, - [571]={ + [576]={ [1]={ [1]={ limit={ @@ -13576,7 +13656,7 @@ return { [1]="bladestorm_create_alternate_stance_storm_%_chance" } }, - [572]={ + [577]={ [1]={ [1]={ limit={ @@ -13592,7 +13672,7 @@ return { [1]="bladestorm_maximum_number_of_storms_allowed" } }, - [573]={ + [578]={ [1]={ [1]={ limit={ @@ -13621,7 +13701,7 @@ return { [1]="bladestorm_movement_speed_+%_while_in_sandstorm" } }, - [574]={ + [579]={ [1]={ [1]={ limit={ @@ -13650,7 +13730,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [575]={ + [580]={ [1]={ [1]={ limit={ @@ -13679,7 +13759,7 @@ return { [1]="bladestorm_storm_damage_+%_final" } }, - [576]={ + [581]={ [1]={ [1]={ limit={ @@ -13708,7 +13788,7 @@ return { [1]="blast_rain_area_of_effect_+%" } }, - [577]={ + [582]={ [1]={ [1]={ limit={ @@ -13737,7 +13817,7 @@ return { [1]="blast_rain_damage_+%_vs_distant_enemies" } }, - [578]={ + [583]={ [1]={ [1]={ limit={ @@ -13814,7 +13894,7 @@ return { [3]="cannot_cause_bleeding" } }, - [579]={ + [584]={ [1]={ [1]={ limit={ @@ -13843,7 +13923,7 @@ return { [1]="blind_effect_+%" } }, - [580]={ + [585]={ [1]={ [1]={ [1]={ @@ -13877,7 +13957,7 @@ return { [1]="blink_travel_distance" } }, - [581]={ + [586]={ [1]={ [1]={ [1]={ @@ -13897,7 +13977,7 @@ return { [1]="blood_boil_%_health_as_corrupted_blood_damage_per_minute" } }, - [582]={ + [587]={ [1]={ [1]={ [1]={ @@ -13930,7 +14010,7 @@ return { [1]="blood_boil_application_interval_ms" } }, - [583]={ + [588]={ [1]={ [1]={ limit={ @@ -13959,7 +14039,7 @@ return { [1]="blood_boil_explosion_area_+%_final_per_boil" } }, - [584]={ + [589]={ [1]={ [1]={ limit={ @@ -13988,7 +14068,7 @@ return { [1]="blood_ground_leaving_area_lasts_for_ms" } }, - [585]={ + [590]={ [1]={ [1]={ limit={ @@ -14017,7 +14097,7 @@ return { [1]="blood_magic_skill_life_cost_+%_final" } }, - [586]={ + [591]={ [1]={ [1]={ limit={ @@ -14064,7 +14144,7 @@ return { [2]="reap_life_%_granted_on_death_with_debuff" } }, - [587]={ + [592]={ [1]={ [1]={ limit={ @@ -14089,7 +14169,7 @@ return { [1]="blood_sand_triggered_blind_on_attack_chance_%" } }, - [588]={ + [593]={ [1]={ [1]={ limit={ @@ -14114,7 +14194,7 @@ return { [1]="blood_sand_triggered_change_bleed_on_attack_chance_%" } }, - [589]={ + [594]={ [1]={ [1]={ limit={ @@ -14143,7 +14223,7 @@ return { [1]="blood_scythe_cost_+%_final_per_charge" } }, - [590]={ + [595]={ [1]={ [1]={ limit={ @@ -14172,7 +14252,7 @@ return { [1]="blood_scythe_damage_+%_final_per_charge" } }, - [591]={ + [596]={ [1]={ [1]={ limit={ @@ -14188,7 +14268,7 @@ return { [1]="blood_surge_refresh_on_total_life_spent" } }, - [592]={ + [597]={ [1]={ [1]={ limit={ @@ -14261,7 +14341,7 @@ return { [2]="quality_display_exsanguinate_beam_targets_is_gem" } }, - [593]={ + [598]={ [1]={ [1]={ limit={ @@ -14290,7 +14370,7 @@ return { [1]="bodyswap_damage_+%_when_not_consuming_corpse" } }, - [594]={ + [599]={ [1]={ [1]={ limit={ @@ -14311,7 +14391,7 @@ return { [2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%" } }, - [595]={ + [600]={ [1]={ [1]={ limit={ @@ -14332,7 +14412,7 @@ return { [2]="bone_golem_grants_minion_maximum_added_physical_damage" } }, - [596]={ + [601]={ [1]={ [1]={ limit={ @@ -14361,7 +14441,7 @@ return { [1]="bone_offering_damage_taken_+%_final_after_shield_loss" } }, - [597]={ + [602]={ [1]={ [1]={ limit={ @@ -14377,7 +14457,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [598]={ + [603]={ [1]={ [1]={ limit={ @@ -14393,7 +14473,7 @@ return { [1]="brand_detonate_faster_activation_%_per_second" } }, - [599]={ + [604]={ [1]={ [1]={ limit={ @@ -14409,7 +14489,7 @@ return { [1]="brand_detonate_faster_duration_%_per_second" } }, - [600]={ + [605]={ [1]={ [1]={ limit={ @@ -14425,7 +14505,7 @@ return { [1]="brand_recall_spend_%_of_recalled_brands_cost" } }, - [601]={ + [606]={ [1]={ [1]={ limit={ @@ -14441,7 +14521,7 @@ return { [1]="branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [602]={ + [607]={ [1]={ [1]={ limit={ @@ -14470,7 +14550,7 @@ return { [1]="breach_flame_spawn_rate_ms" } }, - [603]={ + [608]={ [1]={ [1]={ limit={ @@ -14495,7 +14575,7 @@ return { [1]="buff_grants_smite_additional_lightning_targets" } }, - [604]={ + [609]={ [1]={ [1]={ [1]={ @@ -14520,7 +14600,7 @@ return { [2]="call_of_steel_reload_time" } }, - [605]={ + [610]={ [1]={ [1]={ limit={ @@ -14545,7 +14625,7 @@ return { [1]="caltrops_on_dodge_X_triggers" } }, - [606]={ + [611]={ [1]={ [1]={ limit={ @@ -14561,7 +14641,7 @@ return { [1]="cannot_be_empowered_by_warcries" } }, - [607]={ + [612]={ [1]={ [1]={ limit={ @@ -14577,14 +14657,14 @@ return { [1]="cannot_break_armour" } }, - [608]={ + [613]={ [1]={ }, stats={ [1]="cannot_cause_stun_but_allow_stun_buildup" } }, - [609]={ + [614]={ [1]={ [1]={ limit={ @@ -14600,7 +14680,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [610]={ + [615]={ [1]={ [1]={ limit={ @@ -14616,7 +14696,7 @@ return { [1]="cannot_daze" } }, - [611]={ + [616]={ [1]={ [1]={ limit={ @@ -14632,7 +14712,7 @@ return { [1]="cannot_gain_power_charges_during_skill" } }, - [612]={ + [617]={ [1]={ [1]={ limit={ @@ -14648,7 +14728,7 @@ return { [1]="cannot_inflict_blind" } }, - [613]={ + [618]={ [1]={ [1]={ limit={ @@ -14664,7 +14744,7 @@ return { [1]="cannot_inflict_bloodstone_lance" } }, - [614]={ + [619]={ [1]={ [1]={ limit={ @@ -14680,7 +14760,7 @@ return { [1]="cannot_knockback" } }, - [615]={ + [620]={ [1]={ [1]={ limit={ @@ -14696,7 +14776,7 @@ return { [1]="cannot_pin" } }, - [616]={ + [621]={ [1]={ [1]={ [1]={ @@ -14716,7 +14796,7 @@ return { [1]="cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit" } }, - [617]={ + [622]={ [1]={ [1]={ [1]={ @@ -14736,7 +14816,7 @@ return { [1]="cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit" } }, - [618]={ + [623]={ [1]={ [1]={ [1]={ @@ -14756,7 +14836,7 @@ return { [1]="cast_on_block_gain_X_centienergy_on_block" } }, - [619]={ + [624]={ [1]={ [1]={ [1]={ @@ -14776,7 +14856,7 @@ return { [1]="cast_on_crit_gain_X_centienergy_per_monster_power_on_crit" } }, - [620]={ + [625]={ [1]={ [1]={ limit={ @@ -14805,7 +14885,7 @@ return { [1]="cast_on_crit_global_critical_hit_chance_granted_+%" } }, - [621]={ + [626]={ [1]={ [1]={ limit={ @@ -14830,7 +14910,7 @@ return { [1]="cast_on_crit_%" } }, - [622]={ + [627]={ [1]={ [1]={ limit={ @@ -14846,7 +14926,7 @@ return { [1]="cast_on_damage_taken_gain_X_centienergy_when_hit" } }, - [623]={ + [628]={ [1]={ [1]={ limit={ @@ -14862,7 +14942,7 @@ return { [1]="cast_on_death_gain_X_centienergy_on_death" } }, - [624]={ + [629]={ [1]={ [1]={ [1]={ @@ -14895,7 +14975,7 @@ return { [1]="cast_on_dodge_dodge_roll_distance_granted_+" } }, - [625]={ + [630]={ [1]={ [1]={ [1]={ @@ -14915,7 +14995,7 @@ return { [1]="cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling" } }, - [626]={ + [631]={ [1]={ [1]={ limit={ @@ -14940,7 +15020,7 @@ return { [1]="cast_on_flask_use_%" } }, - [627]={ + [632]={ [1]={ [1]={ [1]={ @@ -14960,7 +15040,7 @@ return { [1]="cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze" } }, - [628]={ + [633]={ [1]={ [1]={ [1]={ @@ -14980,7 +15060,7 @@ return { [1]="cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite" } }, - [629]={ + [634]={ [1]={ [1]={ limit={ @@ -14996,7 +15076,7 @@ return { [1]="cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill" } }, - [630]={ + [635]={ [1]={ [1]={ limit={ @@ -15012,7 +15092,7 @@ return { [1]="cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun" } }, - [631]={ + [636]={ [1]={ [1]={ limit={ @@ -15028,7 +15108,7 @@ return { [1]="cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun" } }, - [632]={ + [637]={ [1]={ [1]={ limit={ @@ -15044,7 +15124,7 @@ return { [1]="cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%" } }, - [633]={ + [638]={ [1]={ [1]={ [1]={ @@ -15064,7 +15144,7 @@ return { [1]="cast_on_shock_gain_X_centienergy_per_monster_power_on_shock" } }, - [634]={ + [639]={ [1]={ [1]={ [1]={ @@ -15084,7 +15164,7 @@ return { [1]="cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm" } }, - [635]={ + [640]={ [1]={ [1]={ limit={ @@ -15100,7 +15180,7 @@ return { [1]="cast_speed_modifiers_apply_to_over_time_cost" } }, - [636]={ + [641]={ [1]={ [1]={ limit={ @@ -15116,7 +15196,7 @@ return { [1]="cast_when_stunned_gain_X_centienergy_when_stunned" } }, - [637]={ + [642]={ [1]={ [1]={ limit={ @@ -15132,7 +15212,7 @@ return { [1]="cast_while_channelling_gain_X_energy_per_second_while_channelling" } }, - [638]={ + [643]={ [1]={ [1]={ limit={ @@ -15148,7 +15228,7 @@ return { [1]="cast_while_channelling_lose_X_energy_per_second_while_not_channelling" } }, - [639]={ + [644]={ [1]={ [1]={ limit={ @@ -15177,7 +15257,7 @@ return { [1]="chain_hook_range_+%" } }, - [640]={ + [645]={ [1]={ [1]={ limit={ @@ -15193,7 +15273,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [641]={ + [646]={ [1]={ [1]={ limit={ @@ -15209,7 +15289,7 @@ return { [1]="chain_strike_gain_x_rage_if_attack_hits" } }, - [642]={ + [647]={ [1]={ [1]={ limit={ @@ -15238,7 +15318,7 @@ return { [1]="chaining_range_+%" } }, - [643]={ + [648]={ [1]={ [1]={ limit={ @@ -15263,7 +15343,7 @@ return { [1]="chance_%_to_spawn_another_infusion_remnant" } }, - [644]={ + [649]={ [1]={ [1]={ limit={ @@ -15288,7 +15368,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [645]={ + [650]={ [1]={ [1]={ limit={ @@ -15304,7 +15384,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [646]={ + [651]={ [1]={ [1]={ limit={ @@ -15320,7 +15400,7 @@ return { [1]="chance_for_melee_skeletons_to_summon_as_archer_skeletons_%" } }, - [647]={ + [652]={ [1]={ [1]={ ["gem_quality"]=true, @@ -15355,7 +15435,7 @@ return { [1]="chance_%_to_double_effect_of_removing_charges" } }, - [648]={ + [653]={ [1]={ [1]={ limit={ @@ -15380,7 +15460,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [649]={ + [654]={ [1]={ [1]={ limit={ @@ -15405,7 +15485,7 @@ return { [1]="chance_to_bleed_on_hit_%_chance_in_blood_stance" } }, - [650]={ + [655]={ [1]={ [1]={ limit={ @@ -15421,7 +15501,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [651]={ + [656]={ [1]={ [1]={ limit={ @@ -15437,7 +15517,7 @@ return { [1]="chance_to_cast_a_stance_change_on_perforate_or_lacerate_%" } }, - [652]={ + [657]={ [1]={ [1]={ limit={ @@ -15453,7 +15533,7 @@ return { [1]="chance_to_cast_on_bear_warcry_%" } }, - [653]={ + [658]={ [1]={ [1]={ limit={ @@ -15478,7 +15558,7 @@ return { [1]="chance_to_daze_+%" } }, - [654]={ + [659]={ [1]={ [1]={ limit={ @@ -15503,7 +15583,7 @@ return { [1]="chance_to_daze_+%_final" } }, - [655]={ + [660]={ [1]={ [1]={ limit={ @@ -15519,7 +15599,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [656]={ + [661]={ [1]={ [1]={ limit={ @@ -15535,7 +15615,7 @@ return { [1]="chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [657]={ + [662]={ [1]={ [1]={ limit={ @@ -15551,7 +15631,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [658]={ + [663]={ [1]={ [1]={ limit={ @@ -15567,7 +15647,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [659]={ + [664]={ [1]={ [1]={ ["gem_quality"]=true, @@ -15602,7 +15682,7 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [660]={ + [665]={ [1]={ [1]={ limit={ @@ -15636,14 +15716,14 @@ return { [1]="chance_to_gain_1_more_random_charge_%" } }, - [661]={ + [666]={ [1]={ }, stats={ [1]="chance_to_gain_endurance_charge_on_armour_break_%" } }, - [662]={ + [667]={ [1]={ [1]={ limit={ @@ -15788,7 +15868,7 @@ return { [3]="active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [663]={ + [668]={ [1]={ [1]={ limit={ @@ -15813,7 +15893,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [664]={ + [669]={ [1]={ [1]={ limit={ @@ -15829,7 +15909,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [665]={ + [670]={ [1]={ [1]={ limit={ @@ -15845,7 +15925,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [666]={ + [671]={ [1]={ [1]={ limit={ @@ -15870,7 +15950,7 @@ return { [1]="chance_to_inflict_scorch_brittle_sap_%" } }, - [667]={ + [672]={ [1]={ [1]={ limit={ @@ -15886,7 +15966,7 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [668]={ + [673]={ [1]={ [1]={ limit={ @@ -15902,7 +15982,7 @@ return { [1]="chance_to_not_consume_infusion_%" } }, - [669]={ + [674]={ [1]={ [1]={ limit={ @@ -15918,7 +15998,7 @@ return { [1]="chance_to_not_consume_parried_%" } }, - [670]={ + [675]={ [1]={ [1]={ limit={ @@ -15943,7 +16023,7 @@ return { [1]="chance_to_pierce_ignited_enemy_%" } }, - [671]={ + [676]={ [1]={ [1]={ limit={ @@ -15959,7 +16039,7 @@ return { [1]="chance_to_poison_on_hit_can_apply_multiple_stacks" } }, - [672]={ + [677]={ [1]={ [1]={ limit={ @@ -15975,7 +16055,7 @@ return { [1]="chance_to_retain_40%_of_glory_on_use_%" } }, - [673]={ + [678]={ [1]={ [1]={ limit={ @@ -16004,7 +16084,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [674]={ + [679]={ [1]={ [1]={ limit={ @@ -16029,7 +16109,7 @@ return { [1]="chance_to_scorch_%" } }, - [675]={ + [680]={ [1]={ [1]={ limit={ @@ -16054,7 +16134,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [676]={ + [681]={ [1]={ [1]={ limit={ @@ -16079,14 +16159,14 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [677]={ + [682]={ [1]={ }, stats={ [1]="chance_to_trigger_fiery_death_on_ignited_enemy_death_%" } }, - [678]={ + [683]={ [1]={ [1]={ limit={ @@ -16102,7 +16182,7 @@ return { [1]="chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%" } }, - [679]={ + [684]={ [1]={ [1]={ limit={ @@ -16118,7 +16198,7 @@ return { [1]="chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%" } }, - [680]={ + [685]={ [1]={ [1]={ limit={ @@ -16134,7 +16214,7 @@ return { [1]="chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%" } }, - [681]={ + [686]={ [1]={ [1]={ limit={ @@ -16150,7 +16230,7 @@ return { [1]="chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%" } }, - [682]={ + [687]={ [1]={ [1]={ limit={ @@ -16166,7 +16246,7 @@ return { [1]="chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%" } }, - [683]={ + [688]={ [1]={ [1]={ limit={ @@ -16182,7 +16262,7 @@ return { [1]="chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%" } }, - [684]={ + [689]={ [1]={ [1]={ limit={ @@ -16198,7 +16278,7 @@ return { [1]="chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%" } }, - [685]={ + [690]={ [1]={ [1]={ limit={ @@ -16214,7 +16294,7 @@ return { [1]="chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%" } }, - [686]={ + [691]={ [1]={ [1]={ limit={ @@ -16230,7 +16310,7 @@ return { [1]="chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%" } }, - [687]={ + [692]={ [1]={ [1]={ limit={ @@ -16255,7 +16335,7 @@ return { [1]="chance_to_trigger_on_animate_guardian_kill_%" } }, - [688]={ + [693]={ [1]={ [1]={ limit={ @@ -16280,7 +16360,7 @@ return { [1]="chance_to_trigger_on_animate_weapon_kill_%" } }, - [689]={ + [694]={ [1]={ [1]={ limit={ @@ -16305,7 +16385,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [690]={ + [695]={ [1]={ [1]={ [1]={ @@ -16366,7 +16446,7 @@ return { [1]="channelled_skill_suppress_ongoing_rage_cost_for_first_X_ms" } }, - [691]={ + [696]={ [1]={ [1]={ limit={ @@ -16382,7 +16462,7 @@ return { [1]="channelled_slam_area_of_effect_radius_+_per_stage" } }, - [692]={ + [697]={ [1]={ [1]={ limit={ @@ -16398,7 +16478,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [693]={ + [698]={ [1]={ [1]={ limit={ @@ -16427,7 +16507,7 @@ return { [1]="charge_regulation_damage_per_charge_granted_+%" } }, - [694]={ + [699]={ [1]={ [1]={ limit={ @@ -16443,7 +16523,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [695]={ + [700]={ [1]={ [1]={ limit={ @@ -16472,7 +16552,7 @@ return { [1]="charged_attack_damage_per_stack_+%_final" } }, - [696]={ + [701]={ [1]={ [1]={ limit={ @@ -16488,7 +16568,7 @@ return { [1]="charged_dash_channelling_damage_at_full_stacks_+%_final" } }, - [697]={ + [702]={ [1]={ [1]={ limit={ @@ -16504,7 +16584,7 @@ return { [1]="charged_dash_damage_+%_final_per_stack" } }, - [698]={ + [703]={ [1]={ [1]={ [1]={ @@ -16524,7 +16604,7 @@ return { [1]="charged_dash_skill_inherent_movement_speed_+%_final" } }, - [699]={ + [704]={ [1]={ [1]={ limit={ @@ -16540,7 +16620,7 @@ return { [1]="chilled_ground_base_magnitude_override" } }, - [700]={ + [705]={ [1]={ [1]={ limit={ @@ -16569,14 +16649,14 @@ return { [1]="chilling_area_movement_velocity_+%" } }, - [701]={ + [706]={ [1]={ }, stats={ [1]="chilling_ice_create_chilled_ground_on_freeze_base_duration_ms" } }, - [702]={ + [707]={ [1]={ [1]={ limit={ @@ -16605,7 +16685,7 @@ return { [1]="chronomancer_buff_cooldown_speed_+%" } }, - [703]={ + [708]={ [1]={ [1]={ limit={ @@ -16621,7 +16701,7 @@ return { [1]="circle_of_power_mana_spend_per_upgrade" } }, - [704]={ + [709]={ [1]={ [1]={ limit={ @@ -16650,7 +16730,7 @@ return { [1]="cleave_area_of_effect_+%_final_from_executioner" } }, - [705]={ + [710]={ [1]={ [1]={ limit={ @@ -16679,7 +16759,7 @@ return { [1]="cleave_damage_against_enemies_on_low_life_+%_final_from_executioner" } }, - [706]={ + [711]={ [1]={ [1]={ limit={ @@ -16695,7 +16775,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [707]={ + [712]={ [1]={ [1]={ limit={ @@ -16724,7 +16804,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [708]={ + [713]={ [1]={ [1]={ limit={ @@ -16753,7 +16833,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [709]={ + [714]={ [1]={ [1]={ limit={ @@ -16769,7 +16849,7 @@ return { [1]="cold_snap_%_chance_to_not_remove_freeze" } }, - [710]={ + [715]={ [1]={ [1]={ limit={ @@ -16798,259 +16878,259 @@ return { [1]="combat_rush_effect_+%" } }, - [711]={ + [716]={ [1]={ }, stats={ [1]="combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [712]={ + [717]={ [1]={ }, stats={ [1]="combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [713]={ + [718]={ [1]={ }, stats={ [1]="combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [714]={ + [719]={ [1]={ }, stats={ [1]="combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [715]={ + [720]={ [1]={ }, stats={ [1]="combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [716]={ + [721]={ [1]={ }, stats={ [1]="combined_chaos_other_hit_damage_stun_multiplier_+%_including_final" } }, - [717]={ + [722]={ [1]={ }, stats={ [1]="combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [718]={ + [723]={ [1]={ }, stats={ [1]="combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [719]={ + [724]={ [1]={ }, stats={ [1]="combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [720]={ + [725]={ [1]={ }, stats={ [1]="combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [721]={ + [726]={ [1]={ }, stats={ [1]="combined_cold_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [722]={ + [727]={ [1]={ }, stats={ [1]="combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [723]={ + [728]={ [1]={ }, stats={ [1]="combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [724]={ + [729]={ [1]={ }, stats={ [1]="combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [725]={ + [730]={ [1]={ }, stats={ [1]="combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [726]={ + [731]={ [1]={ }, stats={ [1]="combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [727]={ + [732]={ [1]={ }, stats={ [1]="combined_fire_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [728]={ + [733]={ [1]={ }, stats={ [1]="combined_fire_other_hit_damage_stun_multiplier_+%_including_final" } }, - [729]={ + [734]={ [1]={ }, stats={ [1]="combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [730]={ + [735]={ [1]={ }, stats={ [1]="combined_fire_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [731]={ + [736]={ [1]={ }, stats={ [1]="combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [732]={ + [737]={ [1]={ }, stats={ [1]="combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [733]={ + [738]={ [1]={ }, stats={ [1]="combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [734]={ + [739]={ [1]={ }, stats={ [1]="combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [735]={ + [740]={ [1]={ }, stats={ [1]="combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [736]={ + [741]={ [1]={ }, stats={ [1]="combined_lightning_other_hit_damage_stun_multiplier_+%_including_final" } }, - [737]={ + [742]={ [1]={ }, stats={ [1]="combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [738]={ + [743]={ [1]={ }, stats={ [1]="combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [739]={ + [744]={ [1]={ }, stats={ [1]="combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [740]={ + [745]={ [1]={ }, stats={ [1]="combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [741]={ + [746]={ [1]={ }, stats={ [1]="combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final" } }, - [742]={ + [747]={ [1]={ }, stats={ [1]="combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final" } }, - [743]={ + [748]={ [1]={ }, stats={ [1]="combined_physical_other_hit_damage_freeze_multiplier_+%_including_final" } }, - [744]={ + [749]={ [1]={ }, stats={ [1]="combined_physical_other_hit_damage_stun_multiplier_+%_including_final" } }, - [745]={ + [750]={ [1]={ }, stats={ [1]="combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final" } }, - [746]={ + [751]={ [1]={ }, stats={ [1]="combined_physical_spell_hit_damage_stun_multiplier_+%_including_final" } }, - [747]={ + [752]={ [1]={ [1]={ limit={ @@ -17066,7 +17146,7 @@ return { [1]="command_minion_target_ally_below_x_life" } }, - [748]={ + [753]={ [1]={ [1]={ limit={ @@ -17095,7 +17175,7 @@ return { [1]="companion_all_attributes_+%" } }, - [749]={ + [754]={ [1]={ [1]={ limit={ @@ -17111,7 +17191,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [750]={ + [755]={ [1]={ [1]={ limit={ @@ -17140,7 +17220,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [751]={ + [756]={ [1]={ [1]={ limit={ @@ -17156,7 +17236,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [752]={ + [757]={ [1]={ [1]={ limit={ @@ -17185,7 +17265,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [753]={ + [758]={ [1]={ [1]={ limit={ @@ -17228,7 +17308,7 @@ return { [3]="ignite_effect_+%_final_if_heat_is_consumed" } }, - [754]={ + [759]={ [1]={ [1]={ limit={ @@ -17244,7 +17324,7 @@ return { [1]="consume_enemy_daze_to_always_hit" } }, - [755]={ + [760]={ [1]={ [1]={ limit={ @@ -17273,7 +17353,7 @@ return { [1]="consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final" } }, - [756]={ + [761]={ [1]={ [1]={ limit={ @@ -17289,7 +17369,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [757]={ + [762]={ [1]={ [1]={ limit={ @@ -17305,7 +17385,7 @@ return { [1]="consume_enemy_fully_broken_armour_to_guarantee_crit" } }, - [758]={ + [763]={ [1]={ [1]={ limit={ @@ -17334,7 +17414,7 @@ return { [1]="consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [759]={ + [764]={ [1]={ [1]={ limit={ @@ -17350,7 +17430,7 @@ return { [1]="consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge" } }, - [760]={ + [765]={ [1]={ [1]={ limit={ @@ -17366,7 +17446,7 @@ return { [1]="consume_ignite_on_hit" } }, - [761]={ + [766]={ [1]={ [1]={ limit={ @@ -17391,7 +17471,7 @@ return { [1]="contagion_number_of_additional_targets" } }, - [762]={ + [767]={ [1]={ [1]={ limit={ @@ -17434,7 +17514,7 @@ return { [3]="quality_display_contagion_is_gem" } }, - [763]={ + [768]={ [1]={ [1]={ limit={ @@ -17463,7 +17543,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [764]={ + [769]={ [1]={ [1]={ limit={ @@ -17492,7 +17572,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [765]={ + [770]={ [1]={ [1]={ limit={ @@ -17508,7 +17588,7 @@ return { [1]="corpse_erruption_maximum_number_of_geyers" } }, - [766]={ + [771]={ [1]={ [1]={ [1]={ @@ -17528,7 +17608,7 @@ return { [1]="corpse_explosion_monster_life_permillage_chaos" } }, - [767]={ + [772]={ [1]={ [1]={ limit={ @@ -17557,7 +17637,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse" } }, - [768]={ + [773]={ [1]={ [1]={ limit={ @@ -17573,7 +17653,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [769]={ + [774]={ [1]={ [1]={ limit={ @@ -17598,7 +17678,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [770]={ + [775]={ [1]={ [1]={ limit={ @@ -17632,7 +17712,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [771]={ + [776]={ [1]={ [1]={ limit={ @@ -17661,7 +17741,7 @@ return { [1]="created_slipstream_action_speed_+%" } }, - [772]={ + [777]={ [1]={ [1]={ limit={ @@ -17677,7 +17757,7 @@ return { [1]="cremation_chance_to_explode_nearby_corpse_when_firing_projectiles" } }, - [773]={ + [778]={ [1]={ [1]={ limit={ @@ -17706,7 +17786,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [774]={ + [779]={ [1]={ [1]={ limit={ @@ -17735,7 +17815,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [775]={ + [780]={ [1]={ [1]={ limit={ @@ -17764,7 +17844,7 @@ return { [1]="critical_hit_poison_effect_+%" } }, - [776]={ + [781]={ [1]={ [1]={ limit={ @@ -17793,7 +17873,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [777]={ + [782]={ [1]={ [1]={ limit={ @@ -17822,7 +17902,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [778]={ + [783]={ [1]={ [1]={ limit={ @@ -17851,14 +17931,14 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [779]={ + [784]={ [1]={ }, stats={ [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [780]={ + [785]={ [1]={ [1]={ limit={ @@ -17874,7 +17954,7 @@ return { [1]="critical_strike_multiplier_+_per_blade" } }, - [781]={ + [786]={ [1]={ [1]={ limit={ @@ -17903,7 +17983,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [782]={ + [787]={ [1]={ [1]={ limit={ @@ -17919,14 +17999,14 @@ return { [1]="crossbow_ammo_always_reload" } }, - [783]={ + [788]={ [1]={ }, stats={ [1]="crossbow_reload_on_heavy_stun" } }, - [784]={ + [789]={ [1]={ [1]={ limit={ @@ -17955,7 +18035,7 @@ return { [1]="cruelty_effect_+%" } }, - [785]={ + [790]={ [1]={ [1]={ limit={ @@ -17980,7 +18060,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [786]={ + [791]={ [1]={ [1]={ limit={ @@ -17996,14 +18076,14 @@ return { [1]="cull_frozen_enemies_on_hit" } }, - [787]={ + [792]={ [1]={ }, stats={ [1]="curse_apply_as_curse_zone" } }, - [788]={ + [793]={ [1]={ [1]={ [1]={ @@ -18036,7 +18116,7 @@ return { [1]="curse_delay_duration_ms" } }, - [789]={ + [794]={ [1]={ [1]={ [1]={ @@ -18056,7 +18136,7 @@ return { [1]="cyclone_gain_stage_every_x_ms_while_channelling" } }, - [790]={ + [795]={ [1]={ [1]={ limit={ @@ -18072,7 +18152,7 @@ return { [1]="cyclone_max_number_of_stages" } }, - [791]={ + [796]={ [1]={ [1]={ limit={ @@ -18088,7 +18168,7 @@ return { [1]="cyclone_melee_weapon_range_+_per_stage" } }, - [792]={ + [797]={ [1]={ [1]={ [1]={ @@ -18108,7 +18188,7 @@ return { [1]="cyclone_stage_decay_time_ms" } }, - [793]={ + [798]={ [1]={ [1]={ limit={ @@ -18137,7 +18217,7 @@ return { [1]="damage_+%_final_from_lich_apparition_cloned_skill" } }, - [794]={ + [799]={ [1]={ [1]={ limit={ @@ -18166,7 +18246,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [795]={ + [800]={ [1]={ [1]={ limit={ @@ -18195,7 +18275,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [796]={ + [801]={ [1]={ [1]={ limit={ @@ -18211,7 +18291,7 @@ return { [1]="damage_+%_per_chain" } }, - [797]={ + [802]={ [1]={ [1]={ limit={ @@ -18240,7 +18320,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [798]={ + [803]={ [1]={ [1]={ limit={ @@ -18269,7 +18349,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [799]={ + [804]={ [1]={ [1]={ limit={ @@ -18298,7 +18378,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [800]={ + [805]={ [1]={ [1]={ limit={ @@ -18327,7 +18407,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [801]={ + [806]={ [1]={ [1]={ limit={ @@ -18343,7 +18423,7 @@ return { [1]="vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead" } }, - [802]={ + [807]={ [1]={ [1]={ limit={ @@ -18372,7 +18452,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [803]={ + [808]={ [1]={ [1]={ limit={ @@ -18388,7 +18468,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [804]={ + [809]={ [1]={ [1]={ limit={ @@ -18404,7 +18484,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [805]={ + [810]={ [1]={ [1]={ limit={ @@ -18420,7 +18500,7 @@ return { [1]="dark_effigy_additional_projectile_chance_per_debuff_on_target" } }, - [806]={ + [811]={ [1]={ [1]={ limit={ @@ -18436,7 +18516,7 @@ return { [1]="dark_ritual_damage_+%_final_per_curse_applied" } }, - [807]={ + [812]={ [1]={ [1]={ limit={ @@ -18452,7 +18532,7 @@ return { [1]="dark_ritual_skill_effect_duration_+%_per_curse_applied" } }, - [808]={ + [813]={ [1]={ [1]={ [1]={ @@ -18472,7 +18552,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [809]={ + [814]={ [1]={ [1]={ limit={ @@ -18488,7 +18568,7 @@ return { [1]="deal_no_elemental_damage" } }, - [810]={ + [815]={ [1]={ [1]={ limit={ @@ -18517,7 +18597,7 @@ return { [1]="death_wish_attack_speed_+%" } }, - [811]={ + [816]={ [1]={ [1]={ limit={ @@ -18546,7 +18626,7 @@ return { [1]="death_wish_cast_speed_+%" } }, - [812]={ + [817]={ [1]={ [1]={ limit={ @@ -18575,7 +18655,7 @@ return { [1]="death_wish_hit_damage_+%_final_per_stage" } }, - [813]={ + [818]={ [1]={ [1]={ limit={ @@ -18591,7 +18671,7 @@ return { [1]="death_wish_max_stages" } }, - [814]={ + [819]={ [1]={ [1]={ limit={ @@ -18620,7 +18700,7 @@ return { [1]="death_wish_movement_speed_+%" } }, - [815]={ + [820]={ [1]={ [1]={ limit={ @@ -18645,7 +18725,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [816]={ + [821]={ [1]={ [1]={ limit={ @@ -18674,7 +18754,7 @@ return { [1]="debuff_time_passed_+%" } }, - [817]={ + [822]={ [1]={ [1]={ limit={ @@ -18690,7 +18770,7 @@ return { [1]="desecrate_chance_for_additional_corpse_%" } }, - [818]={ + [823]={ [1]={ [1]={ limit={ @@ -18706,7 +18786,7 @@ return { [1]="desecrate_chance_for_special_corpse_%" } }, - [819]={ + [824]={ [1]={ [1]={ limit={ @@ -18722,7 +18802,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [820]={ + [825]={ [1]={ [1]={ limit={ @@ -18738,7 +18818,7 @@ return { [1]="destroy_corpses_on_kill_%_chance" } }, - [821]={ + [826]={ [1]={ [1]={ limit={ @@ -18767,7 +18847,7 @@ return { [1]="detonate_dead_damage_+%_if_corpse_ignited" } }, - [822]={ + [827]={ [1]={ [1]={ [1]={ @@ -18787,7 +18867,7 @@ return { [1]="detonate_mines_recover_permyriad_of_life_per_mine_detonated" } }, - [823]={ + [828]={ [1]={ [1]={ limit={ @@ -18821,7 +18901,7 @@ return { [2]="detonating_arrow_max_number_of_stages" } }, - [824]={ + [829]={ [1]={ [1]={ limit={ @@ -18837,7 +18917,7 @@ return { [1]="disable_mine_detonation_cascade" } }, - [825]={ + [830]={ [1]={ [1]={ limit={ @@ -18862,7 +18942,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [826]={ + [831]={ [1]={ [1]={ limit={ @@ -18891,7 +18971,7 @@ return { [1]="discharge_damage_+%_if_3_charge_types_removed" } }, - [827]={ + [832]={ [1]={ [1]={ limit={ @@ -18907,7 +18987,7 @@ return { [1]="disengage_%_chance_for_additional_shockwave" } }, - [828]={ + [833]={ [1]={ [1]={ limit={ @@ -18923,7 +19003,7 @@ return { [1]="disintegrate_base_radius_+_per_intensify" } }, - [829]={ + [834]={ [1]={ [1]={ limit={ @@ -18952,7 +19032,7 @@ return { [1]="disintegrate_damage_+%_final_per_intensity" } }, - [830]={ + [835]={ [1]={ [1]={ limit={ @@ -18981,7 +19061,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [831]={ + [836]={ [1]={ [1]={ limit={ @@ -18997,7 +19077,7 @@ return { [1]="display_additional_projectile_per_2_mines_in_detonation_sequence" } }, - [832]={ + [837]={ [1]={ [1]={ limit={ @@ -19013,7 +19093,7 @@ return { [1]="display_additional_projectile_per_4_mines_in_detonation_sequence" } }, - [833]={ + [838]={ [1]={ [1]={ limit={ @@ -19029,7 +19109,7 @@ return { [1]="display_additional_projectile_per_mine_in_detonation_sequence" } }, - [834]={ + [839]={ [1]={ [1]={ [1]={ @@ -19049,7 +19129,7 @@ return { [1]="display_blink_base_cooldown" } }, - [835]={ + [840]={ [1]={ [1]={ [1]={ @@ -19069,7 +19149,7 @@ return { [1]="display_brand_deonate_tag_conversion" } }, - [836]={ + [841]={ [1]={ [1]={ limit={ @@ -19085,7 +19165,7 @@ return { [1]="display_charge_speed_is_move_speed" } }, - [837]={ + [842]={ [1]={ }, stats={ @@ -19093,7 +19173,7 @@ return { [2]="display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance" } }, - [838]={ + [843]={ [1]={ }, stats={ @@ -19101,7 +19181,7 @@ return { [2]="display_estimate_maximum_roll_main_hand_chill_magnitude" } }, - [839]={ + [844]={ [1]={ }, stats={ @@ -19109,7 +19189,7 @@ return { [2]="display_estimate_maximum_roll_off_hand_chill_magnitude" } }, - [840]={ + [845]={ [1]={ }, stats={ @@ -19117,7 +19197,7 @@ return { [2]="display_estimate_maximum_roll_secondary_chill_magnitude" } }, - [841]={ + [846]={ [1]={ }, stats={ @@ -19125,7 +19205,7 @@ return { [2]="display_estimate_maximum_roll_spell_chill_magnitude" } }, - [842]={ + [847]={ [1]={ }, stats={ @@ -19133,7 +19213,7 @@ return { [2]="display_estimate_maximum_total_main_hand_ignite_chance_%" } }, - [843]={ + [848]={ [1]={ }, stats={ @@ -19141,7 +19221,7 @@ return { [2]="display_estimate_maximum_total_main_hand_shock_chance_%" } }, - [844]={ + [849]={ [1]={ }, stats={ @@ -19149,7 +19229,7 @@ return { [2]="display_estimate_maximum_total_off_hand_ignite_chance_%" } }, - [845]={ + [850]={ [1]={ }, stats={ @@ -19157,7 +19237,7 @@ return { [2]="display_estimate_maximum_total_off_hand_shock_chance_%" } }, - [846]={ + [851]={ [1]={ }, stats={ @@ -19165,7 +19245,7 @@ return { [2]="display_estimate_maximum_total_spell_ignite_chance_%" } }, - [847]={ + [852]={ [1]={ }, stats={ @@ -19173,7 +19253,7 @@ return { [2]="display_estimate_maximum_total_spell_shock_chance_%" } }, - [848]={ + [853]={ [1]={ }, stats={ @@ -19181,7 +19261,7 @@ return { [2]="display_estimate_maximum_total_spell_ignite_chance_%" } }, - [849]={ + [854]={ [1]={ }, stats={ @@ -19189,7 +19269,7 @@ return { [2]="display_estimate_maximum_total_spell_shock_chance_%" } }, - [850]={ + [855]={ [1]={ [1]={ [1]={ @@ -19235,7 +19315,7 @@ return { [2]="display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance" } }, - [851]={ + [856]={ [1]={ [1]={ limit={ @@ -19251,7 +19331,7 @@ return { [1]="display_fake_attack_hit_bleed" } }, - [852]={ + [857]={ [1]={ [1]={ limit={ @@ -19267,7 +19347,7 @@ return { [1]="display_fake_attack_hit_chill" } }, - [853]={ + [858]={ [1]={ [1]={ limit={ @@ -19283,7 +19363,7 @@ return { [1]="display_fake_attack_hit_ignite" } }, - [854]={ + [859]={ [1]={ [1]={ limit={ @@ -19299,7 +19379,7 @@ return { [1]="display_fake_attack_hit_poison" } }, - [855]={ + [860]={ [1]={ [1]={ limit={ @@ -19328,7 +19408,7 @@ return { [1]="display_linked_curse_effect_+%" } }, - [856]={ + [861]={ [1]={ [1]={ limit={ @@ -19357,7 +19437,7 @@ return { [1]="display_linked_curse_effect_+%_final" } }, - [857]={ + [862]={ [1]={ }, stats={ @@ -19365,7 +19445,7 @@ return { [2]="display_main_hand_hit_chance_estimate_range_max" } }, - [858]={ + [863]={ [1]={ }, stats={ @@ -19373,7 +19453,7 @@ return { [2]="display_main_hand_hit_chance_estimate_range_mid" } }, - [859]={ + [864]={ [1]={ }, stats={ @@ -19381,14 +19461,14 @@ return { [2]="display_main_hand_hit_chance_estimate_range_min" } }, - [860]={ + [865]={ [1]={ }, stats={ [1]="display_max_ailment_bearer_charges" } }, - [861]={ + [866]={ [1]={ [1]={ limit={ @@ -19404,7 +19484,7 @@ return { [1]="display_max_blight_stacks" } }, - [862]={ + [867]={ [1]={ [1]={ limit={ @@ -19420,7 +19500,7 @@ return { [1]="display_max_fire_beam_stacks" } }, - [863]={ + [868]={ [1]={ [1]={ limit={ @@ -19445,7 +19525,7 @@ return { [1]="display_max_upgraded_sentinels_of_absolution" } }, - [864]={ + [869]={ [1]={ [1]={ limit={ @@ -19470,7 +19550,7 @@ return { [1]="display_max_upgraded_sentinels_of_dominance" } }, - [865]={ + [870]={ [1]={ }, stats={ @@ -19478,7 +19558,7 @@ return { [2]="display_maximum_roll_main_hand_bleeding_damage_per_minute" } }, - [866]={ + [871]={ [1]={ }, stats={ @@ -19486,7 +19566,7 @@ return { [2]="display_maximum_roll_main_hand_ignite_damage_per_minute" } }, - [867]={ + [872]={ [1]={ }, stats={ @@ -19494,7 +19574,7 @@ return { [2]="display_maximum_roll_main_hand_poison_damage_per_minute" } }, - [868]={ + [873]={ [1]={ }, stats={ @@ -19502,7 +19582,7 @@ return { [2]="display_maximum_roll_off_hand_bleeding_damage_per_minute" } }, - [869]={ + [874]={ [1]={ }, stats={ @@ -19510,7 +19590,7 @@ return { [2]="display_maximum_roll_off_hand_ignite_damage_per_minute" } }, - [870]={ + [875]={ [1]={ }, stats={ @@ -19518,7 +19598,7 @@ return { [2]="display_maximum_roll_off_hand_poison_damage_per_minute" } }, - [871]={ + [876]={ [1]={ }, stats={ @@ -19526,7 +19606,7 @@ return { [2]="display_maximum_roll_secondary_bleeding_damage_per_minute" } }, - [872]={ + [877]={ [1]={ }, stats={ @@ -19534,7 +19614,7 @@ return { [2]="display_maximum_roll_secondary_ignite_damage_per_minute" } }, - [873]={ + [878]={ [1]={ }, stats={ @@ -19542,7 +19622,7 @@ return { [2]="display_maximum_roll_secondary_poison_damage_per_minute" } }, - [874]={ + [879]={ [1]={ }, stats={ @@ -19550,7 +19630,7 @@ return { [2]="display_maximum_roll_spell_bleeding_damage_per_minute" } }, - [875]={ + [880]={ [1]={ }, stats={ @@ -19558,7 +19638,7 @@ return { [2]="display_maximum_roll_spell_ignite_damage_per_minute" } }, - [876]={ + [881]={ [1]={ }, stats={ @@ -19566,7 +19646,7 @@ return { [2]="display_maximum_roll_spell_poison_damage_per_minute" } }, - [877]={ + [882]={ [1]={ [1]={ limit={ @@ -19595,7 +19675,7 @@ return { [1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine" } }, - [878]={ + [883]={ [1]={ [1]={ limit={ @@ -19611,7 +19691,7 @@ return { [1]="display_mirage_warriors_no_spirit_strikes" } }, - [879]={ + [884]={ [1]={ [1]={ limit={ @@ -19627,7 +19707,7 @@ return { [1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius" } }, - [880]={ + [885]={ [1]={ }, stats={ @@ -19635,7 +19715,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_max" } }, - [881]={ + [886]={ [1]={ }, stats={ @@ -19643,7 +19723,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_mid" } }, - [882]={ + [887]={ [1]={ }, stats={ @@ -19651,7 +19731,7 @@ return { [2]="display_off_hand_hit_chance_estimate_range_min" } }, - [883]={ + [888]={ [1]={ [1]={ limit={ @@ -19667,7 +19747,7 @@ return { [1]="queens_demand_effect" } }, - [884]={ + [889]={ [1]={ [1]={ limit={ @@ -19683,7 +19763,7 @@ return { [1]="display_removes_and_grants_elusive_when_used" } }, - [885]={ + [890]={ [1]={ [1]={ limit={ @@ -19699,14 +19779,14 @@ return { [1]="display_sigil_of_power_stage_gain_delay" } }, - [886]={ + [891]={ [1]={ }, stats={ [1]="display_skill_cooldown_time_ms" } }, - [887]={ + [892]={ [1]={ [1]={ limit={ @@ -19722,14 +19802,14 @@ return { [1]="display_skill_fixed_duration_buff" } }, - [888]={ + [893]={ [1]={ }, stats={ [1]="display_skill_increased_item_rarity_+%" } }, - [889]={ + [894]={ [1]={ [1]={ [1]={ @@ -19762,7 +19842,7 @@ return { [1]="display_skill_overflowing_chalice_duration_ms" } }, - [890]={ + [895]={ [1]={ [1]={ [1]={ @@ -19782,7 +19862,7 @@ return { [1]="display_storm_burst_jump_time_ms" } }, - [891]={ + [896]={ [1]={ [1]={ limit={ @@ -19798,49 +19878,49 @@ return { [1]="display_this_skill_cooldown_does_not_recover_during_buff" } }, - [892]={ + [897]={ [1]={ }, stats={ [1]="display_total_bleeding_duration" } }, - [893]={ + [898]={ [1]={ }, stats={ [1]="display_total_chill_duration" } }, - [894]={ + [899]={ [1]={ }, stats={ [1]="display_total_ignite_duration" } }, - [895]={ + [900]={ [1]={ }, stats={ [1]="display_total_poison_duration" } }, - [896]={ + [901]={ [1]={ }, stats={ [1]="display_total_shock_duration" } }, - [897]={ + [902]={ [1]={ }, stats={ [1]="display_total_shock_magnitude" } }, - [898]={ + [903]={ [1]={ [1]={ limit={ @@ -19856,7 +19936,7 @@ return { [1]="display_touch_of_fire" } }, - [899]={ + [904]={ [1]={ [1]={ limit={ @@ -19872,7 +19952,7 @@ return { [1]="display_trigger_link" } }, - [900]={ + [905]={ [1]={ [1]={ limit={ @@ -19888,7 +19968,7 @@ return { [1]="display_triggerbots_do_their_job" } }, - [901]={ + [906]={ [1]={ [1]={ limit={ @@ -19904,7 +19984,7 @@ return { [1]="display_unhinge_grant_insane" } }, - [902]={ + [907]={ [1]={ [1]={ limit={ @@ -19920,7 +20000,7 @@ return { [1]="display_vaal_breach_no_drops_xp" } }, - [903]={ + [908]={ [1]={ [1]={ limit={ @@ -19958,7 +20038,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [904]={ + [909]={ [1]={ [1]={ limit={ @@ -19987,7 +20067,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [905]={ + [910]={ [1]={ [1]={ limit={ @@ -20016,7 +20096,7 @@ return { [1]="divine_tempest_damage_+%_final_while_channelling" } }, - [906]={ + [911]={ [1]={ [1]={ limit={ @@ -20032,7 +20112,7 @@ return { [1]="divine_tempest_hit_damage_+%_final_per_stage" } }, - [907]={ + [912]={ [1]={ [1]={ limit={ @@ -20048,7 +20128,7 @@ return { [1]="divine_tempest_stage_on_hitting_normal_magic_%_chance" } }, - [908]={ + [913]={ [1]={ [1]={ limit={ @@ -20064,7 +20144,7 @@ return { [1]="divine_tempest_stage_on_hitting_rare_unique" } }, - [909]={ + [914]={ [1]={ [1]={ limit={ @@ -20089,7 +20169,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [910]={ + [915]={ [1]={ [1]={ limit={ @@ -20105,7 +20185,7 @@ return { [1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life" } }, - [911]={ + [916]={ [1]={ [1]={ limit={ @@ -20121,7 +20201,7 @@ return { [1]="dual_wield_inherent_attack_speed_+%_final" } }, - [912]={ + [917]={ [1]={ [1]={ limit={ @@ -20142,7 +20222,7 @@ return { [2]="earthquake_aftershock_maximum_added_physical_damage" } }, - [913]={ + [918]={ [1]={ [1]={ limit={ @@ -20171,7 +20251,7 @@ return { [1]="earthquake_initial_slam_area_of_effect_+%" } }, - [914]={ + [919]={ [1]={ [1]={ limit={ @@ -20200,14 +20280,14 @@ return { [1]="earthshatter_damage_+%_final_per_spike" } }, - [915]={ + [920]={ [1]={ }, stats={ [1]="echoed_spell_area_of_effect_+%" } }, - [916]={ + [921]={ [1]={ [1]={ limit={ @@ -20223,7 +20303,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [917]={ + [922]={ [1]={ [1]={ limit={ @@ -20252,7 +20332,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [918]={ + [923]={ [1]={ [1]={ limit={ @@ -20268,7 +20348,7 @@ return { [1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment" } }, - [919]={ + [924]={ [1]={ [1]={ limit={ @@ -20284,7 +20364,7 @@ return { [1]="elemental_hit_damage_+10%_final_per_enemy_elemental_ailment" } }, - [920]={ + [925]={ [1]={ [1]={ [1]={ @@ -20304,7 +20384,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze" } }, - [921]={ + [926]={ [1]={ [1]={ [1]={ @@ -20324,7 +20404,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite" } }, - [922]={ + [927]={ [1]={ [1]={ [1]={ @@ -20344,7 +20424,7 @@ return { [1]="elemental_invocation_gain_X_centienergy_per_monster_power_on_shock" } }, - [923]={ + [928]={ [1]={ [1]={ limit={ @@ -20360,7 +20440,7 @@ return { [1]="elemental_penetration_%_from_resonance" } }, - [924]={ + [929]={ [1]={ [1]={ limit={ @@ -20389,7 +20469,7 @@ return { [1]="elusive_effect_+%" } }, - [925]={ + [930]={ [1]={ [1]={ limit={ @@ -20440,7 +20520,7 @@ return { [2]="quality_display_ember_fusilade_is_gem" } }, - [926]={ + [931]={ [1]={ [1]={ [1]={ @@ -20460,7 +20540,7 @@ return { [1]="embrace_madness_amount_of_cooldown_to_gain_ms" } }, - [927]={ + [932]={ [1]={ [1]={ [1]={ @@ -20485,7 +20565,7 @@ return { [2]="empowered_barrage_maximum_cooldown_ms" } }, - [928]={ + [933]={ [1]={ [1]={ limit={ @@ -20514,7 +20594,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [929]={ + [934]={ [1]={ [1]={ limit={ @@ -20539,7 +20619,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [930]={ + [935]={ [1]={ [1]={ limit={ @@ -20555,7 +20635,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [931]={ + [936]={ [1]={ [1]={ limit={ @@ -20571,7 +20651,7 @@ return { [1]="enemies_covered_in_frost_as_unfrozen" } }, - [932]={ + [937]={ [1]={ [1]={ limit={ @@ -20587,7 +20667,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [933]={ + [938]={ [1]={ [1]={ limit={ @@ -20620,7 +20700,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [934]={ + [939]={ [1]={ [1]={ limit={ @@ -20649,14 +20729,14 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [935]={ + [940]={ [1]={ }, stats={ [1]="support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%" } }, - [936]={ + [941]={ [1]={ [1]={ limit={ @@ -20672,7 +20752,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [937]={ + [942]={ [1]={ [1]={ limit={ @@ -20701,7 +20781,7 @@ return { [1]="energy_generated_+%" } }, - [938]={ + [943]={ [1]={ [1]={ limit={ @@ -20730,7 +20810,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [939]={ + [944]={ [1]={ [1]={ limit={ @@ -20759,7 +20839,7 @@ return { [1]="ensnaring_arrow_enemy_spell_damage_taken_+%" } }, - [940]={ + [945]={ [1]={ [1]={ limit={ @@ -20784,7 +20864,7 @@ return { [1]="ethereal_knives_projectiles_needed_per_vestige_blade" } }, - [941]={ + [946]={ [1]={ [1]={ limit={ @@ -20813,7 +20893,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [942]={ + [947]={ [1]={ [1]={ limit={ @@ -20829,7 +20909,7 @@ return { [1]="expanding_fire_cone_angle_+%_per_stage" } }, - [943]={ + [948]={ [1]={ [1]={ limit={ @@ -20845,7 +20925,7 @@ return { [1]="expanding_fire_cone_final_wave_always_ignite" } }, - [944]={ + [949]={ [1]={ [1]={ limit={ @@ -20861,7 +20941,7 @@ return { [1]="expanding_fire_cone_maximum_number_of_stages" } }, - [945]={ + [950]={ [1]={ [1]={ limit={ @@ -20882,7 +20962,7 @@ return { [2]="expanding_fire_cone_radius_limit" } }, - [946]={ + [951]={ [1]={ [1]={ limit={ @@ -20933,7 +21013,7 @@ return { [2]="quality_display_incinerate_is_gem_hit" } }, - [947]={ + [952]={ [1]={ [1]={ limit={ @@ -20949,14 +21029,14 @@ return { [1]="explosive_arrow_stack_limit" } }, - [948]={ + [953]={ [1]={ }, stats={ [1]="exposure_effect_+%" } }, - [949]={ + [954]={ [1]={ [1]={ limit={ @@ -20972,7 +21052,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [950]={ + [955]={ [1]={ [1]={ limit={ @@ -20997,7 +21077,7 @@ return { [1]="eye_of_winter_number_of_brittle_stacks_to_apply" } }, - [951]={ + [956]={ [1]={ [1]={ limit={ @@ -21026,7 +21106,7 @@ return { [1]="eye_of_winter_spiral_angle_+%" } }, - [952]={ + [957]={ [1]={ [1]={ limit={ @@ -21055,7 +21135,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [953]={ + [958]={ [1]={ [1]={ limit={ @@ -21071,7 +21151,7 @@ return { [1]="faster_bleed_%" } }, - [954]={ + [959]={ [1]={ [1]={ [1]={ @@ -21122,7 +21202,7 @@ return { [3]="feast_of_flesh_recovery_duration" } }, - [955]={ + [960]={ [1]={ [1]={ limit={ @@ -21138,7 +21218,7 @@ return { [1]="feral_invocation_gain_1_energy_per_X_mana_spent" } }, - [956]={ + [961]={ [1]={ [1]={ limit={ @@ -21163,7 +21243,7 @@ return { [1]="final_strike_number_of_spirit_strikes" } }, - [957]={ + [962]={ [1]={ [1]={ [1]={ @@ -21183,7 +21263,7 @@ return { [1]="fire_beam_additional_stack_damage_+%_final" } }, - [958]={ + [963]={ [1]={ [1]={ limit={ @@ -21199,7 +21279,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_maximum" } }, - [959]={ + [964]={ [1]={ [1]={ limit={ @@ -21215,7 +21295,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [960]={ + [965]={ [1]={ [1]={ limit={ @@ -21244,7 +21324,7 @@ return { [1]="fire_beam_length_+%" } }, - [961]={ + [966]={ [1]={ [1]={ limit={ @@ -21260,7 +21340,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [962]={ + [967]={ [1]={ [1]={ limit={ @@ -21276,7 +21356,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [963]={ + [968]={ [1]={ [1]={ limit={ @@ -21305,7 +21385,7 @@ return { [1]="firestorm_final_impact_damage_+%_final" } }, - [964]={ + [969]={ [1]={ [1]={ limit={ @@ -21334,7 +21414,7 @@ return { [1]="firestorm_initial_impact_area_of_effect_+%_final" } }, - [965]={ + [970]={ [1]={ [1]={ limit={ @@ -21363,7 +21443,7 @@ return { [1]="firestorm_initial_impact_damage_+%_final" } }, - [966]={ + [971]={ [1]={ [1]={ limit={ @@ -21379,7 +21459,7 @@ return { [1]="firewall_applies_%_fire_exposure" } }, - [967]={ + [972]={ [1]={ [1]={ limit={ @@ -21395,7 +21475,7 @@ return { [1]="fixed_skill_effect_duration" } }, - [968]={ + [973]={ [1]={ [1]={ limit={ @@ -21424,7 +21504,7 @@ return { [1]="flame_dash_burning_damage_+%_final" } }, - [969]={ + [974]={ [1]={ [1]={ [1]={ @@ -21444,7 +21524,7 @@ return { [1]="flame_surge_burning_ground_creation_cooldown_ms" } }, - [970]={ + [975]={ [1]={ [1]={ limit={ @@ -21460,7 +21540,7 @@ return { [1]="flame_surge_ignite_damage_as_burning_ground_damage_%" } }, - [971]={ + [976]={ [1]={ [1]={ limit={ @@ -21489,7 +21569,7 @@ return { [1]="flame_wall_projectiles_ignite_effect_+%_final" } }, - [972]={ + [977]={ [1]={ [1]={ limit={ @@ -21518,7 +21598,7 @@ return { [1]="flameblast_area_+%_final_per_stage" } }, - [973]={ + [978]={ [1]={ [1]={ limit={ @@ -21547,7 +21627,7 @@ return { [1]="flameblast_hit_damage_+%_final_per_10_life_reserved" } }, - [974]={ + [979]={ [1]={ [1]={ [1]={ @@ -21567,7 +21647,7 @@ return { [1]="flameblast_hundred_times_radius_+_per_1%_life_reserved" } }, - [975]={ + [980]={ [1]={ [1]={ limit={ @@ -21583,7 +21663,7 @@ return { [1]="flameblast_maximum_stages" } }, - [976]={ + [981]={ [1]={ [1]={ limit={ @@ -21599,7 +21679,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [977]={ + [982]={ [1]={ [1]={ limit={ @@ -21615,7 +21695,7 @@ return { [1]="flamethrower_tower_trap_display_cast_speed_affects_rotation" } }, - [978]={ + [983]={ [1]={ [1]={ limit={ @@ -21631,7 +21711,7 @@ return { [1]="flamethrower_tower_trap_number_of_flamethrowers" } }, - [979]={ + [984]={ [1]={ [1]={ limit={ @@ -21660,7 +21740,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [980]={ + [985]={ [1]={ [1]={ limit={ @@ -21693,7 +21773,7 @@ return { [1]="flask_charges_used_+%" } }, - [981]={ + [986]={ [1]={ [1]={ limit={ @@ -21718,7 +21798,7 @@ return { [1]="flask_throw_base_charges_used" } }, - [982]={ + [987]={ [1]={ [1]={ limit={ @@ -21747,7 +21827,7 @@ return { [1]="flask_throw_bleed_effect_+%_final" } }, - [983]={ + [988]={ [1]={ [1]={ [1]={ @@ -21789,7 +21869,7 @@ return { [1]="flask_throw_cold_exposure_ms" } }, - [984]={ + [989]={ [1]={ [1]={ limit={ @@ -21805,7 +21885,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [985]={ + [990]={ [1]={ [1]={ [1]={ @@ -21847,7 +21927,7 @@ return { [1]="flask_throw_fire_exposure_ms" } }, - [986]={ + [991]={ [1]={ [1]={ [1]={ @@ -21889,7 +21969,7 @@ return { [1]="flask_throw_lightning_exposure_ms" } }, - [987]={ + [992]={ [1]={ [1]={ limit={ @@ -21905,7 +21985,7 @@ return { [1]="flask_throw_added_chaos_damage_%_of_flask_life_to_recover" } }, - [988]={ + [993]={ [1]={ [1]={ limit={ @@ -21926,7 +22006,7 @@ return { [2]="flask_throw_maximum_cold_damage_if_used_sapphire_flask" } }, - [989]={ + [994]={ [1]={ [1]={ limit={ @@ -21947,7 +22027,7 @@ return { [2]="flask_throw_maximum_lightning_damage_if_used_topaz_flask" } }, - [990]={ + [995]={ [1]={ [1]={ limit={ @@ -21976,7 +22056,7 @@ return { [1]="flask_throw_poison_effect_+%_final" } }, - [991]={ + [996]={ [1]={ [1]={ limit={ @@ -22005,7 +22085,7 @@ return { [1]="flask_throw_ruby_flask_ignite_effect_+%" } }, - [992]={ + [997]={ [1]={ [1]={ limit={ @@ -22034,7 +22114,7 @@ return { [1]="flicker_strike_buff_movement_speed_+%" } }, - [993]={ + [998]={ [1]={ [1]={ limit={ @@ -22050,7 +22130,7 @@ return { [1]="flicker_strike_teleport_range_+%" } }, - [994]={ + [999]={ [1]={ [1]={ limit={ @@ -22066,7 +22146,7 @@ return { [1]="fortify_on_hit" } }, - [995]={ + [1000]={ [1]={ [1]={ limit={ @@ -22082,7 +22162,7 @@ return { [1]="fortify_on_hit_close_range" } }, - [996]={ + [1001]={ [1]={ [1]={ limit={ @@ -22111,7 +22191,7 @@ return { [1]="fortifying_cry_guard_gained_+%_final" } }, - [997]={ + [1002]={ [1]={ [1]={ limit={ @@ -22127,7 +22207,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [998]={ + [1003]={ [1]={ [1]={ limit={ @@ -22156,7 +22236,7 @@ return { [1]="freeze_duration_ms_+" } }, - [999]={ + [1004]={ [1]={ [1]={ [1]={ @@ -22176,7 +22256,7 @@ return { [1]="virtual_freezing_enemy_chills_enemies_in_radius" } }, - [1000]={ + [1005]={ [1]={ [1]={ limit={ @@ -22205,7 +22285,7 @@ return { [1]="freezing_pulse_damage_+%_final_at_long_range" } }, - [1001]={ + [1006]={ [1]={ [1]={ limit={ @@ -22234,7 +22314,7 @@ return { [1]="frenzy_skill_attack_damage_+%_final_per_frenzy_charge" } }, - [1002]={ + [1007]={ [1]={ [1]={ limit={ @@ -22263,7 +22343,7 @@ return { [1]="frenzy_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [1003]={ + [1008]={ [1]={ [1]={ limit={ @@ -22279,7 +22359,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [1004]={ + [1009]={ [1]={ [1]={ limit={ @@ -22304,7 +22384,7 @@ return { [1]="frost_bolt_nova_number_of_frost_bolts_to_detonate" } }, - [1005]={ + [1010]={ [1]={ [1]={ [1]={ @@ -22324,7 +22404,7 @@ return { [1]="frost_fury_added_duration_per_stage_ms" } }, - [1006]={ + [1011]={ [1]={ [1]={ [1]={ @@ -22344,7 +22424,7 @@ return { [1]="frost_fury_base_fire_interval_ms" } }, - [1007]={ + [1012]={ [1]={ [1]={ limit={ @@ -22360,7 +22440,7 @@ return { [1]="frost_fury_duration_+%_per_stage" } }, - [1008]={ + [1013]={ [1]={ [1]={ limit={ @@ -22376,7 +22456,7 @@ return { [1]="frost_fury_fire_speed_+%_final_while_channelling" } }, - [1009]={ + [1014]={ [1]={ [1]={ limit={ @@ -22392,7 +22472,7 @@ return { [1]="frost_fury_fire_speed_+%_per_stage" } }, - [1010]={ + [1015]={ [1]={ [1]={ limit={ @@ -22408,7 +22488,7 @@ return { [1]="frost_fury_max_number_of_stages" } }, - [1011]={ + [1016]={ [1]={ [1]={ limit={ @@ -22424,7 +22504,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_in_bubble" } }, - [1012]={ + [1017]={ [1]={ [1]={ limit={ @@ -22440,7 +22520,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_outside_bubble" } }, - [1013]={ + [1018]={ [1]={ [1]={ [1]={ @@ -22460,7 +22540,7 @@ return { [1]="frost_globe_additional_spell_base_critical_strike_chance_per_stage" } }, - [1014]={ + [1019]={ [1]={ [1]={ limit={ @@ -22476,7 +22556,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [1015]={ + [1020]={ [1]={ [1]={ [1]={ @@ -22496,7 +22576,7 @@ return { [1]="frost_globe_life_regeneration_rate_per_minute_%" } }, - [1016]={ + [1021]={ [1]={ [1]={ limit={ @@ -22512,7 +22592,7 @@ return { [1]="frost_globe_max_stages" } }, - [1017]={ + [1022]={ [1]={ [1]={ [1]={ @@ -22532,14 +22612,14 @@ return { [1]="frost_globe_stage_gain_interval_ms" } }, - [1018]={ + [1023]={ [1]={ }, stats={ [1]="frost_wall_total_maximum_life" } }, - [1019]={ + [1024]={ [1]={ [1]={ limit={ @@ -22568,7 +22648,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [1020]={ + [1025]={ [1]={ [1]={ limit={ @@ -22597,7 +22677,7 @@ return { [1]="frostbolt_projectile_speed_+%_final" } }, - [1021]={ + [1026]={ [1]={ [1]={ limit={ @@ -22613,7 +22693,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [1022]={ + [1027]={ [1]={ [1]={ limit={ @@ -22638,7 +22718,7 @@ return { [1]="frozen_monsters_take_increased_damage" } }, - [1023]={ + [1028]={ [1]={ [1]={ limit={ @@ -22654,7 +22734,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun" } }, - [1024]={ + [1029]={ [1]={ [1]={ [1]={ @@ -22674,7 +22754,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_duration_ms_+" } }, - [1025]={ + [1030]={ [1]={ [1]={ [1]={ @@ -22694,7 +22774,7 @@ return { [1]="fully_broken_armour_duration_ms_removed_on_hit" } }, - [1026]={ + [1031]={ [1]={ [1]={ limit={ @@ -22710,7 +22790,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [1027]={ + [1032]={ [1]={ [1]={ limit={ @@ -22726,7 +22806,7 @@ return { [1]="gain_X_volatility_on_empowered_skill_use" } }, - [1028]={ + [1033]={ [1]={ [1]={ limit={ @@ -22751,7 +22831,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [1029]={ + [1034]={ [1]={ [1]={ [1]={ @@ -22771,7 +22851,7 @@ return { [1]="gain_fortify_on_melee_hit_ms" } }, - [1030]={ + [1035]={ [1]={ [1]={ limit={ @@ -22787,7 +22867,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [1031]={ + [1036]={ [1]={ [1]={ limit={ @@ -22803,7 +22883,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [1032]={ + [1037]={ [1]={ [1]={ limit={ @@ -22828,7 +22908,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [1033]={ + [1038]={ [1]={ [1]={ limit={ @@ -22844,14 +22924,14 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [1034]={ + [1039]={ [1]={ }, stats={ [1]="gain_x_rage_on_hit" } }, - [1035]={ + [1040]={ [1]={ [1]={ limit={ @@ -22867,7 +22947,7 @@ return { [1]="gain_rage_on_hit_%_chance" } }, - [1036]={ + [1041]={ [1]={ [1]={ limit={ @@ -22883,7 +22963,7 @@ return { [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [1037]={ + [1042]={ [1]={ [1]={ limit={ @@ -22908,7 +22988,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [1038]={ + [1043]={ [1]={ [1]={ limit={ @@ -22924,14 +23004,14 @@ return { [1]="gain_x_rage_on_attack_hit" } }, - [1039]={ + [1044]={ [1]={ }, stats={ [1]="gain_x_rage_on_melee_hit" } }, - [1040]={ + [1045]={ [1]={ [1]={ [1]={ @@ -22964,7 +23044,7 @@ return { [1]="galvanic_field_beam_delay_ms" } }, - [1041]={ + [1046]={ [1]={ [1]={ limit={ @@ -22993,7 +23073,7 @@ return { [1]="galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [1042]={ + [1047]={ [1]={ [1]={ limit={ @@ -23022,7 +23102,7 @@ return { [1]="galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock" } }, - [1043]={ + [1048]={ [1]={ [1]={ limit={ @@ -23051,7 +23131,7 @@ return { [1]="gem_quality_ancestral_cry_global_fire_damage_granted_+%_final" } }, - [1044]={ + [1049]={ [1]={ [1]={ limit={ @@ -23080,7 +23160,7 @@ return { [1]="gem_quality_earthquake_damaging_ailment_effect_+%_final" } }, - [1045]={ + [1050]={ [1]={ [1]={ limit={ @@ -23109,7 +23189,7 @@ return { [1]="gem_quality_flameblast_damaging_ailment_effect_per_stage_+%_final" } }, - [1046]={ + [1051]={ [1]={ [1]={ limit={ @@ -23142,7 +23222,7 @@ return { [1]="gem_quality_marked_enemy_damage_dealt_+%_final" } }, - [1047]={ + [1052]={ [1]={ [1]={ limit={ @@ -23189,7 +23269,7 @@ return { [2]="generic_ongoing_trigger_triggers_at_maximum_energy" } }, - [1048]={ + [1053]={ [1]={ [1]={ limit={ @@ -23218,7 +23298,7 @@ return { [1]="glacial_cascade_travel_speed_+%" } }, - [1049]={ + [1054]={ [1]={ [1]={ limit={ @@ -23234,7 +23314,7 @@ return { [1]="global_bleed_on_hit" } }, - [1050]={ + [1055]={ [1]={ [1]={ limit={ @@ -23250,7 +23330,7 @@ return { [1]="global_knockback" } }, - [1051]={ + [1056]={ [1]={ [1]={ limit={ @@ -23266,7 +23346,7 @@ return { [1]="global_maim_on_hit" } }, - [1052]={ + [1057]={ [1]={ [1]={ limit={ @@ -23287,7 +23367,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [1053]={ + [1058]={ [1]={ [1]={ [1]={ @@ -23320,7 +23400,7 @@ return { [1]="glorious_madness_timer_ms" } }, - [1054]={ + [1059]={ [1]={ [1]={ limit={ @@ -23349,7 +23429,7 @@ return { [1]="golem_buff_effect_+%" } }, - [1055]={ + [1060]={ [1]={ [1]={ limit={ @@ -23378,14 +23458,14 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [1056]={ + [1061]={ [1]={ }, stats={ [1]="grenade_skill_%_chance_to_explode_twice" } }, - [1057]={ + [1062]={ [1]={ [1]={ limit={ @@ -23428,7 +23508,7 @@ return { [3]="quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem" } }, - [1058]={ + [1063]={ [1]={ [1]={ limit={ @@ -23457,7 +23537,7 @@ return { [1]="ground_slam_angle_+%" } }, - [1059]={ + [1064]={ [1]={ [1]={ limit={ @@ -23473,7 +23553,7 @@ return { [1]="has_freeze_cull" } }, - [1060]={ + [1065]={ [1]={ [1]={ [1]={ @@ -23502,7 +23582,7 @@ return { [1]="hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self" } }, - [1061]={ + [1066]={ [1]={ [1]={ limit={ @@ -23527,7 +23607,7 @@ return { [1]="hazard_rearm_%_chance" } }, - [1062]={ + [1067]={ [1]={ [1]={ limit={ @@ -23543,7 +23623,7 @@ return { [1]="herald_of_agony_add_stack_on_poison" } }, - [1063]={ + [1068]={ [1]={ [1]={ limit={ @@ -23572,7 +23652,7 @@ return { [1]="herald_of_agony_poison_effect_+%_final" } }, - [1064]={ + [1069]={ [1]={ [1]={ limit={ @@ -23601,7 +23681,7 @@ return { [1]="herald_of_ash_fire_damage_+%" } }, - [1065]={ + [1070]={ [1]={ [1]={ limit={ @@ -23630,7 +23710,7 @@ return { [1]="herald_of_blood_global_physical_damage_granted_+%" } }, - [1066]={ + [1071]={ [1]={ [1]={ limit={ @@ -23659,7 +23739,7 @@ return { [1]="herald_of_ice_cold_damage_+%" } }, - [1067]={ + [1072]={ [1]={ [1]={ limit={ @@ -23675,7 +23755,7 @@ return { [1]="herald_of_light_summon_champion_on_kill" } }, - [1068]={ + [1073]={ [1]={ [1]={ limit={ @@ -23700,7 +23780,7 @@ return { [1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%" } }, - [1069]={ + [1074]={ [1]={ [1]={ limit={ @@ -23729,7 +23809,7 @@ return { [1]="herald_of_purity_physical_damage_+%_final" } }, - [1070]={ + [1075]={ [1]={ [1]={ limit={ @@ -23758,7 +23838,7 @@ return { [1]="herald_of_thunder_lightning_damage_+%" } }, - [1071]={ + [1076]={ [1]={ [1]={ limit={ @@ -23774,7 +23854,7 @@ return { [1]="hex_transfer_on_death_total_range" } }, - [1072]={ + [1077]={ [1]={ [1]={ limit={ @@ -23803,7 +23883,7 @@ return { [1]="hexblast_damage_+%_final_per_second_remaining_curse_duration" } }, - [1073]={ + [1078]={ [1]={ [1]={ limit={ @@ -23819,7 +23899,7 @@ return { [1]="hexblast_hit_damage_+%_final_if_hexed" } }, - [1074]={ + [1079]={ [1]={ [1]={ limit={ @@ -23848,7 +23928,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [1075]={ + [1080]={ [1]={ [1]={ limit={ @@ -23864,7 +23944,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [1076]={ + [1081]={ [1]={ [1]={ limit={ @@ -23893,7 +23973,7 @@ return { [1]="hit_damage_+%_vs_chilled_enemies" } }, - [1077]={ + [1082]={ [1]={ [1]={ limit={ @@ -23922,7 +24002,7 @@ return { [1]="hit_damage_stun_multiplier_+%" } }, - [1078]={ + [1083]={ [1]={ [1]={ limit={ @@ -23951,7 +24031,7 @@ return { [1]="hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour" } }, - [1079]={ + [1084]={ [1]={ [1]={ limit={ @@ -23967,7 +24047,7 @@ return { [1]="hit_%_chance_to_be_dazing" } }, - [1080]={ + [1085]={ [1]={ [1]={ limit={ @@ -23983,7 +24063,7 @@ return { [1]="hits_grant_cruelty" } }, - [1081]={ + [1086]={ [1]={ [1]={ limit={ @@ -23999,7 +24079,7 @@ return { [1]="hits_ignore_all_enemy_monster_resistances" } }, - [1082]={ + [1087]={ [1]={ [1]={ limit={ @@ -24015,7 +24095,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction" } }, - [1083]={ + [1088]={ [1]={ [1]={ limit={ @@ -24031,7 +24111,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond" } }, - [1084]={ + [1089]={ [1]={ [1]={ limit={ @@ -24047,7 +24127,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [1085]={ + [1090]={ [1]={ [1]={ [1]={ @@ -24067,7 +24147,7 @@ return { [1]="holy_relic_nova_life_regeneration_rate_per_minute" } }, - [1086]={ + [1091]={ [1]={ [1]={ limit={ @@ -24083,7 +24163,7 @@ return { [1]="holy_relic_nova_minion_life_regeneration_rate_per_second" } }, - [1087]={ + [1092]={ [1]={ [1]={ [1]={ @@ -24103,14 +24183,14 @@ return { [1]="hundred_times_attacks_per_second" } }, - [1088]={ + [1093]={ [1]={ }, stats={ [1]="hundred_times_average_damage_per_skill_use" } }, - [1089]={ + [1094]={ [1]={ [1]={ [1]={ @@ -24130,14 +24210,14 @@ return { [1]="hundred_times_casts_per_second" } }, - [1090]={ + [1095]={ [1]={ }, stats={ [1]="hundred_times_damage_per_second" } }, - [1091]={ + [1096]={ [1]={ [1]={ [1]={ @@ -24157,7 +24237,7 @@ return { [1]="hydro_sphere_pulse_frequency_ms" } }, - [1092]={ + [1097]={ [1]={ [1]={ [1]={ @@ -24190,7 +24270,7 @@ return { [1]="hydrosphere_hit_cooldown_ms" } }, - [1093]={ + [1098]={ [1]={ [1]={ limit={ @@ -24219,7 +24299,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [1094]={ + [1099]={ [1]={ [1]={ limit={ @@ -24235,7 +24315,7 @@ return { [1]="ice_crystal_shatter_detonation_area_of_effect_+%_final" } }, - [1095]={ + [1100]={ [1]={ [1]={ limit={ @@ -24251,7 +24331,7 @@ return { [1]="ice_crystal_shatter_detonation_damage_+%_final" } }, - [1096]={ + [1101]={ [1]={ [1]={ [1]={ @@ -24280,7 +24360,7 @@ return { [1]="ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self" } }, - [1097]={ + [1102]={ [1]={ [1]={ limit={ @@ -24322,7 +24402,7 @@ return { [2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy" } }, - [1098]={ + [1103]={ [1]={ [1]={ limit={ @@ -24355,7 +24435,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [1099]={ + [1104]={ [1]={ [1]={ [1]={ @@ -24388,14 +24468,14 @@ return { [1]="igneous_shield_perfect_block_window_time_ms" } }, - [1100]={ + [1105]={ [1]={ }, stats={ [1]="ignite_effect_+%_final_against_frozen_enemies" } }, - [1101]={ + [1106]={ [1]={ [1]={ limit={ @@ -24411,7 +24491,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [1102]={ + [1107]={ [1]={ [1]={ limit={ @@ -24427,7 +24507,7 @@ return { [1]="immolation_brand_burn_damage_+%_final_per_stage" } }, - [1103]={ + [1108]={ [1]={ [1]={ [1]={ @@ -24460,7 +24540,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [1104]={ + [1109]={ [1]={ [1]={ limit={ @@ -24489,7 +24569,7 @@ return { [1]="impacting_steel_secondary_projectile_damage_+%_final" } }, - [1105]={ + [1110]={ [1]={ [1]={ limit={ @@ -24518,7 +24598,7 @@ return { [1]="impale_magnitude_+%" } }, - [1106]={ + [1111]={ [1]={ [1]={ limit={ @@ -24543,7 +24623,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [1107]={ + [1112]={ [1]={ [1]={ limit={ @@ -24572,7 +24652,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [1108]={ + [1113]={ [1]={ [1]={ limit={ @@ -24601,7 +24681,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [1109]={ + [1114]={ [1]={ [1]={ limit={ @@ -24630,7 +24710,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [1110]={ + [1115]={ [1]={ [1]={ limit={ @@ -24655,7 +24735,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [1111]={ + [1116]={ [1]={ [1]={ limit={ @@ -24671,7 +24751,7 @@ return { [1]="infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [1112]={ + [1117]={ [1]={ [1]={ limit={ @@ -24687,7 +24767,7 @@ return { [1]="infernal_cry_explosion_fire_damage_+%_final_per_corpse_power" } }, - [1113]={ + [1118]={ [1]={ [1]={ limit={ @@ -24703,7 +24783,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [1114]={ + [1119]={ [1]={ [1]={ [1]={ @@ -24723,7 +24803,7 @@ return { [1]="inflict_exposure_for_x_ms_on_cold_crit" } }, - [1115]={ + [1120]={ [1]={ [1]={ [1]={ @@ -24743,7 +24823,7 @@ return { [1]="inflict_exposure_for_x_ms_on_ignite" } }, - [1116]={ + [1121]={ [1]={ [1]={ [1]={ @@ -24763,7 +24843,7 @@ return { [1]="inflict_exposure_for_x_ms_on_shock" } }, - [1117]={ + [1122]={ [1]={ [1]={ limit={ @@ -24788,7 +24868,7 @@ return { [1]="inflict_exposure_on_hit_%_chance" } }, - [1118]={ + [1123]={ [1]={ [1]={ ["gem_quality"]=true, @@ -24814,7 +24894,7 @@ return { [1]="infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy" } }, - [1119]={ + [1124]={ [1]={ [1]={ ["gem_quality"]=true, @@ -24840,7 +24920,7 @@ return { [1]="infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy" } }, - [1120]={ + [1125]={ [1]={ [1]={ ["gem_quality"]=true, @@ -24866,7 +24946,7 @@ return { [1]="infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy" } }, - [1121]={ + [1126]={ [1]={ [1]={ limit={ @@ -24895,7 +24975,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [1122]={ + [1127]={ [1]={ [1]={ [1]={ @@ -24915,7 +24995,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [1123]={ + [1128]={ [1]={ [1]={ [1]={ @@ -24935,7 +25015,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [1124]={ + [1129]={ [1]={ [1]={ [1]={ @@ -24955,7 +25035,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [1125]={ + [1130]={ [1]={ [1]={ [1]={ @@ -24975,7 +25055,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [1126]={ + [1131]={ [1]={ [1]={ [1]={ @@ -24995,7 +25075,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [1127]={ + [1132]={ [1]={ [1]={ [1]={ @@ -25015,7 +25095,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [1128]={ + [1133]={ [1]={ [1]={ [1]={ @@ -25035,7 +25115,7 @@ return { [1]="intermediary_lightning_skill_dot_area_damage_to_deal_per_minute" } }, - [1129]={ + [1134]={ [1]={ [1]={ [1]={ @@ -25055,7 +25135,7 @@ return { [1]="intermediary_lightning_skill_dot_damage_to_deal_per_minute" } }, - [1130]={ + [1135]={ [1]={ [1]={ [1]={ @@ -25075,7 +25155,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [1131]={ + [1136]={ [1]={ [1]={ [1]={ @@ -25095,7 +25175,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [1132]={ + [1137]={ [1]={ [1]={ [1]={ @@ -25115,7 +25195,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [1133]={ + [1138]={ [1]={ [1]={ limit={ @@ -25131,14 +25211,14 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [1134]={ + [1139]={ [1]={ }, stats={ [1]="jagged_ground_duration_ms" } }, - [1135]={ + [1140]={ [1]={ [1]={ limit={ @@ -25154,7 +25234,7 @@ return { [1]="killing_blow_consumes_corpse_restore_%_life" } }, - [1136]={ + [1141]={ [1]={ [1]={ limit={ @@ -25170,7 +25250,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [1137]={ + [1142]={ [1]={ [1]={ limit={ @@ -25186,7 +25266,7 @@ return { [1]="kinetic_bolt_forks_apply_to_zig_zags" } }, - [1138]={ + [1143]={ [1]={ [1]={ limit={ @@ -25202,7 +25282,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [1139]={ + [1144]={ [1]={ [1]={ limit={ @@ -25231,7 +25311,7 @@ return { [1]="lacerate_hit_damage_+%_final_vs_bleeding_enemies" } }, - [1140]={ + [1145]={ [1]={ [1]={ limit={ @@ -25260,7 +25340,7 @@ return { [1]="lancing_steel_damage_+%_at_close_range" } }, - [1141]={ + [1146]={ [1]={ [1]={ limit={ @@ -25289,7 +25369,7 @@ return { [1]="lancing_steel_damage_+%_final_after_first_hit_on_target" } }, - [1142]={ + [1147]={ [1]={ [1]={ limit={ @@ -25318,7 +25398,7 @@ return { [1]="lancing_steel_targeting_range_+%" } }, - [1143]={ + [1148]={ [1]={ [1]={ limit={ @@ -25334,14 +25414,14 @@ return { [1]="life_leech_also_recovers_based_on_elemental_damage_types" } }, - [1144]={ + [1149]={ [1]={ }, stats={ [1]="life_reservation_permyriad" } }, - [1145]={ + [1150]={ [1]={ [1]={ limit={ @@ -25370,7 +25450,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [1146]={ + [1151]={ [1]={ [1]={ limit={ @@ -25395,7 +25475,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [1147]={ + [1152]={ [1]={ [1]={ limit={ @@ -25424,7 +25504,7 @@ return { [1]="lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [1148]={ + [1153]={ [1]={ [1]={ limit={ @@ -25440,7 +25520,7 @@ return { [1]="lightning_rod_%_chance_for_additional_burst_on_landing" } }, - [1149]={ + [1154]={ [1]={ [1]={ limit={ @@ -25469,7 +25549,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final" } }, - [1150]={ + [1155]={ [1]={ [1]={ limit={ @@ -25485,7 +25565,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_radius_+" } }, - [1151]={ + [1156]={ [1]={ [1]={ limit={ @@ -25523,7 +25603,7 @@ return { [2]="lightning_tower_trap_interval_duration_ms" } }, - [1152]={ + [1157]={ [1]={ [1]={ [1]={ @@ -25556,14 +25636,14 @@ return { [1]="lightning_warp_shocked_ground_base_duration_ms" } }, - [1153]={ + [1158]={ [1]={ }, stats={ [1]="lose_%_of_maximum_rage_on_dealing_critical_strike" } }, - [1154]={ + [1159]={ [1]={ [1]={ limit={ @@ -25579,7 +25659,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1155]={ + [1160]={ [1]={ [1]={ limit={ @@ -25595,7 +25675,7 @@ return { [1]="magma_barrier_maximum_block_chance_granted_%" } }, - [1156]={ + [1161]={ [1]={ [1]={ limit={ @@ -25624,7 +25704,7 @@ return { [1]="magma_brand_hit_damage_+%_final_per_additional_pustule" } }, - [1157]={ + [1162]={ [1]={ [1]={ limit={ @@ -25640,7 +25720,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [1158]={ + [1163]={ [1]={ [1]={ limit={ @@ -25669,7 +25749,7 @@ return { [1]="maim_effect_+%" } }, - [1159]={ + [1164]={ [1]={ [1]={ limit={ @@ -25694,70 +25774,70 @@ return { [1]="maim_on_hit_%" } }, - [1160]={ + [1165]={ [1]={ }, stats={ [1]="main_hand_accuracy_rating" } }, - [1161]={ + [1166]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_chaos_resist_%" } }, - [1162]={ + [1167]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_cold_resist_%" } }, - [1163]={ + [1168]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_fire_resist_%" } }, - [1164]={ + [1169]={ [1]={ }, stats={ [1]="main_hand_attack_damage_penetrates_lightning_resist_%" } }, - [1165]={ + [1170]={ [1]={ }, stats={ [1]="main_hand_critical_hit_damage_bonus" } }, - [1166]={ + [1171]={ [1]={ }, stats={ [1]="main_hand_critical_strike_chance" } }, - [1167]={ + [1172]={ [1]={ }, stats={ [1]="main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1168]={ + [1173]={ [1]={ }, stats={ [1]="main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical" } }, - [1169]={ + [1174]={ [1]={ }, stats={ @@ -25766,7 +25846,7 @@ return { [3]="main_hand_chaos_damage_only_min_or_max" } }, - [1170]={ + [1175]={ [1]={ }, stats={ @@ -25775,7 +25855,7 @@ return { [3]="main_hand_cold_damage_only_min_or_max" } }, - [1171]={ + [1176]={ [1]={ }, stats={ @@ -25784,7 +25864,7 @@ return { [3]="main_hand_fire_damage_only_min_or_max" } }, - [1172]={ + [1177]={ [1]={ }, stats={ @@ -25793,7 +25873,7 @@ return { [3]="main_hand_lightning_damage_only_min_or_max" } }, - [1173]={ + [1178]={ [1]={ }, stats={ @@ -25802,7 +25882,7 @@ return { [3]="main_hand_physical_damage_only_min_or_max" } }, - [1174]={ + [1179]={ [1]={ }, stats={ @@ -25810,14 +25890,14 @@ return { [2]="main_hand_maximum_total_damage" } }, - [1175]={ + [1180]={ [1]={ }, stats={ [1]="main_hand_reload_time" } }, - [1176]={ + [1181]={ [1]={ [1]={ [1]={ @@ -25837,7 +25917,7 @@ return { [1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute" } }, - [1177]={ + [1182]={ [1]={ [1]={ limit={ @@ -25866,7 +25946,7 @@ return { [1]="mana_gain_per_target" } }, - [1178]={ + [1183]={ [1]={ [1]={ limit={ @@ -25895,7 +25975,7 @@ return { [1]="mana_remnants_global_mana_regeneration_rate_granted_+%" } }, - [1179]={ + [1184]={ [1]={ [1]={ [1]={ @@ -25928,7 +26008,7 @@ return { [1]="mana_tempest_effects_linger_X_ms" } }, - [1180]={ + [1185]={ [1]={ [1]={ limit={ @@ -25944,7 +26024,7 @@ return { [1]="mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage" } }, - [1181]={ + [1186]={ [1]={ [1]={ limit={ @@ -25960,7 +26040,7 @@ return { [1]="manaforged_arrows_total_mana_threshold" } }, - [1182]={ + [1187]={ [1]={ [1]={ limit={ @@ -25976,14 +26056,14 @@ return { [1]="mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [1183]={ + [1188]={ [1]={ }, stats={ [1]="mark_effect_+%" } }, - [1184]={ + [1189]={ [1]={ [1]={ limit={ @@ -25999,7 +26079,7 @@ return { [1]="max_crab_aspect_stacks" } }, - [1185]={ + [1190]={ [1]={ [1]={ limit={ @@ -26015,7 +26095,7 @@ return { [1]="max_number_of_absolution_sentinels" } }, - [1186]={ + [1191]={ [1]={ [1]={ limit={ @@ -26031,7 +26111,7 @@ return { [1]="max_number_of_lightning_warp_markers" } }, - [1187]={ + [1192]={ [1]={ [1]={ limit={ @@ -26047,7 +26127,7 @@ return { [1]="max_steel_ammo" } }, - [1188]={ + [1193]={ [1]={ [1]={ limit={ @@ -26063,7 +26143,7 @@ return { [1]="maximum_life_%_damage_absorbed_per_jade_consumed" } }, - [1189]={ + [1194]={ [1]={ [1]={ limit={ @@ -26092,7 +26172,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [1190]={ + [1195]={ [1]={ [1]={ limit={ @@ -26108,7 +26188,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [1191]={ + [1196]={ [1]={ [1]={ limit={ @@ -26142,7 +26222,7 @@ return { [2]="quality_display_rapid_shot_maximum_num_of_stacks_is_gem" } }, - [1192]={ + [1197]={ [1]={ [1]={ limit={ @@ -26167,7 +26247,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [1193]={ + [1198]={ [1]={ [1]={ limit={ @@ -26192,7 +26272,7 @@ return { [1]="maximum_number_of_mirage_warriors" } }, - [1194]={ + [1199]={ [1]={ [1]={ limit={ @@ -26252,7 +26332,7 @@ return { [3]="vaal_venom_gyre_capture_x_projectiles_per_second" } }, - [1195]={ + [1200]={ [1]={ [1]={ limit={ @@ -26277,7 +26357,7 @@ return { [1]="maximum_number_of_summoned_doubles" } }, - [1196]={ + [1201]={ [1]={ [1]={ limit={ @@ -26302,7 +26382,7 @@ return { [1]="maximum_number_of_vaal_ice_shot_mirages" } }, - [1197]={ + [1202]={ [1]={ [1]={ limit={ @@ -26318,7 +26398,7 @@ return { [1]="maximum_verisium_infusion_stacks" } }, - [1198]={ + [1203]={ [1]={ [1]={ limit={ @@ -26334,7 +26414,7 @@ return { [1]="maximum_virulence_stacks" } }, - [1199]={ + [1204]={ [1]={ [1]={ limit={ @@ -26363,7 +26443,7 @@ return { [1]="meditate_energy_shield_recharge_rate_+%_final" } }, - [1200]={ + [1205]={ [1]={ [1]={ limit={ @@ -26388,7 +26468,7 @@ return { [1]="virtual_number_of_spirit_strikes" } }, - [1201]={ + [1206]={ [1]={ [1]={ [1]={ @@ -26408,7 +26488,7 @@ return { [1]="melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill" } }, - [1202]={ + [1207]={ [1]={ [1]={ limit={ @@ -26424,7 +26504,7 @@ return { [1]="mine_cannot_rearm" } }, - [1203]={ + [1208]={ [1]={ [1]={ limit={ @@ -26453,7 +26533,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [1204]={ + [1209]={ [1]={ [1]={ limit={ @@ -26469,7 +26549,7 @@ return { [1]="mine_detonates_instantly" } }, - [1205]={ + [1210]={ [1]={ [1]={ limit={ @@ -26498,7 +26578,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [1206]={ + [1211]={ [1]={ [1]={ limit={ @@ -26527,7 +26607,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [1207]={ + [1212]={ [1]={ [1]={ limit={ @@ -26556,7 +26636,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [1208]={ + [1213]={ [1]={ [1]={ limit={ @@ -26577,7 +26657,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [1209]={ + [1214]={ [1]={ [1]={ limit={ @@ -26598,7 +26678,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [1210]={ + [1215]={ [1]={ [1]={ limit={ @@ -26619,7 +26699,7 @@ return { [2]="maximum_added_lightning_damage_from_skill" } }, - [1211]={ + [1216]={ [1]={ [1]={ limit={ @@ -26635,7 +26715,7 @@ return { [1]="minimum_power_from_quality" } }, - [1212]={ + [1217]={ [1]={ [1]={ limit={ @@ -26656,7 +26736,7 @@ return { [2]="maximum_secondary_physical_damage_per_15_strength" } }, - [1213]={ + [1218]={ [1]={ }, stats={ @@ -26664,7 +26744,7 @@ return { [2]="maximum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite" } }, - [1214]={ + [1219]={ [1]={ [1]={ limit={ @@ -26680,7 +26760,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1215]={ + [1220]={ [1]={ [1]={ limit={ @@ -26696,7 +26776,7 @@ return { [1]="minion_block_%" } }, - [1216]={ + [1221]={ [1]={ [1]={ limit={ @@ -26725,7 +26805,7 @@ return { [1]="minion_burning_damage_+%" } }, - [1217]={ + [1222]={ [1]={ [1]={ limit={ @@ -26741,7 +26821,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [1218]={ + [1223]={ [1]={ [1]={ limit={ @@ -26757,7 +26837,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [1219]={ + [1224]={ [1]={ [1]={ limit={ @@ -26786,7 +26866,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [1220]={ + [1225]={ [1]={ [1]={ limit={ @@ -26815,7 +26895,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [1221]={ + [1226]={ [1]={ [1]={ limit={ @@ -26844,7 +26924,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [1222]={ + [1227]={ [1]={ [1]={ [1]={ @@ -26864,7 +26944,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [1223]={ + [1228]={ [1]={ [1]={ limit={ @@ -26880,7 +26960,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [1224]={ + [1229]={ [1]={ [1]={ limit={ @@ -26896,7 +26976,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [1225]={ + [1230]={ [1]={ [1]={ limit={ @@ -26925,7 +27005,7 @@ return { [1]="minion_melee_damage_+%" } }, - [1226]={ + [1231]={ [1]={ [1]={ limit={ @@ -26950,7 +27030,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [1227]={ + [1232]={ [1]={ [1]={ limit={ @@ -26979,7 +27059,7 @@ return { [1]="minion_rage_effect_+%" } }, - [1228]={ + [1233]={ [1]={ [1]={ limit={ @@ -27008,7 +27088,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [1229]={ + [1234]={ [1]={ [1]={ limit={ @@ -27037,7 +27117,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [1230]={ + [1235]={ [1]={ [1]={ [1]={ @@ -27070,7 +27150,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [1231]={ + [1236]={ [1]={ [1]={ limit={ @@ -27095,7 +27175,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [1232]={ + [1237]={ [1]={ [1]={ limit={ @@ -27111,7 +27191,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [1233]={ + [1238]={ [1]={ [1]={ limit={ @@ -27136,7 +27216,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [1234]={ + [1239]={ [1]={ [1]={ limit={ @@ -27152,7 +27232,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [1235]={ + [1240]={ [1]={ [1]={ limit={ @@ -27168,7 +27248,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [1236]={ + [1241]={ [1]={ [1]={ limit={ @@ -27211,7 +27291,7 @@ return { [3]="molten_shell_max_damage_absorbed" } }, - [1237]={ + [1242]={ [1]={ [1]={ limit={ @@ -27245,7 +27325,7 @@ return { [2]="display_vaal_molten_shell_alternate_description" } }, - [1238]={ + [1243]={ [1]={ [1]={ limit={ @@ -27261,7 +27341,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [1239]={ + [1244]={ [1]={ [1]={ limit={ @@ -27277,7 +27357,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [1240]={ + [1245]={ [1]={ [1]={ limit={ @@ -27306,7 +27386,7 @@ return { [1]="mortal_call_elemental_damage_taken_+%_final" } }, - [1241]={ + [1246]={ [1]={ [1]={ limit={ @@ -27335,7 +27415,7 @@ return { [1]="mortal_call_physical_damage_taken_+%_final" } }, - [1242]={ + [1247]={ [1]={ [1]={ [1]={ @@ -27394,7 +27474,7 @@ return { [2]="quality_display_immortal_call_is_gem" } }, - [1243]={ + [1248]={ [1]={ [1]={ limit={ @@ -27423,7 +27503,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [1244]={ + [1249]={ [1]={ [1]={ ["gem_quality"]=true, @@ -27449,7 +27529,7 @@ return { [1]="multishot_empowered_projectile_speed_+%" } }, - [1245]={ + [1250]={ [1]={ [1]={ limit={ @@ -27465,7 +27545,7 @@ return { [1]="never_ignite" } }, - [1246]={ + [1251]={ [1]={ [1]={ limit={ @@ -27481,7 +27561,7 @@ return { [1]="never_shock" } }, - [1247]={ + [1252]={ [1]={ [1]={ limit={ @@ -27497,7 +27577,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [1248]={ + [1253]={ [1]={ [1]={ limit={ @@ -27526,7 +27606,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [1249]={ + [1254]={ [1]={ [1]={ limit={ @@ -27542,7 +27622,7 @@ return { [1]="non_modifiable_totem_limit" } }, - [1250]={ + [1255]={ [1]={ [1]={ limit={ @@ -27558,14 +27638,14 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff" } }, - [1251]={ + [1256]={ [1]={ }, stats={ [1]="non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies" } }, - [1252]={ + [1257]={ [1]={ [1]={ limit={ @@ -27599,7 +27679,7 @@ return { [2]="quality_display_mana_tempest_is_gem" } }, - [1253]={ + [1258]={ [1]={ [1]={ limit={ @@ -27615,21 +27695,21 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_random_element" } }, - [1254]={ + [1259]={ [1]={ }, stats={ [1]="non_spell_cast_duration_ms" } }, - [1255]={ + [1260]={ [1]={ }, stats={ [1]="nova_skills_cast_at_target_location" } }, - [1256]={ + [1261]={ [1]={ [1]={ limit={ @@ -27654,14 +27734,14 @@ return { [1]="number_of_additional_chain_targets" } }, - [1257]={ + [1262]={ [1]={ }, stats={ [1]="number_of_additional_fissures" } }, - [1258]={ + [1263]={ [1]={ [1]={ limit={ @@ -27686,7 +27766,7 @@ return { [1]="number_of_additional_impaled_debuffs_to_apply" } }, - [1259]={ + [1264]={ [1]={ [1]={ limit={ @@ -27702,7 +27782,7 @@ return { [1]="number_of_allowed_storm_arrows" } }, - [1260]={ + [1265]={ [1]={ [1]={ limit={ @@ -27727,7 +27807,7 @@ return { [1]="number_of_branching_fissures" } }, - [1261]={ + [1266]={ [1]={ [1]={ limit={ @@ -27752,7 +27832,7 @@ return { [1]="number_of_champions_of_light_allowed" } }, - [1262]={ + [1267]={ [1]={ [1]={ limit={ @@ -27777,14 +27857,14 @@ return { [1]="number_of_corpses_to_consume" } }, - [1263]={ + [1268]={ [1]={ }, stats={ [1]="number_of_crossbow_bolts" } }, - [1264]={ + [1269]={ [1]={ [1]={ limit={ @@ -27809,7 +27889,7 @@ return { [1]="base_number_of_effigies_allowed" } }, - [1265]={ + [1270]={ [1]={ [1]={ limit={ @@ -27834,7 +27914,7 @@ return { [1]="number_of_herald_scorpions_allowed" } }, - [1266]={ + [1271]={ [1]={ [1]={ limit={ @@ -27859,7 +27939,7 @@ return { [1]="number_of_marks_allowed_per_type" } }, - [1267]={ + [1272]={ [1]={ [1]={ limit={ @@ -27884,7 +27964,7 @@ return { [1]="number_of_mirage_archers_allowed" } }, - [1268]={ + [1273]={ [1]={ [1]={ limit={ @@ -27909,7 +27989,7 @@ return { [1]="number_of_reapers_allowed" } }, - [1269]={ + [1274]={ [1]={ [1]={ limit={ @@ -27934,28 +28014,28 @@ return { [1]="number_of_relics_allowed" } }, - [1270]={ + [1275]={ [1]={ }, stats={ [1]="number_of_runic_aftershocks_allowed" } }, - [1271]={ + [1276]={ [1]={ }, stats={ [1]="number_of_skeletal_constructs_allowed" } }, - [1272]={ + [1277]={ [1]={ }, stats={ [1]="number_of_tempest_bells_allowed" } }, - [1273]={ + [1278]={ [1]={ [1]={ limit={ @@ -27971,70 +28051,70 @@ return { [1]="number_of_totems_to_summon" } }, - [1274]={ + [1279]={ [1]={ }, stats={ [1]="off_hand_accuracy_rating" } }, - [1275]={ + [1280]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_chaos_resist_%" } }, - [1276]={ + [1281]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_cold_resist_%" } }, - [1277]={ + [1282]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_fire_resist_%" } }, - [1278]={ + [1283]={ [1]={ }, stats={ [1]="off_hand_attack_damage_penetrates_lightning_resist_%" } }, - [1279]={ + [1284]={ [1]={ }, stats={ [1]="off_hand_critical_hit_damage_bonus" } }, - [1280]={ + [1285]={ [1]={ }, stats={ [1]="off_hand_critical_strike_chance" } }, - [1281]={ + [1286]={ [1]={ }, stats={ [1]="off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1282]={ + [1287]={ [1]={ }, stats={ [1]="off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical" } }, - [1283]={ + [1288]={ [1]={ }, stats={ @@ -28043,7 +28123,7 @@ return { [3]="off_hand_chaos_damage_only_min_or_max" } }, - [1284]={ + [1289]={ [1]={ }, stats={ @@ -28052,7 +28132,7 @@ return { [3]="off_hand_cold_damage_only_min_or_max" } }, - [1285]={ + [1290]={ [1]={ }, stats={ @@ -28061,7 +28141,7 @@ return { [3]="off_hand_fire_damage_only_min_or_max" } }, - [1286]={ + [1291]={ [1]={ }, stats={ @@ -28070,7 +28150,7 @@ return { [3]="off_hand_lightning_damage_only_min_or_max" } }, - [1287]={ + [1292]={ [1]={ }, stats={ @@ -28079,7 +28159,7 @@ return { [3]="off_hand_physical_damage_only_min_or_max" } }, - [1288]={ + [1293]={ [1]={ }, stats={ @@ -28087,14 +28167,14 @@ return { [2]="off_hand_maximum_total_damage" } }, - [1289]={ + [1294]={ [1]={ }, stats={ [1]="orb_of_storms_bolt_frequency_ms" } }, - [1290]={ + [1295]={ [1]={ [1]={ [1]={ @@ -28127,7 +28207,7 @@ return { [1]="orb_of_storms_channelling_bolt_frequency_ms" } }, - [1291]={ + [1296]={ [1]={ [1]={ limit={ @@ -28143,7 +28223,7 @@ return { [1]="orb_of_storms_maximum_number_of_hits" } }, - [1292]={ + [1297]={ [1]={ [1]={ limit={ @@ -28159,7 +28239,7 @@ return { [1]="orb_of_storms_maximum_number_of_orbs" } }, - [1293]={ + [1298]={ [1]={ [1]={ limit={ @@ -28175,7 +28255,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [1294]={ + [1299]={ [1]={ [1]={ limit={ @@ -28204,7 +28284,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [1295]={ + [1300]={ [1]={ [1]={ limit={ @@ -28220,7 +28300,7 @@ return { [1]="penance_brand_additional_descriptions_boolean" } }, - [1296]={ + [1301]={ [1]={ [1]={ limit={ @@ -28236,7 +28316,7 @@ return { [1]="penance_brand_base_spread_radius_+" } }, - [1297]={ + [1302]={ [1]={ [1]={ limit={ @@ -28252,7 +28332,7 @@ return { [1]="penetrate_%_fire_resistance_per_100_dexterity" } }, - [1298]={ + [1303]={ [1]={ [1]={ limit={ @@ -28277,7 +28357,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [1299]={ + [1304]={ [1]={ [1]={ limit={ @@ -28302,7 +28382,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [1300]={ + [1305]={ [1]={ [1]={ limit={ @@ -28327,7 +28407,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1301]={ + [1306]={ [1]={ [1]={ limit={ @@ -28352,7 +28432,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1302]={ + [1307]={ [1]={ [1]={ limit={ @@ -28368,7 +28448,7 @@ return { [1]="petrification_statue_target_action_speed_-%" } }, - [1303]={ + [1308]={ [1]={ [1]={ limit={ @@ -28389,7 +28469,7 @@ return { [2]="phantasm_grant_buff_maximum_added_physical_damage" } }, - [1304]={ + [1309]={ [1]={ [1]={ limit={ @@ -28414,7 +28494,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [1305]={ + [1310]={ [1]={ [1]={ limit={ @@ -28452,7 +28532,7 @@ return { [2]="phys_cascade_trap_interval_duration_ms" } }, - [1306]={ + [1311]={ [1]={ [1]={ limit={ @@ -28468,7 +28548,7 @@ return { [1]="physical_damage_reduction_%_per_crab_aspect_stack" } }, - [1307]={ + [1312]={ [1]={ [1]={ limit={ @@ -28497,7 +28577,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [1308]={ + [1313]={ [1]={ [1]={ limit={ @@ -28518,7 +28598,7 @@ return { [2]="plague_bearer_maximum_stored_poison_damage" } }, - [1309]={ + [1314]={ [1]={ [1]={ limit={ @@ -28547,7 +28627,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [1310]={ + [1315]={ [1]={ [1]={ limit={ @@ -28563,7 +28643,7 @@ return { [1]="plague_burst_%_stored_value_to_deal_as_physical_damage" } }, - [1311]={ + [1316]={ [1]={ [1]={ limit={ @@ -28579,7 +28659,7 @@ return { [1]="plague_burst_area_+%_final_maximum" } }, - [1312]={ + [1317]={ [1]={ [1]={ limit={ @@ -28595,7 +28675,7 @@ return { [1]="plague_burst_triggered_by_bursting_plague_death" } }, - [1313]={ + [1318]={ [1]={ [1]={ limit={ @@ -28611,7 +28691,7 @@ return { [1]="plant_skill_damage_+%_final_when_wet" } }, - [1314]={ + [1319]={ [1]={ [1]={ limit={ @@ -28640,7 +28720,7 @@ return { [1]="base_poison_effect_+%" } }, - [1315]={ + [1320]={ [1]={ [1]={ [1]={ @@ -28682,7 +28762,7 @@ return { [2]="toxic_pustule_max_additional_burst_base_radius_+" } }, - [1316]={ + [1321]={ [1]={ [1]={ limit={ @@ -28703,7 +28783,7 @@ return { [2]="toxic_pustule_max_burst_damage_+%_final_from_stored_poison" } }, - [1317]={ + [1322]={ [1]={ [1]={ [1]={ @@ -28723,7 +28803,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [1318]={ + [1323]={ [1]={ [1]={ limit={ @@ -28739,7 +28819,7 @@ return { [1]="predict_totem_maximum_energy_shield" } }, - [1319]={ + [1324]={ [1]={ [1]={ limit={ @@ -28755,7 +28835,7 @@ return { [1]="predict_totem_maximum_life" } }, - [1320]={ + [1325]={ [1]={ [1]={ limit={ @@ -28780,7 +28860,7 @@ return { [1]="primary_projectile_impale_chance_%" } }, - [1321]={ + [1326]={ [1]={ [1]={ [1]={ @@ -28813,7 +28893,7 @@ return { [1]="prismatic_rain_beam_frequency_ms" } }, - [1322]={ + [1327]={ [1]={ [1]={ limit={ @@ -28842,7 +28922,7 @@ return { [1]="projectile_attack_damage_+%_in_blood_stance" } }, - [1323]={ + [1328]={ [1]={ [1]={ limit={ @@ -28889,7 +28969,7 @@ return { [2]="projectiles_can_split_from_terrain" } }, - [1324]={ + [1329]={ [1]={ [1]={ limit={ @@ -28905,7 +28985,7 @@ return { [1]="projectile_chance_to_be_able_to_chain_from_terrain_%" } }, - [1325]={ + [1330]={ [1]={ [1]={ ["gem_quality"]=true, @@ -28931,7 +29011,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [1326]={ + [1331]={ [1]={ [1]={ limit={ @@ -28956,7 +29036,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [1327]={ + [1332]={ [1]={ [1]={ limit={ @@ -28985,7 +29065,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [1328]={ + [1333]={ [1]={ [1]={ limit={ @@ -29014,7 +29094,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [1329]={ + [1334]={ [1]={ [1]={ limit={ @@ -29030,14 +29110,14 @@ return { [1]="projectile_only_collide_with_wet_targets" } }, - [1330]={ + [1335]={ [1]={ }, stats={ [1]="projectile_speed_+%" } }, - [1331]={ + [1336]={ [1]={ [1]={ limit={ @@ -29066,14 +29146,14 @@ return { [1]="projectile_speed_+%_in_sand_stance" } }, - [1332]={ + [1337]={ [1]={ }, stats={ [1]="projectiles_can_shotgun" } }, - [1333]={ + [1338]={ [1]={ [1]={ limit={ @@ -29089,7 +29169,7 @@ return { [1]="projectiles_cannot_fork" } }, - [1334]={ + [1339]={ [1]={ [1]={ limit={ @@ -29105,7 +29185,7 @@ return { [1]="projectiles_cannot_split" } }, - [1335]={ + [1340]={ [1]={ [1]={ limit={ @@ -29134,7 +29214,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [1336]={ + [1341]={ [1]={ [1]={ limit={ @@ -29150,7 +29230,7 @@ return { [1]="projectiles_fork_when_passing_a_flame_wall" } }, - [1337]={ + [1342]={ [1]={ [1]={ limit={ @@ -29166,7 +29246,7 @@ return { [1]="projectiles_nova" } }, - [1338]={ + [1343]={ [1]={ [1]={ limit={ @@ -29182,7 +29262,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [1339]={ + [1344]={ [1]={ [1]={ limit={ @@ -29198,7 +29278,7 @@ return { [1]="projectiles_rain" } }, - [1340]={ + [1345]={ [1]={ [1]={ [1]={ @@ -29231,7 +29311,7 @@ return { [1]="puppet_master_duration_ms" } }, - [1341]={ + [1346]={ [1]={ [1]={ limit={ @@ -29247,7 +29327,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [1342]={ + [1347]={ [1]={ [1]={ limit={ @@ -29272,7 +29352,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [1343]={ + [1348]={ [1]={ [1]={ [1]={ @@ -29292,7 +29372,7 @@ return { [1]="pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet" } }, - [1344]={ + [1349]={ [1]={ [1]={ limit={ @@ -29313,7 +29393,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [1345]={ + [1350]={ [1]={ [1]={ limit={ @@ -29329,7 +29409,7 @@ return { [1]="rage_slash_sacrifice_rage_%" } }, - [1346]={ + [1351]={ [1]={ [1]={ limit={ @@ -29367,7 +29447,7 @@ return { [2]="rage_slash_rage_sacrifice_per_damage_bonus" } }, - [1347]={ + [1352]={ [1]={ [1]={ limit={ @@ -29388,7 +29468,7 @@ return { [2]="rage_slash_rage_sacrifice_per_radius_bonus" } }, - [1348]={ + [1353]={ [1]={ [1]={ limit={ @@ -29417,7 +29497,7 @@ return { [1]="rage_slash_vortex_attack_speed_+%_final" } }, - [1349]={ + [1354]={ [1]={ [1]={ limit={ @@ -29442,7 +29522,7 @@ return { [1]="rage_slash_maximum_vortices" } }, - [1350]={ + [1355]={ [1]={ [1]={ limit={ @@ -29471,7 +29551,7 @@ return { [1]="ragestorm_movement_speed_+%" } }, - [1351]={ + [1356]={ [1]={ [1]={ [1]={ @@ -29504,7 +29584,7 @@ return { [1]="rain_hit_delay_ms" } }, - [1352]={ + [1357]={ [1]={ [1]={ limit={ @@ -29520,7 +29600,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [1353]={ + [1358]={ [1]={ [1]={ limit={ @@ -29549,7 +29629,7 @@ return { [1]="rain_of_arrows_arrow_speed_+%" } }, - [1354]={ + [1359]={ [1]={ [1]={ limit={ @@ -29578,7 +29658,7 @@ return { [1]="raise_zombie_empowerment_effect_+%" } }, - [1355]={ + [1360]={ [1]={ [1]={ limit={ @@ -29594,7 +29674,7 @@ return { [1]="reave_additional_max_stacks" } }, - [1356]={ + [1361]={ [1]={ }, stats={ @@ -29602,7 +29682,7 @@ return { [2]="reaver_enrage_decay_rate_increase_+%_final" } }, - [1357]={ + [1362]={ [1]={ [1]={ limit={ @@ -29631,7 +29711,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [1358]={ + [1363]={ [1]={ [1]={ [1]={ @@ -29651,7 +29731,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [1359]={ + [1364]={ [1]={ [1]={ ["gem_quality"]=true, @@ -29677,7 +29757,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [1360]={ + [1365]={ [1]={ [1]={ limit={ @@ -29693,7 +29773,7 @@ return { [1]="recover_%_maximum_mana_on_cull" } }, - [1361]={ + [1366]={ [1]={ [1]={ [1]={ @@ -29713,14 +29793,14 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [1362]={ + [1367]={ [1]={ }, stats={ [1]="reduce_enemy_chaos_resistance_%" } }, - [1363]={ + [1368]={ [1]={ [1]={ limit={ @@ -29736,28 +29816,28 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [1364]={ + [1369]={ [1]={ }, stats={ [1]="reduce_enemy_cold_resistance_%" } }, - [1365]={ + [1370]={ [1]={ }, stats={ [1]="reduce_enemy_fire_resistance_%" } }, - [1366]={ + [1371]={ [1]={ }, stats={ [1]="reduce_enemy_lightning_resistance_%" } }, - [1367]={ + [1372]={ [1]={ [1]={ limit={ @@ -29773,14 +29853,14 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [1368]={ + [1373]={ [1]={ }, stats={ [1]="reload_speed_+%" } }, - [1369]={ + [1374]={ [1]={ [1]={ limit={ @@ -29809,7 +29889,7 @@ return { [1]="remnant_effect_+%" } }, - [1370]={ + [1375]={ [1]={ [1]={ limit={ @@ -29825,14 +29905,14 @@ return { [1]="remove_freeze_on_ignite" } }, - [1371]={ + [1376]={ [1]={ }, stats={ [1]="repeat_last_step_of_combo_attack" } }, - [1372]={ + [1377]={ [1]={ [1]={ limit={ @@ -29861,7 +29941,7 @@ return { [1]="rhoa_movement_speed_+%" } }, - [1373]={ + [1378]={ [1]={ [1]={ limit={ @@ -29890,7 +29970,7 @@ return { [1]="rhoa_movement_speed_penalty_+%_final_while_performing_action" } }, - [1374]={ + [1379]={ [1]={ [1]={ limit={ @@ -29906,7 +29986,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [1375]={ + [1380]={ [1]={ [1]={ limit={ @@ -29922,7 +30002,7 @@ return { [1]="ring_of_ice_placement_distance" } }, - [1376]={ + [1381]={ [1]={ [1]={ limit={ @@ -29951,7 +30031,7 @@ return { [1]="rune_paint_area_of_effect_+%_final_per_rune_level" } }, - [1377]={ + [1382]={ [1]={ [1]={ limit={ @@ -29980,7 +30060,7 @@ return { [1]="rune_paint_area_of_effect_+%_per_rune_level" } }, - [1378]={ + [1383]={ [1]={ [1]={ limit={ @@ -30031,7 +30111,7 @@ return { [2]="quality_display_rune_paint_is_gem" } }, - [1379]={ + [1384]={ [1]={ [1]={ limit={ @@ -30047,7 +30127,7 @@ return { [1]="rune_paint_mana_spend_per_rune_upgrade" } }, - [1380]={ + [1385]={ [1]={ [1]={ limit={ @@ -30072,7 +30152,7 @@ return { [1]="rune_paint_max_rune_level" } }, - [1381]={ + [1386]={ [1]={ [1]={ limit={ @@ -30101,14 +30181,14 @@ return { [1]="sacrifice_minion_life_granted_+%" } }, - [1382]={ + [1387]={ [1]={ }, stats={ [1]="sacrifice_%_life_on_skill_use" } }, - [1383]={ + [1388]={ [1]={ [1]={ limit={ @@ -30137,7 +30217,7 @@ return { [1]="sanctify_wave_damage_+%_final" } }, - [1384]={ + [1389]={ [1]={ [1]={ limit={ @@ -30153,7 +30233,7 @@ return { [1]="sandstorm_swipe_max_stages" } }, - [1385]={ + [1390]={ [1]={ [1]={ limit={ @@ -30204,7 +30284,7 @@ return { [2]="quality_display_sandstorm_swipe_is_gem" } }, - [1386]={ + [1391]={ [1]={ [1]={ limit={ @@ -30220,7 +30300,7 @@ return { [1]="sandstorm_swipe_storm_radius_+_per_stage" } }, - [1387]={ + [1392]={ [1]={ [1]={ limit={ @@ -30249,7 +30329,7 @@ return { [1]="scorpion_minion_attack_speed_+%" } }, - [1388]={ + [1393]={ [1]={ [1]={ limit={ @@ -30278,7 +30358,7 @@ return { [1]="scorpion_minion_physical_damage_+%" } }, - [1389]={ + [1394]={ [1]={ [1]={ limit={ @@ -30299,28 +30379,28 @@ return { [2]="scorpion_minion_maximum_added_physical_damage" } }, - [1390]={ + [1395]={ [1]={ }, stats={ [1]="secondary_critical_hit_damage_bonus" } }, - [1391]={ + [1396]={ [1]={ }, stats={ [1]="secondary_critical_strike_chance" } }, - [1392]={ + [1397]={ [1]={ }, stats={ [1]="secondary_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1393]={ + [1398]={ [1]={ }, stats={ @@ -30328,7 +30408,7 @@ return { [2]="secondary_maximum_chaos_damage" } }, - [1394]={ + [1399]={ [1]={ }, stats={ @@ -30336,7 +30416,7 @@ return { [2]="secondary_maximum_cold_damage" } }, - [1395]={ + [1400]={ [1]={ }, stats={ @@ -30344,7 +30424,7 @@ return { [2]="secondary_maximum_fire_damage" } }, - [1396]={ + [1401]={ [1]={ }, stats={ @@ -30353,7 +30433,7 @@ return { [3]="secondary_lightning_damage_only_min_or_max" } }, - [1397]={ + [1402]={ [1]={ }, stats={ @@ -30361,7 +30441,7 @@ return { [2]="secondary_maximum_physical_damage" } }, - [1398]={ + [1403]={ [1]={ }, stats={ @@ -30369,7 +30449,7 @@ return { [2]="secondary_maximum_total_damage" } }, - [1399]={ + [1404]={ [1]={ [1]={ limit={ @@ -30398,7 +30478,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [1400]={ + [1405]={ [1]={ [1]={ limit={ @@ -30414,7 +30494,7 @@ return { [1]="share_charges_with_allies_in_your_presence" } }, - [1401]={ + [1406]={ [1]={ [1]={ limit={ @@ -30430,7 +30510,7 @@ return { [1]="shatter_on_killing_blow" } }, - [1402]={ + [1407]={ [1]={ [1]={ limit={ @@ -30459,7 +30539,7 @@ return { [1]="shattering_palm_target_damage_+%_final" } }, - [1403]={ + [1408]={ [1]={ [1]={ limit={ @@ -30484,7 +30564,7 @@ return { [1]="shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed" } }, - [1404]={ + [1409]={ [1]={ [1]={ limit={ @@ -30513,7 +30593,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [1405]={ + [1410]={ [1]={ [1]={ [1]={ @@ -30542,7 +30622,7 @@ return { [1]="shield_wall_damage_+%_final_for_first_500_ms_when_not_killed_by_self" } }, - [1406]={ + [1411]={ [1]={ [1]={ limit={ @@ -30571,7 +30651,7 @@ return { [1]="shield_wall_damage_+%_final_when_slammed" } }, - [1407]={ + [1412]={ [1]={ [1]={ limit={ @@ -30600,7 +30680,7 @@ return { [1]="shock_effect_+%" } }, - [1408]={ + [1413]={ [1]={ [1]={ limit={ @@ -30629,7 +30709,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [1409]={ + [1414]={ [1]={ [1]={ limit={ @@ -30645,7 +30725,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [1410]={ + [1415]={ [1]={ [1]={ limit={ @@ -30670,7 +30750,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [1411]={ + [1416]={ [1]={ [1]={ limit={ @@ -30699,7 +30779,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [1412]={ + [1417]={ [1]={ [1]={ limit={ @@ -30728,7 +30808,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [1413]={ + [1418]={ [1]={ [1]={ [1]={ @@ -30748,7 +30828,7 @@ return { [1]="shrapnel_shot_cone_placement_distance_+" } }, - [1414]={ + [1419]={ [1]={ [1]={ limit={ @@ -30764,7 +30844,7 @@ return { [1]="shrapnel_trap_number_of_secondary_explosions" } }, - [1415]={ + [1420]={ [1]={ [1]={ limit={ @@ -30780,7 +30860,7 @@ return { [1]="sigil_attached_target_fire_penetration_%" } }, - [1416]={ + [1421]={ [1]={ [1]={ limit={ @@ -30796,7 +30876,7 @@ return { [1]="sigil_attached_target_lightning_penetration_%" } }, - [1417]={ + [1422]={ [1]={ [1]={ [1]={ @@ -30816,7 +30896,7 @@ return { [1]="sigil_recall_extend_base_secondary_skill_effect_duration" } }, - [1418]={ + [1423]={ [1]={ [1]={ [1]={ @@ -30836,7 +30916,7 @@ return { [1]="sigil_recall_extend_base_skill_effect_duration" } }, - [1419]={ + [1424]={ [1]={ [1]={ limit={ @@ -30852,7 +30932,7 @@ return { [1]="sigils_can_target_reaper_minions" } }, - [1420]={ + [1425]={ [1]={ [1]={ [1]={ @@ -30885,7 +30965,7 @@ return { [1]="skeletal_cleric_revived_skeletons_immune_for_X_ms" } }, - [1421]={ + [1426]={ [1]={ [1]={ limit={ @@ -30901,14 +30981,14 @@ return { [1]="skill_additional_fissure_chance_%" } }, - [1422]={ + [1427]={ [1]={ }, stats={ [1]="skill_additional_projectiles_per_seal_broken" } }, - [1423]={ + [1428]={ [1]={ [1]={ limit={ @@ -30924,7 +31004,7 @@ return { [1]="skill_angle_+%_in_sand_stance" } }, - [1424]={ + [1429]={ [1]={ [1]={ limit={ @@ -30953,14 +31033,14 @@ return { [1]="skill_area_angle_+%" } }, - [1425]={ + [1430]={ [1]={ }, stats={ [1]="skill_area_of_effect_+%_per_broken_seal" } }, - [1426]={ + [1431]={ [1]={ [1]={ limit={ @@ -30985,7 +31065,7 @@ return { [1]="skill_area_of_effect_+%_final_in_sand_stance" } }, - [1427]={ + [1432]={ [1]={ [1]={ [1]={ @@ -31005,7 +31085,7 @@ return { [1]="skill_base_oil_movement_speed_+%_final_to_apply" } }, - [1428]={ + [1433]={ [1]={ [1]={ ["gem_quality"]=true, @@ -31031,7 +31111,7 @@ return { [1]="skill_base_oil_exposure_-_to_total_elemental_resistance" } }, - [1429]={ + [1434]={ [1]={ [1]={ limit={ @@ -31047,7 +31127,7 @@ return { [1]="base_chance_to_shock_%_from_skill" } }, - [1430]={ + [1435]={ [1]={ [1]={ limit={ @@ -31076,7 +31156,7 @@ return { [1]="skill_buff_grants_attack_and_cast_speed_+%" } }, - [1431]={ + [1436]={ [1]={ [1]={ limit={ @@ -31092,7 +31172,7 @@ return { [1]="skill_can_flicker" } }, - [1432]={ + [1437]={ [1]={ [1]={ limit={ @@ -31108,7 +31188,7 @@ return { [1]="skill_cannot_gain_rage_during_use" } }, - [1433]={ + [1438]={ [1]={ [1]={ limit={ @@ -31137,21 +31217,21 @@ return { [1]="skill_code_movement_speed_+%_final" } }, - [1434]={ + [1439]={ [1]={ }, stats={ [1]="skill_consume_frenzy_charge_to_gain_skill_speed_+%_final" } }, - [1435]={ + [1440]={ [1]={ }, stats={ [1]="skill_consume_power_charge_to_gain_critical_strike_chance_+%_final" } }, - [1436]={ + [1441]={ [1]={ [1]={ limit={ @@ -31167,7 +31247,7 @@ return { [1]="skill_curses_cannot_apply_to_targets_above_level" } }, - [1437]={ + [1442]={ [1]={ [1]={ limit={ @@ -31196,21 +31276,21 @@ return { [1]="skill_damage_+%_final_per_chain_from_skill_specific_stat" } }, - [1438]={ + [1443]={ [1]={ }, stats={ [1]="skill_detonation_time" } }, - [1439]={ + [1444]={ [1]={ }, stats={ [1]="skill_echoes_per_seal_broken" } }, - [1440]={ + [1445]={ [1]={ [1]={ limit={ @@ -31239,7 +31319,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [1441]={ + [1446]={ [1]={ [1]={ [1]={ @@ -31259,7 +31339,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [1442]={ + [1447]={ [1]={ [1]={ limit={ @@ -31288,7 +31368,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [1443]={ + [1448]={ [1]={ [1]={ ["gem_quality"]=true, @@ -31327,14 +31407,14 @@ return { [2]="skill_eternal_march_life_per_ward_spent_%" } }, - [1444]={ + [1449]={ [1]={ }, stats={ [1]="skill_gain_seal_every_x_hits_blocked" } }, - [1445]={ + [1450]={ [1]={ [1]={ limit={ @@ -31479,7 +31559,7 @@ return { [3]="skill_grant_X_frenzy_charges_against_unique_monsters" } }, - [1446]={ + [1451]={ [1]={ [1]={ limit={ @@ -31495,7 +31575,7 @@ return { [1]="skill_grant_elusive_when_used" } }, - [1447]={ + [1452]={ [1]={ [1]={ limit={ @@ -31511,7 +31591,7 @@ return { [1]="skill_has_trigger_from_unique_item" } }, - [1448]={ + [1453]={ [1]={ [1]={ limit={ @@ -31536,7 +31616,7 @@ return { [1]="skill_hyena_cackle_size" } }, - [1449]={ + [1454]={ [1]={ [1]={ [1]={ @@ -31569,21 +31649,21 @@ return { [1]="skill_jagged_ground_base_duration_ms" } }, - [1450]={ + [1455]={ [1]={ }, stats={ [1]="skill_maximum_number_of_combo_stacks" } }, - [1451]={ + [1456]={ [1]={ }, stats={ [1]="skill_maximum_seals" } }, - [1452]={ + [1457]={ [1]={ [1]={ limit={ @@ -31599,35 +31679,35 @@ return { [1]="skill_maximum_travel_distance_+%" } }, - [1453]={ + [1458]={ [1]={ }, stats={ [1]="skill_offering_targets_an_additional_skeleton" } }, - [1454]={ + [1459]={ [1]={ }, stats={ [1]="skill_oil_movement_speed_+%_final_to_apply" } }, - [1455]={ + [1460]={ [1]={ }, stats={ [1]="skill_rapid_fire_repeats_per_broken_seal" } }, - [1456]={ + [1461]={ [1]={ }, stats={ [1]="skill_seal_gain_interval_ms" } }, - [1457]={ + [1462]={ [1]={ [1]={ limit={ @@ -31643,7 +31723,7 @@ return { [1]="skill_travel_distance_+%" } }, - [1458]={ + [1463]={ [1]={ [1]={ limit={ @@ -31659,7 +31739,7 @@ return { [1]="skill_triggered_by_owl_feathers" } }, - [1459]={ + [1464]={ [1]={ [1]={ limit={ @@ -31675,7 +31755,7 @@ return { [1]="skill_triggered_by_snipe" } }, - [1460]={ + [1465]={ [1]={ [1]={ limit={ @@ -31700,7 +31780,7 @@ return { [1]="skill_triggered_when_you_focus_chance_%" } }, - [1461]={ + [1466]={ [1]={ [1]={ limit={ @@ -31729,7 +31809,7 @@ return { [1]="skill_used_by_mirage_chieftain_damage_+%_final" } }, - [1462]={ + [1467]={ [1]={ [1]={ [1]={ @@ -31749,7 +31829,7 @@ return { [1]="skill_used_by_mirage_warrior_damage_+%_final" } }, - [1463]={ + [1468]={ [1]={ [1]={ [1]={ @@ -31769,7 +31849,7 @@ return { [1]="skill_withered_duration_ms" } }, - [1464]={ + [1469]={ [1]={ [1]={ limit={ @@ -31794,7 +31874,7 @@ return { [1]="skill_wolf_pack_size" } }, - [1465]={ + [1470]={ [1]={ [1]={ limit={ @@ -31810,7 +31890,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [1466]={ + [1471]={ [1]={ [1]={ limit={ @@ -31835,7 +31915,7 @@ return { [1]="slither_wither_stacks" } }, - [1467]={ + [1472]={ [1]={ [1]={ limit={ @@ -31851,14 +31931,14 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [1468]={ + [1473]={ [1]={ }, stats={ [1]="solar_orb_pulse_frequency_ms" } }, - [1469]={ + [1474]={ [1]={ [1]={ limit={ @@ -31874,7 +31954,7 @@ return { [1]="soulfeast_chaos_damage_to_self" } }, - [1470]={ + [1475]={ [1]={ [1]={ limit={ @@ -31890,7 +31970,7 @@ return { [1]="soulfeast_maximum_stages" } }, - [1471]={ + [1476]={ [1]={ [1]={ limit={ @@ -31906,7 +31986,7 @@ return { [1]="soulfeast_number_of_secondary_projectiles" } }, - [1472]={ + [1477]={ [1]={ [1]={ limit={ @@ -31935,7 +32015,7 @@ return { [1]="soulfeast_spell_damage_+%_final_per_stage" } }, - [1473]={ + [1478]={ [1]={ [1]={ limit={ @@ -31951,7 +32031,7 @@ return { [1]="spear_wall_num_spears" } }, - [1474]={ + [1479]={ [1]={ [1]={ limit={ @@ -31967,7 +32047,7 @@ return { [1]="spearfield_maim_slows_an_additional_%" } }, - [1475]={ + [1480]={ [1]={ [1]={ [1]={ @@ -31987,7 +32067,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [1476]={ + [1481]={ [1]={ [1]={ limit={ @@ -32012,7 +32092,7 @@ return { [1]="display_spectral_spiral_weapon_number_of_bounces" } }, - [1477]={ + [1482]={ [1]={ [1]={ [1]={ @@ -32032,7 +32112,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [1478]={ + [1483]={ [1]={ [1]={ limit={ @@ -32048,7 +32128,7 @@ return { [1]="base_spell_%_chance_to_echo" } }, - [1479]={ + [1484]={ [1]={ [1]={ limit={ @@ -32077,7 +32157,7 @@ return { [1]="spell_area_damage_+%_in_blood_stance" } }, - [1480]={ + [1485]={ [1]={ [1]={ limit={ @@ -32106,14 +32186,14 @@ return { [1]="spell_area_of_effect_+%_in_sand_stance" } }, - [1481]={ + [1486]={ [1]={ }, stats={ [1]="spell_cast_duration_ms" } }, - [1482]={ + [1487]={ [1]={ [1]={ limit={ @@ -32129,28 +32209,28 @@ return { [1]="spell_cast_time_cannot_be_modified" } }, - [1483]={ + [1488]={ [1]={ }, stats={ [1]="spell_critical_hit_damage_bonus" } }, - [1484]={ + [1489]={ [1]={ }, stats={ [1]="spell_critical_strike_chance" } }, - [1485]={ + [1490]={ [1]={ }, stats={ [1]="spell_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1486]={ + [1491]={ [1]={ [1]={ limit={ @@ -32166,7 +32246,7 @@ return { [1]="spell_has_trigger_from_crafted_item_mod" } }, - [1487]={ + [1492]={ [1]={ [1]={ limit={ @@ -32187,7 +32267,7 @@ return { [2]="spell_maximum_base_fire_damage_as_%_of_intelligence" } }, - [1488]={ + [1493]={ [1]={ [1]={ limit={ @@ -32208,7 +32288,7 @@ return { [2]="spell_maximum_base_cold_damage_as_%_of_intelligence" } }, - [1489]={ + [1494]={ [1]={ [1]={ limit={ @@ -32229,7 +32309,7 @@ return { [2]="spell_maximum_base_lightning_damage_as_%_of_intelligence" } }, - [1490]={ + [1495]={ [1]={ [1]={ limit={ @@ -32250,7 +32330,7 @@ return { [2]="spell_maximum_base_physical_damage_per_shield_quality" } }, - [1491]={ + [1496]={ [1]={ }, stats={ @@ -32258,7 +32338,7 @@ return { [2]="spell_maximum_chaos_damage" } }, - [1492]={ + [1497]={ [1]={ }, stats={ @@ -32266,7 +32346,7 @@ return { [2]="spell_maximum_cold_damage" } }, - [1493]={ + [1498]={ [1]={ }, stats={ @@ -32274,7 +32354,7 @@ return { [2]="spell_maximum_fire_damage" } }, - [1494]={ + [1499]={ [1]={ }, stats={ @@ -32283,7 +32363,7 @@ return { [3]="spell_lightning_damage_only_min_or_max" } }, - [1495]={ + [1500]={ [1]={ }, stats={ @@ -32291,7 +32371,7 @@ return { [2]="spell_maximum_physical_damage" } }, - [1496]={ + [1501]={ [1]={ }, stats={ @@ -32299,7 +32379,7 @@ return { [2]="spell_maximum_total_damage" } }, - [1497]={ + [1502]={ [1]={ [1]={ ["gem_quality"]=true, @@ -32316,7 +32396,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [1498]={ + [1503]={ [1]={ [1]={ limit={ @@ -32332,7 +32412,7 @@ return { [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" } }, - [1499]={ + [1504]={ [1]={ [1]={ limit={ @@ -32361,7 +32441,7 @@ return { [1]="spellflux_frequency_+%_final" } }, - [1500]={ + [1505]={ [1]={ [1]={ limit={ @@ -32386,7 +32466,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [1501]={ + [1506]={ [1]={ [1]={ [1]={ @@ -32406,7 +32486,7 @@ return { [1]="spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time" } }, - [1502]={ + [1507]={ [1]={ [1]={ limit={ @@ -32422,7 +32502,7 @@ return { [1]="spellslinger_mana_reservation" } }, - [1503]={ + [1508]={ [1]={ [1]={ limit={ @@ -32447,7 +32527,7 @@ return { [1]="spider_aspect_max_web_count" } }, - [1504]={ + [1509]={ [1]={ [1]={ limit={ @@ -32463,7 +32543,7 @@ return { [1]="spike_slam_additional_spike_%_chance" } }, - [1505]={ + [1510]={ [1]={ [1]={ limit={ @@ -32492,7 +32572,7 @@ return { [1]="spike_slam_explosion_damage_+%_final" } }, - [1506]={ + [1511]={ [1]={ [1]={ limit={ @@ -32521,7 +32601,7 @@ return { [1]="spike_slam_fissure_damage_+%_final" } }, - [1507]={ + [1512]={ [1]={ [1]={ limit={ @@ -32550,7 +32630,7 @@ return { [1]="spike_slam_fissure_length_+%" } }, - [1508]={ + [1513]={ [1]={ [1]={ limit={ @@ -32575,7 +32655,7 @@ return { [1]="spike_slam_num_spikes" } }, - [1509]={ + [1514]={ [1]={ [1]={ limit={ @@ -32604,7 +32684,7 @@ return { [1]="spike_slam_spike_damage_+%_final" } }, - [1510]={ + [1515]={ [1]={ [1]={ limit={ @@ -32633,7 +32713,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [1511]={ + [1516]={ [1]={ [1]={ limit={ @@ -32649,14 +32729,14 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [1512]={ + [1517]={ [1]={ }, stats={ [1]="spirit_reservation" } }, - [1513]={ + [1518]={ [1]={ [1]={ limit={ @@ -32685,7 +32765,7 @@ return { [1]="spiritual_cry_double_movement_velocity_+%" } }, - [1514]={ + [1519]={ [1]={ [1]={ limit={ @@ -32714,7 +32794,7 @@ return { [1]="splitting_steel_area_+%_final_after_splitting" } }, - [1515]={ + [1520]={ [1]={ [1]={ limit={ @@ -32743,7 +32823,7 @@ return { [1]="static_strike_beam_damage_+%_final" } }, - [1516]={ + [1521]={ [1]={ [1]={ limit={ @@ -32772,7 +32852,7 @@ return { [1]="static_strike_beam_damage_+%_final_while_moving" } }, - [1517]={ + [1522]={ [1]={ [1]={ limit={ @@ -32788,7 +32868,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [1518]={ + [1523]={ [1]={ [1]={ limit={ @@ -32817,7 +32897,7 @@ return { [1]="stealth_+%" } }, - [1519]={ + [1524]={ [1]={ [1]={ limit={ @@ -32842,7 +32922,7 @@ return { [1]="steel_ammo_consumed_per_use" } }, - [1520]={ + [1525]={ [1]={ [1]={ limit={ @@ -32867,7 +32947,7 @@ return { [1]="steel_skill_%_chance_to_not_consume_ammo" } }, - [1521]={ + [1526]={ [1]={ [1]={ limit={ @@ -32896,7 +32976,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [1522]={ + [1527]={ [1]={ [1]={ limit={ @@ -32925,7 +33005,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [1523]={ + [1528]={ [1]={ [1]={ [1]={ @@ -32945,7 +33025,7 @@ return { [1]="storm_barrier_grants_life_regeneration_rate_per_minute_%" } }, - [1524]={ + [1529]={ [1]={ [1]={ limit={ @@ -32974,7 +33054,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [1525]={ + [1530]={ [1]={ [1]={ limit={ @@ -32990,7 +33070,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [1526]={ + [1531]={ [1]={ [1]={ limit={ @@ -33006,7 +33086,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [1527]={ + [1532]={ [1]={ [1]={ limit={ @@ -33035,7 +33115,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [1528]={ + [1533]={ [1]={ [1]={ limit={ @@ -33051,7 +33131,7 @@ return { [1]="storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [1529]={ + [1534]={ [1]={ [1]={ limit={ @@ -33080,7 +33160,7 @@ return { [1]="storm_burst_explosion_area_of_effect_+%" } }, - [1530]={ + [1535]={ [1]={ [1]={ limit={ @@ -33096,7 +33176,7 @@ return { [1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap" } }, - [1531]={ + [1536]={ [1]={ [1]={ limit={ @@ -33125,7 +33205,7 @@ return { [1]="storm_burst_zap_area_of_effect_+%" } }, - [1532]={ + [1537]={ [1]={ [1]={ limit={ @@ -33141,7 +33221,7 @@ return { [1]="storm_call_chance_to_strike_on_cast_%" } }, - [1533]={ + [1538]={ [1]={ [1]={ limit={ @@ -33166,7 +33246,7 @@ return { [1]="storm_rain_pulse_count" } }, - [1534]={ + [1539]={ [1]={ [1]={ limit={ @@ -33182,14 +33262,14 @@ return { [1]="stormblast_bolts_maximum_active_bolt_count" } }, - [1535]={ + [1540]={ [1]={ }, stats={ [1]="stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets" } }, - [1536]={ + [1541]={ [1]={ [1]={ limit={ @@ -33218,7 +33298,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [1537]={ + [1542]={ [1]={ [1]={ limit={ @@ -33234,7 +33314,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [1538]={ + [1543]={ [1]={ [1]={ limit={ @@ -33250,7 +33330,7 @@ return { [1]="summon_mirage_warrior_on_crit" } }, - [1539]={ + [1544]={ [1]={ [1]={ limit={ @@ -33279,7 +33359,7 @@ return { [1]="summoned_spider_grants_attack_speed_+%" } }, - [1540]={ + [1545]={ [1]={ [1]={ limit={ @@ -33308,7 +33388,7 @@ return { [1]="sunder_shockwave_area_of_effect_+%" } }, - [1541]={ + [1546]={ [1]={ [1]={ limit={ @@ -33337,7 +33417,7 @@ return { [1]="sunder_wave_area_of_effect_+%" } }, - [1542]={ + [1547]={ [1]={ [1]={ limit={ @@ -33366,7 +33446,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [1543]={ + [1548]={ [1]={ [1]={ limit={ @@ -33382,7 +33462,7 @@ return { [1]="sunder_wave_min_steps" } }, - [1544]={ + [1549]={ [1]={ }, stats={ @@ -33391,14 +33471,14 @@ return { [3]="shock_nearby_enemy_base_area_of_effect_radius" } }, - [1545]={ + [1550]={ [1]={ }, stats={ [1]="support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final" } }, - [1546]={ + [1551]={ [1]={ [1]={ limit={ @@ -33414,7 +33494,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [1547]={ + [1552]={ [1]={ [1]={ limit={ @@ -33430,7 +33510,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine" } }, - [1548]={ + [1553]={ [1]={ [1]={ limit={ @@ -33446,7 +33526,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine" } }, - [1549]={ + [1554]={ [1]={ [1]={ limit={ @@ -33462,14 +33542,14 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [1550]={ + [1555]={ [1]={ }, stats={ [1]="support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [1551]={ + [1556]={ [1]={ [1]={ limit={ @@ -33485,7 +33565,7 @@ return { [1]="support_apply_daze_on_warcry" } }, - [1552]={ + [1557]={ [1]={ [1]={ [1]={ @@ -33510,14 +33590,14 @@ return { [2]="support_arcane_surge_duration_ms" } }, - [1553]={ + [1558]={ [1]={ }, stats={ [1]="support_armour_explosion" } }, - [1554]={ + [1559]={ [1]={ [1]={ [1]={ @@ -33537,7 +33617,7 @@ return { [1]="support_aura_duration_buff_duration" } }, - [1555]={ + [1560]={ [1]={ [1]={ limit={ @@ -33566,7 +33646,7 @@ return { [1]="support_better_ailments_damaging_ailment_effect_+%_final" } }, - [1556]={ + [1561]={ [1]={ [1]={ limit={ @@ -33591,7 +33671,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [1557]={ + [1562]={ [1]={ }, stats={ @@ -33599,42 +33679,42 @@ return { [2]="support_bursting_plague_max_value_%_of_max_life" } }, - [1558]={ + [1563]={ [1]={ }, stats={ [1]="support_cannibalism_recover_%_maximum_life_on_kill" } }, - [1559]={ + [1564]={ [1]={ }, stats={ [1]="support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies" } }, - [1560]={ + [1565]={ [1]={ }, stats={ [1]="support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage" } }, - [1561]={ + [1566]={ [1]={ }, stats={ [1]="support_clarity_mana_regeneration_rate_+%" } }, - [1562]={ + [1567]={ [1]={ }, stats={ [1]="support_close_combat_attack_damage_+%_final_from_distance" } }, - [1563]={ + [1568]={ [1]={ [1]={ limit={ @@ -33663,7 +33743,7 @@ return { [1]="support_combo_finisher_damage_+%_final" } }, - [1564]={ + [1569]={ [1]={ [1]={ limit={ @@ -33684,7 +33764,7 @@ return { [2]="support_combo_finisher_max_combo_required" } }, - [1565]={ + [1570]={ [1]={ [1]={ limit={ @@ -33713,7 +33793,7 @@ return { [1]="support_consume_power_charge_to_gain_curse_duration_+%_final" } }, - [1566]={ + [1571]={ [1]={ [1]={ limit={ @@ -33742,7 +33822,7 @@ return { [1]="support_cooldown_reduction_cooldown_recovery_+%" } }, - [1567]={ + [1572]={ [1]={ [1]={ [1]={ @@ -33762,49 +33842,49 @@ return { [1]="support_crushing_stuns_crush_on_stun_ms" } }, - [1568]={ + [1573]={ [1]={ }, stats={ [1]="support_culling_strike_vs_rare_or_unique_enemy" } }, - [1569]={ + [1574]={ [1]={ }, stats={ [1]="support_culmination_damage_+%_final_per_combo_stack" } }, - [1570]={ + [1575]={ [1]={ }, stats={ [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds" } }, - [1571]={ + [1576]={ [1]={ }, stats={ [1]="support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds" } }, - [1572]={ + [1577]={ [1]={ }, stats={ [1]="support_daze_break_duration_ms" } }, - [1573]={ + [1578]={ [1]={ }, stats={ [1]="support_dazed_cry_duration_ms" } }, - [1574]={ + [1579]={ [1]={ [1]={ limit={ @@ -33842,28 +33922,28 @@ return { [2]="support_debilitate_hit_damage_max_poison_stacks" } }, - [1575]={ + [1580]={ [1]={ }, stats={ [1]="support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed" } }, - [1576]={ + [1581]={ [1]={ }, stats={ [1]="support_empowered_culling_strike" } }, - [1577]={ + [1582]={ [1]={ }, stats={ [1]="support_empowered_damage_+%_final" } }, - [1578]={ + [1583]={ [1]={ [1]={ [1]={ @@ -33883,28 +33963,28 @@ return { [1]="support_executioner_buff_duration_ms" } }, - [1579]={ + [1584]={ [1]={ }, stats={ [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [1580]={ + [1585]={ [1]={ }, stats={ [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [1581]={ + [1586]={ [1]={ }, stats={ [1]="support_executioner_gain_two_rare_monster_mod_on_kill_ms" } }, - [1582]={ + [1587]={ [1]={ [1]={ limit={ @@ -33920,7 +34000,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [1583]={ + [1588]={ [1]={ [1]={ limit={ @@ -33936,7 +34016,7 @@ return { [1]="support_far_combat_attack_damage_+%_final_from_distance" } }, - [1584]={ + [1589]={ [1]={ [1]={ limit={ @@ -33965,21 +34045,21 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [1585]={ + [1590]={ [1]={ }, stats={ [1]="support_fork_forked_projectile_damage_+%_final" } }, - [1586]={ + [1591]={ [1]={ }, stats={ [1]="support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final" } }, - [1587]={ + [1592]={ [1]={ [1]={ [1]={ @@ -33999,7 +34079,7 @@ return { [1]="support_ghost_duration" } }, - [1588]={ + [1593]={ [1]={ [1]={ limit={ @@ -34028,7 +34108,7 @@ return { [1]="support_grenade_damage_+%_final" } }, - [1589]={ + [1594]={ [1]={ [1]={ limit={ @@ -34049,28 +34129,28 @@ return { [2]="support_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1590]={ + [1595]={ [1]={ }, stats={ [1]="support_herbalism_life_recovery_+%_from_life_flasks" } }, - [1591]={ + [1596]={ [1]={ }, stats={ [1]="support_hinder_dots_also_apply_hinder" } }, - [1592]={ + [1597]={ [1]={ }, stats={ [1]="support_holy_descent_consecrated_ground_duration_ms" } }, - [1593]={ + [1598]={ [1]={ [1]={ limit={ @@ -34099,7 +34179,7 @@ return { [1]="support_hypothermia_hit_damage_freeze_multiplier_+%_final" } }, - [1594]={ + [1599]={ [1]={ }, stats={ @@ -34107,7 +34187,7 @@ return { [2]="support_ice_bite_virtual_buff_duration" } }, - [1595]={ + [1600]={ [1]={ [1]={ limit={ @@ -34136,7 +34216,7 @@ return { [1]="support_ignite_duration_ignite_effect_+%_final" } }, - [1596]={ + [1601]={ [1]={ [1]={ limit={ @@ -34165,21 +34245,21 @@ return { [1]="support_ignite_prolif_ignite_effect_+%_final" } }, - [1597]={ + [1602]={ [1]={ }, stats={ [1]="support_ignite_proliferation_radius" } }, - [1598]={ + [1603]={ [1]={ }, stats={ [1]="support_impact_shockwave_non_slam_aftershock_on_heavy_stun_radius" } }, - [1599]={ + [1604]={ [1]={ [1]={ limit={ @@ -34200,7 +34280,7 @@ return { [2]="support_inevitable_criticals_critical_strike_chance_+%_cap" } }, - [1600]={ + [1605]={ [1]={ [1]={ limit={ @@ -34238,7 +34318,7 @@ return { [2]="support_inevitable_criticals_critical_strike_multiplier_+%_final_cap" } }, - [1601]={ + [1606]={ [1]={ }, stats={ @@ -34246,7 +34326,7 @@ return { [2]="support_innervate_buff_duration_ms" } }, - [1602]={ + [1607]={ [1]={ [1]={ limit={ @@ -34275,21 +34355,21 @@ return { [1]="support_jagged_ground_area_of_effect_+%_final" } }, - [1603]={ + [1608]={ [1]={ }, stats={ [1]="support_knockback_wave_on_stunned" } }, - [1604]={ + [1609]={ [1]={ }, stats={ [1]="support_life_flask_charges_gained_+%_final_from_killing_blow" } }, - [1605]={ + [1610]={ [1]={ [1]={ [1]={ @@ -34322,7 +34402,7 @@ return { [1]="support_lifetap_buff_duration" } }, - [1606]={ + [1611]={ [1]={ [1]={ limit={ @@ -34338,7 +34418,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [1607]={ + [1612]={ [1]={ [1]={ limit={ @@ -34354,7 +34434,7 @@ return { [1]="support_lockdown_distance_based_pin_damage_+%_final" } }, - [1608]={ + [1613]={ [1]={ [1]={ limit={ @@ -34383,7 +34463,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [1609]={ + [1614]={ [1]={ [1]={ limit={ @@ -34412,14 +34492,14 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [1610]={ + [1615]={ [1]={ }, stats={ [1]="support_mana_flask_charges_gained_+%_final_from_killing_blow" } }, - [1611]={ + [1616]={ [1]={ [1]={ limit={ @@ -34448,7 +34528,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1612]={ + [1617]={ [1]={ [1]={ limit={ @@ -34469,7 +34549,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1613]={ + [1618]={ [1]={ [1]={ limit={ @@ -34498,7 +34578,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1614]={ + [1619]={ [1]={ [1]={ limit={ @@ -34527,7 +34607,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1615]={ + [1620]={ [1]={ }, stats={ @@ -34535,7 +34615,7 @@ return { [2]="support_minion_pact_damage_+%_final" } }, - [1616]={ + [1621]={ [1]={ [1]={ limit={ @@ -34564,7 +34644,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1617]={ + [1622]={ [1]={ [1]={ limit={ @@ -34593,7 +34673,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1618]={ + [1623]={ [1]={ [1]={ [1]={ @@ -34613,7 +34693,7 @@ return { [1]="support_mirage_archer_duration" } }, - [1619]={ + [1624]={ [1]={ [1]={ [1]={ @@ -34655,7 +34735,7 @@ return { [2]="support_momnetum_damage_+%_final_with_momentum" } }, - [1620]={ + [1625]={ [1]={ [1]={ [1]={ @@ -34675,21 +34755,21 @@ return { [1]="intimidate_enemies_when_they_enter_your_presence_duration_ms" } }, - [1621]={ + [1626]={ [1]={ }, stats={ [1]="support_mothers_ward_duration_ms" } }, - [1622]={ + [1627]={ [1]={ }, stats={ [1]="support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned" } }, - [1623]={ + [1628]={ [1]={ [1]={ [1]={ @@ -34722,7 +34802,7 @@ return { [1]="support_overkill_icy_vortex_duration_ms" } }, - [1624]={ + [1629]={ [1]={ [1]={ limit={ @@ -34747,7 +34827,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1625]={ + [1630]={ [1]={ [1]={ limit={ @@ -34763,14 +34843,14 @@ return { [1]="support_physical_damage_%_to_gain_as_daze_build_up" } }, - [1626]={ + [1631]={ [1]={ }, stats={ [1]="support_pierce_projectile_damage_+%_final_if_pierced_enemy" } }, - [1627]={ + [1632]={ [1]={ [1]={ limit={ @@ -34799,7 +34879,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1628]={ + [1633]={ [1]={ [1]={ limit={ @@ -34815,7 +34895,7 @@ return { [1]="support_precision_accuracy_rating_+%" } }, - [1629]={ + [1634]={ [1]={ [1]={ limit={ @@ -34844,7 +34924,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1630]={ + [1635]={ [1]={ [1]={ [1]={ @@ -34864,7 +34944,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1631]={ + [1636]={ [1]={ }, stats={ @@ -34872,14 +34952,14 @@ return { [2]="support_rageforged_enraged_damage_+%_final" } }, - [1632]={ + [1637]={ [1]={ }, stats={ [1]="support_recover_%_maximum_energy_shield_killing_shocked_enemies" } }, - [1633]={ + [1638]={ [1]={ [1]={ [1]={ @@ -34899,7 +34979,7 @@ return { [1]="support_regenerate_mana_per_minute_on_shock" } }, - [1634]={ + [1639]={ [1]={ [1]={ limit={ @@ -34928,14 +35008,14 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1635]={ + [1640]={ [1]={ }, stats={ [1]="support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy" } }, - [1636]={ + [1641]={ [1]={ [1]={ [1]={ @@ -34960,7 +35040,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1637]={ + [1642]={ [1]={ [1]={ [1]={ @@ -34990,35 +35070,35 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1638]={ + [1643]={ [1]={ }, stats={ [1]="support_slam_chance_for_one_additional_aftershock_%" } }, - [1639]={ + [1644]={ [1]={ }, stats={ [1]="support_slam_chance_for_three_additional_aftershocks_%" } }, - [1640]={ + [1645]={ [1]={ }, stats={ [1]="support_slam_chance_for_two_additional_aftershocks_%" } }, - [1641]={ + [1646]={ [1]={ }, stats={ [1]="support_slam_spend_X_ward_to_become_runic_boosted" } }, - [1642]={ + [1647]={ [1]={ [1]={ [1]={ @@ -35051,7 +35131,7 @@ return { [1]="support_slashing_buff_duration_ms" } }, - [1643]={ + [1648]={ [1]={ [1]={ limit={ @@ -35080,7 +35160,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1644]={ + [1649]={ [1]={ [1]={ limit={ @@ -35096,7 +35176,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [1645]={ + [1650]={ [1]={ [1]={ limit={ @@ -35172,7 +35252,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1646]={ + [1651]={ [1]={ [1]={ limit={ @@ -35201,7 +35281,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1647]={ + [1652]={ [1]={ [1]={ limit={ @@ -35230,14 +35310,14 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1648]={ + [1653]={ [1]={ }, stats={ [1]="support_spell_cascade_area_of_effect_+%_for_cascade" } }, - [1649]={ + [1654]={ [1]={ }, stats={ @@ -35245,14 +35325,14 @@ return { [2]="support_spell_cascade_sideways" } }, - [1650]={ + [1655]={ [1]={ }, stats={ [1]="support_spell_echo_area_of_effect_+%_final" } }, - [1651]={ + [1656]={ [1]={ [1]={ limit={ @@ -35281,7 +35361,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_0" } }, - [1652]={ + [1657]={ [1]={ [1]={ limit={ @@ -35310,7 +35390,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_1" } }, - [1653]={ + [1658]={ [1]={ [1]={ limit={ @@ -35339,7 +35419,7 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_2" } }, - [1654]={ + [1659]={ [1]={ [1]={ limit={ @@ -35368,35 +35448,35 @@ return { [1]="support_spell_echo_area_of_effect_+%_final_for_cascade_3" } }, - [1655]={ + [1660]={ [1]={ }, stats={ [1]="support_spell_echo_number_of_echo_cascades" } }, - [1656]={ + [1661]={ [1]={ }, stats={ [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1657]={ + [1662]={ [1]={ }, stats={ [1]="support_stability_heavy_stun_threshold_+%_final_while_performing_action" } }, - [1658]={ + [1663]={ [1]={ }, stats={ [1]="support_stomping_ground" } }, - [1659]={ + [1664]={ [1]={ [1]={ limit={ @@ -35425,7 +35505,7 @@ return { [1]="support_storm_barrier_chaos_damage_+%_final_to_apply" } }, - [1660]={ + [1665]={ [1]={ [1]={ limit={ @@ -35454,7 +35534,7 @@ return { [1]="support_storm_barrier_cold_damage_+%_final_to_apply" } }, - [1661]={ + [1666]={ [1]={ [1]={ [1]={ @@ -35487,7 +35567,7 @@ return { [1]="support_storm_barrier_damage_buff_duration_ms" } }, - [1662]={ + [1667]={ [1]={ [1]={ limit={ @@ -35516,7 +35596,7 @@ return { [1]="support_storm_barrier_fire_damage_+%_final_to_apply" } }, - [1663]={ + [1668]={ [1]={ [1]={ limit={ @@ -35545,7 +35625,7 @@ return { [1]="support_storm_barrier_lightning_damage_+%_final_to_apply" } }, - [1664]={ + [1669]={ [1]={ [1]={ limit={ @@ -35574,7 +35654,7 @@ return { [1]="support_storm_barrier_physical_damage_+%_final_to_apply" } }, - [1665]={ + [1670]={ [1]={ [1]={ [1]={ @@ -35594,7 +35674,7 @@ return { [1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final" } }, - [1666]={ + [1671]={ [1]={ [1]={ [1]={ @@ -35614,7 +35694,7 @@ return { [1]="support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling" } }, - [1667]={ + [1672]={ [1]={ [1]={ [1]={ @@ -35634,7 +35714,7 @@ return { [1]="support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling" } }, - [1668]={ + [1673]={ [1]={ [1]={ [1]={ @@ -35654,7 +35734,7 @@ return { [1]="support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling" } }, - [1669]={ + [1674]={ [1]={ [1]={ [1]={ @@ -35674,7 +35754,7 @@ return { [1]="support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling" } }, - [1670]={ + [1675]={ [1]={ [1]={ limit={ @@ -35703,14 +35783,14 @@ return { [1]="support_stronger_ignites_ignite_effect_+%_final" } }, - [1671]={ + [1676]={ [1]={ }, stats={ [1]="support_trigger_mana_flare_on_crit" } }, - [1672]={ + [1677]={ [1]={ [1]={ limit={ @@ -35739,28 +35819,28 @@ return { [1]="support_unbound_ailments_damaging_ailment_effect_+%_final" } }, - [1673]={ + [1678]={ [1]={ }, stats={ [1]="support_unbreakable_light_stun_threshold_+%_final_while_performing_action" } }, - [1674]={ + [1679]={ [1]={ }, stats={ [1]="support_vitality_life_regeneration_rate_per_minute_%" } }, - [1675]={ + [1680]={ [1]={ }, stats={ [1]="support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies" } }, - [1676]={ + [1681]={ [1]={ }, stats={ @@ -35768,7 +35848,7 @@ return { [2]="support_enraged_warcry_+%_damage_final_for_exerted_attacks" } }, - [1677]={ + [1682]={ [1]={ [1]={ limit={ @@ -35797,7 +35877,7 @@ return { [1]="support_weapon_elemental_damage_+%_final" } }, - [1678]={ + [1683]={ [1]={ [1]={ limit={ @@ -35813,7 +35893,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1679]={ + [1684]={ [1]={ [1]={ limit={ @@ -35829,7 +35909,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1680]={ + [1685]={ [1]={ [1]={ limit={ @@ -35845,7 +35925,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1681]={ + [1686]={ [1]={ [1]={ limit={ @@ -35861,7 +35941,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1682]={ + [1687]={ [1]={ [1]={ limit={ @@ -35877,7 +35957,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1683]={ + [1688]={ [1]={ [1]={ [1]={ @@ -35897,7 +35977,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [1684]={ + [1689]={ [1]={ [1]={ limit={ @@ -35913,7 +35993,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%" } }, - [1685]={ + [1690]={ [1]={ [1]={ limit={ @@ -35929,7 +36009,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge" } }, - [1686]={ + [1691]={ [1]={ [1]={ limit={ @@ -35954,7 +36034,7 @@ return { [1]="temper_weapon_empowers_per_strike" } }, - [1687]={ + [1692]={ [1]={ [1]={ limit={ @@ -35983,7 +36063,7 @@ return { [1]="tempest_bell_damage_+%_final_per_time_hit" } }, - [1688]={ + [1693]={ [1]={ [1]={ limit={ @@ -36012,7 +36092,7 @@ return { [1]="tethered_enemies_take_attack_projectile_damage_taken_+%" } }, - [1689]={ + [1694]={ [1]={ [1]={ [1]={ @@ -36032,7 +36112,7 @@ return { [1]="tethered_movement_speed_+%_final" } }, - [1690]={ + [1695]={ [1]={ [1]={ limit={ @@ -36061,7 +36141,7 @@ return { [1]="tethered_movement_speed_+%_final_vs_unique_and_rare" } }, - [1691]={ + [1696]={ [1]={ [1]={ limit={ @@ -36077,21 +36157,21 @@ return { [1]="tethering_arrow_display_rope_limit" } }, - [1692]={ + [1697]={ [1]={ }, stats={ [1]="thorns_critical_hit_damage_bonus" } }, - [1693]={ + [1698]={ [1]={ }, stats={ [1]="thorns_critical_strike_chance" } }, - [1694]={ + [1699]={ [1]={ [1]={ limit={ @@ -36107,14 +36187,14 @@ return { [1]="thorns_damage_modifiers_apply_to_spell_damage" } }, - [1695]={ + [1700]={ [1]={ }, stats={ [1]="thorns_effetive_total_chance_permyriad_for_hit_to_be_critical" } }, - [1696]={ + [1701]={ [1]={ }, stats={ @@ -36122,7 +36202,7 @@ return { [2]="thorns_maximum_chaos_damage" } }, - [1697]={ + [1702]={ [1]={ }, stats={ @@ -36130,7 +36210,7 @@ return { [2]="thorns_maximum_cold_damage" } }, - [1698]={ + [1703]={ [1]={ }, stats={ @@ -36138,7 +36218,7 @@ return { [2]="thorns_maximum_fire_damage" } }, - [1699]={ + [1704]={ [1]={ }, stats={ @@ -36147,7 +36227,7 @@ return { [3]="thorns_lightning_damage_only_min_or_max" } }, - [1700]={ + [1705]={ [1]={ }, stats={ @@ -36155,7 +36235,7 @@ return { [2]="thorns_maximum_physical_damage" } }, - [1701]={ + [1706]={ [1]={ }, stats={ @@ -36163,7 +36243,7 @@ return { [2]="thorns_maximum_total_damage" } }, - [1702]={ + [1707]={ [1]={ [1]={ limit={ @@ -36179,7 +36259,7 @@ return { [1]="thunderous_leap_%_chance_for_shocked_ground_when_detonating" } }, - [1703]={ + [1708]={ [1]={ [1]={ limit={ @@ -36208,7 +36288,7 @@ return { [1]="time_of_need_global_life_regeneration_rate_granted_+%" } }, - [1704]={ + [1709]={ [1]={ [1]={ [1]={ @@ -36241,14 +36321,14 @@ return { [1]="tornado_base_damage_interval_ms" } }, - [1705]={ + [1710]={ [1]={ }, stats={ [1]="tornado_damage_interval_ms" } }, - [1706]={ + [1711]={ [1]={ [1]={ [1]={ @@ -36268,7 +36348,7 @@ return { [1]="tornado_hinder" } }, - [1707]={ + [1712]={ [1]={ [1]={ limit={ @@ -36297,14 +36377,14 @@ return { [1]="tornado_movement_speed_+%" } }, - [1708]={ + [1713]={ [1]={ }, stats={ [1]="total_number_of_projectiles_to_fire_from_stats" } }, - [1709]={ + [1714]={ [1]={ [1]={ [1]={ @@ -36324,7 +36404,7 @@ return { [1]="totem_duration" } }, - [1710]={ + [1715]={ [1]={ [1]={ limit={ @@ -36340,7 +36420,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [1711]={ + [1716]={ [1]={ [1]={ [1]={ @@ -36360,14 +36440,14 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [1712]={ + [1717]={ [1]={ }, stats={ [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [1713]={ + [1718]={ [1]={ [1]={ limit={ @@ -36383,7 +36463,7 @@ return { [1]="trap_can_be_triggered_by_warcries" } }, - [1714]={ + [1719]={ [1]={ [1]={ limit={ @@ -36399,7 +36479,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1715]={ + [1720]={ [1]={ [1]={ limit={ @@ -36428,7 +36508,7 @@ return { [1]="trap_spread_+%" } }, - [1716]={ + [1721]={ [1]={ [1]={ limit={ @@ -36457,7 +36537,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1717]={ + [1722]={ [1]={ [1]={ limit={ @@ -36486,7 +36566,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1718]={ + [1723]={ [1]={ [1]={ limit={ @@ -36515,7 +36595,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [1719]={ + [1724]={ [1]={ [1]={ limit={ @@ -36625,7 +36705,7 @@ return { [3]="trauma_strike_self_damage_per_trauma" } }, - [1720]={ + [1725]={ [1]={ [1]={ limit={ @@ -36654,7 +36734,7 @@ return { [1]="trauma_strike_damage_+%_final_per_trauma" } }, - [1721]={ + [1726]={ [1]={ [1]={ limit={ @@ -36683,7 +36763,7 @@ return { [1]="trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%" } }, - [1722]={ + [1727]={ [1]={ [1]={ limit={ @@ -36708,7 +36788,7 @@ return { [1]="trigger_after_spending_200_mana_%_chance" } }, - [1723]={ + [1728]={ [1]={ [1]={ limit={ @@ -36737,7 +36817,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1724]={ + [1729]={ [1]={ [1]={ limit={ @@ -36753,7 +36833,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1725]={ + [1730]={ [1]={ [1]={ limit={ @@ -36778,7 +36858,7 @@ return { [1]="trigger_on_block_%_chance" } }, - [1726]={ + [1731]={ [1]={ [1]={ limit={ @@ -36803,7 +36883,7 @@ return { [1]="trigger_on_bow_attack_%" } }, - [1727]={ + [1732]={ [1]={ [1]={ limit={ @@ -36828,7 +36908,7 @@ return { [1]="trigger_on_corpse_consume_%_chance" } }, - [1728]={ + [1733]={ [1]={ [1]={ limit={ @@ -36853,7 +36933,7 @@ return { [1]="trigger_on_heavy_stun_%" } }, - [1729]={ + [1734]={ [1]={ [1]={ limit={ @@ -36869,7 +36949,7 @@ return { [1]="trigger_on_hit_against_rare_or_unique_if_no_marked_enemy" } }, - [1730]={ + [1735]={ [1]={ [1]={ limit={ @@ -36894,7 +36974,7 @@ return { [1]="trigger_on_hit_vs_frozen_enemy_%" } }, - [1731]={ + [1736]={ [1]={ [1]={ limit={ @@ -36919,7 +36999,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_void_arrow" } }, - [1732]={ + [1737]={ [1]={ [1]={ limit={ @@ -36944,7 +37024,7 @@ return { [1]="trigger_on_slam_%_chance" } }, - [1733]={ + [1738]={ [1]={ [1]={ limit={ @@ -36960,7 +37040,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1734]={ + [1739]={ [1]={ [1]={ limit={ @@ -36985,21 +37065,21 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1735]={ + [1740]={ [1]={ }, stats={ [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [1736]={ + [1741]={ [1]={ }, stats={ [1]="trigger_vicious_hex_explosion_when_curse_ends" } }, - [1737]={ + [1742]={ [1]={ [1]={ limit={ @@ -37015,7 +37095,7 @@ return { [1]="triggered_by_brand_support" } }, - [1738]={ + [1743]={ [1]={ [1]={ limit={ @@ -37031,7 +37111,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1739]={ + [1744]={ [1]={ [1]={ limit={ @@ -37074,7 +37154,7 @@ return { [3]="virtual_energy_cost_for_generic_ongoing_trigger" } }, - [1740]={ + [1745]={ [1]={ [1]={ limit={ @@ -37090,7 +37170,7 @@ return { [1]="triggered_by_item_buff" } }, - [1741]={ + [1746]={ [1]={ [1]={ limit={ @@ -37106,7 +37186,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1742]={ + [1747]={ [1]={ [1]={ limit={ @@ -37122,7 +37202,7 @@ return { [1]="trinity_%_physical_damage_to_convert_to_random_element_granted" } }, - [1743]={ + [1748]={ [1]={ [1]={ [1]={ @@ -37142,7 +37222,7 @@ return { [1]="use_time_+_ms_if_shapeshift_required" } }, - [1744]={ + [1749]={ [1]={ [1]={ limit={ @@ -37158,7 +37238,7 @@ return { [1]="vaal_animate_weapon_raise_up_to_X_weapons_as_uniques" } }, - [1745]={ + [1750]={ [1]={ [1]={ limit={ @@ -37187,7 +37267,7 @@ return { [1]="vaal_arctic_armour_damage_taken_+%_final_from_hits" } }, - [1746]={ + [1751]={ [1]={ [1]={ limit={ @@ -37212,7 +37292,7 @@ return { [1]="vaal_arctic_armour_number_of_hits_absorbed" } }, - [1747]={ + [1752]={ [1]={ [1]={ limit={ @@ -37228,7 +37308,7 @@ return { [1]="vaal_blade_vortex_has_10_spinning_blades" } }, - [1748]={ + [1753]={ [1]={ [1]={ limit={ @@ -37257,7 +37337,7 @@ return { [1]="vaal_charged_attack_damage_taken_+%_final" } }, - [1749]={ + [1754]={ [1]={ [1]={ limit={ @@ -37273,7 +37353,7 @@ return { [1]="vaal_charged_attack_radius_+_per_stage" } }, - [1750]={ + [1755]={ [1]={ [1]={ limit={ @@ -37294,7 +37374,7 @@ return { [2]="vaal_cleave_executioner_damage_against_enemies_on_low_life_+%" } }, - [1751]={ + [1756]={ [1]={ [1]={ limit={ @@ -37310,7 +37390,7 @@ return { [1]="vaal_earthquake_maximum_aftershocks" } }, - [1752]={ + [1757]={ [1]={ [1]={ [1]={ @@ -37343,7 +37423,7 @@ return { [1]="vaal_flameblast_radius_+_per_stage" } }, - [1753]={ + [1758]={ [1]={ [1]={ limit={ @@ -37359,7 +37439,7 @@ return { [1]="vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages" } }, - [1754]={ + [1759]={ [1]={ [1]={ limit={ @@ -37375,7 +37455,7 @@ return { [1]="vaal_reap_additional_maximum_blood_charges" } }, - [1755]={ + [1760]={ [1]={ [1]={ limit={ @@ -37391,7 +37471,7 @@ return { [1]="vaal_reap_gain_maximum_blood_charges_to_on_use" } }, - [1756]={ + [1761]={ [1]={ [1]={ limit={ @@ -37407,7 +37487,7 @@ return { [1]="vaal_skill_exertable" } }, - [1757]={ + [1762]={ [1]={ [1]={ [1]={ @@ -37440,7 +37520,7 @@ return { [1]="vaal_storm_call_delay_ms" } }, - [1758]={ + [1763]={ [1]={ [1]={ limit={ @@ -37469,7 +37549,7 @@ return { [1]="vaal_upgrade_minion_damage_+%_final" } }, - [1759]={ + [1764]={ [1]={ [1]={ limit={ @@ -37498,7 +37578,7 @@ return { [1]="vaal_upgrade_minion_damage_taken_+%_final" } }, - [1760]={ + [1765]={ [1]={ [1]={ limit={ @@ -37514,7 +37594,7 @@ return { [1]="vaal_volcanic_fissure_crack_repeat_count" } }, - [1761]={ + [1766]={ [1]={ [1]={ limit={ @@ -37543,7 +37623,7 @@ return { [1]="vampiric_icon_bleeding_effect_+%_final" } }, - [1762]={ + [1767]={ [1]={ [1]={ limit={ @@ -37559,7 +37639,7 @@ return { [1]="verisium_infusion_do_not_expire" } }, - [1763]={ + [1768]={ [1]={ [1]={ ["gem_quality"]=true, @@ -37598,7 +37678,7 @@ return { [1]="verisium_infusion_duration_+%" } }, - [1764]={ + [1769]={ [1]={ [1]={ limit={ @@ -37623,21 +37703,21 @@ return { [1]="verisium_infusion_skill_number_of_verisium_infusion_to_grant" } }, - [1765]={ + [1770]={ [1]={ }, stats={ [1]="virtual_aegis_unique_shield_max_value" } }, - [1766]={ + [1771]={ [1]={ }, stats={ [1]="virtual_armour_+%_while_performing_action_per_250_ms_attack_time" } }, - [1767]={ + [1772]={ [1]={ [1]={ limit={ @@ -37662,7 +37742,7 @@ return { [1]="virtual_bladefall_number_of_volleys" } }, - [1768]={ + [1773]={ [1]={ [1]={ limit={ @@ -37678,21 +37758,21 @@ return { [1]="virtual_blood_spears_total_number_of_spears" } }, - [1769]={ + [1774]={ [1]={ }, stats={ [1]="virtual_chance_to_daze_%" } }, - [1770]={ + [1775]={ [1]={ }, stats={ [1]="virtual_chill_effect_+%_final" } }, - [1771]={ + [1776]={ [1]={ [1]={ limit={ @@ -37708,98 +37788,98 @@ return { [1]="virtual_chill_minimum_slow_%" } }, - [1772]={ + [1777]={ [1]={ }, stats={ [1]="virtual_crossbow_attack_%_chance_to_not_consume_ammo" } }, - [1773]={ + [1778]={ [1]={ }, stats={ [1]="virtual_curse_delay_duration_ms" } }, - [1774]={ + [1779]={ [1]={ }, stats={ [1]="virtual_damage_absorbed_per_jade_consumed" } }, - [1775]={ + [1780]={ [1]={ }, stats={ [1]="virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time" } }, - [1776]={ + [1781]={ [1]={ }, stats={ [1]="virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time" } }, - [1777]={ + [1782]={ [1]={ }, stats={ [1]="virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%" } }, - [1778]={ + [1783]={ [1]={ }, stats={ [1]="virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%" } }, - [1779]={ + [1784]={ [1]={ }, stats={ [1]="virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%" } }, - [1780]={ + [1785]={ [1]={ }, stats={ [1]="virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%" } }, - [1781]={ + [1786]={ [1]={ }, stats={ [1]="virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%" } }, - [1782]={ + [1787]={ [1]={ }, stats={ [1]="virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%" } }, - [1783]={ + [1788]={ [1]={ }, stats={ [1]="virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%" } }, - [1784]={ + [1789]={ [1]={ }, stats={ [1]="virtual_display_total_spell_chance_to_inflict_poison_on_hit_%" } }, - [1785]={ + [1790]={ [1]={ [1]={ limit={ @@ -37815,35 +37895,35 @@ return { [1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap" } }, - [1786]={ + [1791]={ [1]={ }, stats={ [1]="virtual_energy_shield_modified_amount_on_skill_use" } }, - [1787]={ + [1792]={ [1]={ }, stats={ [1]="virtual_evasion_+%_while_performing_action_per_250_ms_attack_time" } }, - [1788]={ + [1793]={ [1]={ }, stats={ [1]="virtual_flameblast_maximum_stages" } }, - [1789]={ + [1794]={ [1]={ }, stats={ [1]="virtual_generic_ongoing_trigger_maximum_energy" } }, - [1790]={ + [1795]={ [1]={ [1]={ limit={ @@ -37864,7 +37944,7 @@ return { [2]="virtual_ground_effect_area_of_effect_+%_final_per_second_max" } }, - [1791]={ + [1796]={ [1]={ [1]={ [1]={ @@ -37884,7 +37964,7 @@ return { [1]="virtual_herald_of_thunder_bolt_base_frequency" } }, - [1792]={ + [1797]={ [1]={ [1]={ limit={ @@ -37922,56 +38002,56 @@ return { [1]="virtual_hit_damage_stun_multiplier_+%_final" } }, - [1793]={ + [1798]={ [1]={ }, stats={ [1]="virtual_knockback_distance_+%" } }, - [1794]={ + [1799]={ [1]={ }, stats={ [1]="virtual_life_modified_amount_on_skill_use" } }, - [1795]={ + [1800]={ [1]={ }, stats={ [1]="virtual_main_hand_apply_X_armour_break_on_hit" } }, - [1796]={ + [1801]={ [1]={ }, stats={ [1]="virtual_main_hand_hit_damage_stun_multiplier_+%" } }, - [1797]={ + [1802]={ [1]={ }, stats={ [1]="virtual_main_hand_melee_splash_chance_%" } }, - [1798]={ + [1803]={ [1]={ }, stats={ [1]="virtual_main_hand_slam_aftershock_chance_%" } }, - [1799]={ + [1804]={ [1]={ }, stats={ [1]="virtual_mana_modified_amount_on_skill_use" } }, - [1800]={ + [1805]={ [1]={ [1]={ [1]={ @@ -37991,7 +38071,7 @@ return { [1]="virtual_mine_detonation_time_ms" } }, - [1801]={ + [1806]={ [1]={ [1]={ limit={ @@ -38029,35 +38109,35 @@ return { [1]="virtual_movement_speed_penalty_+%_final_while_performing_action" } }, - [1802]={ + [1807]={ [1]={ }, stats={ [1]="virtual_never_chill" } }, - [1803]={ + [1808]={ [1]={ }, stats={ [1]="virtual_never_freeze" } }, - [1804]={ + [1809]={ [1]={ }, stats={ [1]="virtual_never_ignite" } }, - [1805]={ + [1810]={ [1]={ }, stats={ [1]="virtual_never_shock" } }, - [1806]={ + [1811]={ [1]={ [1]={ limit={ @@ -38082,14 +38162,14 @@ return { [1]="virtual_number_of_additional_curses_allowed" } }, - [1807]={ + [1812]={ [1]={ }, stats={ [1]="virtual_number_of_banners_allowed" } }, - [1808]={ + [1813]={ [1]={ [1]={ limit={ @@ -38105,7 +38185,7 @@ return { [1]="display_number_of_chains_for_beams" } }, - [1809]={ + [1814]={ [1]={ [1]={ limit={ @@ -38121,42 +38201,42 @@ return { [1]="display_number_of_chains_for_projectiles" } }, - [1810]={ + [1815]={ [1]={ }, stats={ [1]="virtual_number_of_marks_allowed_per_type" } }, - [1811]={ + [1816]={ [1]={ }, stats={ [1]="virtual_off_hand_apply_X_armour_break_on_hit" } }, - [1812]={ + [1817]={ [1]={ }, stats={ [1]="virtual_off_hand_hit_damage_stun_multiplier_+%" } }, - [1813]={ + [1818]={ [1]={ }, stats={ [1]="virtual_off_hand_melee_splash_chance_%" } }, - [1814]={ + [1819]={ [1]={ }, stats={ [1]="virtual_off_hand_slam_aftershock_chance_%" } }, - [1815]={ + [1820]={ [1]={ [1]={ limit={ @@ -38181,14 +38261,14 @@ return { [1]="virtual_onslaught_on_hit_%_chance" } }, - [1816]={ + [1821]={ [1]={ }, stats={ [1]="virtual_physical_damage_can_pin" } }, - [1817]={ + [1822]={ [1]={ [1]={ limit={ @@ -38204,21 +38284,21 @@ return { [1]="virtual_poison_cloud_limit" } }, - [1818]={ + [1823]={ [1]={ }, stats={ [1]="display_projectile_number_to_split" } }, - [1819]={ + [1824]={ [1]={ }, stats={ [1]="virtual_projectiles_fork" } }, - [1820]={ + [1825]={ [1]={ [1]={ limit={ @@ -38234,28 +38314,28 @@ return { [1]="virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [1821]={ + [1826]={ [1]={ }, stats={ [1]="virtual_ritual_of_power_maximum_number_of_rituals" } }, - [1822]={ + [1827]={ [1]={ }, stats={ [1]="virtual_sandstorm_swipe_max_stages" } }, - [1823]={ + [1828]={ [1]={ }, stats={ [1]="virtual_skill_required_number_of_combo_stacks" } }, - [1824]={ + [1829]={ [1]={ [1]={ limit={ @@ -38271,7 +38351,7 @@ return { [1]="virtual_spell_apply_X_armour_break_on_hit" } }, - [1825]={ + [1830]={ [1]={ [1]={ [1]={ @@ -38291,7 +38371,7 @@ return { [1]="virtual_spider_aspect_web_interval_ms" } }, - [1826]={ + [1831]={ [1]={ [1]={ [1]={ @@ -38324,7 +38404,7 @@ return { [1]="virtual_static_strike_base_zap_frequency_ms" } }, - [1827]={ + [1832]={ [1]={ [1]={ limit={ @@ -38345,28 +38425,28 @@ return { [2]="virtual_steelskin_damage_limit" } }, - [1828]={ + [1833]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_one_additional_aftershock_%" } }, - [1829]={ + [1834]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_three_additional_aftershocks_%" } }, - [1830]={ + [1835]={ [1]={ }, stats={ [1]="virtual_support_slam_chance_for_two_additional_aftershocks_%" } }, - [1831]={ + [1836]={ [1]={ [1]={ [1]={ @@ -38386,7 +38466,7 @@ return { [1]="virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling" } }, - [1832]={ + [1837]={ [1]={ [1]={ limit={ @@ -38402,35 +38482,35 @@ return { [1]="virtual_tectonic_slam_%_chance_to_do_charged_slam" } }, - [1833]={ + [1838]={ [1]={ }, stats={ [1]="virtual_total_cooldown_count" } }, - [1834]={ + [1839]={ [1]={ }, stats={ [1]="virtual_totem_cold_resistance_%" } }, - [1835]={ + [1840]={ [1]={ }, stats={ [1]="virtual_totem_fire_resistance_%" } }, - [1836]={ + [1841]={ [1]={ }, stats={ [1]="virtual_totem_lightning_resistance_%" } }, - [1837]={ + [1842]={ [1]={ [1]={ limit={ @@ -38459,7 +38539,7 @@ return { [1]="virtual_trap_and_mine_throwing_time_+%_final" } }, - [1838]={ + [1843]={ [1]={ [1]={ limit={ @@ -38484,7 +38564,7 @@ return { [1]="virtual_vaal_lightning_arrow_number_of_redirects" } }, - [1839]={ + [1844]={ [1]={ [1]={ limit={ @@ -38513,7 +38593,7 @@ return { [1]="virulent_arrow_damage_+%_final_per_stage" } }, - [1840]={ + [1845]={ [1]={ [1]={ limit={ @@ -38529,7 +38609,7 @@ return { [1]="virulent_arrow_maximum_number_of_stacks" } }, - [1841]={ + [1846]={ [1]={ [1]={ limit={ @@ -38545,7 +38625,7 @@ return { [1]="virulent_arrow_number_of_pod_projectiles" } }, - [1842]={ + [1847]={ [1]={ [1]={ limit={ @@ -38574,7 +38654,7 @@ return { [1]="virulent_arrow_pod_projectile_damage_+%_final" } }, - [1843]={ + [1848]={ [1]={ [1]={ limit={ @@ -38603,7 +38683,7 @@ return { [1]="volatile_dead_core_movement_speed_+%" } }, - [1844]={ + [1849]={ [1]={ [1]={ limit={ @@ -38619,7 +38699,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [1845]={ + [1850]={ [1]={ [1]={ limit={ @@ -38644,7 +38724,7 @@ return { [1]="volatile_dead_number_of_corpses_to_consume" } }, - [1846]={ + [1851]={ [1]={ [1]={ limit={ @@ -38660,7 +38740,7 @@ return { [1]="volcanic_fissure_maximum_number_of_fissures" } }, - [1847]={ + [1852]={ [1]={ [1]={ limit={ @@ -38689,7 +38769,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [1848]={ + [1853]={ [1]={ [1]={ limit={ @@ -38714,7 +38794,7 @@ return { [1]="volcano_base_number_of_geysers_allowed" } }, - [1849]={ + [1854]={ [1]={ [1]={ limit={ @@ -38730,7 +38810,7 @@ return { [1]="volcano_damage_+%_final_per_stage" } }, - [1850]={ + [1855]={ [1]={ [1]={ [1]={ @@ -38763,7 +38843,7 @@ return { [1]="volcano_fires_projectiles_every_x_ms" } }, - [1851]={ + [1856]={ [1]={ [1]={ limit={ @@ -38779,7 +38859,7 @@ return { [1]="volcano_maximum_number_of_stages" } }, - [1852]={ + [1857]={ [1]={ [1]={ [1]={ @@ -38799,7 +38879,7 @@ return { [1]="volcano_skill_effect_duration_per_stage" } }, - [1853]={ + [1858]={ [1]={ [1]={ limit={ @@ -38828,14 +38908,14 @@ return { [1]="voltaxic_burst_damage_+%_final_per_stack" } }, - [1854]={ + [1859]={ [1]={ }, stats={ [1]="wall_is_created_in_a_circle_instead" } }, - [1855]={ + [1860]={ [1]={ [1]={ limit={ @@ -38851,7 +38931,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [1856]={ + [1861]={ [1]={ [1]={ limit={ @@ -38867,7 +38947,7 @@ return { [1]="rallying_cry_weapon_damage_%_for_allies_per_5_monster_power" } }, - [1857]={ + [1862]={ [1]={ [1]={ limit={ @@ -38883,7 +38963,7 @@ return { [1]="intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP" } }, - [1858]={ + [1863]={ [1]={ [1]={ limit={ @@ -38904,7 +38984,7 @@ return { [2]="ancestral_cry_max_physical_damage_reduction_rating" } }, - [1859]={ + [1864]={ [1]={ [1]={ limit={ @@ -38920,7 +39000,7 @@ return { [1]="ancestral_cry_x_melee_range_per_5_monster_power" } }, - [1860]={ + [1865]={ [1]={ [1]={ limit={ @@ -38936,7 +39016,7 @@ return { [1]="infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power" } }, - [1861]={ + [1866]={ [1]={ [1]={ limit={ @@ -38952,7 +39032,7 @@ return { [1]="endurance_charge_granted_per_X_monster_power_during_endurance_warcry" } }, - [1862]={ + [1867]={ [1]={ [1]={ limit={ @@ -38973,7 +39053,7 @@ return { [2]="maximum_number_of_spiritual_cry_warriors" } }, - [1863]={ + [1868]={ [1]={ [1]={ limit={ @@ -39002,7 +39082,7 @@ return { [1]="divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%" } }, - [1864]={ + [1869]={ [1]={ [1]={ limit={ @@ -39018,7 +39098,7 @@ return { [1]="divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%" } }, - [1865]={ + [1870]={ [1]={ [1]={ limit={ @@ -39047,7 +39127,7 @@ return { [1]="rallying_cry_buff_effect_on_minions_+%_final" } }, - [1866]={ + [1871]={ [1]={ [1]={ limit={ @@ -39081,7 +39161,7 @@ return { [2]="warcry_empowers_per_X_monster_power_mp_cap" } }, - [1867]={ + [1872]={ [1]={ [1]={ limit={ @@ -39532,7 +39612,7 @@ return { [3]="skill_empower_limitation_specifier_for_stat_description" } }, - [1868]={ + [1873]={ [1]={ [1]={ limit={ @@ -39557,7 +39637,7 @@ return { [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" } }, - [1869]={ + [1874]={ [1]={ [1]={ limit={ @@ -39573,7 +39653,7 @@ return { [1]="rallying_cry_damage_+%_final_from_osm_per_nearby_ally" } }, - [1870]={ + [1875]={ [1]={ [1]={ limit={ @@ -39602,7 +39682,7 @@ return { [1]="seismic_cry_base_slam_skill_damage_+%_final" } }, - [1871]={ + [1876]={ [1]={ [1]={ limit={ @@ -39631,7 +39711,7 @@ return { [1]="seismic_cry_slam_skill_damage_+%_final_increase_per_repeat" } }, - [1872]={ + [1877]={ [1]={ [1]={ limit={ @@ -39660,7 +39740,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%" } }, - [1873]={ + [1878]={ [1]={ [1]={ limit={ @@ -39689,7 +39769,7 @@ return { [1]="seismic_cry_slam_skill_area_+%_increase_per_repeat" } }, - [1874]={ + [1879]={ [1]={ [1]={ limit={ @@ -39705,7 +39785,7 @@ return { [1]="display_battlemage_cry_exerted_attacks_trigger_supported_spell" } }, - [1875]={ + [1880]={ [1]={ [1]={ limit={ @@ -39721,7 +39801,7 @@ return { [1]="infernal_cry_empowered_attacks_trigger_combust_display" } }, - [1876]={ + [1881]={ [1]={ [1]={ [1]={ @@ -39741,7 +39821,7 @@ return { [1]="ambush_additional_critical_strike_chance_permyriad" } }, - [1877]={ + [1882]={ [1]={ [1]={ limit={ @@ -39757,7 +39837,7 @@ return { [1]="vanishing_ambush_critical_strike_multiplier_+" } }, - [1878]={ + [1883]={ [1]={ [1]={ limit={ @@ -39773,7 +39853,7 @@ return { [1]="intimidating_cry_empowerd_attacks_deal_double_damage_display" } }, - [1879]={ + [1884]={ [1]={ [1]={ limit={ @@ -39802,7 +39882,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [1880]={ + [1885]={ [1]={ [1]={ limit={ @@ -39827,7 +39907,7 @@ return { [1]="warcry_grant_knockback_%_to_exerted_attacks" } }, - [1881]={ + [1886]={ [1]={ [1]={ limit={ @@ -39843,14 +39923,14 @@ return { [1]="warcry_grant_overwhelm_%_to_exerted_attacks" } }, - [1882]={ + [1887]={ [1]={ }, stats={ [1]="warcry_grant_X_rage_per_5_power" } }, - [1883]={ + [1888]={ [1]={ [1]={ limit={ @@ -39893,7 +39973,7 @@ return { [3]="quality_display_warding_steel_is_gem" } }, - [1884]={ + [1889]={ [1]={ [1]={ limit={ @@ -39909,7 +39989,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [1885]={ + [1890]={ [1]={ [1]={ limit={ @@ -39925,7 +40005,7 @@ return { [1]="water_sphere_does_weird_conversion_stuff" } }, - [1886]={ + [1891]={ [1]={ [1]={ limit={ @@ -39954,7 +40034,7 @@ return { [1]="weapon_trap_rotation_speed_+%" } }, - [1887]={ + [1892]={ [1]={ [1]={ [1]={ @@ -39974,7 +40054,7 @@ return { [1]="weapon_trap_total_rotation_%" } }, - [1888]={ + [1893]={ [1]={ [1]={ limit={ @@ -40003,7 +40083,7 @@ return { [1]="whirling_blades_evasion_rating_+%_while_moving" } }, - [1889]={ + [1894]={ [1]={ [1]={ limit={ @@ -40019,7 +40099,7 @@ return { [1]="whirling_slash_knockback_distance_+%_final_per_stage" } }, - [1890]={ + [1895]={ [1]={ [1]={ limit={ @@ -40048,7 +40128,7 @@ return { [1]="wind_blast_damage_+%_final_from_distance" } }, - [1891]={ + [1896]={ [1]={ [1]={ limit={ @@ -40064,7 +40144,7 @@ return { [1]="winter_brand_max_number_of_stages" } }, - [1892]={ + [1897]={ [1]={ [1]={ limit={ @@ -40080,7 +40160,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1893]={ + [1898]={ [1]={ [1]={ limit={ @@ -40096,7 +40176,7 @@ return { [1]="wither_chance_to_apply_another_stack_if_hand_cast_%" } }, - [1894]={ + [1899]={ [1]={ [1]={ limit={ @@ -40112,14 +40192,14 @@ return { [1]="withered_on_chaos_damage_hit_chance_%" } }, - [1895]={ + [1900]={ [1]={ }, stats={ [1]="withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage" } }, - [1896]={ + [1901]={ [1]={ [1]={ limit={ @@ -40144,7 +40224,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [1897]={ + [1902]={ [1]={ [1]={ limit={ @@ -40169,7 +40249,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [1898]={ + [1903]={ [1]={ [1]={ limit={ @@ -40194,7 +40274,7 @@ return { [1]="withering_step_chance_to_not_remove_on_skill_use_%" } }, - [1899]={ + [1904]={ [1]={ [1]={ [1]={ @@ -40227,7 +40307,7 @@ return { [1]="wolf_lunar_blessing_same_target_trigger_beam_attack_prevention_duration_ms" } }, - [1900]={ + [1905]={ [1]={ [1]={ limit={ @@ -40243,7 +40323,7 @@ return { [1]="wolf_warcry_maximum_number_of_wolves" } }, - [1901]={ + [1906]={ [1]={ [1]={ limit={ @@ -40259,7 +40339,7 @@ return { [1]="wolf_warcry_summon_x_additional_wolf_for_each_endurance_chage_consumed" } }, - [1902]={ + [1907]={ [1]={ [1]={ [1]={ @@ -40292,7 +40372,7 @@ return { [1]="igneous_shield_perfect_block_cooldown_ms" } }, - [1903]={ + [1908]={ [1]={ [1]={ limit={ @@ -40308,7 +40388,7 @@ return { [1]="kinetic_bolt_number_of_zig_zags" } }, - [1904]={ + [1909]={ [1]={ [1]={ limit={ @@ -40337,7 +40417,7 @@ return { [1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self" } }, - [1905]={ + [1910]={ [1]={ [1]={ limit={ @@ -40366,7 +40446,7 @@ return { [1]="lightning_explosion_mine_aura_damage_taken_+%" } }, - [1906]={ + [1911]={ [1]={ [1]={ limit={ @@ -40397,7 +40477,7 @@ return { [4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit" } }, - [1907]={ + [1912]={ [1]={ [1]={ limit={ @@ -40413,7 +40493,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1908]={ + [1913]={ [1]={ [1]={ limit={ @@ -40442,7 +40522,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [1909]={ + [1914]={ [1]={ [1]={ limit={ @@ -40458,7 +40538,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [1910]={ + [1915]={ [1]={ [1]={ limit={ @@ -40474,7 +40554,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1911]={ + [1916]={ [1]={ [1]={ limit={ @@ -40490,7 +40570,7 @@ return { [1]="minions_are_defensive" } }, - [1912]={ + [1917]={ [1]={ [1]={ limit={ @@ -40506,7 +40586,7 @@ return { [1]="display_skill_reserves_in_all_weapon_sets" } }, - [1913]={ + [1918]={ [1]={ [1]={ limit={ @@ -40549,10 +40629,10 @@ return { [3]="quality_display_infernal_cry_is_gem" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1298, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1299, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1300, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1301, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1303, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1304, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1305, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1306, ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=391, ["abyssal_cry_%_max_life_as_chaos_on_death"]=305, ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=303, @@ -40562,2097 +40642,2102 @@ return { ["active_skill_200%_increased_knockback_distance"]=61, ["active_skill_added_damage_+%_final"]=393, ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=394, - ["active_skill_all_damage_%_as_fire_if_heat_is_consumed"]=753, + ["active_skill_all_damage_%_as_fire_if_heat_is_consumed"]=758, ["active_skill_area_damage_+%_final"]=395, ["active_skill_area_of_effect_+%_final"]=70, ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=396, ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=397, ["active_skill_attack_speed_+%_final"]=273, ["active_skill_attack_speed_+%_final_while_dual_wielding"]=398, - ["active_skill_base_area_length_+"]=399, + ["active_skill_base_all_damage_%_to_gain_as_chaos"]=399, + ["active_skill_base_all_damage_%_to_gain_as_cold"]=400, + ["active_skill_base_all_damage_%_to_gain_as_fire"]=401, + ["active_skill_base_all_damage_%_to_gain_as_lightning"]=402, + ["active_skill_base_all_damage_%_to_gain_as_physical"]=403, + ["active_skill_base_area_length_+"]=404, ["active_skill_base_radius_+"]=64, - ["active_skill_base_slow_debuff_movement_speed_+%_final"]=400, - ["active_skill_bleeding_effect_+%_final"]=402, - ["active_skill_bleeding_effect_+%_final_in_blood_stance"]=401, - ["active_skill_can_overload"]=403, - ["active_skill_chaos_damage_+%_final"]=404, - ["active_skill_chill_as_though_damage_+%_final"]=405, + ["active_skill_base_slow_debuff_movement_speed_+%_final"]=405, + ["active_skill_bleeding_effect_+%_final"]=407, + ["active_skill_bleeding_effect_+%_final_in_blood_stance"]=406, + ["active_skill_can_overload"]=408, + ["active_skill_chaos_damage_+%_final"]=409, + ["active_skill_chill_as_though_damage_+%_final"]=410, ["active_skill_chill_effect_+%_final"]=95, - ["active_skill_compounding_ignites"]=406, - ["active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=407, - ["active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final"]=408, - ["active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final"]=409, - ["active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=410, - ["active_skill_cooldown_bypass_type_override_to_power_charge"]=662, - ["active_skill_damage_+%_final_against_enemies_on_full_life"]=415, - ["active_skill_damage_+%_final_against_heavy_stunned_enemies"]=411, - ["active_skill_damage_+%_final_per_time_chained"]=416, - ["active_skill_damage_+%_final_vs_burning_enemies"]=417, - ["active_skill_damage_+%_final_vs_chilled_enemies"]=418, - ["active_skill_damage_+%_final_vs_fully_broken_armour"]=419, - ["active_skill_damage_+%_final_vs_immobilised_enemies"]=412, - ["active_skill_damage_+%_final_vs_unique_enemies"]=413, - ["active_skill_damage_+%_final_while_dual_wielding"]=414, - ["active_skill_damage_+%_when_cast_on_frostbolt"]=420, + ["active_skill_compounding_ignites"]=411, + ["active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=412, + ["active_skill_consume_enemy_freeze_to_gain_damage_against_non_unique_+%_final"]=413, + ["active_skill_consume_enemy_freeze_to_gain_damage_against_unique_+%_final"]=414, + ["active_skill_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=415, + ["active_skill_cooldown_bypass_type_override_to_power_charge"]=667, + ["active_skill_damage_+%_final_against_enemies_on_full_life"]=420, + ["active_skill_damage_+%_final_against_heavy_stunned_enemies"]=416, + ["active_skill_damage_+%_final_per_time_chained"]=421, + ["active_skill_damage_+%_final_vs_burning_enemies"]=422, + ["active_skill_damage_+%_final_vs_chilled_enemies"]=423, + ["active_skill_damage_+%_final_vs_fully_broken_armour"]=424, + ["active_skill_damage_+%_final_vs_immobilised_enemies"]=417, + ["active_skill_damage_+%_final_vs_unique_enemies"]=418, + ["active_skill_damage_+%_final_while_dual_wielding"]=419, + ["active_skill_damage_+%_when_cast_on_frostbolt"]=425, ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=364, - ["active_skill_damaging_ailment_effect_+%_final"]=421, - ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=422, - ["active_skill_generates_mp_%_glory_per_chaos_hit"]=423, + ["active_skill_damaging_ailment_effect_+%_final"]=426, + ["active_skill_electrocutes_as_though_dealt_damage_+%_final"]=427, + ["active_skill_generates_mp_%_glory_per_chaos_hit"]=428, ["active_skill_ground_consecration_radius_+"]=65, - ["active_skill_ground_effect_area_of_effect_+%_final_per_second"]=1057, - ["active_skill_ground_effect_area_of_effect_+%_final_per_second_max"]=1057, - ["active_skill_has_%_standard_scaling_attack_damage"]=424, - ["active_skill_hit_damage_freeze_multiplier_+%_final"]=425, - ["active_skill_hit_damage_stun_multiplier_+%_final"]=426, - ["active_skill_if_used_through_frostbolt_damage_+%_final"]=427, - ["active_skill_ignite_chance_+%_final"]=428, - ["active_skill_ignite_duration_+%_final"]=429, - ["active_skill_ignite_effect_+%_final"]=430, - ["active_skill_ignite_proliferation_radius"]=431, - ["active_skill_knockback_distance_+%_final"]=432, - ["active_skill_lightning_damage_+%_final"]=433, + ["active_skill_ground_effect_area_of_effect_+%_final_per_second"]=1062, + ["active_skill_ground_effect_area_of_effect_+%_final_per_second_max"]=1062, + ["active_skill_has_%_standard_scaling_attack_damage"]=429, + ["active_skill_hit_damage_freeze_multiplier_+%_final"]=430, + ["active_skill_hit_damage_stun_multiplier_+%_final"]=431, + ["active_skill_if_used_through_frostbolt_damage_+%_final"]=432, + ["active_skill_ignite_chance_+%_final"]=433, + ["active_skill_ignite_duration_+%_final"]=434, + ["active_skill_ignite_effect_+%_final"]=435, + ["active_skill_ignite_proliferation_radius"]=436, + ["active_skill_knockback_distance_+%_final"]=437, + ["active_skill_lightning_damage_+%_final"]=438, ["active_skill_minion_energy_shield_+%_final"]=130, - ["active_skill_minion_hit_damage_stun_multiplier_+%_final"]=434, + ["active_skill_minion_hit_damage_stun_multiplier_+%_final"]=439, ["active_skill_minion_life_+%_final"]=129, ["active_skill_minion_movement_velocity_+%_final"]=126, ["active_skill_movement_speed_+%_final"]=227, - ["active_skill_never_freeze_shock_ignite"]=435, - ["active_skill_pins_as_though_dealt_damage_+%_final"]=436, - ["active_skill_poison_duration_+%_final"]=437, + ["active_skill_never_freeze_shock_ignite"]=440, + ["active_skill_pins_as_though_dealt_damage_+%_final"]=441, + ["active_skill_poison_duration_+%_final"]=442, ["active_skill_projectile_damage_+%_final"]=359, - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=438, - ["active_skill_projectile_damage_+%_final_if_pierced_enemy"]=439, - ["active_skill_reload_speed_+%_final"]=440, - ["active_skill_required_number_of_combo_stacks"]=441, + ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=443, + ["active_skill_projectile_damage_+%_final_if_pierced_enemy"]=444, + ["active_skill_reload_speed_+%_final"]=445, + ["active_skill_required_number_of_combo_stacks"]=446, ["active_skill_requires_X_glory"]=12, ["active_skill_returning_projectile_damage_+%_final"]=360, - ["active_skill_shock_as_though_damage_+%_final"]=442, - ["active_skill_shock_chance_+%_final"]=443, - ["active_skill_shock_duration_+%_final"]=444, - ["active_skill_shock_effect_+%_final"]=445, - ["active_skill_stun_threshold_+%_while_performing_action"]=446, + ["active_skill_shock_as_though_damage_+%_final"]=447, + ["active_skill_shock_chance_+%_final"]=448, + ["active_skill_shock_duration_+%_final"]=449, + ["active_skill_shock_effect_+%_final"]=450, + ["active_skill_stun_threshold_+%_while_performing_action"]=451, ["active_skill_withered_base_duration_ms"]=118, - ["add_endurance_charge_on_skill_hit_%"]=447, + ["add_endurance_charge_on_skill_hit_%"]=452, ["add_frenzy_charge_on_kill"]=109, ["add_frenzy_charge_on_kill_%_chance"]=110, - ["add_frenzy_charge_on_skill_hit_%"]=448, + ["add_frenzy_charge_on_skill_hit_%"]=453, ["add_power_charge_on_critical_strike_%"]=233, ["additional_base_critical_strike_chance"]=347, - ["additional_block_chance_against_projectiles_%_per_steel_charge"]=449, - ["additional_chain_chance_%"]=450, + ["additional_block_chance_against_projectiles_%_per_steel_charge"]=454, + ["additional_chain_chance_%"]=455, ["additional_chance_to_freeze_chilled_enemies_%"]=328, - ["additional_combo_gain_chance_%"]=451, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=453, - ["additional_critical_strike_chance_permyriad_while_dead"]=452, - ["additional_infusion_gain_chance_%"]=454, - ["additional_projectiles_per_intensity"]=455, - ["additive_thorns_damage_modifiers_apply_to_attack_damage"]=456, + ["additional_combo_gain_chance_%"]=456, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=458, + ["additional_critical_strike_chance_permyriad_while_dead"]=457, + ["additional_infusion_gain_chance_%"]=459, + ["additional_projectiles_per_intensity"]=460, + ["additive_thorns_damage_modifiers_apply_to_attack_damage"]=461, ["aftershock_area_of_effect_+%_final"]=344, - ["alchemists_boon_attack_speed_granted_+%_during_life_flask"]=457, - ["alchemists_boon_cast_speed_granted_+%_during_mana_flask"]=458, - ["all_damage_can_ignite_freeze_shock"]=459, - ["all_damage_can_sap"]=460, - ["already_split_if_no_steel_shards"]=461, - ["always_chain_from_cursed_enemies"]=462, - ["always_chain_from_shocked_enemies"]=463, - ["always_crit"]=464, + ["alchemists_boon_attack_speed_granted_+%_during_life_flask"]=462, + ["alchemists_boon_cast_speed_granted_+%_during_mana_flask"]=463, + ["all_damage_can_ignite_freeze_shock"]=464, + ["all_damage_can_sap"]=465, + ["already_split_if_no_steel_shards"]=466, + ["always_chain_from_cursed_enemies"]=467, + ["always_chain_from_shocked_enemies"]=468, + ["always_crit"]=469, ["always_freeze"]=90, - ["always_ignite"]=465, - ["always_pierce"]=466, + ["always_ignite"]=470, + ["always_pierce"]=471, ["always_stun"]=135, - ["always_stun_enemies_that_are_on_full_life"]=467, - ["ambush_additional_critical_strike_chance_permyriad"]=1876, - ["ancestor_totem_buff_effect_+%"]=468, + ["always_stun_enemies_that_are_on_full_life"]=472, + ["ambush_additional_critical_strike_chance_permyriad"]=1881, + ["ancestor_totem_buff_effect_+%"]=473, ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=51, - ["ancestor_totem_parent_activation_range_+%"]=469, - ["ancestral_aid_required_count_of_recent_blocks"]=470, + ["ancestor_totem_parent_activation_range_+%"]=474, + ["ancestral_aid_required_count_of_recent_blocks"]=475, ["ancestral_call_spirit_strike_interval_ms"]=374, - ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1868, - ["ancestral_cry_max_physical_damage_reduction_rating"]=1858, - ["ancestral_cry_physical_damage_reduction_rating_per_5_MP"]=1858, - ["ancestral_cry_x_melee_range_per_5_monster_power"]=1859, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1873, + ["ancestral_cry_max_physical_damage_reduction_rating"]=1863, + ["ancestral_cry_physical_damage_reduction_rating_per_5_MP"]=1863, + ["ancestral_cry_x_melee_range_per_5_monster_power"]=1864, ["ancestral_slam_interval_duration"]=375, - ["ancestral_slam_stun_threshold_reduction_+%"]=471, + ["ancestral_slam_stun_threshold_reduction_+%"]=476, ["ancestral_warrior_totem_total_use_time_%_as_idle_after_animation"]=379, ["animate_item_maximum_level_requirement"]=250, - ["animate_weapon_chance_to_create_additional_copy_%"]=472, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=473, - ["apply_%_cold_exposure_for_4_seconds_on_chill"]=474, - ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=475, + ["animate_weapon_chance_to_create_additional_copy_%"]=477, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=478, + ["apply_%_cold_exposure_for_4_seconds_on_chill"]=479, + ["apply_%_cold_exposure_for_4_seconds_on_freeze"]=480, ["apply_linked_curses_on_hit_%"]=239, - ["apply_linked_curses_with_dark_ritual"]=476, + ["apply_linked_curses_with_dark_ritual"]=481, ["apply_x_wither_on_hit"]=117, - ["arc_chain_hit_damage_+%_final"]=477, - ["arc_chains_gained_from_infusion_consumption"]=478, - ["arc_damage_+%_final_from_infusion_consumption"]=479, - ["arc_damage_+%_final_per_chain"]=480, - ["arcane_cloak_consume_%_of_mana"]=481, - ["arcane_cloak_damage_absorbed_%"]=482, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=483, - ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=484, - ["archon_of_chayula_physical_and_chaos_damage_+%_final"]=485, - ["archon_of_chayula_spawn_chaos_tornado_interval_ms"]=487, - ["archon_of_chayula_withered_on_hit_for_4_seconds_%_chance"]=486, - ["arctic_armour_armour_granted_+%_per_stage"]=488, - ["arctic_armour_chill_when_hit_duration"]=489, - ["arctic_armour_fire_damage_taken_+%_final"]=490, - ["arctic_armour_physical_damage_taken_+%_final"]=491, - ["arctic_breath_maximum_number_of_skulls_allowed"]=492, - ["area_of_effect_+%_final_from_whirling_assault_level"]=493, - ["area_of_effect_+%_per_combo_stack"]=494, - ["area_of_effect_+%_per_frost_fury_stage"]=495, - ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"]=496, - ["area_of_effect_+%_when_cast_on_frostbolt"]=497, + ["arc_chain_hit_damage_+%_final"]=482, + ["arc_chains_gained_from_infusion_consumption"]=483, + ["arc_damage_+%_final_from_infusion_consumption"]=484, + ["arc_damage_+%_final_per_chain"]=485, + ["arcane_cloak_consume_%_of_mana"]=486, + ["arcane_cloak_damage_absorbed_%"]=487, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=488, + ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=489, + ["archon_of_chayula_physical_and_chaos_damage_+%_final"]=490, + ["archon_of_chayula_spawn_chaos_tornado_interval_ms"]=492, + ["archon_of_chayula_withered_on_hit_for_4_seconds_%_chance"]=491, + ["arctic_armour_armour_granted_+%_per_stage"]=493, + ["arctic_armour_chill_when_hit_duration"]=494, + ["arctic_armour_fire_damage_taken_+%_final"]=495, + ["arctic_armour_physical_damage_taken_+%_final"]=496, + ["arctic_breath_maximum_number_of_skulls_allowed"]=497, + ["area_of_effect_+%_final_from_whirling_assault_level"]=498, + ["area_of_effect_+%_per_combo_stack"]=499, + ["area_of_effect_+%_per_frost_fury_stage"]=500, + ["area_of_effect_+%_per_removable_power_frenzy_or_endurance_charge"]=501, + ["area_of_effect_+%_when_cast_on_frostbolt"]=502, ["area_of_effect_+%_while_dead"]=69, - ["area_of_effect_+%_while_not_dual_wielding"]=498, - ["armour_break_for_%_of_poison_damage_over_poison_duration"]=499, - ["armour_break_physical_damage_%_dealt_as_armour_break"]=500, - ["attack_and_cast_speed_+%"]=501, - ["attack_damage_+%"]=502, - ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=503, - ["attack_duration_ms"]=504, + ["area_of_effect_+%_while_not_dual_wielding"]=503, + ["armour_break_for_%_of_poison_damage_over_poison_duration"]=504, + ["armour_break_physical_damage_%_dealt_as_armour_break"]=505, + ["attack_and_cast_speed_+%"]=506, + ["attack_damage_+%"]=507, + ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=508, + ["attack_duration_ms"]=509, ["attack_speed_+%"]=46, ["attack_speed_+%_granted_from_skill"]=47, - ["attack_speed_+%_per_trauma"]=1718, + ["attack_speed_+%_per_trauma"]=1723, ["attack_speed_+%_when_on_low_life"]=48, - ["attack_speed_cannot_be_modified"]=505, - ["attack_speed_modifiers_apply_to_over_time_cost"]=506, + ["attack_speed_cannot_be_modified"]=510, + ["attack_speed_modifiers_apply_to_over_time_cost"]=511, ["attack_trigger_on_hit_%"]=269, - ["attack_trigger_on_hitting_bleeding_enemy_%"]=507, + ["attack_trigger_on_hitting_bleeding_enemy_%"]=512, ["attack_trigger_on_kill_%"]=251, ["attack_trigger_on_melee_hit_%"]=270, ["attack_trigger_when_critically_hit_%"]=247, ["attack_unusable_if_triggerable"]=249, - ["attacks_impale_on_hit_%_chance"]=508, - ["attacks_inflict_bleeding_on_hit"]=578, + ["attacks_impale_on_hit_%_chance"]=513, + ["attacks_inflict_bleeding_on_hit"]=583, ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=281, ["aura_effect_+%"]=73, - ["avoid_damage_%"]=509, - ["avoid_interruption_while_using_this_skill_%"]=510, + ["avoid_damage_%"]=514, + ["avoid_interruption_while_using_this_skill_%"]=515, ["backstab_damage_+%"]=136, - ["ball_lightning_superball_%_chance"]=511, - ["barrage_support_projectile_spread_+%"]=512, - ["barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit"]=513, + ["ball_lightning_superball_%_chance"]=516, + ["barrage_support_projectile_spread_+%"]=517, + ["barrier_invocation_gain_1_energy_per_X_energy_shield_damage_taken_when_hit"]=518, ["base_actor_scale_+%"]=1, - ["base_additional_damage_from_distance_+%_final"]=514, + ["base_additional_damage_from_distance_+%_final"]=519, ["base_all_damage_can_pin"]=91, ["base_arrow_speed_+%"]=301, ["base_attack_speed_+%_per_frenzy_charge"]=74, ["base_aura_area_of_effect_+%"]=72, - ["base_bleeding_effect_+100%_final_chance"]=515, + ["base_bleeding_effect_+100%_final_chance"]=520, ["base_buff_duration_ms_+_per_removable_endurance_charge"]=166, ["base_cast_speed_+%"]=57, - ["base_chance_to_daze_%"]=516, - ["base_chance_to_deal_triple_damage_%"]=517, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=518, + ["base_chance_to_daze_%"]=521, + ["base_chance_to_deal_triple_damage_%"]=522, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=523, ["base_chance_to_freeze_%"]=90, - ["base_chance_to_inflict_bleeding_%"]=519, - ["base_chance_to_not_consume_corpse_%"]=667, - ["base_chance_to_pierce_%"]=520, + ["base_chance_to_inflict_bleeding_%"]=524, + ["base_chance_to_not_consume_corpse_%"]=672, + ["base_chance_to_pierce_%"]=525, ["base_chance_to_poison_on_hit_%"]=338, ["base_chance_to_shock_%"]=92, - ["base_chance_to_shock_%_from_skill"]=1429, + ["base_chance_to_shock_%_from_skill"]=1434, ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=106, ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=137, ["base_cold_damage_resistance_%"]=206, - ["base_combo_stacks_decay_delay_ms"]=521, - ["base_consume_enemy_freeze_on_hit"]=522, - ["base_consume_enemy_shock_on_hit"]=523, - ["base_cooldown_modifier_ms"]=524, - ["base_cooldown_speed_+%"]=525, + ["base_combo_stacks_decay_delay_ms"]=526, + ["base_consume_enemy_freeze_on_hit"]=527, + ["base_consume_enemy_shock_on_hit"]=528, + ["base_cooldown_modifier_ms"]=529, + ["base_cooldown_speed_+%"]=530, ["base_critical_strike_multiplier_+"]=115, - ["base_curse_delay_+%"]=526, - ["base_damage_taken_+%"]=527, - ["base_deal_no_chaos_damage"]=528, - ["base_debuff_slow_magnitude_+%"]=529, - ["base_extra_damage_rolls"]=530, - ["base_ignite_effect_+%"]=531, - ["base_inflict_cold_exposure_on_hit_%_chance"]=532, - ["base_inflict_fire_exposure_on_hit_%_chance"]=533, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=534, + ["base_curse_delay_+%"]=531, + ["base_damage_taken_+%"]=532, + ["base_deal_no_chaos_damage"]=533, + ["base_debuff_slow_magnitude_+%"]=534, + ["base_extra_damage_rolls"]=535, + ["base_ignite_effect_+%"]=536, + ["base_inflict_cold_exposure_on_hit_%_chance"]=537, + ["base_inflict_fire_exposure_on_hit_%_chance"]=538, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=539, ["base_life_leech_from_physical_attack_damage_permyriad"]=59, ["base_life_regeneration_rate_per_minute"]=203, - ["base_lightning_damage_can_electrocute"]=535, + ["base_lightning_damage_can_electrocute"]=540, ["base_mana_leech_rate_+%"]=357, ["base_mana_regeneration_rate_per_minute"]=320, - ["base_maximum_seals_for_skill"]=536, + ["base_maximum_seals_for_skill"]=541, ["base_movement_velocity_+%"]=100, - ["base_number_of_crossbow_bolts"]=537, - ["base_number_of_effigies_allowed"]=1264, - ["base_number_of_projectiles"]=538, - ["base_number_of_projectiles_in_spiral_nova"]=539, - ["base_number_of_tempest_bells_allowed"]=541, + ["base_number_of_crossbow_bolts"]=542, + ["base_number_of_effigies_allowed"]=1269, + ["base_number_of_projectiles"]=543, + ["base_number_of_projectiles_in_spiral_nova"]=544, + ["base_number_of_tempest_bells_allowed"]=546, ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=108, ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=107, ["base_physical_damage_reduction_rating"]=181, ["base_poison_duration_+%"]=343, - ["base_poison_effect_+%"]=1314, - ["base_poison_effect_+100%_final_chance"]=542, - ["base_power_charge_skip_consume_chance_%"]=543, - ["base_projectiles_cannot_chain"]=544, + ["base_poison_effect_+%"]=1319, + ["base_poison_effect_+100%_final_chance"]=547, + ["base_power_charge_skip_consume_chance_%"]=548, + ["base_projectiles_cannot_chain"]=549, ["base_reduce_enemy_cold_resistance_%"]=214, ["base_reduce_enemy_fire_resistance_%"]=213, ["base_reduce_enemy_lightning_resistance_%"]=215, - ["base_remnant_duration_ms"]=545, + ["base_remnant_duration_ms"]=550, ["base_resist_all_elements_%"]=173, ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=175, ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=174, ["base_skill_area_of_effect_+%"]=66, - ["base_skill_seal_gain_interval_ms"]=546, - ["base_skill_ward_cost_as_%_of_life_and_mana_cost"]=547, - ["base_smite_number_of_targets"]=548, - ["base_spell_%_chance_to_echo"]=1478, + ["base_skill_seal_gain_interval_ms"]=551, + ["base_skill_ward_cost_as_%_of_life_and_mana_cost"]=552, + ["base_smite_number_of_targets"]=553, + ["base_spell_%_chance_to_echo"]=1483, ["base_stun_duration_+%"]=134, ["base_stun_recovery_+%"]=162, ["base_stun_threshold_reduction_+%"]=63, ["base_use_life_in_place_of_mana"]=184, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=550, - ["bear_companion_intimidate_on_hit_with_warcry_for_ms"]=551, - ["bear_skills_additional_base_attack_time_when_performing_from_default_stance"]=552, - ["bear_skills_additional_base_attack_time_when_performing_from_standing_stance"]=553, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=555, + ["bear_companion_intimidate_on_hit_with_warcry_for_ms"]=556, + ["bear_skills_additional_base_attack_time_when_performing_from_default_stance"]=557, + ["bear_skills_additional_base_attack_time_when_performing_from_standing_stance"]=558, ["berserk_attack_damage_+%_final"]=368, ["berserk_attack_speed_+%_final"]=369, ["berserk_base_damage_taken_+%_final"]=371, - ["berserk_maximum_rage_granted_+"]=554, + ["berserk_maximum_rage_granted_+"]=559, ["berserk_minimum_rage"]=367, ["berserk_movement_speed_+%_final"]=370, ["berserk_rage_loss_+%_per_second"]=373, - ["blackhole_damage_taken_+%"]=555, - ["blackhole_hinder_%"]=556, - ["blackhole_tick_rate_ms"]=557, - ["blade_blast_detonated_blades_not_removed_%_chance"]=558, - ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=559, - ["blade_flurry_elemental_damage_+%_while_channeling"]=560, - ["blade_flurry_final_flurry_area_of_effect_+%"]=561, - ["blade_vortex_additional_blade_chance_%"]=562, - ["blade_vortex_critical_strike_chance_+%_per_blade"]=563, + ["blackhole_damage_taken_+%"]=560, + ["blackhole_hinder_%"]=561, + ["blackhole_tick_rate_ms"]=562, + ["blade_blast_detonated_blades_not_removed_%_chance"]=563, + ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=564, + ["blade_flurry_elemental_damage_+%_while_channeling"]=565, + ["blade_flurry_final_flurry_area_of_effect_+%"]=566, + ["blade_vortex_additional_blade_chance_%"]=567, + ["blade_vortex_critical_strike_chance_+%_per_blade"]=568, ["blade_vortex_damage_+%_per_blade_final"]=226, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=564, + ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=569, ["blade_vortex_hit_rate_+%_per_blade"]=225, - ["blade_vortex_hit_rate_ms"]=565, - ["bladefall_critical_strike_chance_+%_per_stage"]=566, + ["blade_vortex_hit_rate_ms"]=570, + ["bladefall_critical_strike_chance_+%_per_stage"]=571, ["bladefall_damage_per_stage_+%_final"]=341, - ["bladefall_volley_gap_distance_+%"]=567, - ["bladefall_volleys_needed_per_vestige_blade"]=568, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=569, - ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=570, - ["bladestorm_create_alternate_stance_storm_%_chance"]=571, - ["bladestorm_maximum_number_of_storms_allowed"]=572, - ["bladestorm_movement_speed_+%_while_in_sandstorm"]=573, - ["bladestorm_sandstorm_movement_speed_+%"]=574, - ["bladestorm_storm_damage_+%_final"]=575, - ["blast_rain_area_of_effect_+%"]=576, - ["blast_rain_damage_+%_vs_distant_enemies"]=577, - ["bleed_on_hit_with_attacks_%"]=578, + ["bladefall_volley_gap_distance_+%"]=572, + ["bladefall_volleys_needed_per_vestige_blade"]=573, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=574, + ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=575, + ["bladestorm_create_alternate_stance_storm_%_chance"]=576, + ["bladestorm_maximum_number_of_storms_allowed"]=577, + ["bladestorm_movement_speed_+%_while_in_sandstorm"]=578, + ["bladestorm_sandstorm_movement_speed_+%"]=579, + ["bladestorm_storm_damage_+%_final"]=580, + ["blast_rain_area_of_effect_+%"]=581, + ["blast_rain_damage_+%_vs_distant_enemies"]=582, + ["bleed_on_hit_with_attacks_%"]=583, ["bleeding_skill_effect_duration"]=81, ["blind_duration_+%"]=212, - ["blind_effect_+%"]=579, - ["blink_travel_distance"]=580, - ["blood_boil_%_health_as_corrupted_blood_damage_per_minute"]=581, - ["blood_boil_application_interval_ms"]=582, - ["blood_boil_explosion_area_+%_final_per_boil"]=583, - ["blood_ground_leaving_area_lasts_for_ms"]=584, - ["blood_magic_skill_life_cost_+%_final"]=585, + ["blind_effect_+%"]=584, + ["blink_travel_distance"]=585, + ["blood_boil_%_health_as_corrupted_blood_damage_per_minute"]=586, + ["blood_boil_application_interval_ms"]=587, + ["blood_boil_explosion_area_+%_final_per_boil"]=588, + ["blood_ground_leaving_area_lasts_for_ms"]=589, + ["blood_magic_skill_life_cost_+%_final"]=590, ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=350, ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=353, ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=351, ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=352, - ["blood_sand_triggered_blind_on_attack_chance_%"]=587, - ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=588, - ["blood_scythe_cost_+%_final_per_charge"]=589, - ["blood_scythe_damage_+%_final_per_charge"]=590, - ["blood_surge_refresh_on_total_life_spent"]=591, - ["blood_tendrils_beam_count"]=592, - ["bodyswap_damage_+%_when_not_consuming_corpse"]=593, - ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=594, - ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=594, - ["bone_golem_grants_minion_maximum_added_physical_damage"]=595, - ["bone_golem_grants_minion_minimum_added_physical_damage"]=595, - ["bone_offering_damage_taken_+%_final_after_shield_loss"]=596, - ["boneshatter_chance_to_gain_+1_trauma"]=597, - ["brand_detonate_faster_activation_%_per_second"]=598, - ["brand_detonate_faster_duration_%_per_second"]=599, - ["brand_recall_spend_%_of_recalled_brands_cost"]=600, - ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=601, - ["breach_flame_spawn_rate_ms"]=602, + ["blood_sand_triggered_blind_on_attack_chance_%"]=592, + ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=593, + ["blood_scythe_cost_+%_final_per_charge"]=594, + ["blood_scythe_damage_+%_final_per_charge"]=595, + ["blood_surge_refresh_on_total_life_spent"]=596, + ["blood_tendrils_beam_count"]=597, + ["bodyswap_damage_+%_when_not_consuming_corpse"]=598, + ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=599, + ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=599, + ["bone_golem_grants_minion_maximum_added_physical_damage"]=600, + ["bone_golem_grants_minion_minimum_added_physical_damage"]=600, + ["bone_offering_damage_taken_+%_final_after_shield_loss"]=601, + ["boneshatter_chance_to_gain_+1_trauma"]=602, + ["brand_detonate_faster_activation_%_per_second"]=603, + ["brand_detonate_faster_duration_%_per_second"]=604, + ["brand_recall_spend_%_of_recalled_brands_cost"]=605, + ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=606, + ["breach_flame_spawn_rate_ms"]=607, ["buff_effect_duration"]=77, ["buff_effect_duration_+%_per_removable_endurance_charge"]=167, ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=168, - ["buff_grants_smite_additional_lightning_targets"]=603, + ["buff_grants_smite_additional_lightning_targets"]=608, ["burn_damage_+%"]=99, - ["call_of_steel_reload_amount"]=604, - ["call_of_steel_reload_time"]=604, - ["caltrops_on_dodge_X_triggers"]=605, - ["cannot_be_empowered_by_warcries"]=606, - ["cannot_break_armour"]=607, - ["cannot_cause_bleeding"]=578, - ["cannot_cause_stun_but_allow_stun_buildup"]=608, - ["cannot_consume_power_frenzy_endurance_charges"]=609, - ["cannot_daze"]=610, - ["cannot_gain_power_charges_during_skill"]=611, - ["cannot_inflict_blind"]=612, - ["cannot_inflict_bloodstone_lance"]=613, + ["call_of_steel_reload_amount"]=609, + ["call_of_steel_reload_time"]=609, + ["caltrops_on_dodge_X_triggers"]=610, + ["cannot_be_empowered_by_warcries"]=611, + ["cannot_break_armour"]=612, + ["cannot_cause_bleeding"]=583, + ["cannot_cause_stun_but_allow_stun_buildup"]=613, + ["cannot_consume_power_frenzy_endurance_charges"]=614, + ["cannot_daze"]=615, + ["cannot_gain_power_charges_during_skill"]=616, + ["cannot_inflict_blind"]=617, + ["cannot_inflict_bloodstone_lance"]=618, ["cannot_inflict_elemental_ailments"]=183, - ["cannot_knockback"]=614, - ["cannot_pin"]=615, - ["cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=616, - ["cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=617, + ["cannot_knockback"]=619, + ["cannot_pin"]=620, + ["cast_fire_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=621, + ["cast_lightning_spell_on_hit_gain_X_centienergy_per_monster_power_on_hit"]=622, ["cast_linked_spells_on_attack_crit_%"]=243, ["cast_linked_spells_on_melee_kill_%"]=245, ["cast_on_any_damage_taken_%"]=258, ["cast_on_attack_use_%"]=252, - ["cast_on_block_gain_X_centienergy_on_block"]=618, - ["cast_on_crit_%"]=621, - ["cast_on_crit_gain_X_centienergy_per_monster_power_on_crit"]=619, - ["cast_on_crit_global_critical_hit_chance_granted_+%"]=620, + ["cast_on_block_gain_X_centienergy_on_block"]=623, + ["cast_on_crit_%"]=626, + ["cast_on_crit_gain_X_centienergy_per_monster_power_on_crit"]=624, + ["cast_on_crit_global_critical_hit_chance_granted_+%"]=625, ["cast_on_damage_taken_%"]=271, - ["cast_on_damage_taken_gain_X_centienergy_when_hit"]=622, + ["cast_on_damage_taken_gain_X_centienergy_when_hit"]=627, ["cast_on_damage_taken_threshold"]=271, ["cast_on_death_%"]=260, - ["cast_on_death_gain_X_centienergy_on_death"]=623, - ["cast_on_dodge_dodge_roll_distance_granted_+"]=624, - ["cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling"]=625, - ["cast_on_flask_use_%"]=626, - ["cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze"]=627, + ["cast_on_death_gain_X_centienergy_on_death"]=628, + ["cast_on_dodge_dodge_roll_distance_granted_+"]=629, + ["cast_on_dodge_roll_gain_X_centienergy_per_unit_travelled_while_dodge_rolling"]=630, + ["cast_on_flask_use_%"]=631, + ["cast_on_freeze_gain_X_centienergy_per_monster_power_on_freeze"]=632, ["cast_on_gain_avians_flight_or_avians_might_%"]=264, ["cast_on_hit_%"]=265, ["cast_on_hit_if_cursed_%"]=266, - ["cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite"]=628, + ["cast_on_ignite_gain_X_centienergy_per_monster_power_on_ignite"]=633, ["cast_on_lose_cats_stealth"]=267, ["cast_on_melee_hit_if_cursed_%"]=268, - ["cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill"]=629, - ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun"]=630, - ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun"]=631, - ["cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%"]=632, - ["cast_on_shock_gain_X_centienergy_per_monster_power_on_shock"]=633, + ["cast_on_melee_kill_gain_X_centienergy_per_monster_power_on_melee_kill"]=634, + ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_heavy_stun"]=635, + ["cast_on_melee_stun_gain_X_centienergy_per_monster_power_on_stun"]=636, + ["cast_on_minion_death_gain_1_energy_per_X_minion_relative_defensiveness_%"]=637, + ["cast_on_shock_gain_X_centienergy_per_monster_power_on_shock"]=638, ["cast_on_skill_use_%"]=253, ["cast_on_stunned_%"]=262, - ["cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm"]=634, + ["cast_on_using_charm_gain_X_centienergy_per_charm_charge_used_on_using_charm"]=639, ["cast_speed_+%_granted_from_skill"]=19, ["cast_speed_+%_when_on_low_life"]=56, - ["cast_speed_modifiers_apply_to_over_time_cost"]=635, + ["cast_speed_modifiers_apply_to_over_time_cost"]=640, ["cast_when_hit_%"]=259, - ["cast_when_stunned_gain_X_centienergy_when_stunned"]=636, - ["cast_while_channelling_gain_X_energy_per_second_while_channelling"]=637, - ["cast_while_channelling_lose_X_energy_per_second_while_not_channelling"]=638, + ["cast_when_stunned_gain_X_centienergy_when_stunned"]=641, + ["cast_while_channelling_gain_X_energy_per_second_while_channelling"]=642, + ["cast_while_channelling_lose_X_energy_per_second_while_not_channelling"]=643, ["cast_while_channelling_time_ms"]=275, - ["chain_hook_range_+%"]=639, - ["chain_strike_cone_radius_+_per_x_rage"]=640, - ["chain_strike_gain_x_rage_if_attack_hits"]=641, - ["chaining_range_+%"]=642, - ["chance_%_to_double_effect_of_removing_charges"]=647, - ["chance_%_to_spawn_another_infusion_remnant"]=643, - ["chance_%_when_poison_to_also_poison_another_enemy"]=648, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=644, - ["chance_for_extra_damage_roll_%"]=645, - ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=646, - ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=649, - ["chance_to_bleed_on_hit_%_vs_maimed"]=650, - ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=651, - ["chance_to_cast_on_bear_warcry_%"]=652, + ["chain_hook_range_+%"]=644, + ["chain_strike_cone_radius_+_per_x_rage"]=645, + ["chain_strike_gain_x_rage_if_attack_hits"]=646, + ["chaining_range_+%"]=647, + ["chance_%_to_double_effect_of_removing_charges"]=652, + ["chance_%_to_spawn_another_infusion_remnant"]=648, + ["chance_%_when_poison_to_also_poison_another_enemy"]=653, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=649, + ["chance_for_extra_damage_roll_%"]=650, + ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=651, + ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=654, + ["chance_to_bleed_on_hit_%_vs_maimed"]=655, + ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=656, + ["chance_to_cast_on_bear_warcry_%"]=657, ["chance_to_cast_on_kill_%"]=254, ["chance_to_cast_on_kill_%_target_self"]=255, ["chance_to_cast_on_rampage_tier_%"]=261, ["chance_to_cast_when_your_trap_is_triggered_%"]=272, - ["chance_to_daze_+%"]=653, - ["chance_to_daze_+%_final"]=654, - ["chance_to_deal_double_damage_%"]=655, - ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=656, - ["chance_to_double_stun_duration_%"]=657, - ["chance_to_fork_extra_projectile_%"]=658, + ["chance_to_daze_+%"]=658, + ["chance_to_daze_+%_final"]=659, + ["chance_to_deal_double_damage_%"]=660, + ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=661, + ["chance_to_double_stun_duration_%"]=662, + ["chance_to_fork_extra_projectile_%"]=663, ["chance_to_fortify_on_melee_hit_+%"]=307, - ["chance_to_gain_1_more_charge_%"]=659, - ["chance_to_gain_1_more_random_charge_%"]=660, - ["chance_to_gain_endurance_charge_on_armour_break_%"]=661, - ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=662, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=663, - ["chance_to_ignore_hexproof_%"]=664, - ["chance_to_inflict_additional_impale_%"]=665, - ["chance_to_inflict_scorch_brittle_sap_%"]=666, - ["chance_to_not_consume_infusion_%"]=668, - ["chance_to_not_consume_parried_%"]=669, - ["chance_to_pierce_ignited_enemy_%"]=670, - ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=671, - ["chance_to_retain_40%_of_glory_on_use_%"]=672, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=673, - ["chance_to_scorch_%"]=674, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=675, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=676, - ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=677, - ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=678, - ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=679, - ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=680, - ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=681, - ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=682, - ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=683, - ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=684, - ["chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%"]=685, - ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=686, - ["chance_to_trigger_on_animate_guardian_kill_%"]=687, - ["chance_to_trigger_on_animate_weapon_kill_%"]=688, - ["chance_to_unnerve_on_hit_%"]=689, - ["channelled_skill_suppress_ongoing_rage_cost_for_first_X_ms"]=690, - ["channelled_slam_area_of_effect_radius_+_per_stage"]=691, - ["chaos_damage_resisted_by_lowest_resistance"]=692, + ["chance_to_gain_1_more_charge_%"]=664, + ["chance_to_gain_1_more_random_charge_%"]=665, + ["chance_to_gain_endurance_charge_on_armour_break_%"]=666, + ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=667, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=668, + ["chance_to_ignore_hexproof_%"]=669, + ["chance_to_inflict_additional_impale_%"]=670, + ["chance_to_inflict_scorch_brittle_sap_%"]=671, + ["chance_to_not_consume_infusion_%"]=673, + ["chance_to_not_consume_parried_%"]=674, + ["chance_to_pierce_ignited_enemy_%"]=675, + ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=676, + ["chance_to_retain_40%_of_glory_on_use_%"]=677, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=678, + ["chance_to_scorch_%"]=679, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=680, + ["chance_to_summon_support_ghost_on_killing_blow_%"]=681, + ["chance_to_trigger_fiery_death_on_ignited_enemy_death_%"]=682, + ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=683, + ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=684, + ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=685, + ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=686, + ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=687, + ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=688, + ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=689, + ["chance_to_trigger_level_20_summon_spectral_wolf_on_crit_from_cleave_or_reave_%"]=690, + ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=691, + ["chance_to_trigger_on_animate_guardian_kill_%"]=692, + ["chance_to_trigger_on_animate_weapon_kill_%"]=693, + ["chance_to_unnerve_on_hit_%"]=694, + ["channelled_skill_suppress_ongoing_rage_cost_for_first_X_ms"]=695, + ["channelled_slam_area_of_effect_radius_+_per_stage"]=696, + ["chaos_damage_resisted_by_lowest_resistance"]=697, ["chaos_damage_taken_+%"]=337, ["chaos_golem_grants_additional_physical_damage_reduction_%"]=314, - ["charge_regulation_damage_per_charge_granted_+%"]=693, - ["charge_skip_consume_chance_%"]=694, - ["charged_attack_damage_per_stack_+%_final"]=695, + ["charge_regulation_damage_per_charge_granted_+%"]=698, + ["charge_skip_consume_chance_%"]=699, + ["charged_attack_damage_per_stack_+%_final"]=700, ["charged_blast_spell_damage_+%_final_per_stack"]=274, - ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=696, - ["charged_dash_damage_+%_final_per_stack"]=697, - ["charged_dash_skill_inherent_movement_speed_+%_final"]=698, + ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=701, + ["charged_dash_damage_+%_final_per_stack"]=702, + ["charged_dash_skill_inherent_movement_speed_+%_final"]=703, ["chill_duration_+%"]=94, ["chill_effect_+%"]=96, - ["chilled_ground_base_magnitude_override"]=699, - ["chilling_area_movement_velocity_+%"]=700, - ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=701, - ["chronomancer_buff_cooldown_speed_+%"]=702, - ["circle_of_power_mana_spend_per_upgrade"]=703, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=706, - ["cleave_area_of_effect_+%_final_from_executioner"]=704, - ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=705, + ["chilled_ground_base_magnitude_override"]=704, + ["chilling_area_movement_velocity_+%"]=705, + ["chilling_ice_create_chilled_ground_on_freeze_base_duration_ms"]=706, + ["chronomancer_buff_cooldown_speed_+%"]=707, + ["circle_of_power_mana_spend_per_upgrade"]=708, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=711, + ["cleave_area_of_effect_+%_final_from_executioner"]=709, + ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=710, ["cluster_burst_spawn_amount"]=302, - ["cold_ailment_duration_+%"]=707, - ["cold_ailment_effect_+%"]=708, + ["cold_ailment_duration_+%"]=712, + ["cold_ailment_effect_+%"]=713, ["cold_damage_+%"]=295, ["cold_damage_cannot_freeze"]=385, - ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1904, - ["cold_snap_%_chance_to_not_remove_freeze"]=709, - ["combat_rush_effect_+%"]=710, - ["combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=711, - ["combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final"]=712, - ["combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=713, - ["combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final"]=714, - ["combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final"]=715, - ["combined_chaos_other_hit_damage_stun_multiplier_+%_including_final"]=716, - ["combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final"]=717, - ["combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final"]=718, - ["combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=719, - ["combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=720, - ["combined_cold_other_hit_damage_freeze_multiplier_+%_including_final"]=721, - ["combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final"]=722, - ["combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=723, - ["combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final"]=724, - ["combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=725, - ["combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final"]=726, - ["combined_fire_other_hit_damage_freeze_multiplier_+%_including_final"]=727, - ["combined_fire_other_hit_damage_stun_multiplier_+%_including_final"]=728, - ["combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final"]=729, - ["combined_fire_spell_hit_damage_stun_multiplier_+%_including_final"]=730, - ["combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=731, - ["combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final"]=732, - ["combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=733, - ["combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final"]=734, - ["combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final"]=735, - ["combined_lightning_other_hit_damage_stun_multiplier_+%_including_final"]=736, - ["combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final"]=737, - ["combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final"]=738, - ["combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=739, - ["combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final"]=740, - ["combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=741, - ["combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final"]=742, - ["combined_physical_other_hit_damage_freeze_multiplier_+%_including_final"]=743, - ["combined_physical_other_hit_damage_stun_multiplier_+%_including_final"]=744, - ["combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final"]=745, - ["combined_physical_spell_hit_damage_stun_multiplier_+%_including_final"]=746, - ["command_minion_target_ally_below_x_life"]=747, - ["companion_all_attributes_+%"]=748, - ["consecrated_ground_area_+%"]=752, - ["consecrated_ground_effect_+%"]=749, - ["consecrated_ground_enemy_damage_taken_+%"]=750, - ["consecrated_ground_immune_to_curses"]=751, - ["consume_X_heat_on_skill_use"]=753, - ["consume_enemy_daze_to_always_hit"]=754, - ["consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final"]=755, - ["consume_enemy_freeze_to_guarantee_crit"]=756, - ["consume_enemy_fully_broken_armour_to_guarantee_crit"]=757, - ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=758, - ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=759, - ["consume_ignite_on_hit"]=760, + ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1909, + ["cold_snap_%_chance_to_not_remove_freeze"]=714, + ["combat_rush_effect_+%"]=715, + ["combined_chaos_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=716, + ["combined_chaos_main_hand_hit_damage_stun_multiplier_+%_including_final"]=717, + ["combined_chaos_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=718, + ["combined_chaos_off_hand_hit_damage_stun_multiplier_+%_including_final"]=719, + ["combined_chaos_other_hit_damage_freeze_multiplier_+%_including_final"]=720, + ["combined_chaos_other_hit_damage_stun_multiplier_+%_including_final"]=721, + ["combined_chaos_spell_hit_damage_freeze_multiplier_+%_including_final"]=722, + ["combined_chaos_spell_hit_damage_stun_multiplier_+%_including_final"]=723, + ["combined_cold_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=724, + ["combined_cold_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=725, + ["combined_cold_other_hit_damage_freeze_multiplier_+%_including_final"]=726, + ["combined_cold_spell_hit_damage_freeze_multiplier_+%_including_final"]=727, + ["combined_fire_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=728, + ["combined_fire_main_hand_hit_damage_stun_multiplier_+%_including_final"]=729, + ["combined_fire_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=730, + ["combined_fire_off_hand_hit_damage_stun_multiplier_+%_including_final"]=731, + ["combined_fire_other_hit_damage_freeze_multiplier_+%_including_final"]=732, + ["combined_fire_other_hit_damage_stun_multiplier_+%_including_final"]=733, + ["combined_fire_spell_hit_damage_freeze_multiplier_+%_including_final"]=734, + ["combined_fire_spell_hit_damage_stun_multiplier_+%_including_final"]=735, + ["combined_lightning_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=736, + ["combined_lightning_main_hand_hit_damage_stun_multiplier_+%_including_final"]=737, + ["combined_lightning_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=738, + ["combined_lightning_off_hand_hit_damage_stun_multiplier_+%_including_final"]=739, + ["combined_lightning_other_hit_damage_freeze_multiplier_+%_including_final"]=740, + ["combined_lightning_other_hit_damage_stun_multiplier_+%_including_final"]=741, + ["combined_lightning_spell_hit_damage_freeze_multiplier_+%_including_final"]=742, + ["combined_lightning_spell_hit_damage_stun_multiplier_+%_including_final"]=743, + ["combined_physical_main_hand_hit_damage_freeze_multiplier_+%_including_final"]=744, + ["combined_physical_main_hand_hit_damage_stun_multiplier_+%_including_final"]=745, + ["combined_physical_off_hand_hit_damage_freeze_multiplier_+%_including_final"]=746, + ["combined_physical_off_hand_hit_damage_stun_multiplier_+%_including_final"]=747, + ["combined_physical_other_hit_damage_freeze_multiplier_+%_including_final"]=748, + ["combined_physical_other_hit_damage_stun_multiplier_+%_including_final"]=749, + ["combined_physical_spell_hit_damage_freeze_multiplier_+%_including_final"]=750, + ["combined_physical_spell_hit_damage_stun_multiplier_+%_including_final"]=751, + ["command_minion_target_ally_below_x_life"]=752, + ["companion_all_attributes_+%"]=753, + ["consecrated_ground_area_+%"]=757, + ["consecrated_ground_effect_+%"]=754, + ["consecrated_ground_enemy_damage_taken_+%"]=755, + ["consecrated_ground_immune_to_curses"]=756, + ["consume_X_heat_on_skill_use"]=758, + ["consume_enemy_daze_to_always_hit"]=759, + ["consume_enemy_dazed_to_gain_hit_damage_stun_multiplier_+%_final"]=760, + ["consume_enemy_freeze_to_guarantee_crit"]=761, + ["consume_enemy_fully_broken_armour_to_guarantee_crit"]=762, + ["consume_enemy_shock_to_gain_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=763, + ["consume_ignite_freeze_shock_on_hit_to_trigger_elemental_discharge"]=764, + ["consume_ignite_on_hit"]=765, ["consume_parry_debuff_on_hit_to_gain_X_frenzy_charges"]=11, - ["contagion_maximum_spread_magnitude_+%_final"]=762, - ["contagion_number_of_additional_targets"]=761, - ["contagion_spread_magnitude_+%_final"]=762, - ["conversation_trap_converted_enemy_damage_+%"]=763, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=764, - ["corpse_erruption_maximum_number_of_geyers"]=765, + ["contagion_maximum_spread_magnitude_+%_final"]=767, + ["contagion_number_of_additional_targets"]=766, + ["contagion_spread_magnitude_+%_final"]=767, + ["conversation_trap_converted_enemy_damage_+%"]=768, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=769, + ["corpse_erruption_maximum_number_of_geyers"]=770, ["corpse_explosion_monster_life_%"]=27, ["corpse_explosion_monster_life_%_chaos"]=28, ["corpse_explosion_monster_life_%_lightning"]=29, - ["corpse_explosion_monster_life_permillage_chaos"]=766, + ["corpse_explosion_monster_life_permillage_chaos"]=771, ["corpse_explosion_monster_life_permillage_fire"]=30, ["corpse_explosion_monster_life_permillage_physical"]=31, - ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=767, + ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=772, ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=355, ["corrosive_shroud_poison_effect_+%_final_while_accumulating_poison"]=354, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=768, - ["cover_in_ash_on_hit_%"]=769, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=770, - ["created_slipstream_action_speed_+%"]=771, - ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=772, - ["critical_hit_damaging_ailment_effect_+%"]=774, - ["critical_hit_poison_effect_+%"]=775, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=773, + ["cover_in_ash_on_hit_%"]=774, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=775, + ["created_slipstream_action_speed_+%"]=776, + ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=777, + ["critical_hit_damaging_ailment_effect_+%"]=779, + ["critical_hit_poison_effect_+%"]=780, ["critical_strike_chance_+%"]=111, - ["critical_strike_chance_+%_per_power_charge"]=776, - ["critical_strike_chance_+%_per_righteous_charge"]=777, - ["critical_strike_chance_+%_vs_blinded_enemies"]=778, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=779, - ["critical_strike_chance_+%_vs_shocked_enemies"]=773, - ["critical_strike_multiplier_+_per_blade"]=780, - ["critical_strike_multiplier_+_per_power_charge"]=781, + ["critical_strike_chance_+%_per_power_charge"]=781, + ["critical_strike_chance_+%_per_righteous_charge"]=782, + ["critical_strike_chance_+%_vs_blinded_enemies"]=783, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=784, + ["critical_strike_chance_+%_vs_shocked_enemies"]=778, + ["critical_strike_multiplier_+_per_blade"]=785, + ["critical_strike_multiplier_+_per_power_charge"]=786, ["critical_strike_multiplier_+_while_affected_by_elusive"]=116, - ["crossbow_ammo_always_reload"]=782, - ["crossbow_reload_on_heavy_stun"]=783, - ["cruelty_effect_+%"]=784, - ["crush_for_2_seconds_on_hit_%_chance"]=785, + ["crossbow_ammo_always_reload"]=787, + ["crossbow_reload_on_heavy_stun"]=788, + ["cruelty_effect_+%"]=789, + ["crush_for_2_seconds_on_hit_%_chance"]=790, ["crushed_target_%_physical_damage_taken_as_armour_break"]=387, - ["cull_frozen_enemies_on_hit"]=786, - ["curse_apply_as_curse_zone"]=787, - ["curse_delay_duration_ms"]=788, + ["cull_frozen_enemies_on_hit"]=791, + ["curse_apply_as_curse_zone"]=792, + ["curse_delay_duration_ms"]=793, ["curse_effect_+%"]=276, ["curse_effect_duration"]=75, ["curse_pillar_curse_effect_+%_final"]=277, ["cyclone_area_of_effect_+%_per_additional_melee_range"]=67, ["cyclone_first_hit_damage_+%_final"]=345, - ["cyclone_gain_stage_every_x_ms_while_channelling"]=789, - ["cyclone_max_number_of_stages"]=790, - ["cyclone_melee_weapon_range_+_per_stage"]=791, - ["cyclone_stage_decay_time_ms"]=792, + ["cyclone_gain_stage_every_x_ms_while_channelling"]=794, + ["cyclone_max_number_of_stages"]=795, + ["cyclone_melee_weapon_range_+_per_stage"]=796, + ["cyclone_stage_decay_time_ms"]=797, ["damage_+%"]=321, - ["damage_+%_final_from_lich_apparition_cloned_skill"]=793, + ["damage_+%_final_from_lich_apparition_cloned_skill"]=798, ["damage_+%_final_to_stunned_enemies"]=289, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=794, - ["damage_+%_per_200_mana_spent_recently"]=795, - ["damage_+%_per_chain"]=796, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=799, + ["damage_+%_per_200_mana_spent_recently"]=800, + ["damage_+%_per_chain"]=801, ["damage_+%_vs_burning_enemies"]=291, - ["damage_+%_vs_enemies_on_full_life"]=797, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=798, - ["damage_+%_while_life_leeching"]=799, - ["damage_+%_while_mana_leeching"]=800, + ["damage_+%_vs_enemies_on_full_life"]=802, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=803, + ["damage_+%_while_life_leeching"]=804, + ["damage_+%_while_mana_leeching"]=805, ["damage_over_time_+%"]=340, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=802, - ["damage_vs_enemies_on_low_life_+%"]=803, - ["damaging_ailments_deal_damage_+%_faster"]=804, - ["dark_effigy_additional_projectile_chance_per_debuff_on_target"]=805, - ["dark_ritual_damage_+%_final_per_curse_applied"]=806, - ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=807, - ["dash_grants_phasing_after_use_ms"]=808, - ["deal_no_elemental_damage"]=809, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=807, + ["damage_vs_enemies_on_low_life_+%"]=808, + ["damaging_ailments_deal_damage_+%_faster"]=809, + ["dark_effigy_additional_projectile_chance_per_debuff_on_target"]=810, + ["dark_ritual_damage_+%_final_per_curse_applied"]=811, + ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=812, + ["dash_grants_phasing_after_use_ms"]=813, + ["deal_no_elemental_damage"]=814, ["deal_no_non_cold_damage"]=384, ["deal_no_non_fire_damage"]=382, ["deal_no_non_lightning_damage"]=383, - ["death_wish_attack_speed_+%"]=810, - ["death_wish_cast_speed_+%"]=811, - ["death_wish_hit_damage_+%_final_per_stage"]=812, - ["death_wish_max_stages"]=813, - ["death_wish_movement_speed_+%"]=814, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=815, - ["debuff_time_passed_+%"]=816, + ["death_wish_attack_speed_+%"]=815, + ["death_wish_cast_speed_+%"]=816, + ["death_wish_hit_damage_+%_final_per_stage"]=817, + ["death_wish_max_stages"]=818, + ["death_wish_movement_speed_+%"]=819, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=820, + ["debuff_time_passed_+%"]=821, ["degen_effect_+%"]=165, - ["desecrate_chance_for_additional_corpse_%"]=817, - ["desecrate_chance_for_special_corpse_%"]=818, + ["desecrate_chance_for_additional_corpse_%"]=822, + ["desecrate_chance_for_special_corpse_%"]=823, ["desecrate_corpse_level"]=283, - ["desecrate_maximum_number_of_corpses"]=819, + ["desecrate_maximum_number_of_corpses"]=824, ["desecrate_number_of_corpses_to_create"]=282, - ["destroy_corpses_on_kill_%_chance"]=820, - ["detonate_dead_damage_+%_if_corpse_ignited"]=821, - ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=822, - ["detonating_arrow_all_damage_%_to_gain_as_fire_per_stage"]=823, - ["detonating_arrow_max_number_of_stages"]=823, - ["disable_mine_detonation_cascade"]=824, - ["discharge_chance_not_to_consume_charges_%"]=825, - ["discharge_damage_+%_if_3_charge_types_removed"]=826, - ["disengage_%_chance_for_additional_shockwave"]=827, - ["disintegrate_base_radius_+_per_intensify"]=828, - ["disintegrate_damage_+%_final_per_intensity"]=829, - ["disintegrate_secondary_beam_angle_+%"]=830, - ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=831, - ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=832, - ["display_additional_projectile_per_mine_in_detonation_sequence"]=833, - ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1874, - ["display_blink_base_cooldown"]=834, - ["display_brand_deonate_tag_conversion"]=835, - ["display_charge_speed_is_move_speed"]=836, + ["destroy_corpses_on_kill_%_chance"]=825, + ["detonate_dead_damage_+%_if_corpse_ignited"]=826, + ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=827, + ["detonating_arrow_all_damage_%_to_gain_as_fire_per_stage"]=828, + ["detonating_arrow_max_number_of_stages"]=828, + ["disable_mine_detonation_cascade"]=829, + ["discharge_chance_not_to_consume_charges_%"]=830, + ["discharge_damage_+%_if_3_charge_types_removed"]=831, + ["disengage_%_chance_for_additional_shockwave"]=832, + ["disintegrate_base_radius_+_per_intensify"]=833, + ["disintegrate_damage_+%_final_per_intensity"]=834, + ["disintegrate_secondary_beam_angle_+%"]=835, + ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=836, + ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=837, + ["display_additional_projectile_per_mine_in_detonation_sequence"]=838, + ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1879, + ["display_blink_base_cooldown"]=839, + ["display_brand_deonate_tag_conversion"]=840, + ["display_charge_speed_is_move_speed"]=841, ["display_disable_melee_weapons"]=44, - ["display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=837, - ["display_estimate_main_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=837, - ["display_estimate_maximum_roll_main_hand_chill_magnitude"]=838, - ["display_estimate_maximum_roll_off_hand_chill_magnitude"]=839, - ["display_estimate_maximum_roll_secondary_chill_magnitude"]=840, - ["display_estimate_maximum_roll_spell_chill_magnitude"]=841, - ["display_estimate_maximum_total_main_hand_ignite_chance_%"]=842, - ["display_estimate_maximum_total_main_hand_shock_chance_%"]=843, - ["display_estimate_maximum_total_off_hand_ignite_chance_%"]=844, - ["display_estimate_maximum_total_off_hand_shock_chance_%"]=845, - ["display_estimate_maximum_total_spell_ignite_chance_%"]=848, - ["display_estimate_maximum_total_spell_shock_chance_%"]=849, - ["display_estimate_minimum_roll_main_hand_chill_magnitude"]=838, - ["display_estimate_minimum_roll_off_hand_chill_magnitude"]=839, - ["display_estimate_minimum_roll_secondary_chill_magnitude"]=840, - ["display_estimate_minimum_roll_spell_chill_magnitude"]=841, - ["display_estimate_minimum_total_main_hand_ignite_chance_%"]=842, - ["display_estimate_minimum_total_main_hand_shock_chance_%"]=843, - ["display_estimate_minimum_total_off_hand_ignite_chance_%"]=844, - ["display_estimate_minimum_total_off_hand_shock_chance_%"]=845, - ["display_estimate_minimum_total_spell_ignite_chance_%"]=848, - ["display_estimate_minimum_total_spell_shock_chance_%"]=849, - ["display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=850, - ["display_estimate_off_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=850, - ["display_fake_attack_hit_bleed"]=851, - ["display_fake_attack_hit_chill"]=852, - ["display_fake_attack_hit_ignite"]=853, - ["display_fake_attack_hit_poison"]=854, - ["display_herald_of_thunder_storm"]=770, - ["display_linked_curse_effect_+%"]=855, - ["display_linked_curse_effect_+%_final"]=856, - ["display_main_hand_chance_to_hit_%_at_max_range"]=857, - ["display_main_hand_chance_to_hit_%_at_mid_range"]=858, - ["display_main_hand_chance_to_hit_%_at_min_range"]=859, - ["display_main_hand_hit_chance_estimate_range_max"]=857, - ["display_main_hand_hit_chance_estimate_range_mid"]=858, - ["display_main_hand_hit_chance_estimate_range_min"]=859, - ["display_max_ailment_bearer_charges"]=860, - ["display_max_blight_stacks"]=861, - ["display_max_fire_beam_stacks"]=862, - ["display_max_upgraded_sentinels_of_absolution"]=863, - ["display_max_upgraded_sentinels_of_dominance"]=864, - ["display_maximum_roll_main_hand_bleeding_damage_per_minute"]=865, - ["display_maximum_roll_main_hand_ignite_damage_per_minute"]=866, - ["display_maximum_roll_main_hand_poison_damage_per_minute"]=867, - ["display_maximum_roll_off_hand_bleeding_damage_per_minute"]=868, - ["display_maximum_roll_off_hand_ignite_damage_per_minute"]=869, - ["display_maximum_roll_off_hand_poison_damage_per_minute"]=870, - ["display_maximum_roll_secondary_bleeding_damage_per_minute"]=871, - ["display_maximum_roll_secondary_ignite_damage_per_minute"]=872, - ["display_maximum_roll_secondary_poison_damage_per_minute"]=873, - ["display_maximum_roll_spell_bleeding_damage_per_minute"]=874, - ["display_maximum_roll_spell_ignite_damage_per_minute"]=875, - ["display_maximum_roll_spell_poison_damage_per_minute"]=876, - ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=877, - ["display_minimum_roll_main_hand_bleeding_damage_per_minute"]=865, - ["display_minimum_roll_main_hand_ignite_damage_per_minute"]=866, - ["display_minimum_roll_main_hand_poison_damage_per_minute"]=867, - ["display_minimum_roll_off_hand_bleeding_damage_per_minute"]=868, - ["display_minimum_roll_off_hand_ignite_damage_per_minute"]=869, - ["display_minimum_roll_off_hand_poison_damage_per_minute"]=870, - ["display_minimum_roll_secondary_bleeding_damage_per_minute"]=871, - ["display_minimum_roll_secondary_ignite_damage_per_minute"]=872, - ["display_minimum_roll_secondary_poison_damage_per_minute"]=873, - ["display_minimum_roll_spell_bleeding_damage_per_minute"]=874, - ["display_minimum_roll_spell_ignite_damage_per_minute"]=875, - ["display_minimum_roll_spell_poison_damage_per_minute"]=876, - ["display_mirage_warriors_no_spirit_strikes"]=878, - ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=879, - ["display_number_of_chains_for_beams"]=1808, - ["display_number_of_chains_for_projectiles"]=1809, - ["display_off_hand_chance_to_hit_%_at_max_range"]=880, - ["display_off_hand_chance_to_hit_%_at_mid_range"]=881, - ["display_off_hand_chance_to_hit_%_at_min_range"]=882, - ["display_off_hand_hit_chance_estimate_range_max"]=880, - ["display_off_hand_hit_chance_estimate_range_mid"]=881, - ["display_off_hand_hit_chance_estimate_range_min"]=882, + ["display_estimate_main_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=842, + ["display_estimate_main_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=842, + ["display_estimate_maximum_roll_main_hand_chill_magnitude"]=843, + ["display_estimate_maximum_roll_off_hand_chill_magnitude"]=844, + ["display_estimate_maximum_roll_secondary_chill_magnitude"]=845, + ["display_estimate_maximum_roll_spell_chill_magnitude"]=846, + ["display_estimate_maximum_total_main_hand_ignite_chance_%"]=847, + ["display_estimate_maximum_total_main_hand_shock_chance_%"]=848, + ["display_estimate_maximum_total_off_hand_ignite_chance_%"]=849, + ["display_estimate_maximum_total_off_hand_shock_chance_%"]=850, + ["display_estimate_maximum_total_spell_ignite_chance_%"]=853, + ["display_estimate_maximum_total_spell_shock_chance_%"]=854, + ["display_estimate_minimum_roll_main_hand_chill_magnitude"]=843, + ["display_estimate_minimum_roll_off_hand_chill_magnitude"]=844, + ["display_estimate_minimum_roll_secondary_chill_magnitude"]=845, + ["display_estimate_minimum_roll_spell_chill_magnitude"]=846, + ["display_estimate_minimum_total_main_hand_ignite_chance_%"]=847, + ["display_estimate_minimum_total_main_hand_shock_chance_%"]=848, + ["display_estimate_minimum_total_off_hand_ignite_chance_%"]=849, + ["display_estimate_minimum_total_off_hand_shock_chance_%"]=850, + ["display_estimate_minimum_total_spell_ignite_chance_%"]=853, + ["display_estimate_minimum_total_spell_shock_chance_%"]=854, + ["display_estimate_off_hand_max_added_crit_chance_permyriad_from_excess_hit_chance"]=855, + ["display_estimate_off_hand_min_added_crit_chance_permyriad_from_excess_hit_chance"]=855, + ["display_fake_attack_hit_bleed"]=856, + ["display_fake_attack_hit_chill"]=857, + ["display_fake_attack_hit_ignite"]=858, + ["display_fake_attack_hit_poison"]=859, + ["display_herald_of_thunder_storm"]=775, + ["display_linked_curse_effect_+%"]=860, + ["display_linked_curse_effect_+%_final"]=861, + ["display_main_hand_chance_to_hit_%_at_max_range"]=862, + ["display_main_hand_chance_to_hit_%_at_mid_range"]=863, + ["display_main_hand_chance_to_hit_%_at_min_range"]=864, + ["display_main_hand_hit_chance_estimate_range_max"]=862, + ["display_main_hand_hit_chance_estimate_range_mid"]=863, + ["display_main_hand_hit_chance_estimate_range_min"]=864, + ["display_max_ailment_bearer_charges"]=865, + ["display_max_blight_stacks"]=866, + ["display_max_fire_beam_stacks"]=867, + ["display_max_upgraded_sentinels_of_absolution"]=868, + ["display_max_upgraded_sentinels_of_dominance"]=869, + ["display_maximum_roll_main_hand_bleeding_damage_per_minute"]=870, + ["display_maximum_roll_main_hand_ignite_damage_per_minute"]=871, + ["display_maximum_roll_main_hand_poison_damage_per_minute"]=872, + ["display_maximum_roll_off_hand_bleeding_damage_per_minute"]=873, + ["display_maximum_roll_off_hand_ignite_damage_per_minute"]=874, + ["display_maximum_roll_off_hand_poison_damage_per_minute"]=875, + ["display_maximum_roll_secondary_bleeding_damage_per_minute"]=876, + ["display_maximum_roll_secondary_ignite_damage_per_minute"]=877, + ["display_maximum_roll_secondary_poison_damage_per_minute"]=878, + ["display_maximum_roll_spell_bleeding_damage_per_minute"]=879, + ["display_maximum_roll_spell_ignite_damage_per_minute"]=880, + ["display_maximum_roll_spell_poison_damage_per_minute"]=881, + ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=882, + ["display_minimum_roll_main_hand_bleeding_damage_per_minute"]=870, + ["display_minimum_roll_main_hand_ignite_damage_per_minute"]=871, + ["display_minimum_roll_main_hand_poison_damage_per_minute"]=872, + ["display_minimum_roll_off_hand_bleeding_damage_per_minute"]=873, + ["display_minimum_roll_off_hand_ignite_damage_per_minute"]=874, + ["display_minimum_roll_off_hand_poison_damage_per_minute"]=875, + ["display_minimum_roll_secondary_bleeding_damage_per_minute"]=876, + ["display_minimum_roll_secondary_ignite_damage_per_minute"]=877, + ["display_minimum_roll_secondary_poison_damage_per_minute"]=878, + ["display_minimum_roll_spell_bleeding_damage_per_minute"]=879, + ["display_minimum_roll_spell_ignite_damage_per_minute"]=880, + ["display_minimum_roll_spell_poison_damage_per_minute"]=881, + ["display_mirage_warriors_no_spirit_strikes"]=883, + ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=884, + ["display_number_of_chains_for_beams"]=1813, + ["display_number_of_chains_for_projectiles"]=1814, + ["display_off_hand_chance_to_hit_%_at_max_range"]=885, + ["display_off_hand_chance_to_hit_%_at_mid_range"]=886, + ["display_off_hand_chance_to_hit_%_at_min_range"]=887, + ["display_off_hand_hit_chance_estimate_range_max"]=885, + ["display_off_hand_hit_chance_estimate_range_mid"]=886, + ["display_off_hand_hit_chance_estimate_range_min"]=887, ["display_projectile_number_of_targets_to_pierce"]=88, - ["display_projectile_number_to_split"]=1818, - ["display_removes_and_grants_elusive_when_used"]=884, - ["display_sigil_of_power_stage_gain_delay"]=885, - ["display_skill_cooldown_time_ms"]=886, - ["display_skill_fixed_duration_buff"]=887, - ["display_skill_increased_item_rarity_+%"]=888, - ["display_skill_overflowing_chalice_duration_ms"]=889, - ["display_skill_reserves_in_all_weapon_sets"]=1912, - ["display_spectral_spiral_weapon_number_of_bounces"]=1476, - ["display_storm_burst_jump_time_ms"]=890, - ["display_this_skill_cooldown_does_not_recover_during_buff"]=891, - ["display_total_bleeding_duration"]=892, - ["display_total_chill_duration"]=893, - ["display_total_ignite_duration"]=894, - ["display_total_poison_duration"]=895, - ["display_total_shock_duration"]=896, - ["display_total_shock_magnitude"]=897, - ["display_touch_of_fire"]=898, - ["display_trigger_link"]=899, - ["display_triggerbots_do_their_job"]=900, - ["display_unhinge_grant_insane"]=901, - ["display_vaal_breach_no_drops_xp"]=902, - ["display_vaal_molten_shell_alternate_description"]=1237, + ["display_projectile_number_to_split"]=1823, + ["display_removes_and_grants_elusive_when_used"]=889, + ["display_sigil_of_power_stage_gain_delay"]=890, + ["display_skill_cooldown_time_ms"]=891, + ["display_skill_fixed_duration_buff"]=892, + ["display_skill_increased_item_rarity_+%"]=893, + ["display_skill_overflowing_chalice_duration_ms"]=894, + ["display_skill_reserves_in_all_weapon_sets"]=1917, + ["display_spectral_spiral_weapon_number_of_bounces"]=1481, + ["display_storm_burst_jump_time_ms"]=895, + ["display_this_skill_cooldown_does_not_recover_during_buff"]=896, + ["display_total_bleeding_duration"]=897, + ["display_total_chill_duration"]=898, + ["display_total_ignite_duration"]=899, + ["display_total_poison_duration"]=900, + ["display_total_shock_duration"]=901, + ["display_total_shock_magnitude"]=902, + ["display_touch_of_fire"]=903, + ["display_trigger_link"]=904, + ["display_triggerbots_do_their_job"]=905, + ["display_unhinge_grant_insane"]=906, + ["display_vaal_breach_no_drops_xp"]=907, + ["display_vaal_molten_shell_alternate_description"]=1242, ["display_what_freezing_pulse_does"]=17, - ["distance_scaled_accuracy_rating_penalty_+%"]=903, - ["divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%"]=1864, - ["divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%"]=1863, - ["divine_tempest_beam_width_+%"]=904, - ["divine_tempest_damage_+%_final_while_channelling"]=905, - ["divine_tempest_hit_damage_+%_final_per_stage"]=906, - ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=907, - ["divine_tempest_stage_on_hitting_rare_unique"]=908, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=909, + ["distance_scaled_accuracy_rating_penalty_+%"]=908, + ["divine_cry_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_per_5_power_up_to_150%"]=1869, + ["divine_cry_critical_strike_chance_+%_per_5_power_up_to_cap%"]=1868, + ["divine_tempest_beam_width_+%"]=909, + ["divine_tempest_damage_+%_final_while_channelling"]=910, + ["divine_tempest_hit_damage_+%_final_per_stage"]=911, + ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=912, + ["divine_tempest_stage_on_hitting_rare_unique"]=913, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=914, ["doubles_have_movement_speed_+%"]=122, - ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=910, - ["dual_wield_inherent_attack_speed_+%_final"]=911, - ["earthquake_aftershock_maximum_added_physical_damage"]=912, - ["earthquake_aftershock_minimum_added_physical_damage"]=912, - ["earthquake_initial_slam_area_of_effect_+%"]=913, - ["earthshatter_damage_+%_final_per_spike"]=914, - ["echoed_spell_area_of_effect_+%"]=915, - ["elemental_damage_+%_final_per_righteous_charge"]=917, - ["elemental_damage_cannot_be_reflected"]=916, + ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=915, + ["dual_wield_inherent_attack_speed_+%_final"]=916, + ["earthquake_aftershock_maximum_added_physical_damage"]=917, + ["earthquake_aftershock_minimum_added_physical_damage"]=917, + ["earthquake_initial_slam_area_of_effect_+%"]=918, + ["earthshatter_damage_+%_final_per_spike"]=919, + ["echoed_spell_area_of_effect_+%"]=920, + ["elemental_damage_+%_final_per_righteous_charge"]=922, + ["elemental_damage_cannot_be_reflected"]=921, ["elemental_discharge_no_physical_chaos_damage"]=298, - ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=918, - ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=919, + ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=923, + ["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=924, ["elemental_hit_no_physical_chaos_damage"]=299, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze"]=920, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite"]=921, - ["elemental_invocation_gain_X_centienergy_per_monster_power_on_shock"]=922, - ["elemental_penetration_%_from_resonance"]=923, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_freeze"]=925, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_ignite"]=926, + ["elemental_invocation_gain_X_centienergy_per_monster_power_on_shock"]=927, + ["elemental_penetration_%_from_resonance"]=928, ["elemental_strike_physical_damage_%_to_convert"]=329, - ["elusive_effect_+%"]=924, - ["ember_fusillade_damage_+%_final_per_ember_fired"]=925, - ["embrace_madness_amount_of_cooldown_to_gain_ms"]=926, - ["empower_barrage_cooldown_%_of_attack_time"]=927, - ["empowered_attack_damage_+%"]=928, - ["empowered_barrage_maximum_cooldown_ms"]=927, - ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1861, - ["enduring_cry_grants_x_additional_endurance_charges"]=929, - ["enemies_chilled_by_bane_and_contagion"]=930, - ["enemies_covered_in_frost_as_unfrozen"]=931, - ["enemies_taunted_by_your_warcies_are_intimidated"]=932, - ["enemies_you_shock_movement_speed_+%"]=933, - ["enemies_you_shock_take_%_increased_physical_damage"]=934, + ["elusive_effect_+%"]=929, + ["ember_fusillade_damage_+%_final_per_ember_fired"]=930, + ["embrace_madness_amount_of_cooldown_to_gain_ms"]=931, + ["empower_barrage_cooldown_%_of_attack_time"]=932, + ["empowered_attack_damage_+%"]=933, + ["empowered_barrage_maximum_cooldown_ms"]=932, + ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1866, + ["enduring_cry_grants_x_additional_endurance_charges"]=934, + ["enemies_chilled_by_bane_and_contagion"]=935, + ["enemies_covered_in_frost_as_unfrozen"]=936, + ["enemies_taunted_by_your_warcies_are_intimidated"]=937, + ["enemies_you_shock_movement_speed_+%"]=938, + ["enemies_you_shock_take_%_increased_physical_damage"]=939, ["enemy_aggro_radius_+%"]=334, - ["enemy_phys_reduction_%_penalty_vs_hit"]=936, - ["energy_generated_+%"]=937, + ["enemy_phys_reduction_%_penalty_vs_hit"]=941, + ["energy_generated_+%"]=942, ["energy_shield_delay_-%"]=163, ["energy_shield_recharge_rate_+%"]=164, - ["energy_shield_regeneration_rate_+%"]=938, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=939, - ["ethereal_knives_projectiles_needed_per_vestige_blade"]=940, - ["evasion_and_physical_damage_reduction_rating_+%"]=941, - ["expanding_fire_cone_angle_+%_per_stage"]=942, - ["expanding_fire_cone_final_wave_always_ignite"]=943, - ["expanding_fire_cone_maximum_number_of_stages"]=944, - ["expanding_fire_cone_radius_+_per_stage"]=945, - ["expanding_fire_cone_radius_limit"]=945, - ["expanding_fire_cone_release_hit_damage_+%_final"]=946, + ["energy_shield_regeneration_rate_+%"]=943, + ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=944, + ["ethereal_knives_projectiles_needed_per_vestige_blade"]=945, + ["evasion_and_physical_damage_reduction_rating_+%"]=946, + ["expanding_fire_cone_angle_+%_per_stage"]=947, + ["expanding_fire_cone_final_wave_always_ignite"]=948, + ["expanding_fire_cone_maximum_number_of_stages"]=949, + ["expanding_fire_cone_radius_+_per_stage"]=950, + ["expanding_fire_cone_radius_limit"]=950, + ["expanding_fire_cone_release_hit_damage_+%_final"]=951, ["explosive_arrow_explosion_base_damage_+permyriad"]=156, ["explosive_arrow_explosion_maximum_added_fire_damage"]=158, ["explosive_arrow_explosion_minimum_added_fire_damage"]=158, ["explosive_arrow_hit_damage_+%_final_per_stack"]=210, ["explosive_arrow_maximum_bonus_explosion_radius"]=161, - ["explosive_arrow_stack_limit"]=947, - ["exposure_effect_+%"]=948, - ["extra_target_targeting_distance_+%"]=949, + ["explosive_arrow_stack_limit"]=952, + ["exposure_effect_+%"]=953, + ["extra_target_targeting_distance_+%"]=954, ["eye_of_winter_display_number_of_explosion_shards"]=45, - ["eye_of_winter_number_of_brittle_stacks_to_apply"]=950, - ["eye_of_winter_spiral_angle_+%"]=951, - ["eye_of_winter_spiral_fire_frequency_+%"]=952, - ["faster_bleed_%"]=953, - ["feast_of_flesh_recover_X_life_per_corpse_consumed"]=954, - ["feast_of_flesh_recover_X_mana_per_corpse_consumed"]=954, - ["feast_of_flesh_recovery_duration"]=954, - ["feral_invocation_gain_1_energy_per_X_mana_spent"]=955, - ["final_strike_number_of_spirit_strikes"]=956, - ["fire_beam_additional_stack_damage_+%_final"]=957, - ["fire_beam_enemy_fire_resistance_%_maximum"]=958, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=959, - ["fire_beam_length_+%"]=960, + ["eye_of_winter_number_of_brittle_stacks_to_apply"]=955, + ["eye_of_winter_spiral_angle_+%"]=956, + ["eye_of_winter_spiral_fire_frequency_+%"]=957, + ["faster_bleed_%"]=958, + ["feast_of_flesh_recover_X_life_per_corpse_consumed"]=959, + ["feast_of_flesh_recover_X_mana_per_corpse_consumed"]=959, + ["feast_of_flesh_recovery_duration"]=959, + ["feral_invocation_gain_1_energy_per_X_mana_spent"]=960, + ["final_strike_number_of_spirit_strikes"]=961, + ["fire_beam_additional_stack_damage_+%_final"]=962, + ["fire_beam_enemy_fire_resistance_%_maximum"]=963, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=964, + ["fire_beam_length_+%"]=965, ["fire_damage_+%"]=294, ["fire_damage_taken_+"]=231, - ["fire_dot_multiplier_+"]=961, + ["fire_dot_multiplier_+"]=966, ["fire_golem_grants_damage_+%"]=311, ["fire_nova_damage_+%_per_repeat_final"]=322, ["fire_shield_damage_threshold"]=171, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=962, - ["firestorm_final_impact_damage_+%_final"]=963, - ["firestorm_initial_impact_area_of_effect_+%_final"]=964, - ["firestorm_initial_impact_damage_+%_final"]=965, - ["firewall_applies_%_fire_exposure"]=966, - ["fixed_skill_effect_duration"]=967, - ["flame_dash_burning_damage_+%_final"]=968, - ["flame_surge_burning_ground_creation_cooldown_ms"]=969, - ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=970, - ["flame_wall_projectiles_ignite_effect_+%_final"]=971, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=967, + ["firestorm_final_impact_damage_+%_final"]=968, + ["firestorm_initial_impact_area_of_effect_+%_final"]=969, + ["firestorm_initial_impact_damage_+%_final"]=970, + ["firewall_applies_%_fire_exposure"]=971, + ["fixed_skill_effect_duration"]=972, + ["flame_dash_burning_damage_+%_final"]=973, + ["flame_surge_burning_ground_creation_cooldown_ms"]=974, + ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=975, + ["flame_wall_projectiles_ignite_effect_+%_final"]=976, ["flame_whip_damage_+%_final_vs_burning_enemies"]=290, - ["flameblast_area_+%_final_per_stage"]=972, - ["flameblast_hit_damage_+%_final_per_10_life_reserved"]=973, - ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=974, - ["flameblast_maximum_stages"]=975, - ["flameblast_starts_with_X_additional_stages"]=976, + ["flameblast_area_+%_final_per_stage"]=977, + ["flameblast_hit_damage_+%_final_per_10_life_reserved"]=978, + ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=979, + ["flameblast_maximum_stages"]=980, + ["flameblast_starts_with_X_additional_stages"]=981, ["flamethrower_damage_+%_per_stage_final"]=223, - ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=977, - ["flamethrower_tower_trap_number_of_flamethrowers"]=978, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=979, - ["flask_charges_used_+%"]=980, - ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=987, - ["flask_throw_base_charges_used"]=981, - ["flask_throw_bleed_effect_+%_final"]=982, - ["flask_throw_cold_exposure_ms"]=983, - ["flask_throw_fire_exposure_ms"]=985, - ["flask_throw_lightning_exposure_ms"]=986, - ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=988, - ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=989, - ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=988, - ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=989, - ["flask_throw_poison_effect_+%_final"]=990, - ["flask_throw_ruby_flask_ignite_effect_+%"]=991, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=984, + ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=982, + ["flamethrower_tower_trap_number_of_flamethrowers"]=983, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=984, + ["flask_charges_used_+%"]=985, + ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=992, + ["flask_throw_base_charges_used"]=986, + ["flask_throw_bleed_effect_+%_final"]=987, + ["flask_throw_cold_exposure_ms"]=988, + ["flask_throw_fire_exposure_ms"]=990, + ["flask_throw_lightning_exposure_ms"]=991, + ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=993, + ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=994, + ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=993, + ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=994, + ["flask_throw_poison_effect_+%_final"]=995, + ["flask_throw_ruby_flask_ignite_effect_+%"]=996, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=989, ["flicker_strike_additional_flickers_from_power_charges"]=244, - ["flicker_strike_buff_movement_speed_+%"]=992, - ["flicker_strike_teleport_range_+%"]=993, + ["flicker_strike_buff_movement_speed_+%"]=997, + ["flicker_strike_teleport_range_+%"]=998, ["font_of_blood_radius"]=3, ["font_of_mana_radius"]=5, ["font_of_rage_radius"]=7, ["fortify_duration_+%"]=308, - ["fortify_on_hit"]=994, - ["fortify_on_hit_close_range"]=995, - ["fortifying_cry_guard_gained_+%_final"]=996, - ["freeze_applies_cold_resistance_+"]=997, + ["fortify_on_hit"]=999, + ["fortify_on_hit_close_range"]=1000, + ["fortifying_cry_guard_gained_+%_final"]=1001, + ["freeze_applies_cold_resistance_+"]=1002, ["freeze_duration_+%"]=93, - ["freeze_duration_ms_+"]=998, + ["freeze_duration_ms_+"]=1003, ["freeze_mine_cold_resistance_+_while_frozen"]=242, - ["freezing_pulse_damage_+%_final_at_long_range"]=1000, - ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=1001, - ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=1002, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=1003, - ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=1004, - ["frost_fury_added_duration_per_stage_ms"]=1005, - ["frost_fury_base_fire_interval_ms"]=1006, - ["frost_fury_duration_+%_per_stage"]=1007, - ["frost_fury_fire_speed_+%_final_while_channelling"]=1008, - ["frost_fury_fire_speed_+%_per_stage"]=1009, - ["frost_fury_max_number_of_stages"]=1010, - ["frost_globe_absorb_damage_%_enemy_in_bubble"]=1011, - ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=1012, - ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=1013, - ["frost_globe_health_per_stage"]=1014, - ["frost_globe_life_regeneration_rate_per_minute_%"]=1015, - ["frost_globe_max_stages"]=1016, - ["frost_globe_stage_gain_interval_ms"]=1017, - ["frost_wall_total_maximum_life"]=1018, - ["frostbolt_projectile_acceleration"]=1019, - ["frostbolt_projectile_speed_+%_final"]=1020, - ["frozen_legion_%_chance_to_summon_additional_statue"]=1021, - ["frozen_monsters_take_increased_damage"]=1022, - ["fully_break_enemies_armour_on_heavy_stun"]=1023, - ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=1024, - ["fully_broken_armour_duration_ms_removed_on_hit"]=1025, + ["freezing_pulse_damage_+%_final_at_long_range"]=1005, + ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=1006, + ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=1007, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=1008, + ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=1009, + ["frost_fury_added_duration_per_stage_ms"]=1010, + ["frost_fury_base_fire_interval_ms"]=1011, + ["frost_fury_duration_+%_per_stage"]=1012, + ["frost_fury_fire_speed_+%_final_while_channelling"]=1013, + ["frost_fury_fire_speed_+%_per_stage"]=1014, + ["frost_fury_max_number_of_stages"]=1015, + ["frost_globe_absorb_damage_%_enemy_in_bubble"]=1016, + ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=1017, + ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=1018, + ["frost_globe_health_per_stage"]=1019, + ["frost_globe_life_regeneration_rate_per_minute_%"]=1020, + ["frost_globe_max_stages"]=1021, + ["frost_globe_stage_gain_interval_ms"]=1022, + ["frost_wall_total_maximum_life"]=1023, + ["frostbolt_projectile_acceleration"]=1024, + ["frostbolt_projectile_speed_+%_final"]=1025, + ["frozen_legion_%_chance_to_summon_additional_statue"]=1026, + ["frozen_monsters_take_increased_damage"]=1027, + ["fully_break_enemies_armour_on_heavy_stun"]=1028, + ["fully_broken_armour_and_sundered_armour_duration_ms_+"]=1029, + ["fully_broken_armour_duration_ms_removed_on_hit"]=1030, ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=161, - ["gain_1_rage_on_use_%_chance"]=1026, - ["gain_X_volatility_on_empowered_skill_use"]=1027, - ["gain_elusive_on_crit_%_chance"]=1028, + ["gain_1_rage_on_use_%_chance"]=1031, + ["gain_X_volatility_on_empowered_skill_use"]=1032, + ["gain_elusive_on_crit_%_chance"]=1033, ["gain_endurance_charge_on_melee_stun"]=241, ["gain_endurance_charge_on_melee_stun_%"]=241, - ["gain_fortify_on_melee_hit_ms"]=1029, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=1030, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=1031, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=1032, - ["gain_power_charge_on_kill_with_hit_%"]=1033, - ["gain_rage_on_hit_%_chance"]=1035, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=1036, - ["gain_righteous_charge_on_mana_spent_%"]=1037, - ["gain_x_rage_on_attack_hit"]=1038, - ["gain_x_rage_on_hit"]=1034, - ["gain_x_rage_on_melee_hit"]=1039, - ["galvanic_field_beam_delay_ms"]=1040, - ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1041, - ["galvanic_field_maximum_number_of_spheres"]=1192, - ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=1042, - ["gem_quality_ancestral_cry_global_fire_damage_granted_+%_final"]=1043, - ["gem_quality_earthquake_damaging_ailment_effect_+%_final"]=1044, - ["gem_quality_flameblast_damaging_ailment_effect_per_stage_+%_final"]=1045, - ["gem_quality_marked_enemy_damage_dealt_+%_final"]=1046, - ["generic_ongoing_trigger_maximum_energy"]=1047, - ["generic_ongoing_trigger_triggers_at_maximum_energy"]=1047, - ["generic_ongoing_triggerer_is_invocation_skill"]=1739, - ["glacial_cascade_travel_speed_+%"]=1048, + ["gain_fortify_on_melee_hit_ms"]=1034, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=1035, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=1036, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=1037, + ["gain_power_charge_on_kill_with_hit_%"]=1038, + ["gain_rage_on_hit_%_chance"]=1040, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=1041, + ["gain_righteous_charge_on_mana_spent_%"]=1042, + ["gain_x_rage_on_attack_hit"]=1043, + ["gain_x_rage_on_hit"]=1039, + ["gain_x_rage_on_melee_hit"]=1044, + ["galvanic_field_beam_delay_ms"]=1045, + ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1046, + ["galvanic_field_maximum_number_of_spheres"]=1197, + ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=1047, + ["gem_quality_ancestral_cry_global_fire_damage_granted_+%_final"]=1048, + ["gem_quality_earthquake_damaging_ailment_effect_+%_final"]=1049, + ["gem_quality_flameblast_damaging_ailment_effect_per_stage_+%_final"]=1050, + ["gem_quality_marked_enemy_damage_dealt_+%_final"]=1051, + ["generic_ongoing_trigger_maximum_energy"]=1052, + ["generic_ongoing_trigger_triggers_at_maximum_energy"]=1052, + ["generic_ongoing_triggerer_is_invocation_skill"]=1744, + ["glacial_cascade_travel_speed_+%"]=1053, ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=202, ["global_always_hit"]=288, - ["global_bleed_on_hit"]=1049, + ["global_bleed_on_hit"]=1054, ["global_cannot_crit"]=358, ["global_chance_to_blind_on_hit_%"]=211, ["global_chance_to_knockback_%"]=60, ["global_hit_causes_monster_flee_%"]=190, - ["global_knockback"]=1050, - ["global_maim_on_hit"]=1051, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1612, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=1052, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1612, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=1052, + ["global_knockback"]=1055, + ["global_maim_on_hit"]=1056, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=1617, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=1057, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=1617, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=1057, ["global_poison_on_hit"]=342, - ["glorious_madness_timer_ms"]=1053, - ["golem_buff_effect_+%"]=1054, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=1055, - ["grenade_skill_%_chance_to_explode_twice"]=1056, - ["ground_slam_angle_+%"]=1058, + ["glorious_madness_timer_ms"]=1058, + ["golem_buff_effect_+%"]=1059, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=1060, + ["grenade_skill_%_chance_to_explode_twice"]=1061, + ["ground_slam_angle_+%"]=1063, ["groundslam_damage_to_close_targets_+%_final"]=361, - ["has_freeze_cull"]=1059, - ["hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1060, - ["hazard_rearm_%_chance"]=1061, - ["herald_of_agony_add_stack_on_poison"]=1062, - ["herald_of_agony_poison_effect_+%_final"]=1063, - ["herald_of_ash_fire_damage_+%"]=1064, - ["herald_of_blood_global_physical_damage_granted_+%"]=1065, - ["herald_of_ice_cold_damage_+%"]=1066, - ["herald_of_light_summon_champion_on_kill"]=1067, - ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=1068, - ["herald_of_purity_physical_damage_+%_final"]=1069, - ["herald_of_thunder_lightning_damage_+%"]=1070, - ["hex_transfer_on_death_total_range"]=1071, - ["hexblast_damage_+%_final_per_second_remaining_curse_duration"]=1072, - ["hexblast_hit_damage_+%_final_if_hexed"]=1073, - ["hinder_enemy_chaos_damage_+%"]=1074, - ["hinder_enemy_chaos_damage_taken_+%"]=1075, - ["hit_%_chance_to_be_dazing"]=1079, - ["hit_damage_+%_vs_chilled_enemies"]=1076, - ["hit_damage_stun_multiplier_+%"]=1077, - ["hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour"]=1078, - ["hits_grant_cruelty"]=1080, - ["hits_ignore_all_enemy_monster_resistances"]=1081, - ["hits_ignore_enemy_monster_physical_damage_reduction"]=1082, - ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=1083, - ["holy_path_teleport_range_+%"]=1084, - ["holy_relic_nova_life_regeneration_rate_per_minute"]=1085, - ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1086, - ["hundred_times_attacks_per_second"]=1087, - ["hundred_times_average_damage_per_skill_use"]=1088, - ["hundred_times_casts_per_second"]=1089, - ["hundred_times_damage_per_second"]=1090, - ["hydro_sphere_pulse_frequency_ms"]=1091, - ["hydrosphere_hit_cooldown_ms"]=1092, - ["ice_crash_first_stage_damage_+%_final"]=1093, + ["has_freeze_cull"]=1064, + ["hazard_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1065, + ["hazard_rearm_%_chance"]=1066, + ["herald_of_agony_add_stack_on_poison"]=1067, + ["herald_of_agony_poison_effect_+%_final"]=1068, + ["herald_of_ash_fire_damage_+%"]=1069, + ["herald_of_blood_global_physical_damage_granted_+%"]=1070, + ["herald_of_ice_cold_damage_+%"]=1071, + ["herald_of_light_summon_champion_on_kill"]=1072, + ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=1073, + ["herald_of_purity_physical_damage_+%_final"]=1074, + ["herald_of_thunder_lightning_damage_+%"]=1075, + ["hex_transfer_on_death_total_range"]=1076, + ["hexblast_damage_+%_final_per_second_remaining_curse_duration"]=1077, + ["hexblast_hit_damage_+%_final_if_hexed"]=1078, + ["hinder_enemy_chaos_damage_+%"]=1079, + ["hinder_enemy_chaos_damage_taken_+%"]=1080, + ["hit_%_chance_to_be_dazing"]=1084, + ["hit_damage_+%_vs_chilled_enemies"]=1081, + ["hit_damage_stun_multiplier_+%"]=1082, + ["hit_damage_stun_multiplier_+%_against_enemies_with_fully_broken_armour"]=1083, + ["hits_grant_cruelty"]=1085, + ["hits_ignore_all_enemy_monster_resistances"]=1086, + ["hits_ignore_enemy_monster_physical_damage_reduction"]=1087, + ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=1088, + ["holy_path_teleport_range_+%"]=1089, + ["holy_relic_nova_life_regeneration_rate_per_minute"]=1090, + ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=1091, + ["hundred_times_attacks_per_second"]=1092, + ["hundred_times_average_damage_per_skill_use"]=1093, + ["hundred_times_casts_per_second"]=1094, + ["hundred_times_damage_per_second"]=1095, + ["hydro_sphere_pulse_frequency_ms"]=1096, + ["hydrosphere_hit_cooldown_ms"]=1097, + ["ice_crash_first_stage_damage_+%_final"]=1098, ["ice_crash_second_hit_damage_+%_final"]=309, ["ice_crash_third_hit_damage_+%_final"]=310, - ["ice_crystal_shatter_detonation_area_of_effect_+%_final"]=1094, - ["ice_crystal_shatter_detonation_damage_+%_final"]=1095, - ["ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1096, - ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1097, - ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1097, + ["ice_crystal_shatter_detonation_area_of_effect_+%_final"]=1099, + ["ice_crystal_shatter_detonation_damage_+%_final"]=1100, + ["ice_crystals_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1101, + ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=1102, + ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=1102, ["ice_golem_grants_accuracy_+%"]=313, ["ice_golem_grants_critical_strike_chance_+%"]=312, ["ice_nova_number_of_repeats"]=285, ["ice_nova_radius_+%_per_repeat"]=286, ["ice_shield_moving_mana_degeneration_per_minute"]=229, - ["ice_spear_distance_before_form_change_+%"]=1098, + ["ice_spear_distance_before_form_change_+%"]=1103, ["ice_spear_second_form_critical_strike_chance_+%"]=207, ["ice_spear_second_form_critical_strike_multiplier_+"]=208, ["ice_spear_second_form_projectile_speed_+%_final"]=209, - ["igneous_shield_perfect_block_cooldown_ms"]=1902, - ["igneous_shield_perfect_block_window_time_ms"]=1099, + ["igneous_shield_perfect_block_cooldown_ms"]=1907, + ["igneous_shield_perfect_block_window_time_ms"]=1104, ["ignite_duration_+%"]=98, - ["ignite_effect_+%_final_against_frozen_enemies"]=1100, - ["ignite_effect_+%_final_if_heat_is_consumed"]=753, + ["ignite_effect_+%_final_against_frozen_enemies"]=1105, + ["ignite_effect_+%_final_if_heat_is_consumed"]=758, ["ignite_proliferation_delay_ms"]=182, ["ignite_proliferation_radius"]=182, - ["ignites_apply_fire_resistance_+"]=1101, - ["immolation_brand_burn_damage_+%_final_per_stage"]=1102, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1103, - ["impacting_steel_secondary_projectile_damage_+%_final"]=1104, - ["impale_magnitude_+%"]=1105, - ["impale_on_hit_%_chance"]=1106, - ["impurity_cold_damage_taken_+%_final"]=1107, - ["impurity_fire_damage_taken_+%_final"]=1108, - ["impurity_lightning_damage_taken_+%_final"]=1109, + ["ignites_apply_fire_resistance_+"]=1106, + ["immolation_brand_burn_damage_+%_final_per_stage"]=1107, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=1108, + ["impacting_steel_secondary_projectile_damage_+%_final"]=1109, + ["impale_magnitude_+%"]=1110, + ["impale_on_hit_%_chance"]=1111, + ["impurity_cold_damage_taken_+%_final"]=1112, + ["impurity_fire_damage_taken_+%_final"]=1113, + ["impurity_lightning_damage_taken_+%_final"]=1114, ["incinerate_damage_+%_per_stage"]=224, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1110, - ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1111, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=1115, + ["infernal_blow_explosion_damage_%_of_total_per_stack"]=1116, ["infernal_cry_%_max_life_as_fire_on_death"]=306, - ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"]=1860, - ["infernal_cry_empowered_attacks_trigger_combust_display"]=1875, - ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%"]=1913, - ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%"]=1913, - ["infernal_cry_explosion_fire_damage_+%_final_per_corpse_power"]=1112, - ["inflict_all_exposure_on_hit"]=1113, - ["inflict_exposure_for_x_ms_on_cold_crit"]=1114, - ["inflict_exposure_for_x_ms_on_ignite"]=1115, - ["inflict_exposure_for_x_ms_on_shock"]=1116, - ["inflict_exposure_on_hit_%_chance"]=1117, - ["infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy"]=1118, - ["infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy"]=1119, - ["infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy"]=1120, - ["inspiration_charge_duration_+%"]=1121, + ["infernal_cry_covered_in_ash_fire_damage_taken_%_per_5_monster_power"]=1865, + ["infernal_cry_empowered_attacks_trigger_combust_display"]=1880, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_cap%"]=1918, + ["infernal_cry_exerted_attack_all_damage_%_to_gain_as_fire_per_5_power_up_to_cap%"]=1918, + ["infernal_cry_explosion_fire_damage_+%_final_per_corpse_power"]=1117, + ["inflict_all_exposure_on_hit"]=1118, + ["inflict_exposure_for_x_ms_on_cold_crit"]=1119, + ["inflict_exposure_for_x_ms_on_ignite"]=1120, + ["inflict_exposure_for_x_ms_on_shock"]=1121, + ["inflict_exposure_on_hit_%_chance"]=1122, + ["infusion_remnants_%_chance_to_spawn_cold_infusion_on_freezing_an_enemy"]=1123, + ["infusion_remnants_%_chance_to_spawn_fire_infusion_on_igniting_an_enemy"]=1124, + ["infusion_remnants_%_chance_to_spawn_lightning_infusion_on_shocking_an_enemy"]=1125, + ["inspiration_charge_duration_+%"]=1126, ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=319, ["intermediary_chaos_area_damage_to_deal_per_minute"]=138, ["intermediary_chaos_damage_to_deal_per_minute"]=139, - ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=1122, - ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=1123, + ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=1127, + ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=1128, ["intermediary_cold_area_damage_to_deal_per_minute"]=144, ["intermediary_cold_damage_to_deal_per_minute"]=145, - ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=1124, - ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=1125, + ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=1129, + ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=1130, ["intermediary_fire_area_damage_to_deal_per_minute"]=148, ["intermediary_fire_damage_to_deal_per_minute"]=149, - ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=1126, - ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=1127, - ["intermediary_lightning_skill_dot_area_damage_to_deal_per_minute"]=1128, - ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=1129, - ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=1130, - ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=1131, - ["intimidate_enemies_when_they_enter_your_presence_duration_ms"]=1620, - ["intimidate_nearby_enemies_on_use_for_ms"]=1132, - ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1878, - ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"]=1857, + ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=1131, + ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=1132, + ["intermediary_lightning_skill_dot_area_damage_to_deal_per_minute"]=1133, + ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=1134, + ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=1135, + ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=1136, + ["intimidate_enemies_when_they_enter_your_presence_duration_ms"]=1625, + ["intimidate_nearby_enemies_on_use_for_ms"]=1137, + ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1883, + ["intimidating_cry_enemy_phys_reduction_%_penalty_vs_hit_per_5_MP"]=1862, ["is_remote_mine"]=39, ["is_trap"]=40, - ["jagged_ground_duration_ms"]=1134, + ["jagged_ground_duration_ms"]=1139, ["keystone_minion_instability"]=133, ["keystone_point_blank"]=186, ["kill_enemy_on_hit_if_under_10%_life"]=185, ["killed_monster_dropped_item_quantity_+%"]=103, ["killed_monster_dropped_item_rarity_+%"]=102, - ["killing_blow_consumes_corpse_restore_%_life"]=1135, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1136, - ["kinetic_bolt_forks_apply_to_zig_zags"]=1137, - ["kinetic_bolt_number_of_zig_zags"]=1903, - ["knockback_chance_%_at_close_range"]=1138, + ["killing_blow_consumes_corpse_restore_%_life"]=1140, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1141, + ["kinetic_bolt_forks_apply_to_zig_zags"]=1142, + ["kinetic_bolt_number_of_zig_zags"]=1908, + ["knockback_chance_%_at_close_range"]=1143, ["knockback_distance_+%"]=62, - ["lacerate_hit_damage_+%_final_vs_bleeding_enemies"]=1139, - ["lancing_steel_damage_+%_at_close_range"]=1140, - ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1141, - ["lancing_steel_targeting_range_+%"]=1142, + ["lacerate_hit_damage_+%_final_vs_bleeding_enemies"]=1144, + ["lancing_steel_damage_+%_at_close_range"]=1145, + ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1146, + ["lancing_steel_targeting_range_+%"]=1147, ["life_gain_per_target"]=119, - ["life_leech_also_recovers_based_on_elemental_damage_types"]=1143, + ["life_leech_also_recovers_based_on_elemental_damage_types"]=1148, ["life_regeneration_rate_+%"]=205, ["life_regeneration_rate_per_minute_%"]=204, - ["life_reservation_permyriad"]=1144, + ["life_reservation_permyriad"]=1149, ["light_radius_increases_apply_to_area_of_effect"]=35, - ["lightning_ailment_effect_+%"]=1145, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1146, - ["lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1147, - ["lightning_explosion_mine_aura_damage_taken_+%"]=1905, + ["lightning_ailment_effect_+%"]=1150, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1151, + ["lightning_conduit_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=1152, + ["lightning_explosion_mine_aura_damage_taken_+%"]=1910, ["lightning_golem_grants_attack_and_cast_speed_+%"]=316, ["lightning_penetration_%_while_on_low_mana"]=216, - ["lightning_rod_%_chance_for_additional_burst_on_landing"]=1148, + ["lightning_rod_%_chance_for_additional_burst_on_landing"]=1153, ["lightning_tendrils_channelled_larger_pulse_always_crit"]=127, - ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1149, + ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1154, ["lightning_tendrils_channelled_larger_pulse_interval"]=127, - ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1150, - ["lightning_tower_trap_interval_duration_ms"]=1151, - ["lightning_tower_trap_number_of_beams"]=1151, + ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1155, + ["lightning_tower_trap_interval_duration_ms"]=1156, + ["lightning_tower_trap_number_of_beams"]=1156, ["lightning_trap_projectiles_leave_shocking_ground"]=293, - ["lightning_warp_shocked_ground_base_duration_ms"]=1152, - ["lose_%_of_maximum_rage_on_dealing_critical_strike"]=1153, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1154, - ["lose_blood_scythe_charge_on_kill"]=586, - ["magma_barrier_maximum_block_chance_granted_%"]=1155, - ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1156, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1157, - ["maim_effect_+%"]=1158, - ["maim_on_hit_%"]=1159, - ["main_hand_accuracy_rating"]=1160, - ["main_hand_attack_damage_penetrates_chaos_resist_%"]=1161, - ["main_hand_attack_damage_penetrates_cold_resist_%"]=1162, - ["main_hand_attack_damage_penetrates_fire_resist_%"]=1163, - ["main_hand_attack_damage_penetrates_lightning_resist_%"]=1164, - ["main_hand_chaos_damage_only_min_or_max"]=1169, - ["main_hand_cold_damage_only_min_or_max"]=1170, - ["main_hand_critical_hit_damage_bonus"]=1165, - ["main_hand_critical_strike_chance"]=1166, - ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1167, - ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1168, - ["main_hand_fire_damage_only_min_or_max"]=1171, - ["main_hand_lightning_damage_only_min_or_max"]=1172, - ["main_hand_maximum_chaos_damage"]=1169, - ["main_hand_maximum_cold_damage"]=1170, - ["main_hand_maximum_fire_damage"]=1171, - ["main_hand_maximum_lightning_damage"]=1172, - ["main_hand_maximum_physical_damage"]=1173, - ["main_hand_maximum_total_damage"]=1174, - ["main_hand_minimum_chaos_damage"]=1169, - ["main_hand_minimum_cold_damage"]=1170, - ["main_hand_minimum_fire_damage"]=1171, - ["main_hand_minimum_lightning_damage"]=1172, - ["main_hand_minimum_physical_damage"]=1173, - ["main_hand_minimum_total_damage"]=1174, - ["main_hand_physical_damage_only_min_or_max"]=1173, - ["main_hand_reload_time"]=1175, - ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1176, + ["lightning_warp_shocked_ground_base_duration_ms"]=1157, + ["lose_%_of_maximum_rage_on_dealing_critical_strike"]=1158, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1159, + ["lose_blood_scythe_charge_on_kill"]=591, + ["magma_barrier_maximum_block_chance_granted_%"]=1160, + ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1161, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1162, + ["maim_effect_+%"]=1163, + ["maim_on_hit_%"]=1164, + ["main_hand_accuracy_rating"]=1165, + ["main_hand_attack_damage_penetrates_chaos_resist_%"]=1166, + ["main_hand_attack_damage_penetrates_cold_resist_%"]=1167, + ["main_hand_attack_damage_penetrates_fire_resist_%"]=1168, + ["main_hand_attack_damage_penetrates_lightning_resist_%"]=1169, + ["main_hand_chaos_damage_only_min_or_max"]=1174, + ["main_hand_cold_damage_only_min_or_max"]=1175, + ["main_hand_critical_hit_damage_bonus"]=1170, + ["main_hand_critical_strike_chance"]=1171, + ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1172, + ["main_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1173, + ["main_hand_fire_damage_only_min_or_max"]=1176, + ["main_hand_lightning_damage_only_min_or_max"]=1177, + ["main_hand_maximum_chaos_damage"]=1174, + ["main_hand_maximum_cold_damage"]=1175, + ["main_hand_maximum_fire_damage"]=1176, + ["main_hand_maximum_lightning_damage"]=1177, + ["main_hand_maximum_physical_damage"]=1178, + ["main_hand_maximum_total_damage"]=1179, + ["main_hand_minimum_chaos_damage"]=1174, + ["main_hand_minimum_cold_damage"]=1175, + ["main_hand_minimum_fire_damage"]=1176, + ["main_hand_minimum_lightning_damage"]=1177, + ["main_hand_minimum_physical_damage"]=1178, + ["main_hand_minimum_total_damage"]=1179, + ["main_hand_physical_damage_only_min_or_max"]=1178, + ["main_hand_reload_time"]=1180, + ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1181, ["mana_degeneration_per_minute"]=228, - ["mana_gain_per_target"]=1177, - ["mana_remnants_global_mana_regeneration_rate_granted_+%"]=1178, - ["mana_tempest_effects_linger_X_ms"]=1179, - ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1180, - ["manaforged_arrows_total_mana_threshold"]=1181, - ["mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks"]=1182, - ["mark_effect_+%"]=1183, - ["max_crab_aspect_stacks"]=1184, - ["max_number_of_absolution_sentinels"]=1185, - ["max_number_of_lightning_warp_markers"]=1186, - ["max_steel_ammo"]=1187, - ["maximum_added_cold_damage_per_frenzy_charge"]=1208, - ["maximum_added_cold_damage_vs_chilled_enemies"]=1209, - ["maximum_added_lightning_damage_from_skill"]=1210, + ["mana_gain_per_target"]=1182, + ["mana_remnants_global_mana_regeneration_rate_granted_+%"]=1183, + ["mana_tempest_effects_linger_X_ms"]=1184, + ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1185, + ["manaforged_arrows_total_mana_threshold"]=1186, + ["mantra_of_destruction_grant_all_damage_%_to_gain_as_chaos_with_attacks"]=1187, + ["mark_effect_+%"]=1188, + ["max_crab_aspect_stacks"]=1189, + ["max_number_of_absolution_sentinels"]=1190, + ["max_number_of_lightning_warp_markers"]=1191, + ["max_steel_ammo"]=1192, + ["maximum_added_cold_damage_per_frenzy_charge"]=1213, + ["maximum_added_cold_damage_vs_chilled_enemies"]=1214, + ["maximum_added_lightning_damage_from_skill"]=1215, ["maximum_fire_damage_per_fuse_arrow_orb"]=160, - ["maximum_life_%_damage_absorbed_per_jade_consumed"]=1188, - ["maximum_life_+%_for_corpses_you_create"]=1189, - ["maximum_number_of_blades_left_in_ground"]=1190, - ["maximum_number_of_crossbow_heat_stacks"]=1191, - ["maximum_number_of_mirage_warriors"]=1193, - ["maximum_number_of_snapping_adder_projectiles"]=1194, + ["maximum_life_%_damage_absorbed_per_jade_consumed"]=1193, + ["maximum_life_+%_for_corpses_you_create"]=1194, + ["maximum_number_of_blades_left_in_ground"]=1195, + ["maximum_number_of_crossbow_heat_stacks"]=1196, + ["maximum_number_of_mirage_warriors"]=1198, + ["maximum_number_of_snapping_adder_projectiles"]=1199, ["maximum_number_of_spinning_blades"]=336, - ["maximum_number_of_spiritual_cry_warriors"]=1862, - ["maximum_number_of_summoned_doubles"]=1195, - ["maximum_number_of_vaal_ice_shot_mirages"]=1196, - ["maximum_secondary_physical_damage_per_15_strength"]=1212, - ["maximum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1213, - ["maximum_verisium_infusion_stacks"]=1197, - ["maximum_virulence_stacks"]=1198, - ["meditate_energy_shield_recharge_rate_+%_final"]=1199, + ["maximum_number_of_spiritual_cry_warriors"]=1867, + ["maximum_number_of_summoned_doubles"]=1200, + ["maximum_number_of_vaal_ice_shot_mirages"]=1201, + ["maximum_secondary_physical_damage_per_15_strength"]=1217, + ["maximum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1218, + ["maximum_verisium_infusion_stacks"]=1202, + ["maximum_virulence_stacks"]=1203, + ["meditate_energy_shield_recharge_rate_+%_final"]=1204, ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=54, ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=49, ["melee_counterattack_trigger_on_block_%"]=248, ["melee_counterattack_trigger_on_hit_%"]=246, ["melee_damage_vs_bleeding_enemies_+%"]=324, - ["melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill"]=1201, + ["melee_kill_invocation_gain_X_centienergy_per_monster_power_on_melee_kill"]=1206, ["melee_physical_damage_+%"]=155, ["melee_range_+"]=331, ["melee_weapon_range_+"]=330, ["meta_skill_base_costs_equals_%_total_base_costs_from_all_socketed_skills"]=13, - ["mine_cannot_rearm"]=1202, - ["mine_critical_strike_chance_+%_per_power_charge"]=1203, - ["mine_detonates_instantly"]=1204, + ["mine_cannot_rearm"]=1207, + ["mine_critical_strike_chance_+%_per_power_charge"]=1208, + ["mine_detonates_instantly"]=1209, ["mine_detonation_radius_+%"]=43, - ["mine_detonation_speed_+%"]=1205, + ["mine_detonation_speed_+%"]=1210, ["mine_duration"]=200, ["mine_laying_speed_+%"]=199, - ["mine_projectile_speed_+%_per_frenzy_charge"]=1206, - ["mine_throwing_speed_+%_per_frenzy_charge"]=1207, - ["minimum_added_cold_damage_per_frenzy_charge"]=1208, - ["minimum_added_cold_damage_vs_chilled_enemies"]=1209, - ["minimum_added_lightning_damage_from_skill"]=1210, + ["mine_projectile_speed_+%_per_frenzy_charge"]=1211, + ["mine_throwing_speed_+%_per_frenzy_charge"]=1212, + ["minimum_added_cold_damage_per_frenzy_charge"]=1213, + ["minimum_added_cold_damage_vs_chilled_enemies"]=1214, + ["minimum_added_lightning_damage_from_skill"]=1215, ["minimum_fire_damage_per_fuse_arrow_orb"]=160, - ["minimum_power_from_quality"]=1211, - ["minimum_secondary_physical_damage_per_15_strength"]=1212, - ["minimum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1213, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1226, - ["minion_additional_physical_damage_reduction_%"]=1214, + ["minimum_power_from_quality"]=1216, + ["minimum_secondary_physical_damage_per_15_strength"]=1217, + ["minimum_unscalable_added_fire_damage_to_add_to_oil_ground_ignite"]=1218, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1231, + ["minion_additional_physical_damage_reduction_%"]=1219, ["minion_attack_speed_+%"]=123, - ["minion_block_%"]=1215, - ["minion_burning_damage_+%"]=1216, + ["minion_block_%"]=1220, + ["minion_burning_damage_+%"]=1221, ["minion_cast_speed_+%"]=124, - ["minion_chance_to_deal_double_damage_%"]=1217, - ["minion_chance_to_taunt_on_hit_%"]=1218, - ["minion_cooldown_recovery_+%"]=1219, + ["minion_chance_to_deal_double_damage_%"]=1222, + ["minion_chance_to_taunt_on_hit_%"]=1223, + ["minion_cooldown_recovery_+%"]=1224, ["minion_damage_+%"]=120, - ["minion_damage_+%_on_full_life"]=1220, + ["minion_damage_+%_on_full_life"]=1225, ["minion_duration"]=82, - ["minion_fire_damage_taken_+%"]=1221, - ["minion_larger_aggro_radius"]=1910, - ["minion_life_regeneration_rate_per_minute_%"]=1222, - ["minion_maim_on_hit_%"]=1223, - ["minion_maximum_all_elemental_resistances_%"]=1224, + ["minion_fire_damage_taken_+%"]=1226, + ["minion_larger_aggro_radius"]=1915, + ["minion_life_regeneration_rate_per_minute_%"]=1227, + ["minion_maim_on_hit_%"]=1228, + ["minion_maximum_all_elemental_resistances_%"]=1229, ["minion_maximum_life_+%"]=132, - ["minion_melee_damage_+%"]=1225, + ["minion_melee_damage_+%"]=1230, ["minion_movement_speed_+%"]=125, - ["minion_rage_effect_+%"]=1227, - ["minion_skill_area_of_effect_+%"]=1228, - ["minion_stun_threshold_reduction_+%"]=1229, - ["minions_are_defensive"]=1911, - ["minions_cannot_be_damaged_after_summoned_ms"]=1230, - ["minions_chance_to_intimidate_on_hit_%"]=1231, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1232, - ["minions_inflict_exposure_on_hit_%_chance"]=1233, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1234, - ["mirage_archer_number_of_additional_projectiles"]=1235, + ["minion_rage_effect_+%"]=1232, + ["minion_skill_area_of_effect_+%"]=1233, + ["minion_stun_threshold_reduction_+%"]=1234, + ["minions_are_defensive"]=1916, + ["minions_cannot_be_damaged_after_summoned_ms"]=1235, + ["minions_chance_to_intimidate_on_hit_%"]=1236, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1237, + ["minions_inflict_exposure_on_hit_%_chance"]=1238, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1239, + ["mirage_archer_number_of_additional_projectiles"]=1240, ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=38, ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=36, ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=37, - ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1237, - ["molten_shell_damage_absorb_limit_%_of_armour"]=1236, - ["molten_shell_damage_absorbed_%"]=1236, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1238, - ["molten_shell_max_damage_absorbed"]=1236, - ["molten_strike_projectiles_chain_when_impacting_ground"]=1239, + ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1242, + ["molten_shell_damage_absorb_limit_%_of_armour"]=1241, + ["molten_shell_damage_absorbed_%"]=1241, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1243, + ["molten_shell_max_damage_absorbed"]=1241, + ["molten_strike_projectiles_chain_when_impacting_ground"]=1244, ["monster_response_time_ms"]=153, - ["mortal_call_elemental_damage_taken_+%_final"]=1240, - ["mortal_call_physical_damage_taken_+%_final"]=1241, - ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1242, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1906, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1906, - ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1906, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1906, + ["mortal_call_elemental_damage_taken_+%_final"]=1245, + ["mortal_call_physical_damage_taken_+%_final"]=1246, + ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1247, + ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1911, + ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1911, + ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1911, + ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1911, ["movement_velocity_cap"]=128, - ["multiple_projectiles_projectile_spread_+%"]=1243, - ["multishot_empowered_projectile_speed_+%"]=1244, + ["multiple_projectiles_projectile_spread_+%"]=1248, + ["multishot_empowered_projectile_speed_+%"]=1249, ["never_freeze"]=292, - ["never_ignite"]=1245, - ["never_shock"]=1246, + ["never_ignite"]=1250, + ["never_shock"]=1251, ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=327, ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=326, ["newshocknova_first_ring_damage_+%_final"]=304, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1247, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1252, ["no_movement_speed"]=101, - ["non_damaging_ailment_effect_+%"]=1248, - ["non_modifiable_totem_limit"]=1249, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff"]=1250, - ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=1251, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff"]=1252, - ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1253, - ["non_spell_cast_duration_ms"]=1254, - ["nova_skills_cast_at_target_location"]=1255, - ["number_of_additional_chain_targets"]=1256, - ["number_of_additional_fissures"]=1257, - ["number_of_additional_impaled_debuffs_to_apply"]=1258, - ["number_of_allowed_storm_arrows"]=1259, - ["number_of_branching_fissures"]=1260, - ["number_of_champions_of_light_allowed"]=1261, - ["number_of_corpses_to_consume"]=1262, - ["number_of_crossbow_bolts"]=1263, - ["number_of_herald_scorpions_allowed"]=1265, - ["number_of_marks_allowed_per_type"]=1266, + ["non_damaging_ailment_effect_+%"]=1253, + ["non_modifiable_totem_limit"]=1254, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells_from_buff"]=1255, + ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks_vs_burning_enemies"]=1256, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells_from_buff"]=1257, + ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1258, + ["non_spell_cast_duration_ms"]=1259, + ["nova_skills_cast_at_target_location"]=1260, + ["number_of_additional_chain_targets"]=1261, + ["number_of_additional_fissures"]=1262, + ["number_of_additional_impaled_debuffs_to_apply"]=1263, + ["number_of_allowed_storm_arrows"]=1264, + ["number_of_branching_fissures"]=1265, + ["number_of_champions_of_light_allowed"]=1266, + ["number_of_corpses_to_consume"]=1267, + ["number_of_crossbow_bolts"]=1268, + ["number_of_herald_scorpions_allowed"]=1270, + ["number_of_marks_allowed_per_type"]=1271, ["number_of_mines_to_place"]=39, - ["number_of_mirage_archers_allowed"]=1267, - ["number_of_reapers_allowed"]=1268, - ["number_of_relics_allowed"]=1269, - ["number_of_runic_aftershocks_allowed"]=1270, - ["number_of_skeletal_constructs_allowed"]=1271, - ["number_of_support_ghosts_allowed"]=540, - ["number_of_tempest_bells_allowed"]=1272, - ["number_of_totems_to_summon"]=1273, + ["number_of_mirage_archers_allowed"]=1272, + ["number_of_reapers_allowed"]=1273, + ["number_of_relics_allowed"]=1274, + ["number_of_runic_aftershocks_allowed"]=1275, + ["number_of_skeletal_constructs_allowed"]=1276, + ["number_of_support_ghosts_allowed"]=545, + ["number_of_tempest_bells_allowed"]=1277, + ["number_of_totems_to_summon"]=1278, ["number_of_traps_to_throw"]=40, - ["number_of_warcries_exerting_this_action"]=1133, - ["off_hand_accuracy_rating"]=1274, - ["off_hand_attack_damage_penetrates_chaos_resist_%"]=1275, - ["off_hand_attack_damage_penetrates_cold_resist_%"]=1276, - ["off_hand_attack_damage_penetrates_fire_resist_%"]=1277, - ["off_hand_attack_damage_penetrates_lightning_resist_%"]=1278, - ["off_hand_chaos_damage_only_min_or_max"]=1283, - ["off_hand_cold_damage_only_min_or_max"]=1284, - ["off_hand_critical_hit_damage_bonus"]=1279, - ["off_hand_critical_strike_chance"]=1280, - ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1281, - ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1282, - ["off_hand_fire_damage_only_min_or_max"]=1285, - ["off_hand_lightning_damage_only_min_or_max"]=1286, - ["off_hand_maximum_chaos_damage"]=1283, - ["off_hand_maximum_cold_damage"]=1284, - ["off_hand_maximum_fire_damage"]=1285, - ["off_hand_maximum_lightning_damage"]=1286, - ["off_hand_maximum_physical_damage"]=1287, - ["off_hand_maximum_total_damage"]=1288, - ["off_hand_minimum_chaos_damage"]=1283, - ["off_hand_minimum_cold_damage"]=1284, - ["off_hand_minimum_fire_damage"]=1285, - ["off_hand_minimum_lightning_damage"]=1286, - ["off_hand_minimum_physical_damage"]=1287, - ["off_hand_minimum_total_damage"]=1288, - ["off_hand_physical_damage_only_min_or_max"]=1287, + ["number_of_warcries_exerting_this_action"]=1138, + ["off_hand_accuracy_rating"]=1279, + ["off_hand_attack_damage_penetrates_chaos_resist_%"]=1280, + ["off_hand_attack_damage_penetrates_cold_resist_%"]=1281, + ["off_hand_attack_damage_penetrates_fire_resist_%"]=1282, + ["off_hand_attack_damage_penetrates_lightning_resist_%"]=1283, + ["off_hand_chaos_damage_only_min_or_max"]=1288, + ["off_hand_cold_damage_only_min_or_max"]=1289, + ["off_hand_critical_hit_damage_bonus"]=1284, + ["off_hand_critical_strike_chance"]=1285, + ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1286, + ["off_hand_effetive_total_chance_permyriad_for_hit_to_be_double_critical"]=1287, + ["off_hand_fire_damage_only_min_or_max"]=1290, + ["off_hand_lightning_damage_only_min_or_max"]=1291, + ["off_hand_maximum_chaos_damage"]=1288, + ["off_hand_maximum_cold_damage"]=1289, + ["off_hand_maximum_fire_damage"]=1290, + ["off_hand_maximum_lightning_damage"]=1291, + ["off_hand_maximum_physical_damage"]=1292, + ["off_hand_maximum_total_damage"]=1293, + ["off_hand_minimum_chaos_damage"]=1288, + ["off_hand_minimum_cold_damage"]=1289, + ["off_hand_minimum_fire_damage"]=1290, + ["off_hand_minimum_lightning_damage"]=1291, + ["off_hand_minimum_physical_damage"]=1292, + ["off_hand_minimum_total_damage"]=1293, + ["off_hand_physical_damage_only_min_or_max"]=1292, ["offering_skill_effect_duration_per_corpse"]=24, ["oil_arrow_explosion_base_damage_+permyriad"]=157, ["oil_arrow_explosion_maximum_added_fire_damage"]=159, ["oil_arrow_explosion_minimum_added_fire_damage"]=159, - ["orb_of_storms_bolt_frequency_ms"]=1289, - ["orb_of_storms_channelling_bolt_frequency_ms"]=1290, - ["orb_of_storms_maximum_number_of_hits"]=1291, - ["orb_of_storms_maximum_number_of_orbs"]=1292, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1293, - ["parallel_projectile_firing_point_x_dist_+%"]=1294, + ["orb_of_storms_bolt_frequency_ms"]=1294, + ["orb_of_storms_channelling_bolt_frequency_ms"]=1295, + ["orb_of_storms_maximum_number_of_hits"]=1296, + ["orb_of_storms_maximum_number_of_orbs"]=1297, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1298, + ["parallel_projectile_firing_point_x_dist_+%"]=1299, parent="active_skill_gem_stat_descriptions", - ["penance_brand_additional_descriptions_boolean"]=1295, - ["penance_brand_base_spread_radius_+"]=1296, - ["penetrate_%_fire_resistance_per_100_dexterity"]=1297, - ["petrification_statue_target_action_speed_-%"]=1302, - ["phantasm_grant_buff_maximum_added_physical_damage"]=1303, - ["phantasm_grant_buff_minimum_added_physical_damage"]=1303, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1304, + ["penance_brand_additional_descriptions_boolean"]=1300, + ["penance_brand_base_spread_radius_+"]=1301, + ["penetrate_%_fire_resistance_per_100_dexterity"]=1302, + ["petrification_statue_target_action_speed_-%"]=1307, + ["phantasm_grant_buff_maximum_added_physical_damage"]=1308, + ["phantasm_grant_buff_minimum_added_physical_damage"]=1308, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1309, ["phase_run_melee_physical_damage_+%_final"]=154, ["phase_through_objects"]=333, - ["phys_cascade_trap_interval_duration_ms"]=1305, - ["phys_cascade_trap_number_of_cascades"]=1305, - ["physical_damage_reduction_%_per_crab_aspect_stack"]=1306, + ["phys_cascade_trap_interval_duration_ms"]=1310, + ["phys_cascade_trap_number_of_cascades"]=1310, + ["physical_damage_reduction_%_per_crab_aspect_stack"]=1311, ["physical_damage_reduction_rating_+%"]=172, ["physical_damage_taken_+"]=230, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1307, - ["plague_bearer_gains_%_of_damage_from_inflicted_poisons"]=1308, - ["plague_bearer_maximum_stored_poison_damage"]=1308, - ["plague_bearer_movement_speed_+%_while_infecting"]=1309, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1312, + ["plague_bearer_gains_%_of_damage_from_inflicted_poisons"]=1313, + ["plague_bearer_maximum_stored_poison_damage"]=1313, + ["plague_bearer_movement_speed_+%_while_infecting"]=1314, ["plague_bearer_poison_effect_+%_while_infecting"]=356, - ["plague_burst_%_stored_value_to_deal_as_physical_damage"]=1310, - ["plague_burst_area_+%_final_maximum"]=1311, - ["plague_burst_triggered_by_bursting_plague_death"]=1312, - ["plant_skill_damage_+%_final_when_wet"]=1313, - ["portal_alternate_destination_chance_permyriad"]=1317, - ["predict_totem_maximum_energy_shield"]=1318, - ["predict_totem_maximum_life"]=1319, - ["primary_projectile_impale_chance_%"]=1320, - ["prismatic_rain_beam_frequency_ms"]=1321, - ["projectile_attack_damage_+%_in_blood_stance"]=1322, - ["projectile_chance_to_be_able_to_chain_from_terrain_%"]=1324, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=1325, - ["projectile_chance_to_not_pierce_%"]=1326, - ["projectile_damage_+%_if_pierced_enemy"]=1327, - ["projectile_damage_+%_per_remaining_chain"]=1328, - ["projectile_damage_+%_vs_nearby_enemies"]=1335, + ["plague_burst_%_stored_value_to_deal_as_physical_damage"]=1315, + ["plague_burst_area_+%_final_maximum"]=1316, + ["plague_burst_triggered_by_bursting_plague_death"]=1317, + ["plant_skill_damage_+%_final_when_wet"]=1318, + ["portal_alternate_destination_chance_permyriad"]=1322, + ["predict_totem_maximum_energy_shield"]=1323, + ["predict_totem_maximum_life"]=1324, + ["primary_projectile_impale_chance_%"]=1325, + ["prismatic_rain_beam_frequency_ms"]=1326, + ["projectile_attack_damage_+%_in_blood_stance"]=1327, + ["projectile_chance_to_be_able_to_chain_from_terrain_%"]=1329, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=1330, + ["projectile_chance_to_not_pierce_%"]=1331, + ["projectile_damage_+%_if_pierced_enemy"]=1332, + ["projectile_damage_+%_per_remaining_chain"]=1333, + ["projectile_damage_+%_vs_nearby_enemies"]=1340, ["projectile_damage_modifiers_apply_to_skill_dot"]=34, ["projectile_ground_effect_duration"]=80, - ["projectile_only_collide_with_wet_targets"]=1329, + ["projectile_only_collide_with_wet_targets"]=1334, ["projectile_return_%_chance"]=222, - ["projectile_speed_+%"]=1330, - ["projectile_speed_+%_in_sand_stance"]=1331, - ["projectiles_can_shotgun"]=1332, - ["projectiles_can_split_at_end_of_range"]=1323, - ["projectiles_can_split_from_terrain"]=1323, - ["projectiles_cannot_fork"]=1333, - ["projectiles_cannot_split"]=1334, - ["projectiles_fork_when_passing_a_flame_wall"]=1336, - ["projectiles_nova"]=1337, - ["projectiles_pierce_all_targets_in_x_range"]=1338, - ["projectiles_rain"]=1339, + ["projectile_speed_+%"]=1335, + ["projectile_speed_+%_in_sand_stance"]=1336, + ["projectiles_can_shotgun"]=1337, + ["projectiles_can_split_at_end_of_range"]=1328, + ["projectiles_can_split_from_terrain"]=1328, + ["projectiles_cannot_fork"]=1338, + ["projectiles_cannot_split"]=1339, + ["projectiles_fork_when_passing_a_flame_wall"]=1341, + ["projectiles_nova"]=1342, + ["projectiles_pierce_all_targets_in_x_range"]=1343, + ["projectiles_rain"]=1344, ["projectiles_return"]=222, - ["puppet_master_duration_ms"]=1340, - ["purge_expose_resist_%_matching_highest_element_damage"]=1341, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1342, - ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=1343, + ["puppet_master_duration_ms"]=1345, + ["purge_expose_resist_%_matching_highest_element_damage"]=1346, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1347, + ["pustules_grow_as_though_dealing_X_poison_damage_per_minute_when_wet"]=1348, ["quake_slam_fully_charged_explosion_damage_+%_final"]=335, - ["quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem"]=412, - ["quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem"]=1057, - ["quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem"]=436, - ["quality_display_active_skill_required_number_of_combo_stacks_is_gem"]=441, + ["quality_display_active_skill_damage_+%_final_vs_immobilised_enemies_is_gem"]=417, + ["quality_display_active_skill_ground_effect_area_of_effect_+%_final_per_second_max_is_gem"]=1062, + ["quality_display_active_skill_pins_as_though_dealt_damage_+%_final_is_gem"]=441, + ["quality_display_active_skill_required_number_of_combo_stacks_is_gem"]=446, ["quality_display_active_skill_returning_damage_is_gem"]=360, - ["quality_display_base_number_of_crossbow_bolts_is_gem"]=537, - ["quality_display_base_number_of_projectiles_is_gem"]=538, - ["quality_display_contagion_is_gem"]=762, - ["quality_display_ember_fusilade_is_gem"]=925, - ["quality_display_exsanguinate_beam_targets_is_gem"]=592, + ["quality_display_base_number_of_crossbow_bolts_is_gem"]=542, + ["quality_display_base_number_of_projectiles_is_gem"]=543, + ["quality_display_contagion_is_gem"]=767, + ["quality_display_ember_fusilade_is_gem"]=930, + ["quality_display_exsanguinate_beam_targets_is_gem"]=597, ["quality_display_ice_crash_is_gem"]=310, - ["quality_display_immortal_call_is_gem"]=1242, - ["quality_display_incinerate_is_gem_hit"]=946, - ["quality_display_infernal_cry_is_gem"]=1913, - ["quality_display_mana_tempest_is_gem"]=1252, - ["quality_display_rapid_shot_maximum_num_of_stacks_is_gem"]=1191, - ["quality_display_rune_paint_is_gem"]=1378, - ["quality_display_sandstorm_swipe_is_gem"]=1385, - ["quality_display_spear_puncture_is_gem"]=514, - ["quality_display_warding_steel_is_gem"]=1883, - ["queens_demand_effect"]=883, - ["quick_guard_damage_absorb_limit"]=1344, - ["quick_guard_damage_absorbed_%"]=1344, - ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1346, - ["rage_slash_maximum_vortices"]=1349, - ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1347, - ["rage_slash_rage_sacrifice_per_damage_bonus"]=1346, - ["rage_slash_rage_sacrifice_per_radius_bonus"]=1347, - ["rage_slash_sacrifice_rage_%"]=1345, - ["rage_slash_vortex_attack_speed_+%_final"]=1348, - ["ragestorm_movement_speed_+%"]=1350, - ["rain_hit_delay_ms"]=1351, - ["rain_of_arrows_additional_sequence_chance_%"]=1352, - ["rain_of_arrows_arrow_speed_+%"]=1353, - ["raise_zombie_empowerment_effect_+%"]=1354, - ["rallying_cry_buff_effect_on_minions_+%_final"]=1865, - ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1869, - ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1856, - ["reap_life_%_granted_on_death_with_debuff"]=586, - ["reave_additional_max_stacks"]=1355, + ["quality_display_immortal_call_is_gem"]=1247, + ["quality_display_incinerate_is_gem_hit"]=951, + ["quality_display_infernal_cry_is_gem"]=1918, + ["quality_display_mana_tempest_is_gem"]=1257, + ["quality_display_rapid_shot_maximum_num_of_stacks_is_gem"]=1196, + ["quality_display_rune_paint_is_gem"]=1383, + ["quality_display_sandstorm_swipe_is_gem"]=1390, + ["quality_display_spear_puncture_is_gem"]=519, + ["quality_display_warding_steel_is_gem"]=1888, + ["queens_demand_effect"]=888, + ["quick_guard_damage_absorb_limit"]=1349, + ["quick_guard_damage_absorbed_%"]=1349, + ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1351, + ["rage_slash_maximum_vortices"]=1354, + ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1352, + ["rage_slash_rage_sacrifice_per_damage_bonus"]=1351, + ["rage_slash_rage_sacrifice_per_radius_bonus"]=1352, + ["rage_slash_sacrifice_rage_%"]=1350, + ["rage_slash_vortex_attack_speed_+%_final"]=1353, + ["ragestorm_movement_speed_+%"]=1355, + ["rain_hit_delay_ms"]=1356, + ["rain_of_arrows_additional_sequence_chance_%"]=1357, + ["rain_of_arrows_arrow_speed_+%"]=1358, + ["raise_zombie_empowerment_effect_+%"]=1359, + ["rallying_cry_buff_effect_on_minions_+%_final"]=1870, + ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1874, + ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1861, + ["reap_life_%_granted_on_death_with_debuff"]=591, + ["reave_additional_max_stacks"]=1360, ["reave_area_of_effect_+%_final_per_stage"]=240, - ["reaver_enrage_base_life_%_degen_per_minute"]=1356, - ["reaver_enrage_decay_rate_increase_+%_final"]=1356, - ["recall_sigil_target_search_range_+%"]=1357, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=1358, - ["recover_%_maximum_life_on_cull"]=1359, - ["recover_%_maximum_mana_on_cull"]=1360, - ["recover_permyriad_life_on_skill_use"]=1361, - ["reduce_enemy_chaos_resistance_%"]=1363, - ["reduce_enemy_cold_resistance_%"]=1364, + ["reaver_enrage_base_life_%_degen_per_minute"]=1361, + ["reaver_enrage_decay_rate_increase_+%_final"]=1361, + ["recall_sigil_target_search_range_+%"]=1362, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=1363, + ["recover_%_maximum_life_on_cull"]=1364, + ["recover_%_maximum_mana_on_cull"]=1365, + ["recover_permyriad_life_on_skill_use"]=1366, + ["reduce_enemy_chaos_resistance_%"]=1368, + ["reduce_enemy_cold_resistance_%"]=1369, ["reduce_enemy_elemental_resistance_%"]=217, - ["reduce_enemy_fire_resistance_%"]=1365, - ["reduce_enemy_lightning_resistance_%"]=1366, - ["refresh_bleeding_duration_on_hit_%_chance"]=1367, + ["reduce_enemy_fire_resistance_%"]=1370, + ["reduce_enemy_lightning_resistance_%"]=1371, + ["refresh_bleeding_duration_on_hit_%_chance"]=1372, ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=390, - ["reload_speed_+%"]=1368, - ["remnant_effect_+%"]=1369, - ["remove_freeze_on_ignite"]=1370, - ["repeat_last_step_of_combo_attack"]=1371, + ["reload_speed_+%"]=1373, + ["remnant_effect_+%"]=1374, + ["remove_freeze_on_ignite"]=1375, + ["repeat_last_step_of_combo_attack"]=1376, ["returning_projectiles_always_pierce"]=363, - ["rhoa_movement_speed_+%"]=1372, - ["rhoa_movement_speed_penalty_+%_final_while_performing_action"]=1373, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1374, + ["rhoa_movement_speed_+%"]=1377, + ["rhoa_movement_speed_penalty_+%_final_while_performing_action"]=1378, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1379, ["righteous_fire_spell_damage_+%_final"]=178, - ["ring_of_ice_placement_distance"]=1375, - ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1376, - ["rune_paint_area_of_effect_+%_per_rune_level"]=1377, - ["rune_paint_hit_damage_+%_final_per_rune_level"]=1378, - ["rune_paint_mana_spend_per_rune_upgrade"]=1379, - ["rune_paint_max_rune_level"]=1380, - ["sacrifice_%_life_on_skill_use"]=1382, - ["sacrifice_minion_life_granted_+%"]=1381, - ["sanctify_wave_damage_+%_final"]=1383, - ["sandstorm_swipe_max_stages"]=1384, - ["sandstorm_swipe_storm_damage_+%_final_per_stage"]=1385, - ["sandstorm_swipe_storm_radius_+_per_stage"]=1386, - ["scorpion_minion_attack_speed_+%"]=1387, - ["scorpion_minion_maximum_added_physical_damage"]=1389, - ["scorpion_minion_minimum_added_physical_damage"]=1389, - ["scorpion_minion_physical_damage_+%"]=1388, + ["ring_of_ice_placement_distance"]=1380, + ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1381, + ["rune_paint_area_of_effect_+%_per_rune_level"]=1382, + ["rune_paint_hit_damage_+%_final_per_rune_level"]=1383, + ["rune_paint_mana_spend_per_rune_upgrade"]=1384, + ["rune_paint_max_rune_level"]=1385, + ["sacrifice_%_life_on_skill_use"]=1387, + ["sacrifice_minion_life_granted_+%"]=1386, + ["sanctify_wave_damage_+%_final"]=1388, + ["sandstorm_swipe_max_stages"]=1389, + ["sandstorm_swipe_storm_damage_+%_final_per_stage"]=1390, + ["sandstorm_swipe_storm_radius_+_per_stage"]=1391, + ["scorpion_minion_attack_speed_+%"]=1392, + ["scorpion_minion_maximum_added_physical_damage"]=1394, + ["scorpion_minion_minimum_added_physical_damage"]=1394, + ["scorpion_minion_physical_damage_+%"]=1393, ["secondary_buff_effect_duration"]=78, - ["secondary_critical_hit_damage_bonus"]=1390, - ["secondary_critical_strike_chance"]=1391, - ["secondary_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1392, + ["secondary_critical_hit_damage_bonus"]=1395, + ["secondary_critical_strike_chance"]=1396, + ["secondary_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1397, ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=152, - ["secondary_lightning_damage_only_min_or_max"]=1396, - ["secondary_maximum_chaos_damage"]=1393, - ["secondary_maximum_cold_damage"]=1394, - ["secondary_maximum_fire_damage"]=1395, - ["secondary_maximum_lightning_damage"]=1396, - ["secondary_maximum_physical_damage"]=1397, - ["secondary_maximum_total_damage"]=1398, - ["secondary_minimum_chaos_damage"]=1393, - ["secondary_minimum_cold_damage"]=1394, - ["secondary_minimum_fire_damage"]=1395, - ["secondary_minimum_lightning_damage"]=1396, - ["secondary_minimum_physical_damage"]=1397, - ["secondary_minimum_total_damage"]=1398, + ["secondary_lightning_damage_only_min_or_max"]=1401, + ["secondary_maximum_chaos_damage"]=1398, + ["secondary_maximum_cold_damage"]=1399, + ["secondary_maximum_fire_damage"]=1400, + ["secondary_maximum_lightning_damage"]=1401, + ["secondary_maximum_physical_damage"]=1402, + ["secondary_maximum_total_damage"]=1403, + ["secondary_minimum_chaos_damage"]=1398, + ["secondary_minimum_cold_damage"]=1399, + ["secondary_minimum_fire_damage"]=1400, + ["secondary_minimum_lightning_damage"]=1401, + ["secondary_minimum_physical_damage"]=1402, + ["secondary_minimum_total_damage"]=1403, ["secondary_minion_duration"]=83, - ["seismic_cry_base_slam_skill_area_+%"]=1872, - ["seismic_cry_base_slam_skill_damage_+%_final"]=1870, - ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1873, - ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1871, + ["seismic_cry_base_slam_skill_area_+%"]=1877, + ["seismic_cry_base_slam_skill_damage_+%_final"]=1875, + ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1878, + ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1876, ["self_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=177, ["self_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=176, - ["sentinel_minion_cooldown_speed_+%"]=1399, - ["share_charges_with_allies_in_your_presence"]=1400, - ["shatter_on_killing_blow"]=1401, - ["shattering_palm_target_damage_+%_final"]=1402, - ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1403, + ["sentinel_minion_cooldown_speed_+%"]=1404, + ["share_charges_with_allies_in_your_presence"]=1405, + ["shatter_on_killing_blow"]=1406, + ["shattering_palm_target_damage_+%_final"]=1407, + ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1408, ["shield_block_%"]=170, ["shield_charge_damage_+%_maximum"]=87, ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=85, ["shield_charge_stun_duration_+%_maximum"]=86, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=1404, - ["shield_wall_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1405, - ["shield_wall_damage_+%_final_when_slammed"]=1406, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=1409, + ["shield_wall_damage_+%_final_for_first_500_ms_when_not_killed_by_self"]=1410, + ["shield_wall_damage_+%_final_when_slammed"]=1411, ["shock_duration_+%"]=97, - ["shock_effect_+%"]=1407, - ["shock_effect_+%_with_critical_strikes"]=1408, - ["shock_maximum_magnitude_+"]=1409, - ["shock_nearby_enemy_area_of_effect_radius"]=1544, - ["shock_nearby_enemy_base_area_of_effect_radius"]=1544, - ["shock_nova_ring_chance_to_shock_+%"]=1410, + ["shock_effect_+%"]=1412, + ["shock_effect_+%_with_critical_strikes"]=1413, + ["shock_maximum_magnitude_+"]=1414, + ["shock_nearby_enemy_area_of_effect_radius"]=1549, + ["shock_nearby_enemy_base_area_of_effect_radius"]=1549, + ["shock_nova_ring_chance_to_shock_+%"]=1415, ["shock_nova_ring_damage_+%"]=348, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1411, - ["shocked_ground_base_magnitude_override"]=1412, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1416, + ["shocked_ground_base_magnitude_override"]=1417, ["shockwave_slam_explosion_damage_+%_final"]=346, - ["shrapnel_shot_cone_placement_distance_+"]=1413, - ["shrapnel_trap_number_of_secondary_explosions"]=1414, - ["sigil_attached_target_fire_penetration_%"]=1415, - ["sigil_attached_target_lightning_penetration_%"]=1416, - ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1417, - ["sigil_recall_extend_base_skill_effect_duration"]=1418, - ["sigils_can_target_reaper_minions"]=1419, + ["shrapnel_shot_cone_placement_distance_+"]=1418, + ["shrapnel_trap_number_of_secondary_explosions"]=1419, + ["sigil_attached_target_fire_penetration_%"]=1420, + ["sigil_attached_target_lightning_penetration_%"]=1421, + ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1422, + ["sigil_recall_extend_base_skill_effect_duration"]=1423, + ["sigils_can_target_reaper_minions"]=1424, ["skeletal_chains_aoe_%_health_dealt_as_chaos_damage"]=14, ["skeletal_chains_no_minions_damage_+%_final"]=219, ["skeletal_chains_no_minions_radius_+"]=220, ["skeletal_chains_no_minions_targets_self"]=218, - ["skeletal_cleric_revived_skeletons_immune_for_X_ms"]=1420, - ["skill_additional_fissure_chance_%"]=1421, - ["skill_additional_projectiles_per_seal_broken"]=1422, - ["skill_angle_+%_in_sand_stance"]=1423, - ["skill_area_angle_+%"]=1424, - ["skill_area_of_effect_+%_final_in_sand_stance"]=1426, - ["skill_area_of_effect_+%_per_broken_seal"]=1425, - ["skill_base_oil_exposure_-_to_total_elemental_resistance"]=1428, - ["skill_base_oil_movement_speed_+%_final_to_apply"]=1427, + ["skeletal_cleric_revived_skeletons_immune_for_X_ms"]=1425, + ["skill_additional_fissure_chance_%"]=1426, + ["skill_additional_projectiles_per_seal_broken"]=1427, + ["skill_angle_+%_in_sand_stance"]=1428, + ["skill_area_angle_+%"]=1429, + ["skill_area_of_effect_+%_final_in_sand_stance"]=1431, + ["skill_area_of_effect_+%_per_broken_seal"]=1430, + ["skill_base_oil_exposure_-_to_total_elemental_resistance"]=1433, + ["skill_base_oil_movement_speed_+%_final_to_apply"]=1432, ["skill_buff_effect_+%"]=349, - ["skill_buff_grants_attack_and_cast_speed_+%"]=1430, + ["skill_buff_grants_attack_and_cast_speed_+%"]=1435, ["skill_buff_grants_chance_to_poison_%"]=339, ["skill_buff_grants_critical_strike_chance_+%"]=112, - ["skill_can_fire_arrows"]=538, - ["skill_can_flicker"]=1431, - ["skill_can_only_use_bow"]=1679, - ["skill_can_only_use_non_melee_weapons"]=1682, - ["skill_cannot_gain_rage_during_use"]=1432, - ["skill_code_movement_speed_+%_final"]=1433, - ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=1434, - ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=1435, - ["skill_curses_cannot_apply_to_targets_above_level"]=1436, - ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1437, - ["skill_detonation_time"]=1438, + ["skill_can_fire_arrows"]=543, + ["skill_can_flicker"]=1436, + ["skill_can_only_use_bow"]=1684, + ["skill_can_only_use_non_melee_weapons"]=1687, + ["skill_cannot_gain_rage_during_use"]=1437, + ["skill_code_movement_speed_+%_final"]=1438, + ["skill_consume_frenzy_charge_to_gain_skill_speed_+%_final"]=1439, + ["skill_consume_power_charge_to_gain_critical_strike_chance_+%_final"]=1440, + ["skill_curses_cannot_apply_to_targets_above_level"]=1441, + ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1442, + ["skill_detonation_time"]=1443, ["skill_display_number_of_remote_mines_allowed"]=194, ["skill_display_number_of_totems_allowed"]=192, ["skill_display_number_of_traps_allowed"]=193, - ["skill_echoes_per_seal_broken"]=1439, - ["skill_effect_and_damaging_ailment_duration_+%"]=1440, + ["skill_echoes_per_seal_broken"]=1444, + ["skill_effect_and_damaging_ailment_duration_+%"]=1445, ["skill_effect_duration_+%_per_removable_frenzy_charge"]=169, - ["skill_effect_duration_+%_while_dead"]=1442, - ["skill_effect_duration_per_100_int"]=1441, - ["skill_empower_limitation_specifier_for_stat_description"]=1867, - ["skill_empowers_next_x_melee_attacks"]=1867, - ["skill_eternal_march_life_per_ward_spent_%"]=1443, - ["skill_eternal_march_maximum_ward_cost"]=1443, - ["skill_gain_seal_every_x_hits_blocked"]=1444, - ["skill_grant_X_frenzy_charges_against_normal_and_magic_monsters"]=1445, - ["skill_grant_X_frenzy_charges_against_rare_monsters"]=1445, - ["skill_grant_X_frenzy_charges_against_unique_monsters"]=1445, - ["skill_grant_elusive_when_used"]=1446, - ["skill_has_trigger_from_unique_item"]=1447, - ["skill_hyena_cackle_size"]=1448, + ["skill_effect_duration_+%_while_dead"]=1447, + ["skill_effect_duration_per_100_int"]=1446, + ["skill_empower_limitation_specifier_for_stat_description"]=1872, + ["skill_empowers_next_x_melee_attacks"]=1872, + ["skill_eternal_march_life_per_ward_spent_%"]=1448, + ["skill_eternal_march_maximum_ward_cost"]=1448, + ["skill_gain_seal_every_x_hits_blocked"]=1449, + ["skill_grant_X_frenzy_charges_against_normal_and_magic_monsters"]=1450, + ["skill_grant_X_frenzy_charges_against_rare_monsters"]=1450, + ["skill_grant_X_frenzy_charges_against_unique_monsters"]=1450, + ["skill_grant_elusive_when_used"]=1451, + ["skill_has_trigger_from_unique_item"]=1452, + ["skill_hyena_cackle_size"]=1453, ["skill_is_steel_skill_reload"]=15, - ["skill_jagged_ground_base_duration_ms"]=1449, + ["skill_jagged_ground_base_duration_ms"]=1454, ["skill_main_hand_total_attack_fire_damage_permyriad_to_add_as_unscalable_damage_to_oil_ground_ignite"]=20, - ["skill_maximum_number_of_combo_stacks"]=1450, - ["skill_maximum_seals"]=1451, - ["skill_maximum_travel_distance_+%"]=1452, + ["skill_maximum_number_of_combo_stacks"]=1455, + ["skill_maximum_seals"]=1456, + ["skill_maximum_travel_distance_+%"]=1457, ["skill_minion_explosion_life_%"]=32, - ["skill_offering_targets_an_additional_skeleton"]=1453, - ["skill_oil_movement_speed_+%_final_to_apply"]=1454, - ["skill_rapid_fire_repeats_per_broken_seal"]=1455, - ["skill_seal_gain_interval_ms"]=1456, - ["skill_travel_distance_+%"]=1457, - ["skill_triggered_by_owl_feathers"]=1458, - ["skill_triggered_by_snipe"]=1459, + ["skill_offering_targets_an_additional_skeleton"]=1458, + ["skill_oil_movement_speed_+%_final_to_apply"]=1459, + ["skill_rapid_fire_repeats_per_broken_seal"]=1460, + ["skill_seal_gain_interval_ms"]=1461, + ["skill_travel_distance_+%"]=1462, + ["skill_triggered_by_owl_feathers"]=1463, + ["skill_triggered_by_snipe"]=1464, ["skill_triggered_on_hit_while_have_vivid_stag_wisps"]=18, - ["skill_triggered_when_you_focus_chance_%"]=1460, - ["skill_used_by_mirage_chieftain_damage_+%_final"]=1461, - ["skill_used_by_mirage_warrior_damage_+%_final"]=1462, - ["skill_withered_duration_ms"]=1463, - ["skill_wolf_pack_size"]=1464, - ["slam_aftershock_chance_%"]=1465, + ["skill_triggered_when_you_focus_chance_%"]=1465, + ["skill_used_by_mirage_chieftain_damage_+%_final"]=1466, + ["skill_used_by_mirage_warrior_damage_+%_final"]=1467, + ["skill_withered_duration_ms"]=1468, + ["skill_wolf_pack_size"]=1469, + ["slam_aftershock_chance_%"]=1470, ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=55, ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=50, ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=52, - ["slither_wither_stacks"]=1466, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1467, + ["slither_wither_stacks"]=1471, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1472, ["snapping_adder_released_projectile_damage_+%_final"]=362, - ["solar_orb_pulse_frequency_ms"]=1468, - ["soulfeast_chaos_damage_to_self"]=1469, - ["soulfeast_maximum_stages"]=1470, - ["soulfeast_number_of_secondary_projectiles"]=1471, - ["soulfeast_spell_damage_+%_final_per_stage"]=1472, - ["spear_wall_num_spears"]=1473, - ["spearfield_maim_slows_an_additional_%"]=1474, - ["spectral_helix_rotations_%"]=1475, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1477, + ["solar_orb_pulse_frequency_ms"]=1473, + ["soulfeast_chaos_damage_to_self"]=1474, + ["soulfeast_maximum_stages"]=1475, + ["soulfeast_number_of_secondary_projectiles"]=1476, + ["soulfeast_spell_damage_+%_final_per_stage"]=1477, + ["spear_wall_num_spears"]=1478, + ["spearfield_maim_slows_an_additional_%"]=1479, + ["spectral_helix_rotations_%"]=1480, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1482, ["spectre_duration"]=84, - ["spell_area_damage_+%_in_blood_stance"]=1479, - ["spell_area_of_effect_+%_in_sand_stance"]=1480, - ["spell_cast_duration_ms"]=1481, - ["spell_cast_time_cannot_be_modified"]=1482, - ["spell_critical_hit_damage_bonus"]=1483, - ["spell_critical_strike_chance"]=1484, + ["spell_area_damage_+%_in_blood_stance"]=1484, + ["spell_area_of_effect_+%_in_sand_stance"]=1485, + ["spell_cast_duration_ms"]=1486, + ["spell_cast_time_cannot_be_modified"]=1487, + ["spell_critical_hit_damage_bonus"]=1488, + ["spell_critical_strike_chance"]=1489, ["spell_damage_+%"]=180, ["spell_damage_modifiers_apply_to_skill_dot"]=33, - ["spell_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1485, - ["spell_has_trigger_from_crafted_item_mod"]=1486, - ["spell_lightning_damage_only_min_or_max"]=1494, + ["spell_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1490, + ["spell_has_trigger_from_crafted_item_mod"]=1491, + ["spell_lightning_damage_only_min_or_max"]=1499, ["spell_maximum_added_cold_damage"]=296, ["spell_maximum_added_lightning_damage"]=297, ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=26, - ["spell_maximum_base_cold_damage_as_%_of_intelligence"]=1488, - ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=549, - ["spell_maximum_base_fire_damage_as_%_of_intelligence"]=1487, + ["spell_maximum_base_cold_damage_as_%_of_intelligence"]=1493, + ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=554, + ["spell_maximum_base_fire_damage_as_%_of_intelligence"]=1492, ["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=23, - ["spell_maximum_base_lightning_damage_as_%_of_intelligence"]=1489, + ["spell_maximum_base_lightning_damage_as_%_of_intelligence"]=1494, ["spell_maximum_base_lightning_damage_per_removable_power_charge"]=22, - ["spell_maximum_base_physical_damage_per_shield_quality"]=1490, - ["spell_maximum_chaos_damage"]=1491, - ["spell_maximum_cold_damage"]=1492, - ["spell_maximum_fire_damage"]=1493, - ["spell_maximum_lightning_damage"]=1494, - ["spell_maximum_physical_damage"]=1495, - ["spell_maximum_total_damage"]=1496, + ["spell_maximum_base_physical_damage_per_shield_quality"]=1495, + ["spell_maximum_chaos_damage"]=1496, + ["spell_maximum_cold_damage"]=1497, + ["spell_maximum_fire_damage"]=1498, + ["spell_maximum_lightning_damage"]=1499, + ["spell_maximum_physical_damage"]=1500, + ["spell_maximum_total_damage"]=1501, ["spell_minimum_added_cold_damage"]=296, ["spell_minimum_added_lightning_damage"]=297, ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=26, - ["spell_minimum_base_cold_damage_as_%_of_intelligence"]=1488, - ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=549, - ["spell_minimum_base_fire_damage_as_%_of_intelligence"]=1487, + ["spell_minimum_base_cold_damage_as_%_of_intelligence"]=1493, + ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=554, + ["spell_minimum_base_fire_damage_as_%_of_intelligence"]=1492, ["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=23, - ["spell_minimum_base_lightning_damage_as_%_of_intelligence"]=1489, + ["spell_minimum_base_lightning_damage_as_%_of_intelligence"]=1494, ["spell_minimum_base_lightning_damage_per_removable_power_charge"]=22, - ["spell_minimum_base_physical_damage_per_shield_quality"]=1490, - ["spell_minimum_chaos_damage"]=1491, - ["spell_minimum_cold_damage"]=1492, - ["spell_minimum_fire_damage"]=1493, - ["spell_minimum_lightning_damage"]=1494, - ["spell_minimum_physical_damage"]=1495, - ["spell_minimum_total_damage"]=1496, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=1497, - ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=1498, - ["spellflux_frequency_+%_final"]=1499, - ["spells_chance_to_hinder_on_hit_%"]=1500, - ["spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time"]=1501, - ["spellslinger_mana_reservation"]=1502, + ["spell_minimum_base_physical_damage_per_shield_quality"]=1495, + ["spell_minimum_chaos_damage"]=1496, + ["spell_minimum_cold_damage"]=1497, + ["spell_minimum_fire_damage"]=1498, + ["spell_minimum_lightning_damage"]=1499, + ["spell_minimum_physical_damage"]=1500, + ["spell_minimum_total_damage"]=1501, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=1502, + ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=1503, + ["spellflux_frequency_+%_final"]=1504, + ["spells_chance_to_hinder_on_hit_%"]=1505, + ["spellslinger_invocation_gain_X_centienergy_per_10ms_base_cast_time"]=1506, + ["spellslinger_mana_reservation"]=1507, ["spellslinger_trigger_on_wand_attack_%"]=263, - ["spider_aspect_max_web_count"]=1503, - ["spike_slam_additional_spike_%_chance"]=1504, - ["spike_slam_explosion_damage_+%_final"]=1505, - ["spike_slam_fissure_damage_+%_final"]=1506, - ["spike_slam_fissure_length_+%"]=1507, - ["spike_slam_num_spikes"]=1508, - ["spike_slam_spike_damage_+%_final"]=1509, - ["spirit_offering_critical_strike_chance_+%"]=1510, - ["spirit_offering_critical_strike_multiplier_+"]=1511, - ["spirit_reservation"]=1512, - ["spiritual_cry_double_movement_velocity_+%"]=1513, - ["spiritual_cry_doubles_summoned_per_5_MP"]=1862, - ["splitting_steel_area_+%_final_after_splitting"]=1514, - ["static_strike_beam_damage_+%_final"]=1515, - ["static_strike_beam_damage_+%_final_while_moving"]=1516, + ["spider_aspect_max_web_count"]=1508, + ["spike_slam_additional_spike_%_chance"]=1509, + ["spike_slam_explosion_damage_+%_final"]=1510, + ["spike_slam_fissure_damage_+%_final"]=1511, + ["spike_slam_fissure_length_+%"]=1512, + ["spike_slam_num_spikes"]=1513, + ["spike_slam_spike_damage_+%_final"]=1514, + ["spirit_offering_critical_strike_chance_+%"]=1515, + ["spirit_offering_critical_strike_multiplier_+"]=1516, + ["spirit_reservation"]=1517, + ["spiritual_cry_double_movement_velocity_+%"]=1518, + ["spiritual_cry_doubles_summoned_per_5_MP"]=1867, + ["splitting_steel_area_+%_final_after_splitting"]=1519, + ["static_strike_beam_damage_+%_final"]=1520, + ["static_strike_beam_damage_+%_final_while_moving"]=1521, ["static_strike_explosion_damage_+%_final"]=300, - ["static_strike_number_of_beam_targets"]=1517, - ["stealth_+%"]=1518, - ["steel_ammo_consumed_per_use"]=1519, - ["steel_skill_%_chance_to_not_consume_ammo"]=1520, - ["steel_steal_area_of_effect_+%"]=1521, - ["steel_steal_reflect_damage_+%"]=1522, + ["static_strike_number_of_beam_targets"]=1522, + ["stealth_+%"]=1523, + ["steel_ammo_consumed_per_use"]=1524, + ["steel_skill_%_chance_to_not_consume_ammo"]=1525, + ["steel_steal_area_of_effect_+%"]=1526, + ["steel_steal_reflect_damage_+%"]=1527, ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=315, - ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=1523, - ["storm_blade_has_local_attack_speed_+%"]=1524, - ["storm_blade_has_local_lightning_penetration_%"]=1525, - ["storm_blade_quality_chance_to_shock_%"]=1526, - ["storm_blade_quality_local_critical_strike_chance_+%"]=1527, - ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=1528, - ["storm_burst_explosion_area_of_effect_+%"]=1529, - ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1530, - ["storm_burst_zap_area_of_effect_+%"]=1531, - ["storm_call_chance_to_strike_on_cast_%"]=1532, - ["storm_rain_pulse_count"]=1533, - ["stormblast_bolts_maximum_active_bolt_count"]=1534, - ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=1535, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=1536, + ["storm_barrier_grants_life_regeneration_rate_per_minute_%"]=1528, + ["storm_blade_has_local_attack_speed_+%"]=1529, + ["storm_blade_has_local_lightning_penetration_%"]=1530, + ["storm_blade_quality_chance_to_shock_%"]=1531, + ["storm_blade_quality_local_critical_strike_chance_+%"]=1532, + ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=1533, + ["storm_burst_explosion_area_of_effect_+%"]=1534, + ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1535, + ["storm_burst_zap_area_of_effect_+%"]=1536, + ["storm_call_chance_to_strike_on_cast_%"]=1537, + ["storm_rain_pulse_count"]=1538, + ["stormblast_bolts_maximum_active_bolt_count"]=1539, + ["stormfire_support_shocks_from_skill_do_not_expire_on_ingited_targets"]=1540, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=1541, ["summon_cold_resistance_+"]=236, ["summon_fire_resistance_+"]=235, ["summon_lightning_resistance_+"]=237, - ["summon_mirage_archer_on_hit"]=1537, - ["summon_mirage_warrior_on_crit"]=1538, + ["summon_mirage_archer_on_hit"]=1542, + ["summon_mirage_warrior_on_crit"]=1543, ["summon_totem_cast_speed_+%"]=325, - ["summoned_spider_grants_attack_speed_+%"]=1539, - ["sunder_shockwave_area_of_effect_+%"]=1540, - ["sunder_wave_area_of_effect_+%"]=1541, - ["sunder_wave_delay_+%"]=1542, - ["sunder_wave_min_steps"]=1543, + ["summoned_spider_grants_attack_speed_+%"]=1544, + ["sunder_shockwave_area_of_effect_+%"]=1545, + ["sunder_wave_area_of_effect_+%"]=1546, + ["sunder_wave_delay_+%"]=1547, + ["sunder_wave_min_steps"]=1548, ["sunder_wave_radius_+_per_step"]=53, - ["support_%_chance_to_shock_nearby_enemy_on_shock"]=1544, - ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1545, - ["support_additional_trap_%_chance_for_1_additional_trap"]=1549, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1546, - ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1547, - ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1548, - ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=1550, + ["support_%_chance_to_shock_nearby_enemy_on_shock"]=1549, + ["support_active_skill_consume_enemy_freeze_to_gain_damage_+%_final"]=1550, + ["support_additional_trap_%_chance_for_1_additional_trap"]=1554, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1551, + ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1552, + ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1553, + ["support_ambush_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=1555, ["support_ancestral_slam_big_hit_area_+%"]=377, ["support_ancestral_slam_big_hit_hit_damage_+%_final"]=376, - ["support_apply_daze_on_warcry"]=1551, - ["support_arcane_surge_duration_ms"]=1552, - ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=1552, - ["support_armour_explosion"]=1553, + ["support_apply_daze_on_warcry"]=1556, + ["support_arcane_surge_duration_ms"]=1557, + ["support_arcane_surge_gain_buff_on_%_of_maximum_mana_use_threshold"]=1557, + ["support_armour_explosion"]=1558, ["support_attack_totem_attack_speed_+%_final"]=280, - ["support_aura_duration_buff_duration"]=1554, - ["support_better_ailments_damaging_ailment_effect_+%_final"]=1555, + ["support_aura_duration_buff_duration"]=1559, + ["support_better_ailments_damaging_ailment_effect_+%_final"]=1560, ["support_blood_fountain_life_regeneration_rate_per_minute_%"]=2, ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=323, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1556, - ["support_bursting_plague_max_value_%_of_max_life"]=1557, - ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=1557, - ["support_cannibalism_recover_%_maximum_life_on_kill"]=1558, - ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=1559, - ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=1560, - ["support_clarity_mana_regeneration_rate_+%"]=1561, - ["support_close_combat_attack_damage_+%_final_from_distance"]=1562, - ["support_combo_finisher_damage_+%_final"]=1563, - ["support_combo_finisher_max_combo_required"]=1564, - ["support_combo_finisher_required_number_of_combo_stacks"]=1564, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1561, + ["support_bursting_plague_max_value_%_of_max_life"]=1562, + ["support_bursting_plague_store_%_poison_applied_magnitude_towards_burst"]=1562, + ["support_cannibalism_recover_%_maximum_life_on_kill"]=1563, + ["support_chaotic_assassination_damage_over_time_+%_final_against_full_life_enemies"]=1564, + ["support_chaotic_freeze_dots_allow_enemies_to_be_frozen_by_chaos_damage"]=1565, + ["support_clarity_mana_regeneration_rate_+%"]=1566, + ["support_close_combat_attack_damage_+%_final_from_distance"]=1567, + ["support_combo_finisher_damage_+%_final"]=1568, + ["support_combo_finisher_max_combo_required"]=1569, + ["support_combo_finisher_required_number_of_combo_stacks"]=1569, ["support_concentrated_effect_skill_area_of_effect_+%_final"]=71, - ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=1565, + ["support_consume_power_charge_to_gain_curse_duration_+%_final"]=1570, ["support_controlled_destruction_critical_strike_chance_+%_final"]=113, - ["support_cooldown_reduction_cooldown_recovery_+%"]=1566, + ["support_cooldown_reduction_cooldown_recovery_+%"]=1571, ["support_cruelty_duration_ms"]=365, - ["support_crushing_stuns_crush_on_stun_ms"]=1567, - ["support_culling_strike_vs_rare_or_unique_enemy"]=1568, - ["support_culmination_damage_+%_final_per_combo_stack"]=1569, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=1570, - ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=1571, - ["support_daze_break_duration_ms"]=1572, - ["support_dazed_cry_duration_ms"]=1573, - ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1574, - ["support_debilitate_hit_damage_max_poison_stacks"]=1574, - ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=1575, - ["support_empowered_culling_strike"]=1576, - ["support_empowered_damage_+%_final"]=1577, - ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1676, - ["support_executioner_buff_duration_ms"]=1578, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1579, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=1580, - ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=1581, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1582, - ["support_far_combat_attack_damage_+%_final_from_distance"]=1583, - ["support_focused_ballista_totem_attack_speed_+%_final"]=1584, - ["support_fork_forked_projectile_damage_+%_final"]=1585, - ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=1586, - ["support_ghost_duration"]=1587, - ["support_grenade_damage_+%_final"]=1588, - ["support_ground_effect_area_of_effect_+%_final_per_second"]=1589, - ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1589, - ["support_herbalism_life_recovery_+%_from_life_flasks"]=1590, - ["support_hinder_dots_also_apply_hinder"]=1591, - ["support_holy_descent_consecrated_ground_duration_ms"]=1592, + ["support_crushing_stuns_crush_on_stun_ms"]=1572, + ["support_culling_strike_vs_rare_or_unique_enemy"]=1573, + ["support_culmination_damage_+%_final_per_combo_stack"]=1574, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_6_seconds"]=1575, + ["support_damage_+%_final_per_crossbow_bolt_reloaded_in_past_8_seconds"]=1576, + ["support_daze_break_duration_ms"]=1577, + ["support_dazed_cry_duration_ms"]=1578, + ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1579, + ["support_debilitate_hit_damage_max_poison_stacks"]=1579, + ["support_drained_ailment_damage_over_time_+%_final_if_ailment_consumed"]=1580, + ["support_empowered_culling_strike"]=1581, + ["support_empowered_damage_+%_final"]=1582, + ["support_enraged_warcry_+%_damage_final_for_exerted_attacks"]=1681, + ["support_executioner_buff_duration_ms"]=1583, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1584, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=1585, + ["support_executioner_gain_two_rare_monster_mod_on_kill_ms"]=1586, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1587, + ["support_far_combat_attack_damage_+%_final_from_distance"]=1588, + ["support_focused_ballista_totem_attack_speed_+%_final"]=1589, + ["support_fork_forked_projectile_damage_+%_final"]=1590, + ["support_gem_consume_enemy_fully_broken_armour_to_gain_damage_+%_final"]=1591, + ["support_ghost_duration"]=1592, + ["support_grenade_damage_+%_final"]=1593, + ["support_ground_effect_area_of_effect_+%_final_per_second"]=1594, + ["support_ground_effect_area_of_effect_+%_final_per_second_max"]=1594, + ["support_herbalism_life_recovery_+%_from_life_flasks"]=1595, + ["support_hinder_dots_also_apply_hinder"]=1596, + ["support_holy_descent_consecrated_ground_duration_ms"]=1597, ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=332, - ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1593, - ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1594, - ["support_ice_bite_virtual_buff_duration"]=1594, - ["support_ignite_duration_ignite_effect_+%_final"]=1595, - ["support_ignite_prolif_ignite_effect_+%_final"]=1596, - ["support_ignite_proliferation_radius"]=1597, - ["support_impact_shockwave_non_slam_aftershock_on_heavy_stun_radius"]=1598, - ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1599, - ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1599, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1600, - ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1600, - ["support_innervate_buff_duration_ms"]=1601, - ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1601, - ["support_jagged_ground_area_of_effect_+%_final"]=1602, + ["support_hypothermia_hit_damage_freeze_multiplier_+%_final"]=1598, + ["support_ice_bite_buff_grant_%_added_cold_attack_damage"]=1599, + ["support_ice_bite_virtual_buff_duration"]=1599, + ["support_ignite_duration_ignite_effect_+%_final"]=1600, + ["support_ignite_prolif_ignite_effect_+%_final"]=1601, + ["support_ignite_proliferation_radius"]=1602, + ["support_impact_shockwave_non_slam_aftershock_on_heavy_stun_radius"]=1603, + ["support_inevitable_criticals_critical_strike_chance_+%_cap"]=1604, + ["support_inevitable_criticals_critical_strike_chance_+%_per_second"]=1604, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_cap"]=1605, + ["support_inevitable_criticals_critical_strike_multiplier_+%_final_per_second"]=1605, + ["support_innervate_buff_duration_ms"]=1606, + ["support_innervate_buff_grant_%_added_lightning_attack_damage"]=1606, + ["support_jagged_ground_area_of_effect_+%_final"]=1607, ["support_knights_ferocity_crush_on_hit_ms"]=386, - ["support_knockback_wave_on_stunned"]=1603, - ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1604, - ["support_lifetap_buff_duration"]=1605, - ["support_lifetap_spent_life_threshold"]=1606, - ["support_lockdown_distance_based_pin_damage_+%_final"]=1607, - ["support_maim_chance_physical_damage_+%_final"]=1608, - ["support_maimed_enemies_physical_damage_taken_+%"]=1609, - ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1610, + ["support_knockback_wave_on_stunned"]=1608, + ["support_life_flask_charges_gained_+%_final_from_killing_blow"]=1609, + ["support_lifetap_buff_duration"]=1610, + ["support_lifetap_spent_life_threshold"]=1611, + ["support_lockdown_distance_based_pin_damage_+%_final"]=1612, + ["support_maim_chance_physical_damage_+%_final"]=1613, + ["support_maimed_enemies_physical_damage_taken_+%"]=1614, + ["support_mana_flask_charges_gained_+%_final_from_killing_blow"]=1615, ["support_mana_fountain_mana_regeneration_rate_+%"]=4, - ["support_minefield_mine_throwing_speed_+%_final"]=1611, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1613, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1614, + ["support_minefield_mine_throwing_speed_+%_final"]=1616, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1618, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1619, ["support_minion_maximum_life_+%_final"]=131, - ["support_minion_pact_damage_+%_final"]=1615, - ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1615, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1616, - ["support_mirage_archer_attack_speed_+%_final"]=1617, - ["support_mirage_archer_duration"]=1618, - ["support_momentum_distance_travelled_to_gain_momentum"]=1619, - ["support_momnetum_damage_+%_final_with_momentum"]=1619, - ["support_mothers_ward_duration_ms"]=1621, + ["support_minion_pact_damage_+%_final"]=1620, + ["support_minion_pact_user_life_%_removed_from_nearby_minion"]=1620, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1621, + ["support_mirage_archer_attack_speed_+%_final"]=1622, + ["support_mirage_archer_duration"]=1623, + ["support_momentum_distance_travelled_to_gain_momentum"]=1624, + ["support_momnetum_damage_+%_final_with_momentum"]=1624, + ["support_mothers_ward_duration_ms"]=1626, ["support_multicast_cast_speed_+%_final"]=58, ["support_multiple_attacks_melee_attack_speed_+%_final"]=234, ["support_multiple_projectiles_critical_strike_chance_+%_final"]=114, - ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1622, - ["support_overkill_icy_vortex_duration_ms"]=1623, - ["support_parallel_projectile_number_of_points_per_side"]=1624, - ["support_physical_damage_%_to_gain_as_daze_build_up"]=1625, - ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1626, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1627, - ["support_precision_accuracy_rating_+%"]=1628, + ["support_no_energy_shield_recharge_delay_for_duration_ms_on_stunned"]=1627, + ["support_overkill_icy_vortex_duration_ms"]=1628, + ["support_parallel_projectile_number_of_points_per_side"]=1629, + ["support_physical_damage_%_to_gain_as_daze_build_up"]=1630, + ["support_pierce_projectile_damage_+%_final_if_pierced_enemy"]=1631, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1632, + ["support_precision_accuracy_rating_+%"]=1633, ["support_projectile_attack_speed_+%_final"]=278, - ["support_pulverise_area_of_effect_+%_final"]=1629, + ["support_pulverise_area_of_effect_+%_final"]=1634, ["support_rage_fountain_rage_regeneration_per_minute"]=6, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1630, - ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1631, - ["support_rageforged_enraged_damage_+%_final"]=1631, - ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1632, - ["support_regenerate_mana_per_minute_on_shock"]=1633, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1907, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1634, - ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1635, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1635, + ["support_rageforged_consumes_X_rage_to_enrage_skill_use"]=1636, + ["support_rageforged_enraged_damage_+%_final"]=1636, + ["support_recover_%_maximum_energy_shield_killing_shocked_enemies"]=1637, + ["support_regenerate_mana_per_minute_on_shock"]=1638, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1912, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1639, + ["support_rupture_aggravate_bleeding_on_hitting_heavy_stunned_enemy"]=1640, ["support_ruthless_big_hit_max_count"]=366, ["support_ruthless_big_hit_stun_damage_+%_final"]=366, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1636, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1637, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1637, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1636, - ["support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%"]=935, - ["support_slam_chance_for_one_additional_aftershock_%"]=1638, - ["support_slam_chance_for_three_additional_aftershocks_%"]=1639, - ["support_slam_chance_for_two_additional_aftershocks_%"]=1640, - ["support_slam_spend_X_ward_to_become_runic_boosted"]=1641, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1643, - ["support_slashing_buff_duration_ms"]=1642, - ["support_slashing_damage_+%_final_from_distance"]=1644, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1645, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1645, - ["support_spell_cascade_area_delay_+%"]=1646, - ["support_spell_cascade_area_of_effect_+%_final"]=1647, - ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1648, - ["support_spell_cascade_number_of_cascades_per_side"]=1649, - ["support_spell_cascade_sideways"]=1649, - ["support_spell_echo_area_of_effect_+%_final"]=1650, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1651, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1652, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1653, - ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1654, - ["support_spell_echo_number_of_echo_cascades"]=1655, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1656, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1641, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1642, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1642, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1641, + ["support_seraphs_heart_enemy_hits_%_chance_to_treat_all_resistances_as_90%"]=940, + ["support_slam_chance_for_one_additional_aftershock_%"]=1643, + ["support_slam_chance_for_three_additional_aftershocks_%"]=1644, + ["support_slam_chance_for_two_additional_aftershocks_%"]=1645, + ["support_slam_spend_X_ward_to_become_runic_boosted"]=1646, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1648, + ["support_slashing_buff_duration_ms"]=1647, + ["support_slashing_damage_+%_final_from_distance"]=1649, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1650, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1650, + ["support_spell_cascade_area_delay_+%"]=1651, + ["support_spell_cascade_area_of_effect_+%_final"]=1652, + ["support_spell_cascade_area_of_effect_+%_for_cascade"]=1653, + ["support_spell_cascade_number_of_cascades_per_side"]=1654, + ["support_spell_cascade_sideways"]=1654, + ["support_spell_echo_area_of_effect_+%_final"]=1655, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_0"]=1656, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_1"]=1657, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_2"]=1658, + ["support_spell_echo_area_of_effect_+%_final_for_cascade_3"]=1659, + ["support_spell_echo_number_of_echo_cascades"]=1660, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1661, ["support_spell_totem_cast_speed_+%_final"]=279, - ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1657, - ["support_stomping_ground"]=1658, - ["support_storm_barrier_chaos_damage_+%_final_to_apply"]=1659, - ["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=1666, - ["support_storm_barrier_cold_damage_+%_final_to_apply"]=1660, - ["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=1667, - ["support_storm_barrier_damage_buff_duration_ms"]=1661, - ["support_storm_barrier_fire_damage_+%_final_to_apply"]=1662, - ["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=1668, - ["support_storm_barrier_lightning_damage_+%_final_to_apply"]=1663, - ["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=1669, - ["support_storm_barrier_physical_damage_+%_final_to_apply"]=1664, - ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1665, - ["support_stronger_ignites_ignite_effect_+%_final"]=1670, - ["support_trigger_mana_flare_on_crit"]=1671, - ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1672, - ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1673, - ["support_vitality_life_regeneration_rate_per_minute_%"]=1674, - ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"]=1675, - ["support_warcry_consumes_up_to_X_rage"]=1676, - ["support_weapon_elemental_damage_+%_final"]=1677, - ["supported_skill_can_only_use_axe_and_sword"]=1678, - ["supported_skill_can_only_use_dagger_and_claw"]=1680, - ["supported_skill_can_only_use_mace_and_staff"]=1681, - ["tectonic_slam_side_crack_additional_chance_%"]=1684, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1685, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1683, - ["temper_weapon_empowers_per_strike"]=1686, - ["tempest_bell_damage_+%_final_per_time_hit"]=1687, - ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1688, - ["tethered_movement_speed_+%_final"]=1689, - ["tethered_movement_speed_+%_final_vs_unique_and_rare"]=1690, - ["tethering_arrow_display_rope_limit"]=1691, - ["thorns_critical_hit_damage_bonus"]=1692, - ["thorns_critical_strike_chance"]=1693, - ["thorns_damage_modifiers_apply_to_spell_damage"]=1694, - ["thorns_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1695, - ["thorns_lightning_damage_only_min_or_max"]=1699, - ["thorns_maximum_chaos_damage"]=1696, - ["thorns_maximum_cold_damage"]=1697, - ["thorns_maximum_fire_damage"]=1698, - ["thorns_maximum_lightning_damage"]=1699, - ["thorns_maximum_physical_damage"]=1700, - ["thorns_maximum_total_damage"]=1701, - ["thorns_minimum_chaos_damage"]=1696, - ["thorns_minimum_cold_damage"]=1697, - ["thorns_minimum_fire_damage"]=1698, - ["thorns_minimum_lightning_damage"]=1699, - ["thorns_minimum_physical_damage"]=1700, - ["thorns_minimum_total_damage"]=1701, + ["support_stability_heavy_stun_threshold_+%_final_while_performing_action"]=1662, + ["support_stomping_ground"]=1663, + ["support_storm_barrier_chaos_damage_+%_final_to_apply"]=1664, + ["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=1671, + ["support_storm_barrier_cold_damage_+%_final_to_apply"]=1665, + ["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=1672, + ["support_storm_barrier_damage_buff_duration_ms"]=1666, + ["support_storm_barrier_fire_damage_+%_final_to_apply"]=1667, + ["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=1673, + ["support_storm_barrier_lightning_damage_+%_final_to_apply"]=1668, + ["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=1674, + ["support_storm_barrier_physical_damage_+%_final_to_apply"]=1669, + ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=1670, + ["support_stronger_ignites_ignite_effect_+%_final"]=1675, + ["support_trigger_mana_flare_on_crit"]=1676, + ["support_unbound_ailments_damaging_ailment_effect_+%_final"]=1677, + ["support_unbreakable_light_stun_threshold_+%_final_while_performing_action"]=1678, + ["support_vitality_life_regeneration_rate_per_minute_%"]=1679, + ["support_voranas_siege_hit_damage_+%_final_vs_isolated_enemies"]=1680, + ["support_warcry_consumes_up_to_X_rage"]=1681, + ["support_weapon_elemental_damage_+%_final"]=1682, + ["supported_skill_can_only_use_axe_and_sword"]=1683, + ["supported_skill_can_only_use_dagger_and_claw"]=1685, + ["supported_skill_can_only_use_mace_and_staff"]=1686, + ["tectonic_slam_side_crack_additional_chance_%"]=1689, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1690, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1688, + ["temper_weapon_empowers_per_strike"]=1691, + ["tempest_bell_damage_+%_final_per_time_hit"]=1692, + ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1693, + ["tethered_movement_speed_+%_final"]=1694, + ["tethered_movement_speed_+%_final_vs_unique_and_rare"]=1695, + ["tethering_arrow_display_rope_limit"]=1696, + ["thorns_critical_hit_damage_bonus"]=1697, + ["thorns_critical_strike_chance"]=1698, + ["thorns_damage_modifiers_apply_to_spell_damage"]=1699, + ["thorns_effetive_total_chance_permyriad_for_hit_to_be_critical"]=1700, + ["thorns_lightning_damage_only_min_or_max"]=1704, + ["thorns_maximum_chaos_damage"]=1701, + ["thorns_maximum_cold_damage"]=1702, + ["thorns_maximum_fire_damage"]=1703, + ["thorns_maximum_lightning_damage"]=1704, + ["thorns_maximum_physical_damage"]=1705, + ["thorns_maximum_total_damage"]=1706, + ["thorns_minimum_chaos_damage"]=1701, + ["thorns_minimum_cold_damage"]=1702, + ["thorns_minimum_fire_damage"]=1703, + ["thorns_minimum_lightning_damage"]=1704, + ["thorns_minimum_physical_damage"]=1705, + ["thorns_minimum_total_damage"]=1706, ["throw_traps_in_circle_radius"]=41, - ["thunderous_leap_%_chance_for_shocked_ground_when_detonating"]=1702, - ["time_of_need_global_life_regeneration_rate_granted_+%"]=1703, - ["tornado_base_damage_interval_ms"]=1704, + ["thunderous_leap_%_chance_for_shocked_ground_when_detonating"]=1707, + ["time_of_need_global_life_regeneration_rate_granted_+%"]=1708, + ["tornado_base_damage_interval_ms"]=1709, ["tornado_damage_absorbed_%"]=378, - ["tornado_damage_interval_ms"]=1705, - ["tornado_hinder"]=1706, + ["tornado_damage_interval_ms"]=1710, + ["tornado_hinder"]=1711, ["tornado_maximum_number_of_hits"]=79, - ["tornado_movement_speed_+%"]=1707, - ["total_number_of_projectiles_to_fire_from_stats"]=1708, + ["tornado_movement_speed_+%"]=1712, + ["total_number_of_projectiles_to_fire_from_stats"]=1713, ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=388, ["totem_chaos_resistance_%"]=381, - ["totem_duration"]=1709, + ["totem_duration"]=1714, ["totem_elemental_resistance_%"]=380, ["totem_life_+%"]=201, ["totem_range"]=191, ["totems_cannot_evade"]=196, - ["totems_explode_on_death_for_%_life_as_physical"]=1710, - ["totems_regenerate_%_life_per_minute"]=1711, - ["toxic_pustule_burst_1%_more_damage_per_x_stored_poison"]=1316, - ["toxic_pustule_burst_base_radius_+1_per_x_stored_poison"]=1315, - ["toxic_pustule_max_additional_burst_base_radius_+"]=1315, - ["toxic_pustule_max_burst_damage_+%_final_from_stored_poison"]=1316, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1712, - ["trap_can_be_triggered_by_warcries"]=1713, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1714, + ["totems_explode_on_death_for_%_life_as_physical"]=1715, + ["totems_regenerate_%_life_per_minute"]=1716, + ["toxic_pustule_burst_1%_more_damage_per_x_stored_poison"]=1321, + ["toxic_pustule_burst_base_radius_+1_per_x_stored_poison"]=1320, + ["toxic_pustule_max_additional_burst_base_radius_+"]=1320, + ["toxic_pustule_max_burst_damage_+%_final_from_stored_poison"]=1321, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=1717, + ["trap_can_be_triggered_by_warcries"]=1718, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1719, ["trap_duration"]=197, - ["trap_spread_+%"]=1715, + ["trap_spread_+%"]=1720, ["trap_throwing_speed_+%"]=198, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1716, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1721, ["trap_trigger_radius_+%"]=42, - ["trap_trigger_radius_+%_per_power_charge"]=1717, - ["trauma_base_duration_ms"]=1719, - ["trauma_duration_ms"]=1719, - ["trauma_strike_damage_+%_final_per_trauma"]=1720, - ["trauma_strike_self_damage_per_trauma"]=1719, - ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1721, - ["trigger_after_spending_200_mana_%_chance"]=1722, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1723, - ["trigger_on_attack_hit_against_rare_or_unique"]=1724, - ["trigger_on_block_%_chance"]=1725, - ["trigger_on_bow_attack_%"]=1726, - ["trigger_on_corpse_consume_%_chance"]=1727, - ["trigger_on_heavy_stun_%"]=1728, - ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1729, - ["trigger_on_hit_vs_frozen_enemy_%"]=1730, + ["trap_trigger_radius_+%_per_power_charge"]=1722, + ["trauma_base_duration_ms"]=1724, + ["trauma_duration_ms"]=1724, + ["trauma_strike_damage_+%_final_per_trauma"]=1725, + ["trauma_strike_self_damage_per_trauma"]=1724, + ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1726, + ["trigger_after_spending_200_mana_%_chance"]=1727, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1728, + ["trigger_on_attack_hit_against_rare_or_unique"]=1729, + ["trigger_on_block_%_chance"]=1730, + ["trigger_on_bow_attack_%"]=1731, + ["trigger_on_corpse_consume_%_chance"]=1732, + ["trigger_on_heavy_stun_%"]=1733, + ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1734, + ["trigger_on_hit_vs_frozen_enemy_%"]=1735, ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=257, - ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1731, + ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1736, ["trigger_on_skill_use_from_chest_%"]=256, - ["trigger_on_slam_%_chance"]=1732, - ["trigger_on_trigger_link_target_hit"]=1733, - ["trigger_prismatic_burst_on_hit_%_chance"]=1734, - ["trigger_skills_refund_half_energy_spent_chance_%"]=1735, - ["trigger_vicious_hex_explosion_when_curse_ends"]=1736, - ["triggered_by_brand_support"]=1737, - ["triggered_by_divine_cry"]=1738, - ["triggered_by_generic_ongoing_trigger"]=1739, - ["triggered_by_item_buff"]=1740, - ["triggered_by_spiritual_cry"]=1741, - ["trinity_%_physical_damage_to_convert_to_random_element_granted"]=1742, + ["trigger_on_slam_%_chance"]=1737, + ["trigger_on_trigger_link_target_hit"]=1738, + ["trigger_prismatic_burst_on_hit_%_chance"]=1739, + ["trigger_skills_refund_half_energy_spent_chance_%"]=1740, + ["trigger_vicious_hex_explosion_when_curse_ends"]=1741, + ["triggered_by_brand_support"]=1742, + ["triggered_by_divine_cry"]=1743, + ["triggered_by_generic_ongoing_trigger"]=1744, + ["triggered_by_item_buff"]=1745, + ["triggered_by_spiritual_cry"]=1746, + ["trinity_%_physical_damage_to_convert_to_random_element_granted"]=1747, ["unearth_corpse_level"]=284, - ["use_time_+_ms_if_shapeshift_required"]=1743, + ["use_time_+_ms_if_shapeshift_required"]=1748, ["vaal_animate_weapon_minimum_level_requirement"]=250, - ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1744, - ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1745, - ["vaal_arctic_armour_number_of_hits_absorbed"]=1746, - ["vaal_blade_vortex_has_10_spinning_blades"]=1747, - ["vaal_charged_attack_damage_taken_+%_final"]=1748, - ["vaal_charged_attack_radius_+_per_stage"]=1749, - ["vaal_cleave_executioner_area_of_effect_+%"]=1750, - ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1750, - ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=662, - ["vaal_earthquake_maximum_aftershocks"]=1751, + ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1749, + ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1750, + ["vaal_arctic_armour_number_of_hits_absorbed"]=1751, + ["vaal_blade_vortex_has_10_spinning_blades"]=1752, + ["vaal_charged_attack_damage_taken_+%_final"]=1753, + ["vaal_charged_attack_radius_+_per_stage"]=1754, + ["vaal_cleave_executioner_area_of_effect_+%"]=1755, + ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1755, + ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=667, + ["vaal_earthquake_maximum_aftershocks"]=1756, ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=389, - ["vaal_flameblast_radius_+_per_stage"]=1752, - ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1753, + ["vaal_flameblast_radius_+_per_stage"]=1757, + ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1758, ["vaal_lightning_strike_beam_damage_+%_final"]=287, - ["vaal_reap_additional_maximum_blood_charges"]=1754, - ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1755, - ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=801, + ["vaal_reap_additional_maximum_blood_charges"]=1759, + ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1760, + ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=806, ["vaal_righteous_fire_life_and_es_%_as_damage_per_second"]=16, ["vaal_righteous_fire_life_and_es_%_to_lose_on_use"]=16, ["vaal_righteous_fire_spell_damage_+%_final"]=179, - ["vaal_skill_exertable"]=1756, - ["vaal_storm_call_delay_ms"]=1757, - ["vaal_upgrade_minion_damage_+%_final"]=1758, - ["vaal_upgrade_minion_damage_taken_+%_final"]=1759, - ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1194, - ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1194, - ["vaal_volcanic_fissure_crack_repeat_count"]=1760, - ["vampiric_icon_bleeding_effect_+%_final"]=1761, - ["vanishing_ambush_critical_strike_multiplier_+"]=1877, - ["verisium_infusion_do_not_expire"]=1762, - ["verisium_infusion_duration_+%"]=1763, - ["verisium_infusion_skill_number_of_verisium_infusion_to_grant"]=1764, - ["virtual_aegis_unique_shield_max_value"]=1765, + ["vaal_skill_exertable"]=1761, + ["vaal_storm_call_delay_ms"]=1762, + ["vaal_upgrade_minion_damage_+%_final"]=1763, + ["vaal_upgrade_minion_damage_taken_+%_final"]=1764, + ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1199, + ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1199, + ["vaal_volcanic_fissure_crack_repeat_count"]=1765, + ["vampiric_icon_bleeding_effect_+%_final"]=1766, + ["vanishing_ambush_critical_strike_multiplier_+"]=1882, + ["verisium_infusion_do_not_expire"]=1767, + ["verisium_infusion_duration_+%"]=1768, + ["verisium_infusion_skill_number_of_verisium_infusion_to_grant"]=1769, + ["virtual_aegis_unique_shield_max_value"]=1770, ["virtual_always_pierce"]=88, - ["virtual_armour_+%_while_performing_action_per_250_ms_attack_time"]=1766, + ["virtual_armour_+%_while_performing_action_per_250_ms_attack_time"]=1771, ["virtual_berserk_hundred_times_rage_loss_per_second"]=372, - ["virtual_bladefall_number_of_volleys"]=1767, - ["virtual_blood_spears_total_number_of_spears"]=1768, + ["virtual_bladefall_number_of_volleys"]=1772, + ["virtual_blood_spears_total_number_of_spears"]=1773, ["virtual_cast_when_damage_taken_threshold"]=271, - ["virtual_chance_to_daze_%"]=1769, - ["virtual_chill_effect_+%_final"]=1770, - ["virtual_chill_minimum_slow_%"]=1771, - ["virtual_crossbow_attack_%_chance_to_not_consume_ammo"]=1772, - ["virtual_curse_delay_duration_ms"]=1773, + ["virtual_chance_to_daze_%"]=1774, + ["virtual_chill_effect_+%_final"]=1775, + ["virtual_chill_minimum_slow_%"]=1776, + ["virtual_crossbow_attack_%_chance_to_not_consume_ammo"]=1777, + ["virtual_curse_delay_duration_ms"]=1778, ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=68, - ["virtual_damage_absorbed_per_jade_consumed"]=1774, - ["virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=1775, - ["virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=1776, - ["virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%"]=1777, - ["virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%"]=1778, - ["virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%"]=1779, - ["virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%"]=1780, - ["virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%"]=1781, - ["virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%"]=1782, - ["virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%"]=1783, - ["virtual_display_total_spell_chance_to_inflict_poison_on_hit_%"]=1784, - ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1785, - ["virtual_energy_cost_for_generic_ongoing_trigger"]=1739, - ["virtual_energy_shield_modified_amount_on_skill_use"]=1786, - ["virtual_evasion_+%_while_performing_action_per_250_ms_attack_time"]=1787, + ["virtual_damage_absorbed_per_jade_consumed"]=1779, + ["virtual_damage_taken_%_recouped_as_life_while_performing_attack_per_250_ms_attack_time"]=1780, + ["virtual_damage_taken_%_recouped_as_mana_while_performing_spell_per_250_ms_cast_time"]=1781, + ["virtual_display_total_main_hand_chance_to_inflict_bleeding_on_hit_%"]=1782, + ["virtual_display_total_main_hand_chance_to_inflict_poison_on_hit_%"]=1783, + ["virtual_display_total_off_hand_chance_to_inflict_bleeding_on_hit_%"]=1784, + ["virtual_display_total_off_hand_chance_to_inflict_poison_on_hit_%"]=1785, + ["virtual_display_total_secondary_chance_to_inflict_bleeding_on_hit_%"]=1786, + ["virtual_display_total_secondary_chance_to_inflict_poison_on_hit_%"]=1787, + ["virtual_display_total_spell_chance_to_inflict_bleeding_on_hit_%"]=1788, + ["virtual_display_total_spell_chance_to_inflict_poison_on_hit_%"]=1789, + ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1790, + ["virtual_energy_cost_for_generic_ongoing_trigger"]=1744, + ["virtual_energy_shield_modified_amount_on_skill_use"]=1791, + ["virtual_evasion_+%_while_performing_action_per_250_ms_attack_time"]=1792, ["virtual_firestorm_drop_burning_ground_duration_ms"]=317, ["virtual_firestorm_drop_chilled_ground_duration_ms"]=318, - ["virtual_flameblast_maximum_stages"]=1788, - ["virtual_freezing_enemy_chills_enemies_in_radius"]=999, - ["virtual_generic_ongoing_trigger_maximum_energy"]=1789, - ["virtual_ground_effect_area_of_effect_+%_final_per_second"]=1790, - ["virtual_ground_effect_area_of_effect_+%_final_per_second_max"]=1790, - ["virtual_herald_of_thunder_bolt_base_frequency"]=1791, - ["virtual_hit_damage_stun_multiplier_+%_final"]=1792, + ["virtual_flameblast_maximum_stages"]=1793, + ["virtual_freezing_enemy_chills_enemies_in_radius"]=1004, + ["virtual_generic_ongoing_trigger_maximum_energy"]=1794, + ["virtual_ground_effect_area_of_effect_+%_final_per_second"]=1795, + ["virtual_ground_effect_area_of_effect_+%_final_per_second_max"]=1795, + ["virtual_herald_of_thunder_bolt_base_frequency"]=1796, + ["virtual_hit_damage_stun_multiplier_+%_final"]=1797, ["virtual_intensity_loss_ms_while_moving_interval"]=189, ["virtual_intensity_lost_on_teleport"]=189, - ["virtual_knockback_distance_+%"]=1793, - ["virtual_life_modified_amount_on_skill_use"]=1794, + ["virtual_knockback_distance_+%"]=1798, + ["virtual_life_modified_amount_on_skill_use"]=1799, ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=127, - ["virtual_main_hand_apply_X_armour_break_on_hit"]=1795, - ["virtual_main_hand_hit_damage_stun_multiplier_+%"]=1796, - ["virtual_main_hand_melee_splash_chance_%"]=1797, - ["virtual_main_hand_slam_aftershock_chance_%"]=1798, - ["virtual_mana_modified_amount_on_skill_use"]=1799, + ["virtual_main_hand_apply_X_armour_break_on_hit"]=1800, + ["virtual_main_hand_hit_damage_stun_multiplier_+%"]=1801, + ["virtual_main_hand_melee_splash_chance_%"]=1802, + ["virtual_main_hand_slam_aftershock_chance_%"]=1803, + ["virtual_mana_modified_amount_on_skill_use"]=1804, ["virtual_maximum_intensity"]=188, ["virtual_melee_splash"]=232, - ["virtual_mine_detonation_time_ms"]=1800, + ["virtual_mine_detonation_time_ms"]=1805, ["virtual_minion_damage_+%"]=121, ["virtual_minion_elemental_resistance_%"]=238, - ["virtual_movement_speed_penalty_+%_final_while_performing_action"]=1801, - ["virtual_never_chill"]=1802, - ["virtual_never_freeze"]=1803, - ["virtual_never_ignite"]=1804, - ["virtual_never_shock"]=1805, - ["virtual_number_of_additional_curses_allowed"]=1806, - ["virtual_number_of_banners_allowed"]=1807, + ["virtual_movement_speed_penalty_+%_final_while_performing_action"]=1806, + ["virtual_never_chill"]=1807, + ["virtual_never_freeze"]=1808, + ["virtual_never_ignite"]=1809, + ["virtual_never_shock"]=1810, + ["virtual_number_of_additional_curses_allowed"]=1811, + ["virtual_number_of_banners_allowed"]=1812, ["virtual_number_of_forks_for_projectiles_final"]=221, - ["virtual_number_of_marks_allowed_per_type"]=1810, - ["virtual_number_of_spirit_strikes"]=1200, - ["virtual_off_hand_apply_X_armour_break_on_hit"]=1811, - ["virtual_off_hand_hit_damage_stun_multiplier_+%"]=1812, - ["virtual_off_hand_melee_splash_chance_%"]=1813, - ["virtual_off_hand_slam_aftershock_chance_%"]=1814, - ["virtual_onslaught_on_hit_%_chance"]=1815, - ["virtual_physical_damage_can_pin"]=1816, - ["virtual_poison_cloud_limit"]=1817, + ["virtual_number_of_marks_allowed_per_type"]=1815, + ["virtual_number_of_spirit_strikes"]=1205, + ["virtual_off_hand_apply_X_armour_break_on_hit"]=1816, + ["virtual_off_hand_hit_damage_stun_multiplier_+%"]=1817, + ["virtual_off_hand_melee_splash_chance_%"]=1818, + ["virtual_off_hand_slam_aftershock_chance_%"]=1819, + ["virtual_onslaught_on_hit_%_chance"]=1820, + ["virtual_physical_damage_can_pin"]=1821, + ["virtual_poison_cloud_limit"]=1822, ["virtual_projectiles_cannot_pierce"]=88, - ["virtual_projectiles_fork"]=1819, - ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1820, - ["virtual_ritual_of_power_maximum_number_of_rituals"]=1821, - ["virtual_sandstorm_swipe_max_stages"]=1822, + ["virtual_projectiles_fork"]=1824, + ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1825, + ["virtual_ritual_of_power_maximum_number_of_rituals"]=1826, + ["virtual_sandstorm_swipe_max_stages"]=1827, ["virtual_skill_gains_intensity"]=187, - ["virtual_skill_required_number_of_combo_stacks"]=1823, - ["virtual_spell_apply_X_armour_break_on_hit"]=1824, - ["virtual_spider_aspect_web_interval_ms"]=1825, - ["virtual_static_strike_base_zap_frequency_ms"]=1826, - ["virtual_steelskin_damage_%_taken_to_buff"]=1827, - ["virtual_steelskin_damage_limit"]=1827, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1637, - ["virtual_support_slam_chance_for_one_additional_aftershock_%"]=1828, - ["virtual_support_slam_chance_for_three_additional_aftershocks_%"]=1829, - ["virtual_support_slam_chance_for_two_additional_aftershocks_%"]=1830, - ["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=1831, - ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1832, - ["virtual_total_cooldown_count"]=1833, - ["virtual_totem_cold_resistance_%"]=1834, - ["virtual_totem_fire_resistance_%"]=1835, - ["virtual_totem_lightning_resistance_%"]=1836, - ["virtual_trap_and_mine_throwing_time_+%_final"]=1837, - ["virtual_vaal_lightning_arrow_number_of_redirects"]=1838, - ["virulent_arrow_damage_+%_final_per_stage"]=1839, - ["virulent_arrow_maximum_number_of_stacks"]=1840, - ["virulent_arrow_number_of_pod_projectiles"]=1841, - ["virulent_arrow_pod_projectile_damage_+%_final"]=1842, - ["volatile_dead_core_movement_speed_+%"]=1843, - ["volatile_dead_max_cores_allowed"]=1844, - ["volatile_dead_number_of_corpses_to_consume"]=1845, - ["volcanic_fissure_maximum_number_of_fissures"]=1846, - ["volcanic_fissure_speed_+%"]=1847, - ["volcano_base_number_of_geysers_allowed"]=1848, - ["volcano_damage_+%_final_per_stage"]=1849, - ["volcano_fires_projectiles_every_x_ms"]=1850, - ["volcano_maximum_number_of_stages"]=1851, - ["volcano_skill_effect_duration_per_stage"]=1852, - ["voltaxic_burst_damage_+%_final_per_stack"]=1853, - ["wall_is_created_in_a_circle_instead"]=1854, - ["warcries_knock_back_enemies"]=1855, - ["warcry_empowers_per_X_monster_power"]=1866, - ["warcry_empowers_per_X_monster_power_mp_cap"]=1866, - ["warcry_exerts_x_additional_attacks_per_endurance_charge_consumed"]=1867, - ["warcry_grant_X_rage_per_5_power"]=1882, - ["warcry_grant_damage_+%_to_exerted_attacks"]=1879, - ["warcry_grant_knockback_%_to_exerted_attacks"]=1880, - ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1881, - ["warding_steel_gains_%_of_damage_from_mitigated_physical_damage"]=1883, - ["warding_steel_maximum_stored_mitigated_physical_damage"]=1883, - ["water_sphere_cold_lightning_exposure_%"]=1884, - ["water_sphere_does_weird_conversion_stuff"]=1885, - ["weapon_trap_rotation_speed_+%"]=1886, - ["weapon_trap_total_rotation_%"]=1887, - ["whirling_blades_evasion_rating_+%_while_moving"]=1888, - ["whirling_slash_knockback_distance_+%_final_per_stage"]=1889, - ["wind_blast_damage_+%_final_from_distance"]=1890, - ["winter_brand_max_number_of_stages"]=1891, - ["wither_applies_additional_wither_%"]=1892, - ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1893, - ["withered_on_chaos_damage_hit_chance_%"]=1894, - ["withered_on_hit_chance_%"]=1896, - ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1895, - ["withered_on_hit_for_2_seconds_%_chance"]=1897, - ["withering_step_chance_to_not_remove_on_skill_use_%"]=1898, - ["wolf_lunar_blessing_same_target_trigger_beam_attack_prevention_duration_ms"]=1899, - ["wolf_warcry_maximum_number_of_wolves"]=1900, - ["wolf_warcry_summon_x_additional_wolf_for_each_endurance_chage_consumed"]=1901, - ["zombie_slam_area_of_effect_+%"]=1908, - ["zombie_slam_cooldown_speed_+%"]=1909 + ["virtual_skill_required_number_of_combo_stacks"]=1828, + ["virtual_spell_apply_X_armour_break_on_hit"]=1829, + ["virtual_spider_aspect_web_interval_ms"]=1830, + ["virtual_static_strike_base_zap_frequency_ms"]=1831, + ["virtual_steelskin_damage_%_taken_to_buff"]=1832, + ["virtual_steelskin_damage_limit"]=1832, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1642, + ["virtual_support_slam_chance_for_one_additional_aftershock_%"]=1833, + ["virtual_support_slam_chance_for_three_additional_aftershocks_%"]=1834, + ["virtual_support_slam_chance_for_two_additional_aftershocks_%"]=1835, + ["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=1836, + ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1837, + ["virtual_total_cooldown_count"]=1838, + ["virtual_totem_cold_resistance_%"]=1839, + ["virtual_totem_fire_resistance_%"]=1840, + ["virtual_totem_lightning_resistance_%"]=1841, + ["virtual_trap_and_mine_throwing_time_+%_final"]=1842, + ["virtual_vaal_lightning_arrow_number_of_redirects"]=1843, + ["virulent_arrow_damage_+%_final_per_stage"]=1844, + ["virulent_arrow_maximum_number_of_stacks"]=1845, + ["virulent_arrow_number_of_pod_projectiles"]=1846, + ["virulent_arrow_pod_projectile_damage_+%_final"]=1847, + ["volatile_dead_core_movement_speed_+%"]=1848, + ["volatile_dead_max_cores_allowed"]=1849, + ["volatile_dead_number_of_corpses_to_consume"]=1850, + ["volcanic_fissure_maximum_number_of_fissures"]=1851, + ["volcanic_fissure_speed_+%"]=1852, + ["volcano_base_number_of_geysers_allowed"]=1853, + ["volcano_damage_+%_final_per_stage"]=1854, + ["volcano_fires_projectiles_every_x_ms"]=1855, + ["volcano_maximum_number_of_stages"]=1856, + ["volcano_skill_effect_duration_per_stage"]=1857, + ["voltaxic_burst_damage_+%_final_per_stack"]=1858, + ["wall_is_created_in_a_circle_instead"]=1859, + ["warcries_knock_back_enemies"]=1860, + ["warcry_empowers_per_X_monster_power"]=1871, + ["warcry_empowers_per_X_monster_power_mp_cap"]=1871, + ["warcry_exerts_x_additional_attacks_per_endurance_charge_consumed"]=1872, + ["warcry_grant_X_rage_per_5_power"]=1887, + ["warcry_grant_damage_+%_to_exerted_attacks"]=1884, + ["warcry_grant_knockback_%_to_exerted_attacks"]=1885, + ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1886, + ["warding_steel_gains_%_of_damage_from_mitigated_physical_damage"]=1888, + ["warding_steel_maximum_stored_mitigated_physical_damage"]=1888, + ["water_sphere_cold_lightning_exposure_%"]=1889, + ["water_sphere_does_weird_conversion_stuff"]=1890, + ["weapon_trap_rotation_speed_+%"]=1891, + ["weapon_trap_total_rotation_%"]=1892, + ["whirling_blades_evasion_rating_+%_while_moving"]=1893, + ["whirling_slash_knockback_distance_+%_final_per_stage"]=1894, + ["wind_blast_damage_+%_final_from_distance"]=1895, + ["winter_brand_max_number_of_stages"]=1896, + ["wither_applies_additional_wither_%"]=1897, + ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1898, + ["withered_on_chaos_damage_hit_chance_%"]=1899, + ["withered_on_hit_chance_%"]=1901, + ["withered_on_hit_chance_%_for_every_100%_target_ailment_threshold_dealt_as_chaos_damage"]=1900, + ["withered_on_hit_for_2_seconds_%_chance"]=1902, + ["withering_step_chance_to_not_remove_on_skill_use_%"]=1903, + ["wolf_lunar_blessing_same_target_trigger_beam_attack_prevention_duration_ms"]=1904, + ["wolf_warcry_maximum_number_of_wolves"]=1905, + ["wolf_warcry_summon_x_additional_wolf_for_each_endurance_chage_consumed"]=1906, + ["zombie_slam_area_of_effect_+%"]=1913, + ["zombie_slam_cooldown_speed_+%"]=1914 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/stat_descriptions.lua b/src/Data/StatDescriptions/stat_descriptions.lua index 353b0a57db..e110297e50 100644 --- a/src/Data/StatDescriptions/stat_descriptions.lua +++ b/src/Data/StatDescriptions/stat_descriptions.lua @@ -47813,7 +47813,7 @@ return { [2]="#" } }, - text="{0}% of Chaos Damage from Hits taken as a Damage of a random Element" + text="{0}% of Chaos Damage from Hits taken as Damage of a random Element" } }, stats={ @@ -103513,6 +103513,22 @@ return { } }, [4699]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Chaos Resistance for each Corrupted Item Equipped" + } + }, + stats={ + [1]="base_chaos_damage_resistance_%_per_equipped_corrupted_item" + } + }, + [4700]={ [1]={ [1]={ limit={ @@ -103541,7 +103557,7 @@ return { [1]="base_charge_duration_+%" } }, - [4700]={ + [4701]={ [1]={ [1]={ limit={ @@ -103570,7 +103586,7 @@ return { [1]="base_curse_delay_+%" } }, - [4701]={ + [4702]={ [1]={ [1]={ limit={ @@ -103595,7 +103611,7 @@ return { [1]="base_damage_%_deflected" } }, - [4702]={ + [4703]={ [1]={ [1]={ limit={ @@ -103620,7 +103636,7 @@ return { [1]="base_damage_%_deflected_if_you_have_not_deflected_recently" } }, - [4703]={ + [4704]={ [1]={ [1]={ limit={ @@ -103645,7 +103661,7 @@ return { [1]="base_damage_%_deflected_vs_crit" } }, - [4704]={ + [4705]={ [1]={ [1]={ limit={ @@ -103661,7 +103677,7 @@ return { [1]="base_damage_removed_from_mana_before_life_%_when_not_on_low_mana" } }, - [4705]={ + [4706]={ [1]={ [1]={ limit={ @@ -103690,7 +103706,7 @@ return { [1]="base_damage_taken_+%_per_10_tribute" } }, - [4706]={ + [4707]={ [1]={ [1]={ limit={ @@ -103719,7 +103735,7 @@ return { [1]="base_damaging_ailment_effect_+%_per_10_tribute" } }, - [4707]={ + [4708]={ [1]={ [1]={ limit={ @@ -103735,7 +103751,7 @@ return { [1]="base_darkness" } }, - [4708]={ + [4709]={ [1]={ [1]={ [1]={ @@ -103755,7 +103771,7 @@ return { [1]="base_darkness_refresh_rate_ms" } }, - [4709]={ + [4710]={ [1]={ [1]={ limit={ @@ -103771,7 +103787,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [4710]={ + [4711]={ [1]={ [1]={ limit={ @@ -103787,7 +103803,7 @@ return { [1]="base_deal_no_fire_damage" } }, - [4711]={ + [4712]={ [1]={ [1]={ limit={ @@ -103803,7 +103819,7 @@ return { [1]="base_deal_no_lightning_damage" } }, - [4712]={ + [4713]={ [1]={ [1]={ limit={ @@ -103819,7 +103835,7 @@ return { [1]="base_deal_no_thorns_damage" } }, - [4713]={ + [4714]={ [1]={ [1]={ limit={ @@ -103848,7 +103864,7 @@ return { [1]="base_debuff_slow_magnitude_+%" } }, - [4714]={ + [4715]={ [1]={ [1]={ limit={ @@ -103864,7 +103880,7 @@ return { [1]="base_deflection_rating_%_of_evasion_rating_per_25_tribute" } }, - [4715]={ + [4716]={ [1]={ [1]={ limit={ @@ -103880,7 +103896,7 @@ return { [1]="base_dexterity_per_25_tribute" } }, - [4716]={ + [4717]={ [1]={ [1]={ limit={ @@ -103896,7 +103912,7 @@ return { [1]="base_endurance_charge_skip_consume_chance_%" } }, - [4717]={ + [4718]={ [1]={ [1]={ limit={ @@ -103912,7 +103928,7 @@ return { [1]="base_enemies_in_your_presence_are_hindered" } }, - [4718]={ + [4719]={ [1]={ [1]={ limit={ @@ -103937,7 +103953,7 @@ return { [1]="base_extra_damage_rolls" } }, - [4719]={ + [4720]={ [1]={ [1]={ limit={ @@ -103953,7 +103969,7 @@ return { [1]="base_frenzy_charge_skip_consume_chance_%" } }, - [4720]={ + [4721]={ [1]={ [1]={ limit={ @@ -103982,7 +103998,7 @@ return { [1]="base_frozen_effect_on_self_+%" } }, - [4721]={ + [4722]={ [1]={ [1]={ limit={ @@ -103998,7 +104014,7 @@ return { [1]="base_gain_x_rage_on_hit" } }, - [4722]={ + [4723]={ [1]={ [1]={ limit={ @@ -104014,7 +104030,7 @@ return { [1]="base_immune_to_cold_ailments" } }, - [4723]={ + [4724]={ [1]={ [1]={ limit={ @@ -104030,7 +104046,7 @@ return { [1]="base_immune_to_freeze" } }, - [4724]={ + [4725]={ [1]={ [1]={ limit={ @@ -104046,7 +104062,7 @@ return { [1]="base_immune_to_ignite" } }, - [4725]={ + [4726]={ [1]={ [1]={ limit={ @@ -104062,7 +104078,7 @@ return { [1]="base_immune_to_shock" } }, - [4726]={ + [4727]={ [1]={ [1]={ limit={ @@ -104087,7 +104103,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [4727]={ + [4728]={ [1]={ [1]={ limit={ @@ -104112,7 +104128,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [4728]={ + [4729]={ [1]={ [1]={ limit={ @@ -104137,7 +104153,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [4729]={ + [4730]={ [1]={ [1]={ limit={ @@ -104153,7 +104169,7 @@ return { [1]="base_intelligence_per_25_tribute" } }, - [4730]={ + [4731]={ [1]={ [1]={ limit={ @@ -104182,7 +104198,7 @@ return { [1]="base_life_cost_efficiency_+%" } }, - [4731]={ + [4732]={ [1]={ [1]={ limit={ @@ -104198,7 +104214,7 @@ return { [1]="base_life_cost_+_with_non_channelling_spells_%_maximum_life" } }, - [4732]={ + [4733]={ [1]={ [1]={ limit={ @@ -104214,7 +104230,7 @@ return { [1]="base_life_flasks_do_not_recover_life" } }, - [4733]={ + [4734]={ [1]={ [1]={ [1]={ @@ -104234,7 +104250,7 @@ return { [1]="base_life_leech_from_all_spell_damage_permyriad" } }, - [4734]={ + [4735]={ [1]={ [1]={ [1]={ @@ -104254,7 +104270,7 @@ return { [1]="base_life_leech_from_all_thorns_damage_permyriad" } }, - [4735]={ + [4736]={ [1]={ [1]={ limit={ @@ -104270,7 +104286,7 @@ return { [1]="base_life_recharges_like_energy_shield" } }, - [4736]={ + [4737]={ [1]={ [1]={ limit={ @@ -104286,7 +104302,7 @@ return { [1]="base_lightning_damage_can_electrocute" } }, - [4737]={ + [4738]={ [1]={ [1]={ limit={ @@ -104302,7 +104318,7 @@ return { [1]="base_limit_+" } }, - [4738]={ + [4739]={ [1]={ [1]={ limit={ @@ -104318,7 +104334,7 @@ return { [1]="base_main_hand_maim_on_hit_%" } }, - [4739]={ + [4740]={ [1]={ [1]={ limit={ @@ -104334,7 +104350,7 @@ return { [1]="base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%" } }, - [4740]={ + [4741]={ [1]={ [1]={ limit={ @@ -104363,7 +104379,7 @@ return { [1]="base_mana_cost_efficiency_+%" } }, - [4741]={ + [4742]={ [1]={ [1]={ limit={ @@ -104392,7 +104408,7 @@ return { [1]="base_mana_cost_efficiency_+%_of_command_skills" } }, - [4742]={ + [4743]={ [1]={ [1]={ limit={ @@ -104421,7 +104437,7 @@ return { [1]="base_mana_cost_efficiency_+%_of_curse_skills" } }, - [4743]={ + [4744]={ [1]={ [1]={ limit={ @@ -104450,7 +104466,7 @@ return { [1]="base_mana_cost_efficiency_+%_of_mark_skills" } }, - [4744]={ + [4745]={ [1]={ [1]={ limit={ @@ -104479,7 +104495,7 @@ return { [1]="base_mana_cost_efficiency_+%_per_10_tribute" } }, - [4745]={ + [4746]={ [1]={ [1]={ limit={ @@ -104508,7 +104524,7 @@ return { [1]="base_mana_cost_efficiency_+%_while_on_low_mana" } }, - [4746]={ + [4747]={ [1]={ [1]={ limit={ @@ -104524,7 +104540,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana" } }, - [4747]={ + [4748]={ [1]={ [1]={ limit={ @@ -104540,7 +104556,7 @@ return { [1]="base_max_fortification" } }, - [4748]={ + [4749]={ [1]={ [1]={ limit={ @@ -104556,7 +104572,7 @@ return { [1]="base_maximum_fire_damage_resistance_%_while_ignited" } }, - [4749]={ + [4750]={ [1]={ [1]={ limit={ @@ -104572,7 +104588,7 @@ return { [1]="base_maximum_seals_for_skill" } }, - [4750]={ + [4751]={ [1]={ [1]={ limit={ @@ -104601,7 +104617,7 @@ return { [1]="base_minion_duration_+%" } }, - [4751]={ + [4752]={ [1]={ [1]={ limit={ @@ -104617,7 +104633,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [4752]={ + [4753]={ [1]={ [1]={ limit={ @@ -104642,7 +104658,7 @@ return { [1]="base_number_of_herald_scorpions_allowed" } }, - [4753]={ + [4754]={ [1]={ [1]={ limit={ @@ -104658,7 +104674,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [4754]={ + [4755]={ [1]={ [1]={ limit={ @@ -104683,7 +104699,7 @@ return { [1]="base_number_of_sigils_allowed_per_target" } }, - [4755]={ + [4756]={ [1]={ [1]={ limit={ @@ -104699,7 +104715,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [4756]={ + [4757]={ [1]={ [1]={ limit={ @@ -104715,7 +104731,7 @@ return { [1]="base_off_hand_chance_to_blind_on_hit_%" } }, - [4757]={ + [4758]={ [1]={ [1]={ limit={ @@ -104731,7 +104747,7 @@ return { [1]="base_physical_damage_can_pin" } }, - [4758]={ + [4759]={ [1]={ [1]={ limit={ @@ -104764,7 +104780,7 @@ return { [1]="base_physical_damage_over_time_taken_+%" } }, - [4759]={ + [4760]={ [1]={ [1]={ limit={ @@ -104780,7 +104796,7 @@ return { [1]="base_poison_chance_is_bleed_chance_instead" } }, - [4760]={ + [4761]={ [1]={ [1]={ limit={ @@ -104805,7 +104821,7 @@ return { [1]="base_poison_effect_+%_while_poisoned" } }, - [4761]={ + [4762]={ [1]={ [1]={ limit={ @@ -104821,7 +104837,7 @@ return { [1]="base_power_charge_skip_consume_chance_%" } }, - [4762]={ + [4763]={ [1]={ [1]={ limit={ @@ -104850,7 +104866,7 @@ return { [1]="base_rage_cost_efficiency_+%" } }, - [4763]={ + [4764]={ [1]={ [1]={ [1]={ @@ -104870,7 +104886,7 @@ return { [1]="base_rage_regeneration_per_minute" } }, - [4764]={ + [4765]={ [1]={ [1]={ limit={ @@ -104886,7 +104902,7 @@ return { [1]="base_should_have_arcane_surge_from_stat" } }, - [4765]={ + [4766]={ [1]={ [1]={ limit={ @@ -104915,7 +104931,7 @@ return { [1]="base_skill_cost_efficiency_+%" } }, - [4766]={ + [4767]={ [1]={ [1]={ limit={ @@ -104940,7 +104956,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [4767]={ + [4768]={ [1]={ [1]={ [1]={ @@ -104973,7 +104989,7 @@ return { [1]="base_skill_detonation_time" } }, - [4768]={ + [4769]={ [1]={ [1]={ limit={ @@ -104989,7 +105005,7 @@ return { [1]="base_skill_gain_life_cost_%_of_mana_cost" } }, - [4769]={ + [4770]={ [1]={ [1]={ limit={ @@ -105018,7 +105034,7 @@ return { [1]="base_slow_potency_+%" } }, - [4770]={ + [4771]={ [1]={ [1]={ limit={ @@ -105034,7 +105050,7 @@ return { [1]="base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon" } }, - [4771]={ + [4772]={ [1]={ [1]={ [1]={ @@ -105054,7 +105070,7 @@ return { [1]="base_spell_critical_strike_chance_override_permyriad" } }, - [4772]={ + [4773]={ [1]={ [1]={ limit={ @@ -105083,7 +105099,7 @@ return { [1]="base_spell_mana_cost_efficiency_+%" } }, - [4773]={ + [4774]={ [1]={ [1]={ limit={ @@ -105099,7 +105115,7 @@ return { [1]="base_spell_projectile_block_%" } }, - [4774]={ + [4775]={ [1]={ [1]={ limit={ @@ -105128,7 +105144,7 @@ return { [1]="base_spell_skill_cost_efficiency_+%" } }, - [4775]={ + [4776]={ [1]={ [1]={ limit={ @@ -105144,7 +105160,7 @@ return { [1]="base_spirit_per_socketed_idol" } }, - [4776]={ + [4777]={ [1]={ [1]={ ["gem_quality"]=true, @@ -105183,7 +105199,7 @@ return { [1]="base_spirit_reservation_efficiency_+%" } }, - [4777]={ + [4778]={ [1]={ [1]={ limit={ @@ -105212,7 +105228,7 @@ return { [1]="base_spirit_reservation_efficiency_+%_per_20_tribute" } }, - [4778]={ + [4779]={ [1]={ [1]={ limit={ @@ -105228,7 +105244,7 @@ return { [1]="base_strength_per_25_tribute" } }, - [4779]={ + [4780]={ [1]={ [1]={ [1]={ @@ -105248,7 +105264,7 @@ return { [1]="base_thorns_critical_strike_chance" } }, - [4780]={ + [4781]={ [1]={ [1]={ limit={ @@ -105277,7 +105293,7 @@ return { [1]="base_thorns_critical_strike_multiplier_+" } }, - [4781]={ + [4782]={ [1]={ [1]={ limit={ @@ -105302,7 +105318,7 @@ return { [1]="base_total_number_of_sigils_allowed" } }, - [4782]={ + [4783]={ [1]={ [1]={ limit={ @@ -105318,7 +105334,7 @@ return { [1]="base_unaffected_by_poison" } }, - [4783]={ + [4784]={ [1]={ [1]={ limit={ @@ -105347,7 +105363,7 @@ return { [1]="base_unholy_might_granted_magnitude_+%" } }, - [4784]={ + [4785]={ [1]={ [1]={ limit={ @@ -105376,7 +105392,7 @@ return { [1]="base_ward_cost_efficiency_+%" } }, - [4785]={ + [4786]={ [1]={ [1]={ [1]={ @@ -105396,7 +105412,7 @@ return { [1]="base_ward_regeneration_per_minute" } }, - [4786]={ + [4787]={ [1]={ [1]={ limit={ @@ -105425,7 +105441,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [4787]={ + [4788]={ [1]={ [1]={ [1]={ @@ -105445,7 +105461,7 @@ return { [1]="base_weapon_trap_total_rotation_%" } }, - [4788]={ + [4789]={ [1]={ [1]={ limit={ @@ -105474,7 +105490,7 @@ return { [1]="battlemages_cry_buff_effect_+%" } }, - [4789]={ + [4790]={ [1]={ [1]={ limit={ @@ -105499,7 +105515,7 @@ return { [1]="battlemages_cry_exerts_x_additional_attacks" } }, - [4790]={ + [4791]={ [1]={ [1]={ limit={ @@ -105515,7 +105531,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [4791]={ + [4792]={ [1]={ [1]={ limit={ @@ -105544,7 +105560,7 @@ return { [1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines" } }, - [4792]={ + [4793]={ [1]={ [1]={ limit={ @@ -105573,7 +105589,7 @@ return { [1]="bear_trap_damage_taken_+%_from_traps_and_mines" } }, - [4793]={ + [4794]={ [1]={ [1]={ limit={ @@ -105602,7 +105618,7 @@ return { [1]="bear_trap_movement_speed_+%_final" } }, - [4794]={ + [4795]={ [1]={ [1]={ limit={ @@ -105618,7 +105634,7 @@ return { [1]="bell_hit_limit" } }, - [4795]={ + [4796]={ [1]={ [1]={ limit={ @@ -105647,7 +105663,7 @@ return { [1]="belt_enchant_enemies_you_taunt_have_area_damage_+%_final" } }, - [4796]={ + [4797]={ [1]={ [1]={ limit={ @@ -105672,7 +105688,7 @@ return { [1]="local_charm_slots" } }, - [4797]={ + [4798]={ [1]={ [1]={ limit={ @@ -105701,7 +105717,7 @@ return { [1]="berserk_buff_effect_+%" } }, - [4798]={ + [4799]={ [1]={ [1]={ limit={ @@ -105734,7 +105750,7 @@ return { [1]="berserk_rage_loss_+%" } }, - [4799]={ + [4800]={ [1]={ [1]={ [1]={ @@ -105754,7 +105770,7 @@ return { [1]="berserker_gain_rage_on_attack_hit_cooldown_ms" } }, - [4800]={ + [4801]={ [1]={ [1]={ limit={ @@ -105770,7 +105786,7 @@ return { [1]="berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage" } }, - [4801]={ + [4802]={ [1]={ [1]={ limit={ @@ -105786,7 +105802,7 @@ return { [1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies" } }, - [4802]={ + [4803]={ [1]={ [1]={ limit={ @@ -105802,7 +105818,7 @@ return { [1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies" } }, - [4803]={ + [4804]={ [1]={ [1]={ limit={ @@ -105827,7 +105843,7 @@ return { [1]="berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final" } }, - [4804]={ + [4805]={ [1]={ [1]={ limit={ @@ -105856,7 +105872,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [4805]={ + [4806]={ [1]={ [1]={ limit={ @@ -105885,7 +105901,7 @@ return { [1]="blackhole_pulse_frequency_+%" } }, - [4806]={ + [4807]={ [1]={ [1]={ limit={ @@ -105914,7 +105930,7 @@ return { [1]="blackstar_moonlight_cold_damage_taken_+%_final" } }, - [4807]={ + [4808]={ [1]={ [1]={ limit={ @@ -105943,7 +105959,7 @@ return { [1]="blackstar_moonlight_fire_damage_taken_+%_final" } }, - [4808]={ + [4809]={ [1]={ [1]={ limit={ @@ -105972,7 +105988,7 @@ return { [1]="blackstar_sunlight_cold_damage_taken_+%_final" } }, - [4809]={ + [4810]={ [1]={ [1]={ limit={ @@ -106001,7 +106017,7 @@ return { [1]="blackstar_sunlight_fire_damage_taken_+%_final" } }, - [4810]={ + [4811]={ [1]={ [1]={ limit={ @@ -106030,7 +106046,7 @@ return { [1]="blade_blase_damage_+%" } }, - [4811]={ + [4812]={ [1]={ [1]={ limit={ @@ -106059,7 +106075,7 @@ return { [1]="blade_blast_skill_area_of_effect_+%" } }, - [4812]={ + [4813]={ [1]={ [1]={ limit={ @@ -106088,7 +106104,7 @@ return { [1]="blade_blast_trigger_detonation_area_of_effect_+%" } }, - [4813]={ + [4814]={ [1]={ [1]={ limit={ @@ -106117,7 +106133,7 @@ return { [1]="blade_trap_damage_+%" } }, - [4814]={ + [4815]={ [1]={ [1]={ limit={ @@ -106146,7 +106162,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%" } }, - [4815]={ + [4816]={ [1]={ [1]={ limit={ @@ -106171,7 +106187,7 @@ return { [1]="blade_vortex_blade_blast_impale_on_hit_%_chance" } }, - [4816]={ + [4817]={ [1]={ [1]={ limit={ @@ -106187,7 +106203,7 @@ return { [1]="blade_vortex_blade_deal_no_non_physical_damage" } }, - [4817]={ + [4818]={ [1]={ [1]={ limit={ @@ -106203,7 +106219,7 @@ return { [1]="blade_vortex_critical_strike_multiplier_+_per_blade" } }, - [4818]={ + [4819]={ [1]={ [1]={ limit={ @@ -106228,7 +106244,7 @@ return { [1]="bladefall_number_of_volleys" } }, - [4819]={ + [4820]={ [1]={ [1]={ limit={ @@ -106244,7 +106260,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [4820]={ + [4821]={ [1]={ [1]={ limit={ @@ -106273,7 +106289,7 @@ return { [1]="bladestorm_damage_+%" } }, - [4821]={ + [4822]={ [1]={ [1]={ limit={ @@ -106289,7 +106305,7 @@ return { [1]="bladestorm_maximum_number_of_storms_allowed" } }, - [4822]={ + [4823]={ [1]={ [1]={ limit={ @@ -106318,7 +106334,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [4823]={ + [4824]={ [1]={ [1]={ limit={ @@ -106334,7 +106350,7 @@ return { [1]="blasphemy_no_reservation" } }, - [4824]={ + [4825]={ [1]={ [1]={ limit={ @@ -106363,7 +106379,7 @@ return { [1]="blazing_salvo_damage_+%" } }, - [4825]={ + [4826]={ [1]={ [1]={ limit={ @@ -106388,7 +106404,7 @@ return { [1]="blazing_salvo_number_of_additional_projectiles" } }, - [4826]={ + [4827]={ [1]={ [1]={ limit={ @@ -106404,7 +106420,7 @@ return { [1]="blazing_salvo_projectiles_fork_when_passing_a_flame_wall" } }, - [4827]={ + [4828]={ [1]={ [1]={ limit={ @@ -106433,7 +106449,7 @@ return { [1]="bleed_chance_+%" } }, - [4828]={ + [4829]={ [1]={ [1]={ limit={ @@ -106449,7 +106465,7 @@ return { [1]="bleed_damage_applies_as_fire_instead_of_physical" } }, - [4829]={ + [4830]={ [1]={ [1]={ limit={ @@ -106465,7 +106481,7 @@ return { [1]="bleed_on_crit_%" } }, - [4830]={ + [4831]={ [1]={ [1]={ limit={ @@ -106494,7 +106510,7 @@ return { [1]="base_bleeding_effect_+%" } }, - [4831]={ + [4832]={ [1]={ [1]={ limit={ @@ -106523,7 +106539,7 @@ return { [1]="bleeding_effect_+%_per_endurance_charge" } }, - [4832]={ + [4833]={ [1]={ [1]={ limit={ @@ -106552,7 +106568,7 @@ return { [1]="bleeding_effect_+%_per_frenzy_charge" } }, - [4833]={ + [4834]={ [1]={ [1]={ limit={ @@ -106581,7 +106597,7 @@ return { [1]="bleeding_effect_+%_per_impale_on_enemy" } }, - [4834]={ + [4835]={ [1]={ [1]={ limit={ @@ -106610,7 +106626,7 @@ return { [1]="bleeding_effect_+%_per_rage_if_equipped_axe" } }, - [4835]={ + [4836]={ [1]={ [1]={ limit={ @@ -106639,7 +106655,7 @@ return { [1]="bleeding_effect_+%_vs_poisoned_enemies" } }, - [4836]={ + [4837]={ [1]={ [1]={ limit={ @@ -106668,7 +106684,7 @@ return { [1]="bleeding_effect_+%_when_consuming_incision" } }, - [4837]={ + [4838]={ [1]={ [1]={ limit={ @@ -106684,7 +106700,7 @@ return { [1]="bleeding_enemies_cannot_regenerate_life" } }, - [4838]={ + [4839]={ [1]={ [1]={ limit={ @@ -106700,7 +106716,7 @@ return { [1]="bleeding_magnitude_+%_against_pinned_enemies" } }, - [4839]={ + [4840]={ [1]={ [1]={ limit={ @@ -106716,7 +106732,7 @@ return { [1]="bleeding_no_extra_damage_while_target_is_moving" } }, - [4840]={ + [4841]={ [1]={ [1]={ limit={ @@ -106745,7 +106761,7 @@ return { [1]="bleeding_on_self_expire_speed_+%_while_moving" } }, - [4841]={ + [4842]={ [1]={ [1]={ limit={ @@ -106761,7 +106777,7 @@ return { [1]="bleeding_reflected_to_self" } }, - [4842]={ + [4843]={ [1]={ [1]={ limit={ @@ -106777,7 +106793,7 @@ return { [1]="bleeding_stacks_up_to_x_times" } }, - [4843]={ + [4844]={ [1]={ [1]={ limit={ @@ -106793,7 +106809,7 @@ return { [1]="blight_arc_tower_additional_chains" } }, - [4844]={ + [4845]={ [1]={ [1]={ limit={ @@ -106809,7 +106825,7 @@ return { [1]="blight_arc_tower_additional_repeats" } }, - [4845]={ + [4846]={ [1]={ [1]={ limit={ @@ -106825,7 +106841,7 @@ return { [1]="blight_arc_tower_chance_to_sap_%" } }, - [4846]={ + [4847]={ [1]={ [1]={ limit={ @@ -106854,7 +106870,7 @@ return { [1]="blight_arc_tower_damage_+%" } }, - [4847]={ + [4848]={ [1]={ [1]={ limit={ @@ -106883,7 +106899,7 @@ return { [1]="blight_arc_tower_range_+%" } }, - [4848]={ + [4849]={ [1]={ [1]={ limit={ @@ -106899,7 +106915,7 @@ return { [1]="blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [4849]={ + [4850]={ [1]={ [1]={ limit={ @@ -106928,7 +106944,7 @@ return { [1]="blight_cast_speed_+%" } }, - [4850]={ + [4851]={ [1]={ [1]={ limit={ @@ -106957,7 +106973,7 @@ return { [1]="blight_chilling_tower_chill_effect_+%" } }, - [4851]={ + [4852]={ [1]={ [1]={ limit={ @@ -106986,7 +107002,7 @@ return { [1]="blight_chilling_tower_damage_+%" } }, - [4852]={ + [4853]={ [1]={ [1]={ limit={ @@ -107015,7 +107031,7 @@ return { [1]="blight_chilling_tower_duration_+%" } }, - [4853]={ + [4854]={ [1]={ [1]={ limit={ @@ -107044,7 +107060,7 @@ return { [1]="blight_chilling_tower_range_+%" } }, - [4854]={ + [4855]={ [1]={ [1]={ limit={ @@ -107073,7 +107089,7 @@ return { [1]="blight_empowering_tower_buff_effect_+%" } }, - [4855]={ + [4856]={ [1]={ [1]={ limit={ @@ -107102,7 +107118,7 @@ return { [1]="blight_empowering_tower_grant_cast_speed_+%" } }, - [4856]={ + [4857]={ [1]={ [1]={ limit={ @@ -107131,7 +107147,7 @@ return { [1]="blight_empowering_tower_grant_damage_+%" } }, - [4857]={ + [4858]={ [1]={ [1]={ limit={ @@ -107156,7 +107172,7 @@ return { [1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage" } }, - [4858]={ + [4859]={ [1]={ [1]={ limit={ @@ -107185,7 +107201,7 @@ return { [1]="blight_empowering_tower_range_+%" } }, - [4859]={ + [4860]={ [1]={ [1]={ limit={ @@ -107210,7 +107226,7 @@ return { [1]="blight_fireball_tower_additional_projectiles_+" } }, - [4860]={ + [4861]={ [1]={ [1]={ limit={ @@ -107239,7 +107255,7 @@ return { [1]="blight_fireball_tower_cast_speed_+%" } }, - [4861]={ + [4862]={ [1]={ [1]={ limit={ @@ -107268,7 +107284,7 @@ return { [1]="blight_fireball_tower_damage_+%" } }, - [4862]={ + [4863]={ [1]={ [1]={ limit={ @@ -107284,7 +107300,7 @@ return { [1]="blight_fireball_tower_projectiles_nova" } }, - [4863]={ + [4864]={ [1]={ [1]={ limit={ @@ -107313,7 +107329,7 @@ return { [1]="blight_fireball_tower_range_+%" } }, - [4864]={ + [4865]={ [1]={ [1]={ limit={ @@ -107342,7 +107358,7 @@ return { [1]="blight_flamethrower_tower_cast_speed_+%" } }, - [4865]={ + [4866]={ [1]={ [1]={ limit={ @@ -107358,7 +107374,7 @@ return { [1]="blight_flamethrower_tower_chance_to_scorch_%" } }, - [4866]={ + [4867]={ [1]={ [1]={ limit={ @@ -107387,7 +107403,7 @@ return { [1]="blight_flamethrower_tower_damage_+%" } }, - [4867]={ + [4868]={ [1]={ [1]={ limit={ @@ -107403,7 +107419,7 @@ return { [1]="blight_flamethrower_tower_full_damage_fire_enemies" } }, - [4868]={ + [4869]={ [1]={ [1]={ limit={ @@ -107432,7 +107448,7 @@ return { [1]="blight_flamethrower_tower_range_+%" } }, - [4869]={ + [4870]={ [1]={ [1]={ limit={ @@ -107448,7 +107464,7 @@ return { [1]="blight_freezebolt_tower_chance_to_brittle_%" } }, - [4870]={ + [4871]={ [1]={ [1]={ limit={ @@ -107477,7 +107493,7 @@ return { [1]="blight_freezebolt_tower_damage_+%" } }, - [4871]={ + [4872]={ [1]={ [1]={ limit={ @@ -107493,7 +107509,7 @@ return { [1]="blight_freezebolt_tower_full_damage_cold_enemies" } }, - [4872]={ + [4873]={ [1]={ [1]={ limit={ @@ -107518,7 +107534,7 @@ return { [1]="blight_freezebolt_tower_projectiles_+" } }, - [4873]={ + [4874]={ [1]={ [1]={ limit={ @@ -107547,7 +107563,7 @@ return { [1]="blight_freezebolt_tower_range_+%" } }, - [4874]={ + [4875]={ [1]={ [1]={ limit={ @@ -107563,7 +107579,7 @@ return { [1]="blight_glacialcage_tower_area_of_effect_+%" } }, - [4875]={ + [4876]={ [1]={ [1]={ limit={ @@ -107592,7 +107608,7 @@ return { [1]="blight_glacialcage_tower_cooldown_recovery_+%" } }, - [4876]={ + [4877]={ [1]={ [1]={ limit={ @@ -107621,7 +107637,7 @@ return { [1]="blight_glacialcage_tower_duration_+%" } }, - [4877]={ + [4878]={ [1]={ [1]={ limit={ @@ -107650,7 +107666,7 @@ return { [1]="blight_glacialcage_tower_enemy_damage_taken_+%" } }, - [4878]={ + [4879]={ [1]={ [1]={ limit={ @@ -107679,7 +107695,7 @@ return { [1]="blight_glacialcage_tower_range_+%" } }, - [4879]={ + [4880]={ [1]={ [1]={ limit={ @@ -107695,7 +107711,7 @@ return { [1]="blight_hinder_enemy_chaos_damage_taken_+%" } }, - [4880]={ + [4881]={ [1]={ [1]={ limit={ @@ -107724,7 +107740,7 @@ return { [1]="blight_imbuing_tower_buff_effect_+%" } }, - [4881]={ + [4882]={ [1]={ [1]={ limit={ @@ -107753,7 +107769,7 @@ return { [1]="blight_imbuing_tower_grant_critical_strike_+%" } }, - [4882]={ + [4883]={ [1]={ [1]={ limit={ @@ -107782,7 +107798,7 @@ return { [1]="blight_imbuing_tower_grant_damage_+%" } }, - [4883]={ + [4884]={ [1]={ [1]={ limit={ @@ -107798,7 +107814,7 @@ return { [1]="blight_imbuing_tower_grants_onslaught" } }, - [4884]={ + [4885]={ [1]={ [1]={ limit={ @@ -107827,7 +107843,7 @@ return { [1]="blight_imbuing_tower_range_+%" } }, - [4885]={ + [4886]={ [1]={ [1]={ limit={ @@ -107856,7 +107872,7 @@ return { [1]="blight_lightningstorm_tower_area_of_effect_+%" } }, - [4886]={ + [4887]={ [1]={ [1]={ limit={ @@ -107885,7 +107901,7 @@ return { [1]="blight_lightningstorm_tower_damage_+%" } }, - [4887]={ + [4888]={ [1]={ [1]={ limit={ @@ -107914,7 +107930,7 @@ return { [1]="blight_lightningstorm_tower_delay_+%" } }, - [4888]={ + [4889]={ [1]={ [1]={ limit={ @@ -107943,7 +107959,7 @@ return { [1]="blight_lightningstorm_tower_range_+%" } }, - [4889]={ + [4890]={ [1]={ [1]={ limit={ @@ -107959,7 +107975,7 @@ return { [1]="blight_lightningstorm_tower_storms_on_enemies" } }, - [4890]={ + [4891]={ [1]={ [1]={ limit={ @@ -107984,7 +108000,7 @@ return { [1]="blight_meteor_tower_additional_meteor_+" } }, - [4891]={ + [4892]={ [1]={ [1]={ limit={ @@ -108000,7 +108016,7 @@ return { [1]="blight_meteor_tower_always_stun" } }, - [4892]={ + [4893]={ [1]={ [1]={ [1]={ @@ -108020,7 +108036,7 @@ return { [1]="blight_meteor_tower_creates_burning_ground_ms" } }, - [4893]={ + [4894]={ [1]={ [1]={ limit={ @@ -108049,7 +108065,7 @@ return { [1]="blight_meteor_tower_damage_+%" } }, - [4894]={ + [4895]={ [1]={ [1]={ limit={ @@ -108078,7 +108094,7 @@ return { [1]="blight_meteor_tower_range_+%" } }, - [4895]={ + [4896]={ [1]={ [1]={ limit={ @@ -108116,7 +108132,7 @@ return { [1]="blight_scout_tower_additional_minions_+" } }, - [4896]={ + [4897]={ [1]={ [1]={ limit={ @@ -108145,7 +108161,7 @@ return { [1]="blight_scout_tower_minion_damage_+%" } }, - [4897]={ + [4898]={ [1]={ [1]={ limit={ @@ -108174,7 +108190,7 @@ return { [1]="blight_scout_tower_minion_life_+%" } }, - [4898]={ + [4899]={ [1]={ [1]={ limit={ @@ -108203,7 +108219,7 @@ return { [1]="blight_scout_tower_minion_movement_speed_+%" } }, - [4899]={ + [4900]={ [1]={ [1]={ limit={ @@ -108219,7 +108235,7 @@ return { [1]="blight_scout_tower_minions_inflict_malediction" } }, - [4900]={ + [4901]={ [1]={ [1]={ limit={ @@ -108248,7 +108264,7 @@ return { [1]="blight_scout_tower_range_+%" } }, - [4901]={ + [4902]={ [1]={ [1]={ limit={ @@ -108277,7 +108293,7 @@ return { [1]="blight_secondary_skill_effect_duration_+%" } }, - [4902]={ + [4903]={ [1]={ [1]={ limit={ @@ -108302,7 +108318,7 @@ return { [1]="blight_seismic_tower_additional_cascades_+" } }, - [4903]={ + [4904]={ [1]={ [1]={ limit={ @@ -108331,7 +108347,7 @@ return { [1]="blight_seismic_tower_cascade_range_+%" } }, - [4904]={ + [4905]={ [1]={ [1]={ limit={ @@ -108360,7 +108376,7 @@ return { [1]="blight_seismic_tower_damage_+%" } }, - [4905]={ + [4906]={ [1]={ [1]={ limit={ @@ -108389,7 +108405,7 @@ return { [1]="blight_seismic_tower_range_+%" } }, - [4906]={ + [4907]={ [1]={ [1]={ limit={ @@ -108418,7 +108434,7 @@ return { [1]="blight_seismic_tower_stun_duration_+%" } }, - [4907]={ + [4908]={ [1]={ [1]={ limit={ @@ -108447,7 +108463,7 @@ return { [1]="blight_sentinel_tower_minion_damage_+%" } }, - [4908]={ + [4909]={ [1]={ [1]={ limit={ @@ -108476,7 +108492,7 @@ return { [1]="blight_sentinel_tower_minion_life_+%" } }, - [4909]={ + [4910]={ [1]={ [1]={ limit={ @@ -108505,7 +108521,7 @@ return { [1]="blight_sentinel_tower_minion_movement_speed_+%" } }, - [4910]={ + [4911]={ [1]={ [1]={ limit={ @@ -108534,7 +108550,7 @@ return { [1]="blight_sentinel_tower_range_+%" } }, - [4911]={ + [4912]={ [1]={ [1]={ limit={ @@ -108563,7 +108579,7 @@ return { [1]="blight_shocking_tower_damage_+%" } }, - [4912]={ + [4913]={ [1]={ [1]={ limit={ @@ -108592,7 +108608,7 @@ return { [1]="blight_shocking_tower_range_+%" } }, - [4913]={ + [4914]={ [1]={ [1]={ limit={ @@ -108608,7 +108624,7 @@ return { [1]="blight_shocknova_tower_full_damage_lightning_enemies" } }, - [4914]={ + [4915]={ [1]={ [1]={ limit={ @@ -108624,7 +108640,7 @@ return { [1]="blight_shocknova_tower_shock_additional_repeats" } }, - [4915]={ + [4916]={ [1]={ [1]={ limit={ @@ -108653,7 +108669,7 @@ return { [1]="blight_shocknova_tower_shock_effect_+%" } }, - [4916]={ + [4917]={ [1]={ [1]={ limit={ @@ -108682,7 +108698,7 @@ return { [1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%" } }, - [4917]={ + [4918]={ [1]={ [1]={ limit={ @@ -108711,7 +108727,7 @@ return { [1]="blight_skill_area_of_effect_+%_after_1_second_channelling" } }, - [4918]={ + [4919]={ [1]={ [1]={ limit={ @@ -108740,7 +108756,7 @@ return { [1]="blight_smothering_tower_buff_effect_+%" } }, - [4919]={ + [4920]={ [1]={ [1]={ limit={ @@ -108756,7 +108772,7 @@ return { [1]="blight_smothering_tower_freeze_shock_ignite_%" } }, - [4920]={ + [4921]={ [1]={ [1]={ limit={ @@ -108785,7 +108801,7 @@ return { [1]="blight_smothering_tower_grant_damage_+%" } }, - [4921]={ + [4922]={ [1]={ [1]={ limit={ @@ -108814,7 +108830,7 @@ return { [1]="blight_smothering_tower_grant_movement_speed_+%" } }, - [4922]={ + [4923]={ [1]={ [1]={ limit={ @@ -108843,7 +108859,7 @@ return { [1]="blight_smothering_tower_range_+%" } }, - [4923]={ + [4924]={ [1]={ [1]={ limit={ @@ -108872,7 +108888,7 @@ return { [1]="blight_stonegaze_tower_cooldown_recovery_+%" } }, - [4924]={ + [4925]={ [1]={ [1]={ limit={ @@ -108901,7 +108917,7 @@ return { [1]="blight_stonegaze_tower_duration_+%" } }, - [4925]={ + [4926]={ [1]={ [1]={ limit={ @@ -108917,7 +108933,7 @@ return { [1]="blight_stonegaze_tower_petrified_enemies_take_damage_+%" } }, - [4926]={ + [4927]={ [1]={ [1]={ limit={ @@ -108946,7 +108962,7 @@ return { [1]="blight_stonegaze_tower_petrify_tick_speed_+%" } }, - [4927]={ + [4928]={ [1]={ [1]={ limit={ @@ -108975,7 +108991,7 @@ return { [1]="blight_stonegaze_tower_range_+%" } }, - [4928]={ + [4929]={ [1]={ [1]={ limit={ @@ -109004,7 +109020,7 @@ return { [1]="blight_summoning_tower_minion_damage_+%" } }, - [4929]={ + [4930]={ [1]={ [1]={ limit={ @@ -109033,7 +109049,7 @@ return { [1]="blight_summoning_tower_minion_life_+%" } }, - [4930]={ + [4931]={ [1]={ [1]={ limit={ @@ -109062,7 +109078,7 @@ return { [1]="blight_summoning_tower_minion_movement_speed_+%" } }, - [4931]={ + [4932]={ [1]={ [1]={ limit={ @@ -109078,7 +109094,7 @@ return { [1]="blight_summoning_tower_minions_summoned_+" } }, - [4932]={ + [4933]={ [1]={ [1]={ limit={ @@ -109107,7 +109123,7 @@ return { [1]="blight_summoning_tower_range_+%" } }, - [4933]={ + [4934]={ [1]={ [1]={ limit={ @@ -109136,7 +109152,7 @@ return { [1]="blight_temporal_tower_buff_effect_+%" } }, - [4934]={ + [4935]={ [1]={ [1]={ limit={ @@ -109165,7 +109181,7 @@ return { [1]="blight_temporal_tower_grant_you_action_speed_-%" } }, - [4935]={ + [4936]={ [1]={ [1]={ limit={ @@ -109181,7 +109197,7 @@ return { [1]="blight_temporal_tower_grants_stun_immunity" } }, - [4936]={ + [4937]={ [1]={ [1]={ limit={ @@ -109210,7 +109226,7 @@ return { [1]="blight_temporal_tower_range_+%" } }, - [4937]={ + [4938]={ [1]={ [1]={ limit={ @@ -109239,7 +109255,7 @@ return { [1]="blight_temporal_tower_tick_speed_+%" } }, - [4938]={ + [4939]={ [1]={ [1]={ [1]={ @@ -109259,7 +109275,7 @@ return { [1]="blight_tertiary_skill_effect_duration" } }, - [4939]={ + [4940]={ [1]={ [1]={ limit={ @@ -109288,7 +109304,7 @@ return { [1]="blight_tower_arc_damage_+%" } }, - [4940]={ + [4941]={ [1]={ [1]={ limit={ @@ -109317,7 +109333,7 @@ return { [1]="blight_tower_chilling_cost_+%" } }, - [4941]={ + [4942]={ [1]={ [1]={ limit={ @@ -109333,7 +109349,7 @@ return { [1]="blight_tower_damage_per_tower_type_+%" } }, - [4942]={ + [4943]={ [1]={ [1]={ limit={ @@ -109358,7 +109374,7 @@ return { [1]="blight_tower_fireball_additional_projectile" } }, - [4943]={ + [4944]={ [1]={ [1]={ limit={ @@ -109374,7 +109390,7 @@ return { [1]="blighted_map_chest_reward_lucky_count" } }, - [4944]={ + [4945]={ [1]={ [1]={ limit={ @@ -109403,7 +109419,7 @@ return { [1]="blighted_map_tower_damage_+%_final" } }, - [4945]={ + [4946]={ [1]={ [1]={ limit={ @@ -109432,7 +109448,7 @@ return { [1]="blind_chance_+%" } }, - [4946]={ + [4947]={ [1]={ [1]={ limit={ @@ -109457,7 +109473,7 @@ return { [1]="blind_chilled_enemies_on_hit_%" } }, - [4947]={ + [4948]={ [1]={ [1]={ limit={ @@ -109473,7 +109489,7 @@ return { [1]="blind_does_not_affect_chance_to_hit" } }, - [4948]={ + [4949]={ [1]={ [1]={ limit={ @@ -109489,7 +109505,7 @@ return { [1]="blind_does_not_affect_light_radius" } }, - [4949]={ + [4950]={ [1]={ [1]={ limit={ @@ -109518,7 +109534,7 @@ return { [1]="blind_effect_+%" } }, - [4950]={ + [4951]={ [1]={ [1]={ limit={ @@ -109534,7 +109550,7 @@ return { [1]="blind_enemies_when_hit_%_chance" } }, - [4951]={ + [4952]={ [1]={ [1]={ limit={ @@ -109559,7 +109575,7 @@ return { [1]="blind_enemies_when_hit_while_affected_by_grace_%_chance" } }, - [4952]={ + [4953]={ [1]={ [1]={ limit={ @@ -109575,7 +109591,7 @@ return { [1]="blind_enemies_when_they_stun_you" } }, - [4953]={ + [4954]={ [1]={ [1]={ limit={ @@ -109591,7 +109607,7 @@ return { [1]="blind_on_poison_inflicted" } }, - [4954]={ + [4955]={ [1]={ [1]={ limit={ @@ -109607,7 +109623,7 @@ return { [1]="blind_reflected_to_self" } }, - [4955]={ + [4956]={ [1]={ [1]={ limit={ @@ -109636,7 +109652,7 @@ return { [1]="blink_and_mirror_arrow_cooldown_speed_+%" } }, - [4956]={ + [4957]={ [1]={ [1]={ limit={ @@ -109665,7 +109681,7 @@ return { [1]="block_and_stun_+%_recovery_per_fortification" } }, - [4957]={ + [4958]={ [1]={ [1]={ limit={ @@ -109681,7 +109697,7 @@ return { [1]="block_chance_+%_against_projectiles" } }, - [4958]={ + [4959]={ [1]={ [1]={ limit={ @@ -109710,7 +109726,7 @@ return { [1]="block_chance_+%_if_blocked_with_active_block_recently" } }, - [4959]={ + [4960]={ [1]={ [1]={ limit={ @@ -109735,7 +109751,7 @@ return { [1]="block_chance_+%_if_you_have_at_least_100_tribute" } }, - [4960]={ + [4961]={ [1]={ [1]={ [1]={ @@ -109768,7 +109784,7 @@ return { [1]="block_chance_+%_while_companion_in_presence" } }, - [4961]={ + [4962]={ [1]={ [1]={ limit={ @@ -109793,7 +109809,7 @@ return { [1]="block_chance_+%_while_surrounded" } }, - [4962]={ + [4963]={ [1]={ [1]={ limit={ @@ -109809,7 +109825,7 @@ return { [1]="block_chance_from_equipped_shield_is_%" } }, - [4963]={ + [4964]={ [1]={ [1]={ limit={ @@ -109825,7 +109841,7 @@ return { [1]="block_%_damage_taken_from_elemental" } }, - [4964]={ + [4965]={ [1]={ [1]={ limit={ @@ -109841,7 +109857,7 @@ return { [1]="block_%_damage_taken_while_active_blocking" } }, - [4965]={ + [4966]={ [1]={ [1]={ limit={ @@ -109857,7 +109873,7 @@ return { [1]="block_%_if_blocked_an_attack_recently" } }, - [4966]={ + [4967]={ [1]={ [1]={ limit={ @@ -109873,7 +109889,7 @@ return { [1]="block_%_while_affected_by_determination" } }, - [4967]={ + [4968]={ [1]={ [1]={ limit={ @@ -109902,7 +109918,7 @@ return { [1]="blood_mage_flask_life_to_recover_+%_final" } }, - [4968]={ + [4969]={ [1]={ [1]={ limit={ @@ -109935,7 +109951,7 @@ return { [1]="blood_sand_armour_mana_reservation_+%" } }, - [4969]={ + [4970]={ [1]={ [1]={ [1]={ @@ -109972,7 +109988,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_-2%_per_1" } }, - [4970]={ + [4971]={ [1]={ [1]={ limit={ @@ -110001,7 +110017,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_+%" } }, - [4971]={ + [4972]={ [1]={ [1]={ limit={ @@ -110030,7 +110046,7 @@ return { [1]="blood_sand_stance_buff_effect_+%" } }, - [4972]={ + [4973]={ [1]={ [1]={ limit={ @@ -110059,7 +110075,7 @@ return { [1]="blood_spears_area_of_effect_+%" } }, - [4973]={ + [4974]={ [1]={ [1]={ limit={ @@ -110084,7 +110100,7 @@ return { [1]="blood_spears_base_number_of_spears" } }, - [4974]={ + [4975]={ [1]={ [1]={ limit={ @@ -110113,7 +110129,7 @@ return { [1]="blood_spears_damage_+%" } }, - [4975]={ + [4976]={ [1]={ [1]={ limit={ @@ -110142,7 +110158,7 @@ return { [1]="bloodreap_damage_+%" } }, - [4976]={ + [4977]={ [1]={ [1]={ limit={ @@ -110171,7 +110187,7 @@ return { [1]="bloodreap_skill_area_of_effect_+%" } }, - [4977]={ + [4978]={ [1]={ [1]={ limit={ @@ -110200,7 +110216,7 @@ return { [1]="body_armour_+%" } }, - [4978]={ + [4979]={ [1]={ [1]={ limit={ @@ -110229,7 +110245,7 @@ return { [1]="body_armour_evasion_rating_+%" } }, - [4979]={ + [4980]={ [1]={ [1]={ limit={ @@ -110245,7 +110261,7 @@ return { [1]="body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage" } }, - [4980]={ + [4981]={ [1]={ [1]={ limit={ @@ -110261,7 +110277,7 @@ return { [1]="body_armour_grants_base_armour_applies_to_chaos_damage" } }, - [4981]={ + [4982]={ [1]={ [1]={ limit={ @@ -110290,7 +110306,7 @@ return { [1]="body_armour_grants_glory_generation_+%" } }, - [4982]={ + [4983]={ [1]={ [1]={ limit={ @@ -110319,7 +110335,7 @@ return { [1]="body_armour_grants_spirit_+%" } }, - [4983]={ + [4984]={ [1]={ [1]={ limit={ @@ -110348,7 +110364,7 @@ return { [1]="body_armour_grants_thorns_damage_+%" } }, - [4984]={ + [4985]={ [1]={ [1]={ limit={ @@ -110364,7 +110380,7 @@ return { [1]="body_armour_grants_unaffected_by_damaging_ailments" } }, - [4985]={ + [4986]={ [1]={ [1]={ limit={ @@ -110380,7 +110396,7 @@ return { [1]="body_armour_grants_unaffected_by_ignite" } }, - [4986]={ + [4987]={ [1]={ [1]={ limit={ @@ -110396,7 +110412,7 @@ return { [1]="body_armour_grants_x_base_cold_damage_resistance_%" } }, - [4987]={ + [4988]={ [1]={ [1]={ limit={ @@ -110412,7 +110428,7 @@ return { [1]="body_armour_grants_x_base_fire_damage_resistance_%" } }, - [4988]={ + [4989]={ [1]={ [1]={ limit={ @@ -110428,7 +110444,7 @@ return { [1]="body_armour_grants_x_base_lightning_damage_resistance_%" } }, - [4989]={ + [4990]={ [1]={ [1]={ limit={ @@ -110444,7 +110460,7 @@ return { [1]="body_armour_grants_x_base_maximum_fire_damage_resistance_%" } }, - [4990]={ + [4991]={ [1]={ [1]={ limit={ @@ -110473,7 +110489,7 @@ return { [1]="body_armour_grants_x_base_self_critical_strike_multiplier_-%" } }, - [4991]={ + [4992]={ [1]={ [1]={ [1]={ @@ -110493,7 +110509,7 @@ return { [1]="body_armour_grants_x_life_regeneration_rate_per_minute_%" } }, - [4992]={ + [4993]={ [1]={ [1]={ limit={ @@ -110522,7 +110538,7 @@ return { [1]="body_armour_grants_x_maximum_life_+%" } }, - [4993]={ + [4994]={ [1]={ [1]={ limit={ @@ -110538,7 +110554,7 @@ return { [1]="body_armour_grants_x_physical_damage_taken_%_as_fire" } }, - [4994]={ + [4995]={ [1]={ [1]={ limit={ @@ -110567,7 +110583,7 @@ return { [1]="body_armour_grants_x_strength_+%" } }, - [4995]={ + [4996]={ [1]={ [1]={ limit={ @@ -110596,7 +110612,7 @@ return { [1]="body_armour_grants_x_stun_threshold_+%" } }, - [4996]={ + [4997]={ [1]={ [1]={ limit={ @@ -110612,7 +110628,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_dexterity" } }, - [4997]={ + [4998]={ [1]={ [1]={ limit={ @@ -110628,7 +110644,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_intelligence" } }, - [4998]={ + [4999]={ [1]={ [1]={ limit={ @@ -110644,7 +110660,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_strength" } }, - [4999]={ + [5000]={ [1]={ [1]={ [1]={ @@ -110664,7 +110680,7 @@ return { [1]="body_armour_implicit_gain_endurance_charge_every_x_ms" } }, - [5000]={ + [5001]={ [1]={ [1]={ [1]={ @@ -110684,7 +110700,7 @@ return { [1]="body_armour_implicit_gain_frenzy_charge_every_x_ms" } }, - [5001]={ + [5002]={ [1]={ [1]={ [1]={ @@ -110704,7 +110720,7 @@ return { [1]="body_armour_implicit_gain_power_charge_every_x_ms" } }, - [5002]={ + [5003]={ [1]={ [1]={ limit={ @@ -110733,7 +110749,7 @@ return { [1]="bone_golem_damage_+%" } }, - [5003]={ + [5004]={ [1]={ [1]={ limit={ @@ -110749,7 +110765,7 @@ return { [1]="bone_golem_elemental_resistances_%" } }, - [5004]={ + [5005]={ [1]={ [1]={ limit={ @@ -110778,7 +110794,7 @@ return { [1]="bone_lance_cast_speed_+%" } }, - [5005]={ + [5006]={ [1]={ [1]={ limit={ @@ -110807,7 +110823,7 @@ return { [1]="bone_lance_damage_+%" } }, - [5006]={ + [5007]={ [1]={ [1]={ limit={ @@ -110823,7 +110839,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [5007]={ + [5008]={ [1]={ [1]={ limit={ @@ -110852,7 +110868,7 @@ return { [1]="boneshatter_damage_+%_final_if_created_from_unique" } }, - [5008]={ + [5009]={ [1]={ [1]={ limit={ @@ -110881,7 +110897,7 @@ return { [1]="boneshatter_damage_+%" } }, - [5009]={ + [5010]={ [1]={ [1]={ limit={ @@ -110910,7 +110926,7 @@ return { [1]="boneshatter_stun_duration_+%" } }, - [5010]={ + [5011]={ [1]={ [1]={ limit={ @@ -110939,7 +110955,7 @@ return { [1]="boots_implicit_accuracy_rating_+%_final" } }, - [5011]={ + [5012]={ [1]={ [1]={ limit={ @@ -110968,7 +110984,7 @@ return { [1]="boss_maximum_life_+%_final" } }, - [5012]={ + [5013]={ [1]={ [1]={ limit={ @@ -110984,7 +111000,7 @@ return { [1]="bow_attacks_have_culling_strike" } }, - [5013]={ + [5014]={ [1]={ [1]={ limit={ @@ -111000,7 +111016,7 @@ return { [1]="brand_activation_rate_+%_final_during_first_20%_of_active_duration" } }, - [5014]={ + [5015]={ [1]={ [1]={ limit={ @@ -111016,7 +111032,7 @@ return { [1]="brand_activation_rate_+%_final_during_last_20%_of_active_duration" } }, - [5015]={ + [5016]={ [1]={ [1]={ limit={ @@ -111032,7 +111048,7 @@ return { [1]="brand_area_of_effect_+%_if_50%_attached_duration_expired" } }, - [5016]={ + [5017]={ [1]={ [1]={ limit={ @@ -111048,7 +111064,7 @@ return { [1]="brands_reattach_on_activation" } }, - [5017]={ + [5018]={ [1]={ [1]={ limit={ @@ -111064,7 +111080,7 @@ return { [1]="breach_flame_effects_doubled" } }, - [5018]={ + [5019]={ [1]={ [1]={ limit={ @@ -111080,7 +111096,7 @@ return { [1]="breachstone_commanders_%_drop_additional_fragments" } }, - [5019]={ + [5020]={ [1]={ [1]={ limit={ @@ -111096,7 +111112,7 @@ return { [1]="breachstone_commanders_%_drop_additional_maps" } }, - [5020]={ + [5021]={ [1]={ [1]={ limit={ @@ -111112,7 +111128,7 @@ return { [1]="breachstone_commanders_%_drop_additional_scarabs" } }, - [5021]={ + [5022]={ [1]={ [1]={ limit={ @@ -111128,7 +111144,7 @@ return { [1]="breachstone_commanders_%_drop_additional_unique_items" } }, - [5022]={ + [5023]={ [1]={ [1]={ limit={ @@ -111153,7 +111169,7 @@ return { [1]="breachstone_commanders_drop_additional_catalysts" } }, - [5023]={ + [5024]={ [1]={ [1]={ limit={ @@ -111169,7 +111185,7 @@ return { [1]="breachstone_commanders_drop_additional_currency_items" } }, - [5024]={ + [5025]={ [1]={ [1]={ limit={ @@ -111185,7 +111201,7 @@ return { [1]="breachstone_commanders_drop_additional_delirium_items" } }, - [5025]={ + [5026]={ [1]={ [1]={ limit={ @@ -111210,7 +111226,7 @@ return { [1]="breachstone_commanders_drop_additional_divination_cards" } }, - [5026]={ + [5027]={ [1]={ [1]={ limit={ @@ -111235,7 +111251,7 @@ return { [1]="breachstone_commanders_drop_additional_enchanted_items" } }, - [5027]={ + [5028]={ [1]={ [1]={ limit={ @@ -111260,7 +111276,7 @@ return { [1]="breachstone_commanders_drop_additional_essences" } }, - [5028]={ + [5029]={ [1]={ [1]={ limit={ @@ -111285,7 +111301,7 @@ return { [1]="breachstone_commanders_drop_additional_fossils" } }, - [5029]={ + [5030]={ [1]={ [1]={ limit={ @@ -111310,7 +111326,7 @@ return { [1]="breachstone_commanders_drop_additional_gem_items" } }, - [5030]={ + [5031]={ [1]={ [1]={ limit={ @@ -111335,7 +111351,7 @@ return { [1]="breachstone_commanders_drop_additional_harbinger_shards" } }, - [5031]={ + [5032]={ [1]={ [1]={ limit={ @@ -111360,7 +111376,7 @@ return { [1]="breachstone_commanders_drop_additional_incubators" } }, - [5032]={ + [5033]={ [1]={ [1]={ limit={ @@ -111385,7 +111401,7 @@ return { [1]="breachstone_commanders_drop_additional_legion_splinters" } }, - [5033]={ + [5034]={ [1]={ [1]={ limit={ @@ -111410,7 +111426,7 @@ return { [1]="breachstone_commanders_drop_additional_oils" } }, - [5034]={ + [5035]={ [1]={ [1]={ limit={ @@ -111426,7 +111442,7 @@ return { [1]="break_%_armour_on_pin" } }, - [5035]={ + [5036]={ [1]={ [1]={ limit={ @@ -111442,7 +111458,7 @@ return { [1]="break_armour_on_attack_hit_%_of_max_ward" } }, - [5036]={ + [5037]={ [1]={ [1]={ limit={ @@ -111458,7 +111474,7 @@ return { [1]="brequel_display_base_type_chance_%" } }, - [5037]={ + [5038]={ [1]={ [1]={ limit={ @@ -111474,7 +111490,7 @@ return { [1]="brequel_display_birthed_items_always_greater_or_perfect" } }, - [5038]={ + [5039]={ [1]={ [1]={ limit={ @@ -111490,7 +111506,7 @@ return { [1]="brequel_display_cannot_have_modifiers_of_type" } }, - [5039]={ + [5040]={ [1]={ [1]={ limit={ @@ -111506,7 +111522,7 @@ return { [1]="brequel_display_crafted_modifier_chance_%" } }, - [5040]={ + [5041]={ [1]={ [1]={ limit={ @@ -111522,7 +111538,7 @@ return { [1]="brequel_display_empty_modifier" } }, - [5041]={ + [5042]={ [1]={ [1]={ limit={ @@ -111538,7 +111554,7 @@ return { [1]="brequel_display_has_modifier_of_type" } }, - [5042]={ + [5043]={ [1]={ [1]={ limit={ @@ -111554,7 +111570,7 @@ return { [1]="brequel_display_item_cannot_be_base_type" } }, - [5043]={ + [5044]={ [1]={ [1]={ limit={ @@ -111579,7 +111595,7 @@ return { [1]="brequel_reward_10_additional_exalted_orb_chance_%" } }, - [5044]={ + [5045]={ [1]={ [1]={ limit={ @@ -111604,7 +111620,7 @@ return { [1]="brequel_reward_16_to_24_additional_splinters_chance_%" } }, - [5045]={ + [5046]={ [1]={ [1]={ limit={ @@ -111629,7 +111645,7 @@ return { [1]="brequel_reward_2_additional_quality_currency_same_type_chance_%" } }, - [5046]={ + [5047]={ [1]={ [1]={ limit={ @@ -111654,7 +111670,7 @@ return { [1]="brequel_reward_3_to_7_additional_chaos_or_vaal_chance_%" } }, - [5047]={ + [5048]={ [1]={ [1]={ limit={ @@ -111670,7 +111686,7 @@ return { [1]="brequel_reward_5_additional_items_same_type_chance_%" } }, - [5048]={ + [5049]={ [1]={ [1]={ limit={ @@ -111699,7 +111715,7 @@ return { [1]="brequel_reward_absent_amulet_chance_+%" } }, - [5049]={ + [5050]={ [1]={ [1]={ limit={ @@ -111724,7 +111740,7 @@ return { [1]="brequel_reward_additional_alchemy_orb_chance_%" } }, - [5050]={ + [5051]={ [1]={ [1]={ limit={ @@ -111740,7 +111756,7 @@ return { [1]="brequel_reward_additional_catalyst_different_type_chance_%" } }, - [5051]={ + [5052]={ [1]={ [1]={ limit={ @@ -111756,7 +111772,7 @@ return { [1]="brequel_reward_additional_catalyst_same_type_chance_%" } }, - [5052]={ + [5053]={ [1]={ [1]={ limit={ @@ -111781,7 +111797,7 @@ return { [1]="brequel_reward_additional_exalted_orb_chance_%" } }, - [5053]={ + [5054]={ [1]={ [1]={ limit={ @@ -111797,7 +111813,7 @@ return { [1]="brequel_reward_additional_item_chance_%" } }, - [5054]={ + [5055]={ [1]={ [1]={ limit={ @@ -111813,7 +111829,7 @@ return { [1]="brequel_reward_additional_item_same_type_chance_%" } }, - [5055]={ + [5056]={ [1]={ [1]={ limit={ @@ -111838,7 +111854,7 @@ return { [1]="brequel_reward_additional_regal_orb_chance_%" } }, - [5056]={ + [5057]={ [1]={ [1]={ limit={ @@ -111854,7 +111870,7 @@ return { [1]="brequel_reward_additional_seal_crafted_modifier_chance_%" } }, - [5057]={ + [5058]={ [1]={ [1]={ limit={ @@ -111870,7 +111886,7 @@ return { [1]="brequel_reward_anaemia_crafted_modifier_chance_%" } }, - [5058]={ + [5059]={ [1]={ [1]={ limit={ @@ -111886,7 +111902,7 @@ return { [1]="brequel_reward_archon_duration_crafted_%" } }, - [5059]={ + [5060]={ [1]={ [1]={ limit={ @@ -111902,7 +111918,7 @@ return { [1]="brequel_reward_archon_effect_crafted_%" } }, - [5060]={ + [5061]={ [1]={ [1]={ limit={ @@ -111918,7 +111934,7 @@ return { [1]="brequel_reward_archon_undeath_on_offering_use_crafted_%" } }, - [5061]={ + [5062]={ [1]={ [1]={ limit={ @@ -111934,7 +111950,7 @@ return { [1]="brequel_reward_biostatic_ring_chance_%" } }, - [5062]={ + [5063]={ [1]={ [1]={ limit={ @@ -111950,7 +111966,7 @@ return { [1]="brequel_reward_breach_ring_additional_quality" } }, - [5063]={ + [5064]={ [1]={ [1]={ limit={ @@ -111966,7 +111982,7 @@ return { [1]="brequel_reward_breach_ring_chance_%" } }, - [5064]={ + [5065]={ [1]={ [1]={ limit={ @@ -111982,7 +111998,7 @@ return { [1]="brequel_reward_breach_splinters_chance_%" } }, - [5065]={ + [5066]={ [1]={ [1]={ [1]={ @@ -112002,7 +112018,7 @@ return { [1]="brequel_reward_breachlord_sac_chance_%" } }, - [5066]={ + [5067]={ [1]={ [1]={ limit={ @@ -112027,7 +112043,7 @@ return { [1]="brequel_reward_caster_modifier_value_lucky_rolls_+" } }, - [5067]={ + [5068]={ [1]={ [1]={ limit={ @@ -112043,7 +112059,7 @@ return { [1]="brequel_reward_catalyst_chance_%" } }, - [5068]={ + [5069]={ [1]={ [1]={ limit={ @@ -112059,7 +112075,7 @@ return { [1]="brequel_reward_chance_to_not_consume_infusion_if_lost_archon_past_6_seconds_crafted_%" } }, - [5069]={ + [5070]={ [1]={ [1]={ limit={ @@ -112088,7 +112104,7 @@ return { [1]="brequel_reward_chaos_orb_chance_+%" } }, - [5070]={ + [5071]={ [1]={ [1]={ limit={ @@ -112104,7 +112120,7 @@ return { [1]="brequel_reward_cold_as_phys_crafted_modifier_chance_%" } }, - [5071]={ + [5072]={ [1]={ [1]={ limit={ @@ -112120,7 +112136,7 @@ return { [1]="brequel_reward_cold_damage_+%_cold_infusion_collected_last_8_seconds_crafted_%" } }, - [5072]={ + [5073]={ [1]={ [1]={ limit={ @@ -112136,7 +112152,7 @@ return { [1]="brequel_reward_minion_cooldown_recovery_crafted_chance_%" } }, - [5073]={ + [5074]={ [1]={ [1]={ limit={ @@ -112152,7 +112168,7 @@ return { [1]="brequel_reward_consume_no_resource_chance_%" } }, - [5074]={ + [5075]={ [1]={ [1]={ limit={ @@ -112168,7 +112184,7 @@ return { [1]="brequel_reward_convert_items_to_gold" } }, - [5075]={ + [5076]={ [1]={ [1]={ limit={ @@ -112184,7 +112200,7 @@ return { [1]="brequel_reward_corona_amulet_chance_%" } }, - [5076]={ + [5077]={ [1]={ [1]={ limit={ @@ -112200,7 +112216,7 @@ return { [1]="brequel_reward_damage_removed_from_spectres_crafted_%" } }, - [5077]={ + [5078]={ [1]={ [1]={ limit={ @@ -112216,7 +112232,7 @@ return { [1]="brequel_reward_damage_taken_from_mana_before_life_crafted_%" } }, - [5078]={ + [5079]={ [1]={ [1]={ limit={ @@ -112232,7 +112248,7 @@ return { [1]="brequel_reward_desecration_chance_%" } }, - [5079]={ + [5080]={ [1]={ [1]={ limit={ @@ -112248,7 +112264,7 @@ return { [1]="brequel_reward_disable_base_augmentation_orb" } }, - [5080]={ + [5081]={ [1]={ [1]={ limit={ @@ -112264,7 +112280,7 @@ return { [1]="brequel_reward_disable_base_transmutation_orb" } }, - [5081]={ + [5082]={ [1]={ [1]={ limit={ @@ -112293,7 +112309,7 @@ return { [1]="brequel_reward_divine_orb_chance_+%" } }, - [5082]={ + [5083]={ [1]={ [1]={ limit={ @@ -112309,7 +112325,7 @@ return { [1]="brequel_reward_enable_caster_modifiers" } }, - [5083]={ + [5084]={ [1]={ [1]={ limit={ @@ -112325,7 +112341,7 @@ return { [1]="brequel_reward_enable_minion_modifiers" } }, - [5084]={ + [5085]={ [1]={ [1]={ limit={ @@ -112341,7 +112357,7 @@ return { [1]="brequel_reward_essence_chance_%" } }, - [5085]={ + [5086]={ [1]={ [1]={ limit={ @@ -112370,7 +112386,7 @@ return { [1]="brequel_reward_exalted_orb_chance_+%" } }, - [5086]={ + [5087]={ [1]={ [1]={ limit={ @@ -112386,7 +112402,7 @@ return { [1]="brequel_reward_exposure_effect_crafted_%" } }, - [5087]={ + [5088]={ [1]={ [1]={ limit={ @@ -112402,7 +112418,7 @@ return { [1]="brequel_reward_fire_damage_+%_if_fire_infusion_collected_last_8_seconds_crafted_%" } }, - [5088]={ + [5089]={ [1]={ [1]={ limit={ @@ -112418,7 +112434,7 @@ return { [1]="brequel_reward_fire_spell_crit_crafted_modifier_chance_%" } }, - [5089]={ + [5090]={ [1]={ [1]={ limit={ @@ -112434,7 +112450,7 @@ return { [1]="brequel_reward_forking_belt_chance_%" } }, - [5090]={ + [5091]={ [1]={ [1]={ limit={ @@ -112450,7 +112466,7 @@ return { [1]="brequel_reward_grasping_ring_chance_%" } }, - [5091]={ + [5092]={ [1]={ [1]={ limit={ @@ -112466,7 +112482,7 @@ return { [1]="brequel_reward_guarantee_armour_modifier" } }, - [5092]={ + [5093]={ [1]={ [1]={ limit={ @@ -112482,7 +112498,7 @@ return { [1]="brequel_reward_guarantee_attribute_modifier" } }, - [5093]={ + [5094]={ [1]={ [1]={ limit={ @@ -112498,7 +112514,7 @@ return { [1]="brequel_reward_guarantee_cold_resistance_modifier" } }, - [5094]={ + [5095]={ [1]={ [1]={ limit={ @@ -112514,7 +112530,7 @@ return { [1]="brequel_reward_guarantee_defence_modifier" } }, - [5095]={ + [5096]={ [1]={ [1]={ limit={ @@ -112530,7 +112546,7 @@ return { [1]="brequel_reward_guarantee_dexterity_modifier" } }, - [5096]={ + [5097]={ [1]={ [1]={ limit={ @@ -112546,7 +112562,7 @@ return { [1]="brequel_reward_guarantee_energy_shield_modifier" } }, - [5097]={ + [5098]={ [1]={ [1]={ limit={ @@ -112562,7 +112578,7 @@ return { [1]="brequel_reward_guarantee_evasion_modifier" } }, - [5098]={ + [5099]={ [1]={ [1]={ limit={ @@ -112578,7 +112594,7 @@ return { [1]="brequel_reward_guarantee_fire_resistance_modifier" } }, - [5099]={ + [5100]={ [1]={ [1]={ limit={ @@ -112594,7 +112610,7 @@ return { [1]="brequel_reward_guarantee_intelligence_modifier" } }, - [5100]={ + [5101]={ [1]={ [1]={ limit={ @@ -112610,7 +112626,7 @@ return { [1]="brequel_reward_guarantee_life_modifier" } }, - [5101]={ + [5102]={ [1]={ [1]={ limit={ @@ -112626,7 +112642,7 @@ return { [1]="brequel_reward_guarantee_lightning_resistance_modifier" } }, - [5102]={ + [5103]={ [1]={ [1]={ limit={ @@ -112642,7 +112658,7 @@ return { [1]="brequel_reward_guarantee_mana_modifier" } }, - [5103]={ + [5104]={ [1]={ [1]={ limit={ @@ -112658,7 +112674,7 @@ return { [1]="brequel_reward_guarantee_open_prefix" } }, - [5104]={ + [5105]={ [1]={ [1]={ limit={ @@ -112674,7 +112690,7 @@ return { [1]="brequel_reward_guarantee_open_suffix" } }, - [5105]={ + [5106]={ [1]={ [1]={ limit={ @@ -112690,7 +112706,7 @@ return { [1]="brequel_reward_guarantee_resistance_modifier" } }, - [5106]={ + [5107]={ [1]={ [1]={ limit={ @@ -112706,7 +112722,7 @@ return { [1]="brequel_reward_guarantee_resource_modifier" } }, - [5107]={ + [5108]={ [1]={ [1]={ limit={ @@ -112722,7 +112738,7 @@ return { [1]="brequel_reward_guarantee_strength_modifier" } }, - [5108]={ + [5109]={ [1]={ [1]={ limit={ @@ -112756,7 +112772,7 @@ return { [2]="brequel_reward_guarantee_two_caster_modifiers" } }, - [5109]={ + [5110]={ [1]={ [1]={ limit={ @@ -112790,7 +112806,7 @@ return { [2]="brequel_reward_guarantee_two_minion_modifiers" } }, - [5110]={ + [5111]={ [1]={ [1]={ limit={ @@ -112806,7 +112822,7 @@ return { [1]="brequel_reward_invoking_belt_chance_%" } }, - [5111]={ + [5112]={ [1]={ [1]={ limit={ @@ -112835,7 +112851,7 @@ return { [1]="brequel_reward_jewellers_orb_chance_+%" } }, - [5112]={ + [5113]={ [1]={ [1]={ limit={ @@ -112851,7 +112867,7 @@ return { [1]="brequel_reward_kinetic_ring_chance_%" } }, - [5113]={ + [5114]={ [1]={ [1]={ limit={ @@ -112880,7 +112896,7 @@ return { [1]="brequel_reward_lament_amulet_chance_+%" } }, - [5114]={ + [5115]={ [1]={ [1]={ limit={ @@ -112896,7 +112912,7 @@ return { [1]="brequel_reward_lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds_crafted_%" } }, - [5115]={ + [5116]={ [1]={ [1]={ limit={ @@ -112912,7 +112928,7 @@ return { [1]="brequel_reward_max_infusions_crafted_modifier_chance_%" } }, - [5116]={ + [5117]={ [1]={ [1]={ limit={ @@ -112928,7 +112944,7 @@ return { [1]="brequel_reward_maximum_invocation_energy_crafted_%" } }, - [5117]={ + [5118]={ [1]={ [1]={ limit={ @@ -112944,7 +112960,7 @@ return { [1]="brequel_reward_minimum_armour_modifier_level" } }, - [5118]={ + [5119]={ [1]={ [1]={ limit={ @@ -112960,7 +112976,7 @@ return { [1]="brequel_reward_minimum_attribute_modifier_level" } }, - [5119]={ + [5120]={ [1]={ [1]={ limit={ @@ -112976,7 +112992,7 @@ return { [1]="brequel_reward_minimum_caster_crit_modifier_levela" } }, - [5120]={ + [5121]={ [1]={ [1]={ limit={ @@ -112992,7 +113008,7 @@ return { [1]="brequel_reward_minimum_caster_crit_modifier_levelb" } }, - [5121]={ + [5122]={ [1]={ [1]={ limit={ @@ -113008,7 +113024,7 @@ return { [1]="brequel_reward_minimum_caster_modifier_levela" } }, - [5122]={ + [5123]={ [1]={ [1]={ limit={ @@ -113024,7 +113040,7 @@ return { [1]="brequel_reward_minimum_caster_modifier_levelb" } }, - [5123]={ + [5124]={ [1]={ [1]={ limit={ @@ -113040,7 +113056,7 @@ return { [1]="brequel_reward_minimum_caster_prefix_modifier_levela" } }, - [5124]={ + [5125]={ [1]={ [1]={ limit={ @@ -113056,7 +113072,7 @@ return { [1]="brequel_reward_minimum_caster_prefix_modifier_levelb" } }, - [5125]={ + [5126]={ [1]={ [1]={ limit={ @@ -113072,7 +113088,7 @@ return { [1]="brequel_reward_minimum_caster_prefix_modifier_levelc" } }, - [5126]={ + [5127]={ [1]={ [1]={ limit={ @@ -113088,7 +113104,7 @@ return { [1]="brequel_reward_minimum_caster_speed_modifier_levela" } }, - [5127]={ + [5128]={ [1]={ [1]={ limit={ @@ -113104,7 +113120,7 @@ return { [1]="brequel_reward_minimum_caster_speed_modifier_levelb" } }, - [5128]={ + [5129]={ [1]={ [1]={ limit={ @@ -113120,7 +113136,7 @@ return { [1]="brequel_reward_minimum_caster_suffix_modifier_levela" } }, - [5129]={ + [5130]={ [1]={ [1]={ limit={ @@ -113136,7 +113152,7 @@ return { [1]="brequel_reward_minimum_caster_suffix_modifier_levelb" } }, - [5130]={ + [5131]={ [1]={ [1]={ limit={ @@ -113152,7 +113168,7 @@ return { [1]="brequel_reward_minimum_chaos_resistance_modifier_levela" } }, - [5131]={ + [5132]={ [1]={ [1]={ limit={ @@ -113168,7 +113184,7 @@ return { [1]="brequel_reward_minimum_chaos_resistance_modifier_levelb" } }, - [5132]={ + [5133]={ [1]={ [1]={ limit={ @@ -113184,7 +113200,7 @@ return { [1]="brequel_reward_minimum_charm_modifier_level" } }, - [5133]={ + [5134]={ [1]={ [1]={ limit={ @@ -113200,7 +113216,7 @@ return { [1]="brequel_reward_minimum_cold_resistance_modifier_level" } }, - [5134]={ + [5135]={ [1]={ [1]={ limit={ @@ -113216,7 +113232,7 @@ return { [1]="brequel_reward_minimum_damage_modifier_level" } }, - [5135]={ + [5136]={ [1]={ [1]={ limit={ @@ -113232,7 +113248,7 @@ return { [1]="brequel_reward_minimum_defence_modifier_levela" } }, - [5136]={ + [5137]={ [1]={ [1]={ limit={ @@ -113248,7 +113264,7 @@ return { [1]="brequel_reward_minimum_defence_modifier_levelb" } }, - [5137]={ + [5138]={ [1]={ [1]={ limit={ @@ -113264,7 +113280,7 @@ return { [1]="brequel_reward_minimum_dexterity_modifier_level" } }, - [5138]={ + [5139]={ [1]={ [1]={ limit={ @@ -113280,7 +113296,7 @@ return { [1]="brequel_reward_minimum_elemental_resistance_modifier_level" } }, - [5139]={ + [5140]={ [1]={ [1]={ limit={ @@ -113296,7 +113312,7 @@ return { [1]="brequel_reward_minimum_energy_shield_modifier_level" } }, - [5140]={ + [5141]={ [1]={ [1]={ limit={ @@ -113312,7 +113328,7 @@ return { [1]="brequel_reward_minimum_evasion_modifier_level" } }, - [5141]={ + [5142]={ [1]={ [1]={ limit={ @@ -113328,7 +113344,7 @@ return { [1]="brequel_reward_minimum_fire_resistance_modifier_level" } }, - [5142]={ + [5143]={ [1]={ [1]={ limit={ @@ -113344,7 +113360,7 @@ return { [1]="brequel_reward_minimum_flask_modifier_level" } }, - [5143]={ + [5144]={ [1]={ [1]={ limit={ @@ -113360,7 +113376,7 @@ return { [1]="brequel_reward_minimum_intelligence_modifier_level" } }, - [5144]={ + [5145]={ [1]={ [1]={ limit={ @@ -113376,7 +113392,7 @@ return { [1]="brequel_reward_minimum_life_modifier_level" } }, - [5145]={ + [5146]={ [1]={ [1]={ limit={ @@ -113392,7 +113408,7 @@ return { [1]="brequel_reward_minimum_lightning_resistance_modifier_level" } }, - [5146]={ + [5147]={ [1]={ [1]={ limit={ @@ -113408,7 +113424,7 @@ return { [1]="brequel_reward_minimum_mana_modifier_levela" } }, - [5147]={ + [5148]={ [1]={ [1]={ limit={ @@ -113424,7 +113440,7 @@ return { [1]="brequel_reward_minimum_mana_modifier_levelb" } }, - [5148]={ + [5149]={ [1]={ [1]={ limit={ @@ -113440,7 +113456,7 @@ return { [1]="brequel_reward_minimum_minion_damage_modifier_levela" } }, - [5149]={ + [5150]={ [1]={ [1]={ limit={ @@ -113456,7 +113472,7 @@ return { [1]="brequel_reward_minimum_minion_damage_modifier_levelb" } }, - [5150]={ + [5151]={ [1]={ [1]={ limit={ @@ -113472,7 +113488,7 @@ return { [1]="brequel_reward_minimum_minion_modifier_level" } }, - [5151]={ + [5152]={ [1]={ [1]={ limit={ @@ -113488,7 +113504,7 @@ return { [1]="brequel_reward_minimum_minion_modifier_levelb" } }, - [5152]={ + [5153]={ [1]={ [1]={ limit={ @@ -113504,7 +113520,7 @@ return { [1]="brequel_reward_minimum_minion_prefix_modifier_levela" } }, - [5153]={ + [5154]={ [1]={ [1]={ limit={ @@ -113520,7 +113536,7 @@ return { [1]="brequel_reward_minimum_minion_prefix_modifier_levelb" } }, - [5154]={ + [5155]={ [1]={ [1]={ limit={ @@ -113536,7 +113552,7 @@ return { [1]="brequel_reward_minimum_minion_prefix_modifier_levelc" } }, - [5155]={ + [5156]={ [1]={ [1]={ limit={ @@ -113552,7 +113568,7 @@ return { [1]="brequel_reward_minimum_minion_resistance_modifier_levela" } }, - [5156]={ + [5157]={ [1]={ [1]={ limit={ @@ -113568,7 +113584,7 @@ return { [1]="brequel_reward_minimum_minion_resistance_modifier_levelb" } }, - [5157]={ + [5158]={ [1]={ [1]={ limit={ @@ -113584,7 +113600,7 @@ return { [1]="brequel_reward_minimum_minion_speed_modifier_levela" } }, - [5158]={ + [5159]={ [1]={ [1]={ limit={ @@ -113600,7 +113616,7 @@ return { [1]="brequel_reward_minimum_minion_speed_modifier_levelb" } }, - [5159]={ + [5160]={ [1]={ [1]={ limit={ @@ -113616,7 +113632,7 @@ return { [1]="brequel_reward_minimum_minion_suffix_modifier_levela" } }, - [5160]={ + [5161]={ [1]={ [1]={ limit={ @@ -113632,7 +113648,7 @@ return { [1]="brequel_reward_minimum_minion_suffix_modifier_levelb" } }, - [5161]={ + [5162]={ [1]={ [1]={ limit={ @@ -113648,7 +113664,7 @@ return { [1]="brequel_reward_minimum_minion_suffix_modifier_levelc" } }, - [5162]={ + [5163]={ [1]={ [1]={ limit={ @@ -113664,7 +113680,7 @@ return { [1]="brequel_reward_minimum_modifier_level" } }, - [5163]={ + [5164]={ [1]={ [1]={ limit={ @@ -113680,7 +113696,7 @@ return { [1]="brequel_reward_minimum_modifier_levelb" } }, - [5164]={ + [5165]={ [1]={ [1]={ limit={ @@ -113696,7 +113712,7 @@ return { [1]="brequel_reward_minimum_prefix_modifier_level" } }, - [5165]={ + [5166]={ [1]={ [1]={ limit={ @@ -113712,7 +113728,7 @@ return { [1]="brequel_reward_minimum_resistance_modifier_level" } }, - [5166]={ + [5167]={ [1]={ [1]={ limit={ @@ -113728,7 +113744,7 @@ return { [1]="brequel_reward_minimum_resource_modifier_levela" } }, - [5167]={ + [5168]={ [1]={ [1]={ limit={ @@ -113744,7 +113760,7 @@ return { [1]="brequel_reward_minimum_resource_modifier_levelb" } }, - [5168]={ + [5169]={ [1]={ [1]={ limit={ @@ -113760,7 +113776,7 @@ return { [1]="brequel_reward_minimum_strength_modifier_level" } }, - [5169]={ + [5170]={ [1]={ [1]={ limit={ @@ -113776,7 +113792,7 @@ return { [1]="brequel_reward_minimum_suffix_modifier_level" } }, - [5170]={ + [5171]={ [1]={ [1]={ limit={ @@ -113792,7 +113808,7 @@ return { [1]="brequel_reward_minion_additional_projectile_chance_crafted_%" } }, - [5171]={ + [5172]={ [1]={ [1]={ limit={ @@ -113808,7 +113824,7 @@ return { [1]="brequel_reward_minion_ailment_magnitude_crafted_chance_%" } }, - [5172]={ + [5173]={ [1]={ [1]={ limit={ @@ -113824,7 +113840,7 @@ return { [1]="brequel_reward_minion_armour_break_crafted_chance_%" } }, - [5173]={ + [5174]={ [1]={ [1]={ limit={ @@ -113840,7 +113856,7 @@ return { [1]="brequel_reward_command_skill_speed_crafted_chance_%" } }, - [5174]={ + [5175]={ [1]={ [1]={ limit={ @@ -113856,7 +113872,7 @@ return { [1]="brequel_reward_minion_damage_per_different_command_skill_used_last_15_seconds_crafted_%" } }, - [5175]={ + [5176]={ [1]={ [1]={ limit={ @@ -113872,7 +113888,7 @@ return { [1]="brequel_reward_minion_duration_crafted_%" } }, - [5176]={ + [5177]={ [1]={ [1]={ limit={ @@ -113888,7 +113904,7 @@ return { [1]="brequel_reward_minion_melee_splash_crafted_%" } }, - [5177]={ + [5178]={ [1]={ [1]={ limit={ @@ -113913,7 +113929,7 @@ return { [1]="brequel_reward_minion_modifier_value_lucky_rolls_+" } }, - [5178]={ + [5179]={ [1]={ [1]={ limit={ @@ -113929,7 +113945,7 @@ return { [1]="brequel_reward_minion_puppet_master_crafted_chance_%" } }, - [5179]={ + [5180]={ [1]={ [1]={ limit={ @@ -113945,7 +113961,7 @@ return { [1]="brequel_reward_minion_reservation_efficiency_crafted_%" } }, - [5180]={ + [5181]={ [1]={ [1]={ limit={ @@ -113961,7 +113977,7 @@ return { [1]="brequel_reward_minions_gigantic_revived_recently_crafted_%" } }, - [5181]={ + [5182]={ [1]={ [1]={ limit={ @@ -113977,7 +113993,7 @@ return { [1]="brequel_reward_mnemonic_ring_chance_%" } }, - [5182]={ + [5183]={ [1]={ [1]={ limit={ @@ -114002,7 +114018,7 @@ return { [1]="brequel_reward_modifier_value_lucky_rolls_+" } }, - [5183]={ + [5184]={ [1]={ [1]={ limit={ @@ -114018,7 +114034,7 @@ return { [1]="brequel_reward_no_amber_amulets" } }, - [5184]={ + [5185]={ [1]={ [1]={ limit={ @@ -114034,7 +114050,7 @@ return { [1]="brequel_reward_no_attack_catalysts" } }, - [5185]={ + [5186]={ [1]={ [1]={ limit={ @@ -114050,7 +114066,7 @@ return { [1]="brequel_reward_no_attack_modifiers" } }, - [5186]={ + [5187]={ [1]={ [1]={ limit={ @@ -114066,7 +114082,7 @@ return { [1]="brequel_reward_no_attribute_catalysts" } }, - [5187]={ + [5188]={ [1]={ [1]={ limit={ @@ -114082,7 +114098,7 @@ return { [1]="brequel_reward_no_azure_amulets" } }, - [5188]={ + [5189]={ [1]={ [1]={ limit={ @@ -114098,7 +114114,7 @@ return { [1]="brequel_reward_no_bloodstone_amulets" } }, - [5189]={ + [5190]={ [1]={ [1]={ limit={ @@ -114114,7 +114130,7 @@ return { [1]="brequel_reward_no_caster_catalysts" } }, - [5190]={ + [5191]={ [1]={ [1]={ limit={ @@ -114130,7 +114146,7 @@ return { [1]="brequel_reward_no_caster_modifiers" } }, - [5191]={ + [5192]={ [1]={ [1]={ limit={ @@ -114146,7 +114162,7 @@ return { [1]="brequel_reward_no_chance_orbs" } }, - [5192]={ + [5193]={ [1]={ [1]={ limit={ @@ -114162,7 +114178,7 @@ return { [1]="brequel_reward_no_chaos_catalysts" } }, - [5193]={ + [5194]={ [1]={ [1]={ limit={ @@ -114178,7 +114194,7 @@ return { [1]="brequel_reward_no_chaos_orbs" } }, - [5194]={ + [5195]={ [1]={ [1]={ limit={ @@ -114194,7 +114210,7 @@ return { [1]="brequel_reward_no_charm_modifiers" } }, - [5195]={ + [5196]={ [1]={ [1]={ limit={ @@ -114210,7 +114226,7 @@ return { [1]="brequel_reward_no_cold_catalysts" } }, - [5196]={ + [5197]={ [1]={ [1]={ limit={ @@ -114226,7 +114242,7 @@ return { [1]="brequel_reward_no_cold_modifiers" } }, - [5197]={ + [5198]={ [1]={ [1]={ limit={ @@ -114242,7 +114258,7 @@ return { [1]="brequel_reward_no_crimson_amulets" } }, - [5198]={ + [5199]={ [1]={ [1]={ limit={ @@ -114258,7 +114274,7 @@ return { [1]="brequel_reward_no_critical_modifiers" } }, - [5199]={ + [5200]={ [1]={ [1]={ limit={ @@ -114274,7 +114290,7 @@ return { [1]="brequel_reward_no_defences_catalysts" } }, - [5200]={ + [5201]={ [1]={ [1]={ limit={ @@ -114290,7 +114306,7 @@ return { [1]="brequel_reward_no_dexterity_modifiers" } }, - [5201]={ + [5202]={ [1]={ [1]={ limit={ @@ -114306,7 +114322,7 @@ return { [1]="brequel_reward_no_divine_orbs" } }, - [5202]={ + [5203]={ [1]={ [1]={ limit={ @@ -114322,7 +114338,7 @@ return { [1]="brequel_reward_no_fire_catalysts" } }, - [5203]={ + [5204]={ [1]={ [1]={ limit={ @@ -114338,7 +114354,7 @@ return { [1]="brequel_reward_no_fire_modifiers" } }, - [5204]={ + [5205]={ [1]={ [1]={ limit={ @@ -114354,7 +114370,7 @@ return { [1]="brequel_reward_no_flask_modifiers" } }, - [5205]={ + [5206]={ [1]={ [1]={ limit={ @@ -114370,7 +114386,7 @@ return { [1]="brequel_reward_no_gem_cutters_prisms" } }, - [5206]={ + [5207]={ [1]={ [1]={ limit={ @@ -114386,7 +114402,7 @@ return { [1]="brequel_reward_no_gold_amulets" } }, - [5207]={ + [5208]={ [1]={ [1]={ limit={ @@ -114402,7 +114418,7 @@ return { [1]="brequel_reward_no_intelligence_modifiers" } }, - [5208]={ + [5209]={ [1]={ [1]={ limit={ @@ -114418,7 +114434,7 @@ return { [1]="brequel_reward_no_jade_amulets" } }, - [5209]={ + [5210]={ [1]={ [1]={ limit={ @@ -114434,7 +114450,7 @@ return { [1]="brequel_reward_no_lapis_amulets" } }, - [5210]={ + [5211]={ [1]={ [1]={ limit={ @@ -114450,7 +114466,7 @@ return { [1]="brequel_reward_no_life_catalysts" } }, - [5211]={ + [5212]={ [1]={ [1]={ limit={ @@ -114466,7 +114482,7 @@ return { [1]="brequel_reward_no_life_modifiers" } }, - [5212]={ + [5213]={ [1]={ [1]={ limit={ @@ -114482,7 +114498,7 @@ return { [1]="brequel_reward_no_lightning_catalysts" } }, - [5213]={ + [5214]={ [1]={ [1]={ limit={ @@ -114498,7 +114514,7 @@ return { [1]="brequel_reward_no_lightning_modifiers" } }, - [5214]={ + [5215]={ [1]={ [1]={ limit={ @@ -114514,7 +114530,7 @@ return { [1]="brequel_reward_no_lunar_amulets" } }, - [5215]={ + [5216]={ [1]={ [1]={ limit={ @@ -114530,7 +114546,7 @@ return { [1]="brequel_reward_no_mana_catalysts" } }, - [5216]={ + [5217]={ [1]={ [1]={ limit={ @@ -114546,7 +114562,7 @@ return { [1]="brequel_reward_no_mana_modifiers" } }, - [5217]={ + [5218]={ [1]={ [1]={ limit={ @@ -114562,7 +114578,7 @@ return { [1]="brequel_reward_no_orbs_of_annulment" } }, - [5218]={ + [5219]={ [1]={ [1]={ limit={ @@ -114578,7 +114594,7 @@ return { [1]="brequel_reward_no_orbs_of_augmentation" } }, - [5219]={ + [5220]={ [1]={ [1]={ limit={ @@ -114594,7 +114610,7 @@ return { [1]="brequel_reward_no_orbs_of_transmutation" } }, - [5220]={ + [5221]={ [1]={ [1]={ limit={ @@ -114610,7 +114626,7 @@ return { [1]="brequel_reward_no_perfect_jewellers_orbs" } }, - [5221]={ + [5222]={ [1]={ [1]={ limit={ @@ -114626,7 +114642,7 @@ return { [1]="brequel_reward_no_physical_catalysts" } }, - [5222]={ + [5223]={ [1]={ [1]={ limit={ @@ -114642,7 +114658,7 @@ return { [1]="brequel_reward_no_solar_amulets" } }, - [5223]={ + [5224]={ [1]={ [1]={ limit={ @@ -114658,7 +114674,7 @@ return { [1]="brequel_reward_no_speed_catalysts" } }, - [5224]={ + [5225]={ [1]={ [1]={ limit={ @@ -114674,7 +114690,7 @@ return { [1]="brequel_reward_no_stellar_amulets" } }, - [5225]={ + [5226]={ [1]={ [1]={ limit={ @@ -114690,7 +114706,7 @@ return { [1]="brequel_reward_no_strength_modifiers" } }, - [5226]={ + [5227]={ [1]={ [1]={ limit={ @@ -114706,7 +114722,7 @@ return { [1]="brequel_reward_no_vaal_orbs" } }, - [5227]={ + [5228]={ [1]={ [1]={ limit={ @@ -114722,7 +114738,7 @@ return { [1]="brequel_reward_offering_effect_crafted_chance_%" } }, - [5228]={ + [5229]={ [1]={ [1]={ limit={ @@ -114738,7 +114754,7 @@ return { [1]="brequel_reward_oneiric_ring_chance_%" } }, - [5229]={ + [5230]={ [1]={ [1]={ limit={ @@ -114754,7 +114770,7 @@ return { [1]="brequel_reward_only_catalysts" } }, - [5230]={ + [5231]={ [1]={ [1]={ limit={ @@ -114783,7 +114799,7 @@ return { [1]="brequel_reward_orb_of_alchemy_chance_+%" } }, - [5231]={ + [5232]={ [1]={ [1]={ limit={ @@ -114812,7 +114828,7 @@ return { [1]="brequel_reward_orb_of_anunulment_chance_+%" } }, - [5232]={ + [5233]={ [1]={ [1]={ limit={ @@ -114841,7 +114857,7 @@ return { [1]="brequel_reward_orb_of_augmentation_chance_+%" } }, - [5233]={ + [5234]={ [1]={ [1]={ limit={ @@ -114870,7 +114886,7 @@ return { [1]="brequel_reward_orb_of_transmutation_chance_+%" } }, - [5234]={ + [5235]={ [1]={ [1]={ limit={ @@ -114899,7 +114915,7 @@ return { [1]="brequel_reward_portent_amulet_chance_+%" } }, - [5235]={ + [5236]={ [1]={ [1]={ limit={ @@ -114924,7 +114940,7 @@ return { [1]="brequel_reward_prefix_modifier_value_lucky_rolls_+" } }, - [5236]={ + [5237]={ [1]={ [1]={ limit={ @@ -114940,7 +114956,7 @@ return { [1]="brequel_reward_prefix_modifier_values_always_max" } }, - [5237]={ + [5238]={ [1]={ [1]={ limit={ @@ -114969,7 +114985,7 @@ return { [1]="brequel_reward_quality_currency_chance_+%" } }, - [5238]={ + [5239]={ [1]={ [1]={ limit={ @@ -114998,7 +115014,7 @@ return { [1]="brequel_reward_regal_orb_chance_+%" } }, - [5239]={ + [5240]={ [1]={ [1]={ limit={ @@ -115014,7 +115030,7 @@ return { [1]="brequel_reward_reservation_amulet_chance_%" } }, - [5240]={ + [5241]={ [1]={ [1]={ limit={ @@ -115047,7 +115063,7 @@ return { [1]="brequel_reward_resource_cost_+%" } }, - [5241]={ + [5242]={ [1]={ [1]={ limit={ @@ -115063,7 +115079,7 @@ return { [1]="brequel_reward_seal_gain_frequency_crafted_modifier_chance_%" } }, - [5242]={ + [5243]={ [1]={ [1]={ limit={ @@ -115079,7 +115095,7 @@ return { [1]="brequel_reward_sinew_belt_chance_%" } }, - [5243]={ + [5244]={ [1]={ [1]={ limit={ @@ -115095,7 +115111,7 @@ return { [1]="brequel_reward_special_catalyst_chance_%" } }, - [5244]={ + [5245]={ [1]={ [1]={ limit={ @@ -115111,7 +115127,7 @@ return { [1]="brequel_reward_spell_damage_as_extra_chaos_crafted_%" } }, - [5245]={ + [5246]={ [1]={ [1]={ limit={ @@ -115127,7 +115143,7 @@ return { [1]="brequel_reward_spell_damage_as_extra_cold_crafted_%" } }, - [5246]={ + [5247]={ [1]={ [1]={ limit={ @@ -115143,7 +115159,7 @@ return { [1]="brequel_reward_spell_damage_as_extra_fire_crafted_%" } }, - [5247]={ + [5248]={ [1]={ [1]={ limit={ @@ -115159,7 +115175,7 @@ return { [1]="brequel_reward_spell_damage_as_extra_lightning_crafted_%" } }, - [5248]={ + [5249]={ [1]={ [1]={ limit={ @@ -115175,7 +115191,7 @@ return { [1]="brequel_reward_spell_elemental_ailment_magnitude_crafted_%" } }, - [5249]={ + [5250]={ [1]={ [1]={ limit={ @@ -115191,7 +115207,7 @@ return { [1]="brequel_reward_spell_impale_effect_crafted_%" } }, - [5250]={ + [5251]={ [1]={ [1]={ limit={ @@ -115207,7 +115223,7 @@ return { [1]="brequel_reward_stalking_belt_chance_%" } }, - [5251]={ + [5252]={ [1]={ [1]={ limit={ @@ -115232,7 +115248,7 @@ return { [1]="brequel_reward_suffix_modifier_value_lucky_rolls_+" } }, - [5252]={ + [5253]={ [1]={ [1]={ limit={ @@ -115248,7 +115264,7 @@ return { [1]="brequel_reward_suffix_modifier_values_always_max" } }, - [5253]={ + [5254]={ [1]={ [1]={ limit={ @@ -115264,7 +115280,7 @@ return { [1]="brequel_reward_temporary_minion_limit_crafted_chance_%" } }, - [5254]={ + [5255]={ [1]={ [1]={ limit={ @@ -115293,7 +115309,7 @@ return { [1]="brequel_reward_vaal_orb_chance_+%" } }, - [5255]={ + [5256]={ [1]={ [1]={ limit={ @@ -115309,7 +115325,7 @@ return { [1]="brequel_reward_vitalic_ring_chance_%" } }, - [5256]={ + [5257]={ [1]={ [1]={ limit={ @@ -115325,7 +115341,7 @@ return { [1]="broken_armour_and_sundered_armour_debuff_effect_+%" } }, - [5257]={ + [5258]={ [1]={ [1]={ limit={ @@ -115341,7 +115357,7 @@ return { [1]="broken_armour_enemies_cannot_regenerate_life" } }, - [5258]={ + [5259]={ [1]={ [1]={ limit={ @@ -115370,7 +115386,7 @@ return { [1]="buff_effect_+%_on_low_energy_shield" } }, - [5259]={ + [5260]={ [1]={ [1]={ limit={ @@ -115399,7 +115415,7 @@ return { [1]="buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life" } }, - [5260]={ + [5261]={ [1]={ [1]={ limit={ @@ -115428,7 +115444,7 @@ return { [1]="buff_time_passed_+%_only_buff_category" } }, - [5261]={ + [5262]={ [1]={ [1]={ limit={ @@ -115457,7 +115473,7 @@ return { [1]="buff_time_passed_+%" } }, - [5262]={ + [5263]={ [1]={ [1]={ [1]={ @@ -115490,7 +115506,7 @@ return { [1]="buildup_jade_every_x_ms" } }, - [5263]={ + [5264]={ [1]={ [1]={ limit={ @@ -115506,7 +115522,7 @@ return { [1]="burning_and_explosive_arrow_shatter_on_killing_blow" } }, - [5264]={ + [5265]={ [1]={ [1]={ limit={ @@ -115535,7 +115551,7 @@ return { [1]="burning_arrow_debuff_effect_+%" } }, - [5265]={ + [5266]={ [1]={ [1]={ limit={ @@ -115564,7 +115580,7 @@ return { [1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%" } }, - [5266]={ + [5267]={ [1]={ [1]={ limit={ @@ -115580,7 +115596,7 @@ return { [1]="can_apply_additional_chill" } }, - [5267]={ + [5268]={ [1]={ [1]={ limit={ @@ -115596,7 +115612,7 @@ return { [1]="can_apply_additional_shock" } }, - [5268]={ + [5269]={ [1]={ [1]={ limit={ @@ -115612,7 +115628,7 @@ return { [1]="can_block_from_all_directions" } }, - [5269]={ + [5270]={ [1]={ [1]={ limit={ @@ -115628,7 +115644,7 @@ return { [1]="can_catch_scourged_fish" } }, - [5270]={ + [5271]={ [1]={ [1]={ limit={ @@ -115644,7 +115660,7 @@ return { [1]="can_gain_combo_from_any_attack_hit" } }, - [5271]={ + [5272]={ [1]={ [1]={ limit={ @@ -115660,7 +115676,7 @@ return { [1]="can_only_have_one_ancestor_totem_buff" } }, - [5272]={ + [5273]={ [1]={ [1]={ limit={ @@ -115676,7 +115692,7 @@ return { [1]="can_place_multiple_banners" } }, - [5273]={ + [5274]={ [1]={ [1]={ limit={ @@ -115692,7 +115708,7 @@ return { [1]="can_wield_2h_axe_sword_mace_in_one_hand" } }, - [5274]={ + [5275]={ [1]={ [1]={ limit={ @@ -115708,7 +115724,7 @@ return { [1]="cannot_adapt_to_cold" } }, - [5275]={ + [5276]={ [1]={ [1]={ limit={ @@ -115724,7 +115740,7 @@ return { [1]="cannot_adapt_to_fire" } }, - [5276]={ + [5277]={ [1]={ [1]={ limit={ @@ -115740,7 +115756,7 @@ return { [1]="cannot_adapt_to_lightning" } }, - [5277]={ + [5278]={ [1]={ [1]={ limit={ @@ -115756,7 +115772,7 @@ return { [1]="cannot_be_blinded_while_affected_by_precision" } }, - [5278]={ + [5279]={ [1]={ [1]={ limit={ @@ -115772,7 +115788,7 @@ return { [1]="cannot_be_blinded_while_on_full_life" } }, - [5279]={ + [5280]={ [1]={ [1]={ limit={ @@ -115788,7 +115804,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_ice_golem_summoned" } }, - [5280]={ + [5281]={ [1]={ [1]={ limit={ @@ -115804,7 +115820,7 @@ return { [1]="cannot_be_chilled_or_frozen_while_moving" } }, - [5281]={ + [5282]={ [1]={ [1]={ limit={ @@ -115820,7 +115836,7 @@ return { [1]="cannot_be_chilled_while_at_maximum_frenzy_charges" } }, - [5282]={ + [5283]={ [1]={ [1]={ limit={ @@ -115836,7 +115852,7 @@ return { [1]="cannot_be_chilled_while_burning" } }, - [5283]={ + [5284]={ [1]={ [1]={ limit={ @@ -115852,7 +115868,7 @@ return { [1]="cannot_be_crit_if_you_have_been_stunned_recently" } }, - [5284]={ + [5285]={ [1]={ [1]={ limit={ @@ -115868,7 +115884,7 @@ return { [1]="cannot_be_frozen_if_energy_shield_recharge_has_started_recently" } }, - [5285]={ + [5286]={ [1]={ [1]={ limit={ @@ -115884,7 +115900,7 @@ return { [1]="cannot_be_frozen_if_you_have_been_frozen_recently" } }, - [5286]={ + [5287]={ [1]={ [1]={ limit={ @@ -115900,7 +115916,7 @@ return { [1]="cannot_be_frozen_with_dex_higher_than_int" } }, - [5287]={ + [5288]={ [1]={ [1]={ limit={ @@ -115916,7 +115932,7 @@ return { [1]="cannot_be_heavy_stunned_while_sprinting" } }, - [5288]={ + [5289]={ [1]={ [1]={ limit={ @@ -115932,7 +115948,7 @@ return { [1]="cannot_be_ignited_if_you_have_been_ignited_recently" } }, - [5289]={ + [5290]={ [1]={ [1]={ limit={ @@ -115948,7 +115964,7 @@ return { [1]="cannot_be_ignited_while_at_maximum_endurance_charges" } }, - [5290]={ + [5291]={ [1]={ [1]={ limit={ @@ -115964,7 +115980,7 @@ return { [1]="cannot_be_ignited_while_flame_golem_summoned" } }, - [5291]={ + [5292]={ [1]={ [1]={ limit={ @@ -115980,7 +115996,7 @@ return { [1]="cannot_be_ignited_with_strength_higher_than_dex" } }, - [5292]={ + [5293]={ [1]={ [1]={ limit={ @@ -115996,7 +116012,7 @@ return { [1]="cannot_be_inflicted_by_corrupted_blood" } }, - [5293]={ + [5294]={ [1]={ [1]={ limit={ @@ -116012,7 +116028,7 @@ return { [1]="cannot_be_light_stunned" } }, - [5294]={ + [5295]={ [1]={ [1]={ limit={ @@ -116028,7 +116044,7 @@ return { [1]="cannot_be_light_stunned_by_deflected_hits" } }, - [5295]={ + [5296]={ [1]={ [1]={ limit={ @@ -116044,7 +116060,7 @@ return { [1]="cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds" } }, - [5296]={ + [5297]={ [1]={ [1]={ limit={ @@ -116060,7 +116076,7 @@ return { [1]="cannot_be_light_stunned_if_have_not_been_hit_recently" } }, - [5297]={ + [5298]={ [1]={ [1]={ limit={ @@ -116076,7 +116092,7 @@ return { [1]="cannot_be_light_stunned_if_you_have_been_stunned_recently" } }, - [5298]={ + [5299]={ [1]={ [1]={ limit={ @@ -116101,7 +116117,7 @@ return { [1]="cannot_be_poisoned_if_x_poisons_on_you" } }, - [5299]={ + [5300]={ [1]={ [1]={ limit={ @@ -116117,7 +116133,7 @@ return { [1]="cannot_be_poisoned_while_bleeding" } }, - [5300]={ + [5301]={ [1]={ [1]={ limit={ @@ -116133,7 +116149,7 @@ return { [1]="cannot_be_shocked_if_you_have_been_shocked_recently" } }, - [5301]={ + [5302]={ [1]={ [1]={ limit={ @@ -116149,7 +116165,7 @@ return { [1]="cannot_be_shocked_or_ignited_while_moving" } }, - [5302]={ + [5303]={ [1]={ [1]={ limit={ @@ -116165,7 +116181,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_power_charges" } }, - [5303]={ + [5304]={ [1]={ [1]={ limit={ @@ -116181,7 +116197,7 @@ return { [1]="cannot_be_shocked_while_lightning_golem_summoned" } }, - [5304]={ + [5305]={ [1]={ [1]={ limit={ @@ -116197,7 +116213,7 @@ return { [1]="cannot_be_shocked_with_int_higher_than_strength" } }, - [5305]={ + [5306]={ [1]={ [1]={ limit={ @@ -116213,7 +116229,7 @@ return { [1]="cannot_be_stunned_by_blocked_hits" } }, - [5306]={ + [5307]={ [1]={ [1]={ limit={ @@ -116229,7 +116245,7 @@ return { [1]="cannot_be_stunned_by_hits_of_only_physical_damage" } }, - [5307]={ + [5308]={ [1]={ [1]={ limit={ @@ -116245,7 +116261,7 @@ return { [1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently" } }, - [5308]={ + [5309]={ [1]={ [1]={ limit={ @@ -116261,7 +116277,7 @@ return { [1]="cannot_be_stunned_if_you_have_ghost_dance" } }, - [5309]={ + [5310]={ [1]={ [1]={ limit={ @@ -116277,7 +116293,7 @@ return { [1]="cannot_be_stunned_while_bleeding" } }, - [5310]={ + [5311]={ [1]={ [1]={ limit={ @@ -116293,7 +116309,7 @@ return { [1]="cannot_be_stunned_while_fortified" } }, - [5311]={ + [5312]={ [1]={ [1]={ limit={ @@ -116309,7 +116325,7 @@ return { [1]="cannot_be_stunned_while_using_chaos_skill" } }, - [5312]={ + [5313]={ [1]={ [1]={ limit={ @@ -116325,7 +116341,7 @@ return { [1]="cannot_cast_spells" } }, - [5313]={ + [5314]={ [1]={ [1]={ limit={ @@ -116341,7 +116357,7 @@ return { [1]="cannot_consume_power_frenzy_endurance_charges" } }, - [5314]={ + [5315]={ [1]={ [1]={ limit={ @@ -116357,7 +116373,7 @@ return { [1]="cannot_critical_strike_with_attacks" } }, - [5315]={ + [5316]={ [1]={ [1]={ limit={ @@ -116373,7 +116389,7 @@ return { [1]="cannot_fish_from_water" } }, - [5316]={ + [5317]={ [1]={ [1]={ limit={ @@ -116389,7 +116405,7 @@ return { [1]="cannot_gain_charges" } }, - [5317]={ + [5318]={ [1]={ [1]={ limit={ @@ -116405,7 +116421,7 @@ return { [1]="cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks" } }, - [5318]={ + [5319]={ [1]={ [1]={ limit={ @@ -116421,7 +116437,7 @@ return { [1]="cannot_gain_rage_during_soul_gain_prevention" } }, - [5319]={ + [5320]={ [1]={ [1]={ limit={ @@ -116437,7 +116453,7 @@ return { [1]="cannot_gain_spirit_from_equipment" } }, - [5320]={ + [5321]={ [1]={ [1]={ limit={ @@ -116453,7 +116469,7 @@ return { [1]="cannot_have_energy_shield_leeched_from" } }, - [5321]={ + [5322]={ [1]={ [1]={ limit={ @@ -116469,7 +116485,7 @@ return { [1]="cannot_have_more_than_1_damaging_ailment" } }, - [5322]={ + [5323]={ [1]={ [1]={ limit={ @@ -116485,7 +116501,7 @@ return { [1]="cannot_have_more_than_1_non_damaging_ailment" } }, - [5323]={ + [5324]={ [1]={ [1]={ limit={ @@ -116501,7 +116517,7 @@ return { [1]="cannot_immobilise_enemies" } }, - [5324]={ + [5325]={ [1]={ [1]={ limit={ @@ -116517,7 +116533,7 @@ return { [1]="cannot_kill_enemies_with_hits" } }, - [5325]={ + [5326]={ [1]={ [1]={ limit={ @@ -116533,7 +116549,7 @@ return { [1]="cannot_miss_against_full_life_enemies" } }, - [5326]={ + [5327]={ [1]={ [1]={ limit={ @@ -116549,7 +116565,7 @@ return { [1]="cannot_penetrate_or_ignore_elemental_resistances" } }, - [5327]={ + [5328]={ [1]={ [1]={ limit={ @@ -116565,7 +116581,7 @@ return { [1]="cannot_pierce" } }, - [5328]={ + [5329]={ [1]={ [1]={ limit={ @@ -116581,7 +116597,7 @@ return { [1]="cannot_pin" } }, - [5329]={ + [5330]={ [1]={ [1]={ limit={ @@ -116597,7 +116613,7 @@ return { [1]="cannot_receive_elemental_ailments_from_cursed_enemies" } }, - [5330]={ + [5331]={ [1]={ [1]={ limit={ @@ -116613,7 +116629,7 @@ return { [1]="cannot_recharge_energy_shield" } }, - [5331]={ + [5332]={ [1]={ [1]={ limit={ @@ -116629,7 +116645,7 @@ return { [1]="cannot_recover_above_low_life_except_flasks" } }, - [5332]={ + [5333]={ [1]={ [1]={ limit={ @@ -116645,7 +116661,7 @@ return { [1]="cannot_recover_life_or_energy_shield_above_%" } }, - [5333]={ + [5334]={ [1]={ [1]={ limit={ @@ -116661,7 +116677,7 @@ return { [1]="cannot_recover_mana_except_regeneration" } }, - [5334]={ + [5335]={ [1]={ [1]={ limit={ @@ -116677,7 +116693,7 @@ return { [1]="cannot_regenerate_energy_shield" } }, - [5335]={ + [5336]={ [1]={ [1]={ limit={ @@ -116693,7 +116709,7 @@ return { [1]="cannot_sprint" } }, - [5336]={ + [5337]={ [1]={ [1]={ limit={ @@ -116709,7 +116725,7 @@ return { [1]="cannot_take_reflected_elemental_damage" } }, - [5337]={ + [5338]={ [1]={ [1]={ limit={ @@ -116725,7 +116741,7 @@ return { [1]="cannot_take_reflected_physical_damage" } }, - [5338]={ + [5339]={ [1]={ [1]={ limit={ @@ -116741,7 +116757,7 @@ return { [1]="cannot_taunt_enemies" } }, - [5339]={ + [5340]={ [1]={ [1]={ limit={ @@ -116757,7 +116773,7 @@ return { [1]="cannot_use_flask_in_fifth_slot" } }, - [5340]={ + [5341]={ [1]={ [1]={ limit={ @@ -116773,7 +116789,7 @@ return { [1]="cannot_use_non_normal_body_armour" } }, - [5341]={ + [5342]={ [1]={ [1]={ limit={ @@ -116789,7 +116805,7 @@ return { [1]="cannot_use_warcries" } }, - [5342]={ + [5343]={ [1]={ [1]={ limit={ @@ -116805,7 +116821,7 @@ return { [1]="carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems" } }, - [5343]={ + [5344]={ [1]={ [1]={ limit={ @@ -116821,7 +116837,7 @@ return { [1]="cascadable_spells_final_echo_also_cascades_to_sides" } }, - [5344]={ + [5345]={ [1]={ [1]={ limit={ @@ -116837,7 +116853,7 @@ return { [1]="cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash" } }, - [5345]={ + [5346]={ [1]={ [1]={ limit={ @@ -116853,7 +116869,7 @@ return { [1]="cast_blink_arrow_on_attack_with_mirror_arrow" } }, - [5346]={ + [5347]={ [1]={ [1]={ limit={ @@ -116869,7 +116885,7 @@ return { [1]="cast_body_swap_on_detonate_dead_cast" } }, - [5347]={ + [5348]={ [1]={ [1]={ limit={ @@ -116885,7 +116901,7 @@ return { [1]="cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter" } }, - [5348]={ + [5349]={ [1]={ [1]={ limit={ @@ -116901,7 +116917,7 @@ return { [1]="cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire" } }, - [5349]={ + [5350]={ [1]={ [1]={ limit={ @@ -116917,7 +116933,7 @@ return { [1]="cast_hydrosphere_while_channeling_winter_orb" } }, - [5350]={ + [5351]={ [1]={ [1]={ limit={ @@ -116933,7 +116949,7 @@ return { [1]="cast_ice_nova_on_final_burst_of_glacial_cascade" } }, - [5351]={ + [5352]={ [1]={ [1]={ limit={ @@ -116949,7 +116965,7 @@ return { [1]="cast_mirror_arrow_on_attack_with_blink_arrow" } }, - [5352]={ + [5353]={ [1]={ [1]={ limit={ @@ -116965,7 +116981,7 @@ return { [1]="cast_speed_+%_during_mana_flask_effect" } }, - [5353]={ + [5354]={ [1]={ [1]={ limit={ @@ -116994,7 +117010,7 @@ return { [1]="cast_speed_+%_per_20_spirit" } }, - [5354]={ + [5355]={ [1]={ [1]={ limit={ @@ -117023,7 +117039,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds" } }, - [5355]={ + [5356]={ [1]={ [1]={ limit={ @@ -117052,7 +117068,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [5356]={ + [5357]={ [1]={ [1]={ limit={ @@ -117081,7 +117097,7 @@ return { [1]="cast_speed_+%_per_spell_echoed_recently_up_to_30%" } }, - [5357]={ + [5358]={ [1]={ [1]={ limit={ @@ -117110,7 +117126,7 @@ return { [1]="cast_speed_for_brand_skills_+%" } }, - [5358]={ + [5359]={ [1]={ [1]={ limit={ @@ -117139,7 +117155,7 @@ return { [1]="cast_speed_for_elemental_skills_+%" } }, - [5359]={ + [5360]={ [1]={ [1]={ limit={ @@ -117168,7 +117184,7 @@ return { [1]="cast_speed_+%_during_flask_effect" } }, - [5360]={ + [5361]={ [1]={ [1]={ limit={ @@ -117197,7 +117213,7 @@ return { [1]="cast_speed_+%_if_enemy_killed_recently" } }, - [5361]={ + [5362]={ [1]={ [1]={ limit={ @@ -117226,7 +117242,7 @@ return { [1]="cast_speed_+%_if_have_crit_recently" } }, - [5362]={ + [5363]={ [1]={ [1]={ limit={ @@ -117255,7 +117271,7 @@ return { [1]="cast_speed_+%_if_player_minion_has_been_killed_recently" } }, - [5363]={ + [5364]={ [1]={ [1]={ limit={ @@ -117284,7 +117300,7 @@ return { [1]="cast_speed_+%_if_you_have_used_a_mana_flask_recently" } }, - [5364]={ + [5365]={ [1]={ [1]={ limit={ @@ -117313,7 +117329,7 @@ return { [1]="cast_speed_+%_per_corpse_consumed_recently" } }, - [5365]={ + [5366]={ [1]={ [1]={ limit={ @@ -117342,7 +117358,7 @@ return { [1]="cast_speed_+%_while_affected_by_zealotry" } }, - [5366]={ + [5367]={ [1]={ [1]={ limit={ @@ -117371,7 +117387,7 @@ return { [1]="cast_speed_+%_while_chilled" } }, - [5367]={ + [5368]={ [1]={ [1]={ limit={ @@ -117400,7 +117416,7 @@ return { [1]="cast_speed_+%_while_on_full_mana" } }, - [5368]={ + [5369]={ [1]={ [1]={ limit={ @@ -117416,7 +117432,7 @@ return { [1]="cast_stance_change_on_attack_from_perforate_or_lacerate" } }, - [5369]={ + [5370]={ [1]={ [1]={ limit={ @@ -117432,7 +117448,7 @@ return { [1]="cast_summon_spectral_wolf_on_crit_with_cleave_or_reave" } }, - [5370]={ + [5371]={ [1]={ [1]={ limit={ @@ -117448,7 +117464,7 @@ return { [1]="cast_tornado_on_attack_with_split_arrow_or_tornado_shot" } }, - [5371]={ + [5372]={ [1]={ [1]={ limit={ @@ -117464,7 +117480,7 @@ return { [1]="cat_aspect_reserves_no_mana" } }, - [5372]={ + [5373]={ [1]={ [1]={ [1]={ @@ -117484,7 +117500,7 @@ return { [1]="cats_stealth_duration_ms_+" } }, - [5373]={ + [5374]={ [1]={ [1]={ [1]={ @@ -117513,7 +117529,7 @@ return { [1]="caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill" } }, - [5374]={ + [5375]={ [1]={ [1]={ limit={ @@ -117529,7 +117545,7 @@ return { [1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground" } }, - [5375]={ + [5376]={ [1]={ [1]={ limit={ @@ -117558,7 +117574,7 @@ return { [1]="caustic_arrow_damage_over_time_+%" } }, - [5376]={ + [5377]={ [1]={ [1]={ limit={ @@ -117587,7 +117603,7 @@ return { [1]="caustic_arrow_hit_damage_+%" } }, - [5377]={ + [5378]={ [1]={ [1]={ limit={ @@ -117616,7 +117632,7 @@ return { [1]="chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks" } }, - [5378]={ + [5379]={ [1]={ [1]={ limit={ @@ -117632,7 +117648,7 @@ return { [1]="chain_strike_cone_radius_+_per_12_rage" } }, - [5379]={ + [5380]={ [1]={ [1]={ limit={ @@ -117648,7 +117664,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [5380]={ + [5381]={ [1]={ [1]={ limit={ @@ -117677,7 +117693,7 @@ return { [1]="chain_strike_damage_+%" } }, - [5381]={ + [5382]={ [1]={ [1]={ limit={ @@ -117693,7 +117709,7 @@ return { [1]="chain_strike_gain_rage_on_hit_%_chance" } }, - [5382]={ + [5383]={ [1]={ [1]={ limit={ @@ -117722,7 +117738,7 @@ return { [1]="chaining_range_+%" } }, - [5383]={ + [5384]={ [1]={ [1]={ limit={ @@ -117738,7 +117754,7 @@ return { [1]="champion_ascendancy_nearby_allies_fortification_is_equal_to_yours" } }, - [5384]={ + [5385]={ [1]={ [1]={ limit={ @@ -117754,7 +117770,7 @@ return { [1]="chance_%_for_other_flasks_to_gain_charge_on_charge_gain" } }, - [5385]={ + [5386]={ [1]={ [1]={ limit={ @@ -117770,7 +117786,7 @@ return { [1]="chance_%_for_plants_to_overgrow_when_entering_your_presence" } }, - [5386]={ + [5387]={ [1]={ [1]={ limit={ @@ -117795,7 +117811,7 @@ return { [1]="chance_%_to_create_shocking_ground_on_shock" } }, - [5387]={ + [5388]={ [1]={ [1]={ limit={ @@ -117820,7 +117836,7 @@ return { [1]="chance_%_to_double_effect_of_removing_frenzy_charges" } }, - [5388]={ + [5389]={ [1]={ [1]={ [1]={ @@ -117840,7 +117856,7 @@ return { [1]="chance_%_to_drop_additional_awakened_sextant" } }, - [5389]={ + [5390]={ [1]={ [1]={ [1]={ @@ -117860,7 +117876,7 @@ return { [1]="chance_%_to_drop_additional_blessed_orb" } }, - [5390]={ + [5391]={ [1]={ [1]={ [1]={ @@ -117880,7 +117896,7 @@ return { [1]="chance_%_to_drop_additional_cartographers_chisel" } }, - [5391]={ + [5392]={ [1]={ [1]={ [1]={ @@ -117900,7 +117916,7 @@ return { [1]="chance_%_to_drop_additional_chaos_orb" } }, - [5392]={ + [5393]={ [1]={ [1]={ [1]={ @@ -117920,7 +117936,7 @@ return { [1]="chance_%_to_drop_additional_chromatic_orb" } }, - [5393]={ + [5394]={ [1]={ [1]={ [1]={ @@ -117940,7 +117956,7 @@ return { [1]="chance_%_to_drop_additional_divine_orb" } }, - [5394]={ + [5395]={ [1]={ [1]={ [1]={ @@ -117960,7 +117976,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_chaos_orb" } }, - [5395]={ + [5396]={ [1]={ [1]={ [1]={ @@ -117980,7 +117996,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_exalted_orb" } }, - [5396]={ + [5397]={ [1]={ [1]={ [1]={ @@ -118000,7 +118016,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_orb_of_annulment" } }, - [5397]={ + [5398]={ [1]={ [1]={ [1]={ @@ -118020,7 +118036,7 @@ return { [1]="chance_%_to_drop_additional_enkindling_orb" } }, - [5398]={ + [5399]={ [1]={ [1]={ [1]={ @@ -118040,7 +118056,7 @@ return { [1]="chance_%_to_drop_additional_exalted_orb" } }, - [5399]={ + [5400]={ [1]={ [1]={ [1]={ @@ -118060,7 +118076,7 @@ return { [1]="chance_%_to_drop_additional_fusing_orb" } }, - [5400]={ + [5401]={ [1]={ [1]={ [1]={ @@ -118080,7 +118096,7 @@ return { [1]="chance_%_to_drop_additional_gemcutters_prism" } }, - [5401]={ + [5402]={ [1]={ [1]={ [1]={ @@ -118100,7 +118116,7 @@ return { [1]="chance_%_to_drop_additional_glassblowers_bauble" } }, - [5402]={ + [5403]={ [1]={ [1]={ [1]={ @@ -118120,7 +118136,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ember" } }, - [5403]={ + [5404]={ [1]={ [1]={ [1]={ @@ -118140,7 +118156,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ichor" } }, - [5404]={ + [5405]={ [1]={ [1]={ [1]={ @@ -118160,7 +118176,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ember" } }, - [5405]={ + [5406]={ [1]={ [1]={ [1]={ @@ -118180,7 +118196,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ichor" } }, - [5406]={ + [5407]={ [1]={ [1]={ [1]={ @@ -118200,7 +118216,7 @@ return { [1]="chance_%_to_drop_additional_instilling_orb" } }, - [5407]={ + [5408]={ [1]={ [1]={ [1]={ @@ -118220,7 +118236,7 @@ return { [1]="chance_%_to_drop_additional_jewellers_orb" } }, - [5408]={ + [5409]={ [1]={ [1]={ [1]={ @@ -118240,7 +118256,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ember" } }, - [5409]={ + [5410]={ [1]={ [1]={ [1]={ @@ -118260,7 +118276,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ichor" } }, - [5410]={ + [5411]={ [1]={ [1]={ [1]={ @@ -118280,7 +118296,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_alteration" } }, - [5411]={ + [5412]={ [1]={ [1]={ [1]={ @@ -118300,7 +118316,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_annulment" } }, - [5412]={ + [5413]={ [1]={ [1]={ [1]={ @@ -118320,7 +118336,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_binding" } }, - [5413]={ + [5414]={ [1]={ [1]={ [1]={ @@ -118340,7 +118356,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_horizons" } }, - [5414]={ + [5415]={ [1]={ [1]={ [1]={ @@ -118360,7 +118376,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_regret" } }, - [5415]={ + [5416]={ [1]={ [1]={ [1]={ @@ -118380,7 +118396,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_scouring" } }, - [5416]={ + [5417]={ [1]={ [1]={ [1]={ @@ -118400,7 +118416,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_unmaking" } }, - [5417]={ + [5418]={ [1]={ [1]={ [1]={ @@ -118420,7 +118436,7 @@ return { [1]="chance_%_to_drop_additional_regal_orb" } }, - [5418]={ + [5419]={ [1]={ [1]={ [1]={ @@ -118440,7 +118456,7 @@ return { [1]="chance_%_to_drop_additional_vaal_orb" } }, - [5419]={ + [5420]={ [1]={ [1]={ limit={ @@ -118456,7 +118472,7 @@ return { [1]="chance_%_to_gain_archon_of_nature_on_overgrowing_plant" } }, - [5420]={ + [5421]={ [1]={ [1]={ limit={ @@ -118472,7 +118488,7 @@ return { [1]="chance_%_to_gain_archon_of_undeath_on_using_command_skill" } }, - [5421]={ + [5422]={ [1]={ [1]={ limit={ @@ -118488,7 +118504,7 @@ return { [1]="chance_%_to_gain_archon_of_undeath_when_you_create_an_offering" } }, - [5422]={ + [5423]={ [1]={ [1]={ limit={ @@ -118522,7 +118538,7 @@ return { [2]="stone_skin_maximum_stacks" } }, - [5423]={ + [5424]={ [1]={ [1]={ limit={ @@ -118547,7 +118563,7 @@ return { [1]="chance_for_double_items_from_heist_chests_%" } }, - [5424]={ + [5425]={ [1]={ [1]={ limit={ @@ -118563,7 +118579,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [5425]={ + [5426]={ [1]={ [1]={ limit={ @@ -118579,7 +118595,7 @@ return { [1]="chance_for_extra_damage_roll_with_lightning_damage_%" } }, - [5426]={ + [5427]={ [1]={ [1]={ limit={ @@ -118595,7 +118611,7 @@ return { [1]="chance_for_plants_to_be_overgrown_%" } }, - [5427]={ + [5428]={ [1]={ [1]={ limit={ @@ -118611,7 +118627,7 @@ return { [1]="chance_for_skills_to_avoid_cooldown_%" } }, - [5428]={ + [5429]={ [1]={ [1]={ limit={ @@ -118627,7 +118643,7 @@ return { [1]="chance_for_spells_to_not_pay_costs_%" } }, - [5429]={ + [5430]={ [1]={ [1]={ limit={ @@ -118643,7 +118659,7 @@ return { [1]="chance_%_to_create_additional_remnant" } }, - [5430]={ + [5431]={ [1]={ [1]={ [1]={ @@ -118663,7 +118679,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_currency" } }, - [5431]={ + [5432]={ [1]={ [1]={ [1]={ @@ -118683,7 +118699,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_influenced_item" } }, - [5432]={ + [5433]={ [1]={ [1]={ [1]={ @@ -118703,7 +118719,7 @@ return { [1]="chance_%_to_drop_additional_currency" } }, - [5433]={ + [5434]={ [1]={ [1]={ [1]={ @@ -118723,7 +118739,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards" } }, - [5434]={ + [5435]={ [1]={ [1]={ [1]={ @@ -118743,7 +118759,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_corrupted" } }, - [5435]={ + [5436]={ [1]={ [1]={ [1]={ @@ -118763,7 +118779,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency" } }, - [5436]={ + [5437]={ [1]={ [1]={ [1]={ @@ -118783,7 +118799,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_basic" } }, - [5437]={ + [5438]={ [1]={ [1]={ [1]={ @@ -118803,7 +118819,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_exotic" } }, - [5438]={ + [5439]={ [1]={ [1]={ [1]={ @@ -118823,7 +118839,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_league" } }, - [5439]={ + [5440]={ [1]={ [1]={ [1]={ @@ -118843,7 +118859,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems" } }, - [5440]={ + [5441]={ [1]={ [1]={ [1]={ @@ -118863,7 +118879,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_levelled" } }, - [5441]={ + [5442]={ [1]={ [1]={ [1]={ @@ -118883,7 +118899,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_quality" } }, - [5442]={ + [5443]={ [1]={ [1]={ [1]={ @@ -118903,7 +118919,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gives_other_divination_cards" } }, - [5443]={ + [5444]={ [1]={ [1]={ [1]={ @@ -118923,7 +118939,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map" } }, - [5444]={ + [5445]={ [1]={ [1]={ [1]={ @@ -118943,7 +118959,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map_unique" } }, - [5445]={ + [5446]={ [1]={ [1]={ [1]={ @@ -118963,7 +118979,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique" } }, - [5446]={ + [5447]={ [1]={ [1]={ [1]={ @@ -118983,7 +118999,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_armour" } }, - [5447]={ + [5448]={ [1]={ [1]={ [1]={ @@ -119003,7 +119019,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_corrupted" } }, - [5448]={ + [5449]={ [1]={ [1]={ [1]={ @@ -119023,7 +119039,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_jewellery" } }, - [5449]={ + [5450]={ [1]={ [1]={ [1]={ @@ -119043,7 +119059,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_weapon" } }, - [5450]={ + [5451]={ [1]={ [1]={ [1]={ @@ -119063,7 +119079,7 @@ return { [1]="chance_%_to_drop_additional_gem" } }, - [5451]={ + [5452]={ [1]={ [1]={ [1]={ @@ -119083,7 +119099,7 @@ return { [1]="chance_%_to_drop_additional_maps" } }, - [5452]={ + [5453]={ [1]={ [1]={ [1]={ @@ -119103,7 +119119,7 @@ return { [1]="chance_%_to_drop_additional_map_currency" } }, - [5453]={ + [5454]={ [1]={ [1]={ [1]={ @@ -119123,7 +119139,7 @@ return { [1]="chance_%_to_drop_additional_scarab" } }, - [5454]={ + [5455]={ [1]={ [1]={ [1]={ @@ -119143,7 +119159,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_gilded" } }, - [5455]={ + [5456]={ [1]={ [1]={ [1]={ @@ -119163,7 +119179,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_polished" } }, - [5456]={ + [5457]={ [1]={ [1]={ [1]={ @@ -119183,7 +119199,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_rusted" } }, - [5457]={ + [5458]={ [1]={ [1]={ [1]={ @@ -119203,7 +119219,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_gilded" } }, - [5458]={ + [5459]={ [1]={ [1]={ [1]={ @@ -119223,7 +119239,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_polished" } }, - [5459]={ + [5460]={ [1]={ [1]={ [1]={ @@ -119243,7 +119259,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_rusted" } }, - [5460]={ + [5461]={ [1]={ [1]={ [1]={ @@ -119263,7 +119279,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_gilded" } }, - [5461]={ + [5462]={ [1]={ [1]={ [1]={ @@ -119283,7 +119299,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_polished" } }, - [5462]={ + [5463]={ [1]={ [1]={ [1]={ @@ -119303,7 +119319,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_rusted" } }, - [5463]={ + [5464]={ [1]={ [1]={ [1]={ @@ -119323,7 +119339,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_gilded" } }, - [5464]={ + [5465]={ [1]={ [1]={ [1]={ @@ -119343,7 +119359,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_polished" } }, - [5465]={ + [5466]={ [1]={ [1]={ [1]={ @@ -119363,7 +119379,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_rusted" } }, - [5466]={ + [5467]={ [1]={ [1]={ [1]={ @@ -119383,7 +119399,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_gilded" } }, - [5467]={ + [5468]={ [1]={ [1]={ [1]={ @@ -119403,7 +119419,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_polished" } }, - [5468]={ + [5469]={ [1]={ [1]={ [1]={ @@ -119423,7 +119439,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_rusted" } }, - [5469]={ + [5470]={ [1]={ [1]={ [1]={ @@ -119443,7 +119459,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_gilded" } }, - [5470]={ + [5471]={ [1]={ [1]={ [1]={ @@ -119463,7 +119479,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_polished" } }, - [5471]={ + [5472]={ [1]={ [1]={ [1]={ @@ -119483,7 +119499,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_rusted" } }, - [5472]={ + [5473]={ [1]={ [1]={ [1]={ @@ -119503,7 +119519,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_gilded" } }, - [5473]={ + [5474]={ [1]={ [1]={ [1]={ @@ -119523,7 +119539,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_polished" } }, - [5474]={ + [5475]={ [1]={ [1]={ [1]={ @@ -119543,7 +119559,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_rusted" } }, - [5475]={ + [5476]={ [1]={ [1]={ [1]={ @@ -119563,7 +119579,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_gilded" } }, - [5476]={ + [5477]={ [1]={ [1]={ [1]={ @@ -119583,7 +119599,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_polished" } }, - [5477]={ + [5478]={ [1]={ [1]={ [1]={ @@ -119603,7 +119619,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_rusted" } }, - [5478]={ + [5479]={ [1]={ [1]={ [1]={ @@ -119623,7 +119639,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_gilded" } }, - [5479]={ + [5480]={ [1]={ [1]={ [1]={ @@ -119643,7 +119659,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_polished" } }, - [5480]={ + [5481]={ [1]={ [1]={ [1]={ @@ -119663,7 +119679,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_rusted" } }, - [5481]={ + [5482]={ [1]={ [1]={ [1]={ @@ -119683,7 +119699,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_gilded" } }, - [5482]={ + [5483]={ [1]={ [1]={ [1]={ @@ -119703,7 +119719,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_polished" } }, - [5483]={ + [5484]={ [1]={ [1]={ [1]={ @@ -119723,7 +119739,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_rusted" } }, - [5484]={ + [5485]={ [1]={ [1]={ [1]={ @@ -119743,7 +119759,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_gilded" } }, - [5485]={ + [5486]={ [1]={ [1]={ [1]={ @@ -119763,7 +119779,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_polished" } }, - [5486]={ + [5487]={ [1]={ [1]={ [1]={ @@ -119783,7 +119799,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_rusted" } }, - [5487]={ + [5488]={ [1]={ [1]={ [1]={ @@ -119803,7 +119819,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_gilded" } }, - [5488]={ + [5489]={ [1]={ [1]={ [1]={ @@ -119823,7 +119839,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_polished" } }, - [5489]={ + [5490]={ [1]={ [1]={ [1]={ @@ -119843,7 +119859,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_rusted" } }, - [5490]={ + [5491]={ [1]={ [1]={ [1]={ @@ -119863,7 +119879,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_gilded" } }, - [5491]={ + [5492]={ [1]={ [1]={ [1]={ @@ -119883,7 +119899,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_polished" } }, - [5492]={ + [5493]={ [1]={ [1]={ [1]={ @@ -119903,7 +119919,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_rusted" } }, - [5493]={ + [5494]={ [1]={ [1]={ [1]={ @@ -119923,7 +119939,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_gilded" } }, - [5494]={ + [5495]={ [1]={ [1]={ [1]={ @@ -119943,7 +119959,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_polished" } }, - [5495]={ + [5496]={ [1]={ [1]={ [1]={ @@ -119963,7 +119979,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_rusted" } }, - [5496]={ + [5497]={ [1]={ [1]={ [1]={ @@ -119983,7 +119999,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_gilded" } }, - [5497]={ + [5498]={ [1]={ [1]={ [1]={ @@ -120003,7 +120019,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_polished" } }, - [5498]={ + [5499]={ [1]={ [1]={ [1]={ @@ -120023,7 +120039,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_rusted" } }, - [5499]={ + [5500]={ [1]={ [1]={ [1]={ @@ -120043,7 +120059,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_gilded" } }, - [5500]={ + [5501]={ [1]={ [1]={ [1]={ @@ -120063,7 +120079,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_polished" } }, - [5501]={ + [5502]={ [1]={ [1]={ [1]={ @@ -120083,7 +120099,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_rusted" } }, - [5502]={ + [5503]={ [1]={ [1]={ [1]={ @@ -120103,7 +120119,7 @@ return { [1]="chance_%_to_drop_additional_tangled_currency" } }, - [5503]={ + [5504]={ [1]={ [1]={ [1]={ @@ -120123,7 +120139,7 @@ return { [1]="chance_%_to_drop_additional_tangled_influenced_item" } }, - [5504]={ + [5505]={ [1]={ [1]={ [1]={ @@ -120143,7 +120159,7 @@ return { [1]="chance_%_to_drop_additional_unique" } }, - [5505]={ + [5506]={ [1]={ [1]={ limit={ @@ -120159,7 +120175,7 @@ return { [1]="chance_to_avoid_death_%" } }, - [5506]={ + [5507]={ [1]={ [1]={ limit={ @@ -120184,7 +120200,7 @@ return { [1]="chance_to_be_hindered_when_hit_by_spells_%" } }, - [5507]={ + [5508]={ [1]={ [1]={ limit={ @@ -120213,7 +120229,7 @@ return { [1]="chance_to_be_inflicted_with_an_ailment_+%" } }, - [5508]={ + [5509]={ [1]={ [1]={ limit={ @@ -120229,7 +120245,7 @@ return { [1]="chance_to_be_maimed_when_hit_%" } }, - [5509]={ + [5510]={ [1]={ [1]={ limit={ @@ -120245,7 +120261,7 @@ return { [1]="chance_to_be_sapped_when_hit_%" } }, - [5510]={ + [5511]={ [1]={ [1]={ limit={ @@ -120261,7 +120277,7 @@ return { [1]="chance_to_be_scorched_when_hit_%" } }, - [5511]={ + [5512]={ [1]={ [1]={ limit={ @@ -120277,7 +120293,7 @@ return { [1]="chance_to_block_attack_damage_if_not_blocked_recently_%" } }, - [5512]={ + [5513]={ [1]={ [1]={ limit={ @@ -120293,7 +120309,7 @@ return { [1]="chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%" } }, - [5513]={ + [5514]={ [1]={ [1]={ limit={ @@ -120309,7 +120325,7 @@ return { [1]="chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%" } }, - [5514]={ + [5515]={ [1]={ [1]={ limit={ @@ -120325,7 +120341,7 @@ return { [1]="chance_to_block_attacks_%_while_channelling" } }, - [5515]={ + [5516]={ [1]={ [1]={ limit={ @@ -120341,7 +120357,7 @@ return { [1]="chance_to_create_consecrated_ground_on_melee_kill_%" } }, - [5516]={ + [5517]={ [1]={ [1]={ ["gem_quality"]=true, @@ -120385,7 +120401,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [5517]={ + [5518]={ [1]={ [1]={ limit={ @@ -120401,7 +120417,7 @@ return { [1]="chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second" } }, - [5518]={ + [5519]={ [1]={ [1]={ limit={ @@ -120417,7 +120433,7 @@ return { [1]="chance_to_deal_double_damage_%_while_at_least_200_strength" } }, - [5519]={ + [5520]={ [1]={ [1]={ limit={ @@ -120433,7 +120449,7 @@ return { [1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds" } }, - [5520]={ + [5521]={ [1]={ [1]={ limit={ @@ -120449,7 +120465,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [5521]={ + [5522]={ [1]={ [1]={ limit={ @@ -120465,7 +120481,7 @@ return { [1]="chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently" } }, - [5522]={ + [5523]={ [1]={ [1]={ limit={ @@ -120481,7 +120497,7 @@ return { [1]="chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently" } }, - [5523]={ + [5524]={ [1]={ [1]={ limit={ @@ -120497,7 +120513,7 @@ return { [1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds" } }, - [5524]={ + [5525]={ [1]={ [1]={ limit={ @@ -120513,7 +120529,7 @@ return { [1]="chance_to_deal_double_damage_%_per_4_rage" } }, - [5525]={ + [5526]={ [1]={ [1]={ limit={ @@ -120529,7 +120545,7 @@ return { [1]="chance_to_deal_double_damage_%_per_500_strength" } }, - [5526]={ + [5527]={ [1]={ [1]={ limit={ @@ -120554,7 +120570,7 @@ return { [1]="chance_to_deal_double_damage_%_while_focused" } }, - [5527]={ + [5528]={ [1]={ [1]={ limit={ @@ -120570,7 +120586,7 @@ return { [1]="chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds" } }, - [5528]={ + [5529]={ [1]={ [1]={ limit={ @@ -120586,7 +120602,7 @@ return { [1]="chance_to_deal_double_damage_while_on_full_life_%" } }, - [5529]={ + [5530]={ [1]={ [1]={ limit={ @@ -120602,7 +120618,7 @@ return { [1]="chance_to_deal_triple_damage_%_while_at_least_400_strength" } }, - [5530]={ + [5531]={ [1]={ [1]={ limit={ @@ -120618,7 +120634,7 @@ return { [1]="chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield" } }, - [5531]={ + [5532]={ [1]={ [1]={ limit={ @@ -120634,7 +120650,7 @@ return { [1]="chance_to_double_armour_effect_on_hit_%" } }, - [5532]={ + [5533]={ [1]={ [1]={ limit={ @@ -120650,7 +120666,7 @@ return { [1]="chance_to_fire_1_additional_projectile_%_with_rollover" } }, - [5533]={ + [5534]={ [1]={ [1]={ limit={ @@ -120666,7 +120682,7 @@ return { [1]="chance_to_fire_1_additional_projectile_%_with_rollover_with_bow_attacks" } }, - [5534]={ + [5535]={ [1]={ [1]={ limit={ @@ -120682,7 +120698,7 @@ return { [1]="chance_to_fork_extra_projectile_%_per_10_tribute" } }, - [5535]={ + [5536]={ [1]={ [1]={ limit={ @@ -120698,7 +120714,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [5536]={ + [5537]={ [1]={ [1]={ limit={ @@ -120723,7 +120739,7 @@ return { [1]="chance_to_fortify_on_melee_stun_%" } }, - [5537]={ + [5538]={ [1]={ [1]={ limit={ @@ -120748,7 +120764,7 @@ return { [1]="chance_to_gain_1_more_charge_%_per_10_tribute" } }, - [5538]={ + [5539]={ [1]={ [1]={ limit={ @@ -120773,7 +120789,7 @@ return { [1]="chance_to_gain_1_more_charge_%" } }, - [5539]={ + [5540]={ [1]={ [1]={ limit={ @@ -120798,7 +120814,7 @@ return { [1]="chance_to_gain_1_more_endurance_charge_%" } }, - [5540]={ + [5541]={ [1]={ [1]={ limit={ @@ -120823,7 +120839,7 @@ return { [1]="chance_to_gain_1_more_frenzy_charge_%" } }, - [5541]={ + [5542]={ [1]={ [1]={ limit={ @@ -120848,7 +120864,7 @@ return { [1]="chance_to_gain_1_more_power_charge_%" } }, - [5542]={ + [5543]={ [1]={ [1]={ limit={ @@ -120873,7 +120889,7 @@ return { [1]="chance_to_gain_1_more_random_charge_%" } }, - [5543]={ + [5544]={ [1]={ [1]={ limit={ @@ -120889,7 +120905,7 @@ return { [1]="chance_to_gain_200_life_on_hit_with_attacks_%" } }, - [5544]={ + [5545]={ [1]={ [1]={ limit={ @@ -120905,7 +120921,7 @@ return { [1]="chance_to_gain_3_additional_exerted_attacks_%" } }, - [5545]={ + [5546]={ [1]={ [1]={ limit={ @@ -120921,7 +120937,7 @@ return { [1]="chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5546]={ + [5547]={ [1]={ [1]={ limit={ @@ -120937,7 +120953,7 @@ return { [1]="chance_to_gain_elusive_when_you_block_while_dual_wielding_%" } }, - [5547]={ + [5548]={ [1]={ [1]={ limit={ @@ -120953,7 +120969,7 @@ return { [1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy" } }, - [5548]={ + [5549]={ [1]={ [1]={ limit={ @@ -120969,7 +120985,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%" } }, - [5549]={ + [5550]={ [1]={ [1]={ limit={ @@ -120994,7 +121010,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_attack_%" } }, - [5550]={ + [5551]={ [1]={ [1]={ limit={ @@ -121019,7 +121035,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_%" } }, - [5551]={ + [5552]={ [1]={ [1]={ limit={ @@ -121035,7 +121051,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_stun_%" } }, - [5552]={ + [5553]={ [1]={ [1]={ limit={ @@ -121051,7 +121067,7 @@ return { [1]="chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5553]={ + [5554]={ [1]={ [1]={ limit={ @@ -121067,7 +121083,7 @@ return { [1]="chance_to_gain_onslaught_on_flask_use_%" } }, - [5554]={ + [5555]={ [1]={ [1]={ limit={ @@ -121083,7 +121099,7 @@ return { [1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy" } }, - [5555]={ + [5556]={ [1]={ [1]={ limit={ @@ -121108,7 +121124,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%" } }, - [5556]={ + [5557]={ [1]={ [1]={ limit={ @@ -121124,7 +121140,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_with_axes_%" } }, - [5557]={ + [5558]={ [1]={ [1]={ limit={ @@ -121140,7 +121156,7 @@ return { [1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%" } }, - [5558]={ + [5559]={ [1]={ [1]={ limit={ @@ -121165,7 +121181,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [5559]={ + [5560]={ [1]={ [1]={ limit={ @@ -121181,7 +121197,7 @@ return { [1]="chance_to_gain_random_standard_charge_on_hit_%" } }, - [5560]={ + [5561]={ [1]={ [1]={ limit={ @@ -121197,7 +121213,7 @@ return { [1]="chance_to_gain_skill_cost_as_mana_when_paid_%" } }, - [5561]={ + [5562]={ [1]={ [1]={ limit={ @@ -121222,7 +121238,7 @@ return { [1]="chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%" } }, - [5562]={ + [5563]={ [1]={ [1]={ limit={ @@ -121247,7 +121263,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%" } }, - [5563]={ + [5564]={ [1]={ [1]={ limit={ @@ -121272,7 +121288,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%" } }, - [5564]={ + [5565]={ [1]={ [1]={ limit={ @@ -121288,7 +121304,7 @@ return { [1]="chance_to_grant_power_charge_on_shocking_chilled_enemy_%" } }, - [5565]={ + [5566]={ [1]={ [1]={ limit={ @@ -121313,7 +121329,7 @@ return { [1]="chance_to_grant_power_charge_to_nearby_allies_on_hit_%" } }, - [5566]={ + [5567]={ [1]={ [1]={ limit={ @@ -121329,7 +121345,7 @@ return { [1]="chance_to_ignite_is_doubled" } }, - [5567]={ + [5568]={ [1]={ [1]={ limit={ @@ -121345,7 +121361,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [5568]={ + [5569]={ [1]={ [1]={ limit={ @@ -121370,7 +121386,7 @@ return { [1]="chance_to_inflict_10_incision_on_attack_hit_%" } }, - [5569]={ + [5570]={ [1]={ [1]={ limit={ @@ -121395,7 +121411,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [5570]={ + [5571]={ [1]={ [1]={ limit={ @@ -121420,7 +121436,7 @@ return { [1]="chance_to_inflict_brittle_on_enemy_on_block_%" } }, - [5571]={ + [5572]={ [1]={ [1]={ limit={ @@ -121436,7 +121452,7 @@ return { [1]="chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%" } }, - [5572]={ + [5573]={ [1]={ [1]={ limit={ @@ -121452,7 +121468,7 @@ return { [1]="chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%" } }, - [5573]={ + [5574]={ [1]={ [1]={ limit={ @@ -121477,7 +121493,7 @@ return { [1]="chance_to_inflict_incision_on_attack_hit_%" } }, - [5574]={ + [5575]={ [1]={ [1]={ limit={ @@ -121493,7 +121509,7 @@ return { [1]="chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%" } }, - [5575]={ + [5576]={ [1]={ [1]={ limit={ @@ -121518,7 +121534,7 @@ return { [1]="chance_to_inflict_sap_on_enemy_on_block_%" } }, - [5576]={ + [5577]={ [1]={ [1]={ limit={ @@ -121543,7 +121559,7 @@ return { [1]="chance_to_inflict_scorch_on_enemy_on_block_%" } }, - [5577]={ + [5578]={ [1]={ [1]={ limit={ @@ -121559,7 +121575,7 @@ return { [1]="chance_to_inflict_wither_%_against_enemies_with_abyssal_wasting" } }, - [5578]={ + [5579]={ [1]={ [1]={ limit={ @@ -121575,7 +121591,7 @@ return { [1]="chance_to_intimidate_nearby_enemies_on_melee_kill_%" } }, - [5579]={ + [5580]={ [1]={ [1]={ limit={ @@ -121600,7 +121616,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [5580]={ + [5581]={ [1]={ [1]={ limit={ @@ -121616,7 +121632,7 @@ return { [1]="chance_to_leave_2_ground_blades_%" } }, - [5581]={ + [5582]={ [1]={ [1]={ limit={ @@ -121632,7 +121648,7 @@ return { [1]="chance_to_load_a_bolt_on_killing_an_enemy_%" } }, - [5582]={ + [5583]={ [1]={ [1]={ limit={ @@ -121657,7 +121673,7 @@ return { [1]="base_chance_to_not_consume_corpse_%" } }, - [5583]={ + [5584]={ [1]={ [1]={ limit={ @@ -121673,7 +121689,7 @@ return { [1]="chance_to_not_consume_glory_%" } }, - [5584]={ + [5585]={ [1]={ [1]={ limit={ @@ -121689,7 +121705,7 @@ return { [1]="chance_to_not_consume_infusion_%" } }, - [5585]={ + [5586]={ [1]={ [1]={ limit={ @@ -121705,7 +121721,7 @@ return { [1]="chance_to_not_consume_infusion_%_if_lost_archon_in_past_6_seconds" } }, - [5586]={ + [5587]={ [1]={ [1]={ limit={ @@ -121730,7 +121746,7 @@ return { [1]="chance_to_not_consume_instilling_%" } }, - [5587]={ + [5588]={ [1]={ [1]={ limit={ @@ -121759,7 +121775,7 @@ return { [1]="chance_to_poison_on_hit_+%_vs_non_poisoned_enemies" } }, - [5588]={ + [5589]={ [1]={ [1]={ limit={ @@ -121775,7 +121791,7 @@ return { [1]="chance_to_poison_on_hit_can_apply_multiple_stacks" } }, - [5589]={ + [5590]={ [1]={ [1]={ limit={ @@ -121791,7 +121807,7 @@ return { [1]="chance_to_poison_on_hit_%_per_power_charge" } }, - [5590]={ + [5591]={ [1]={ [1]={ limit={ @@ -121816,7 +121832,7 @@ return { [1]="chance_to_retain_40%_of_glory_on_use_%" } }, - [5591]={ + [5592]={ [1]={ [1]={ limit={ @@ -121845,7 +121861,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5592]={ + [5593]={ [1]={ [1]={ limit={ @@ -121861,7 +121877,7 @@ return { [1]="chance_to_shock_chilled_enemies_%" } }, - [5593]={ + [5594]={ [1]={ [1]={ limit={ @@ -121877,7 +121893,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_gaining_infusion" } }, - [5594]={ + [5595]={ [1]={ [1]={ limit={ @@ -121893,7 +121909,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_linking_target" } }, - [5595]={ + [5596]={ [1]={ [1]={ limit={ @@ -121909,7 +121925,7 @@ return { [1]="chance_to_summon_two_totems_%" } }, - [5596]={ + [5597]={ [1]={ [1]={ limit={ @@ -121925,7 +121941,7 @@ return { [1]="chance_to_throw_4_additional_traps_%" } }, - [5597]={ + [5598]={ [1]={ [1]={ limit={ @@ -121950,7 +121966,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [5598]={ + [5599]={ [1]={ [1]={ limit={ @@ -121979,7 +121995,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [5599]={ + [5600]={ [1]={ [1]={ limit={ @@ -122008,7 +122024,7 @@ return { [1]="channelled_skill_damage_+%_per_10_devotion" } }, - [5600]={ + [5601]={ [1]={ [1]={ limit={ @@ -122037,7 +122053,7 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_plague" } }, - [5601]={ + [5602]={ [1]={ [1]={ limit={ @@ -122053,7 +122069,7 @@ return { [1]="chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life" } }, - [5602]={ + [5603]={ [1]={ [1]={ limit={ @@ -122069,7 +122085,7 @@ return { [1]="chaos_damage_over_time_+%_per_volatility" } }, - [5603]={ + [5604]={ [1]={ [1]={ limit={ @@ -122085,7 +122101,7 @@ return { [1]="chaos_damage_over_time_heals_while_leeching_life" } }, - [5604]={ + [5605]={ [1]={ [1]={ limit={ @@ -122101,7 +122117,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_per_4_chaos_resistance" } }, - [5605]={ + [5606]={ [1]={ [1]={ limit={ @@ -122117,7 +122133,7 @@ return { [1]="additional_chaos_resistance_against_damage_over_time_%" } }, - [5606]={ + [5607]={ [1]={ [1]={ limit={ @@ -122142,7 +122158,7 @@ return { [1]="chaos_damage_%_taken_from_mana_before_life" } }, - [5607]={ + [5608]={ [1]={ [1]={ limit={ @@ -122158,7 +122174,7 @@ return { [1]="chaos_damage_+%_per_100_max_mana_up_to_80" } }, - [5608]={ + [5609]={ [1]={ [1]={ limit={ @@ -122187,7 +122203,7 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_agony" } }, - [5609]={ + [5610]={ [1]={ [1]={ limit={ @@ -122203,7 +122219,7 @@ return { [1]="chaos_damage_resistance_%_per_endurance_charge" } }, - [5610]={ + [5611]={ [1]={ [1]={ limit={ @@ -122219,7 +122235,7 @@ return { [1]="chaos_damage_resistance_is_doubled" } }, - [5611]={ + [5612]={ [1]={ [1]={ limit={ @@ -122235,7 +122251,7 @@ return { [1]="chaos_damage_resistance_%_per_poison_stack" } }, - [5612]={ + [5613]={ [1]={ [1]={ limit={ @@ -122260,7 +122276,7 @@ return { [1]="chaos_damage_resistance_%_when_stationary" } }, - [5613]={ + [5614]={ [1]={ [1]={ limit={ @@ -122276,7 +122292,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony" } }, - [5614]={ + [5615]={ [1]={ [1]={ limit={ @@ -122292,7 +122308,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements" } }, - [5615]={ + [5616]={ [1]={ [1]={ limit={ @@ -122308,7 +122324,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [5616]={ + [5617]={ [1]={ [1]={ limit={ @@ -122337,7 +122353,7 @@ return { [1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud" } }, - [5617]={ + [5618]={ [1]={ [1]={ limit={ @@ -122366,7 +122382,7 @@ return { [1]="chaos_damage_with_attack_skills_+%" } }, - [5618]={ + [5619]={ [1]={ [1]={ limit={ @@ -122395,7 +122411,7 @@ return { [1]="chaos_damage_with_spell_skills_+%" } }, - [5619]={ + [5620]={ [1]={ [1]={ limit={ @@ -122411,7 +122427,7 @@ return { [1]="chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems" } }, - [5620]={ + [5621]={ [1]={ [1]={ limit={ @@ -122427,7 +122443,7 @@ return { [1]="chaos_resist_unnaffected_by_area_penalites" } }, - [5621]={ + [5622]={ [1]={ [1]={ limit={ @@ -122443,7 +122459,7 @@ return { [1]="chaos_skill_chance_to_hinder_on_hit_%" } }, - [5622]={ + [5623]={ [1]={ [1]={ limit={ @@ -122472,7 +122488,7 @@ return { [1]="chaos_skills_area_of_effect_+%" } }, - [5623]={ + [5624]={ [1]={ [1]={ limit={ @@ -122488,7 +122504,7 @@ return { [1]="charge_skip_consume_chance_%" } }, - [5624]={ + [5625]={ [1]={ [1]={ limit={ @@ -122517,7 +122533,7 @@ return { [1]="charged_dash_movement_speed_+%_final" } }, - [5625]={ + [5626]={ [1]={ [1]={ limit={ @@ -122546,7 +122562,7 @@ return { [1]="charm_charges_gained_+%" } }, - [5626]={ + [5627]={ [1]={ [1]={ limit={ @@ -122579,7 +122595,7 @@ return { [1]="charm_charges_used_+%" } }, - [5627]={ + [5628]={ [1]={ [1]={ limit={ @@ -122595,7 +122611,7 @@ return { [1]="charm_create_consecrated_ground_when_used" } }, - [5628]={ + [5629]={ [1]={ [1]={ limit={ @@ -122611,7 +122627,7 @@ return { [1]="charm_defend_with_double_armour_during_effect" } }, - [5629]={ + [5630]={ [1]={ [1]={ limit={ @@ -122640,7 +122656,7 @@ return { [1]="charm_duration_+%_per_25_tribute" } }, - [5630]={ + [5631]={ [1]={ [1]={ limit={ @@ -122669,7 +122685,7 @@ return { [1]="charm_effect_+%_per_10_tribute" } }, - [5631]={ + [5632]={ [1]={ [1]={ limit={ @@ -122698,7 +122714,7 @@ return { [1]="charm_effect_+%_per_empty_charm_slot" } }, - [5632]={ + [5633]={ [1]={ [1]={ limit={ @@ -122727,7 +122743,7 @@ return { [1]="charm_effect_+%" } }, - [5633]={ + [5634]={ [1]={ [1]={ limit={ @@ -122752,7 +122768,7 @@ return { [1]="charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect" } }, - [5634]={ + [5635]={ [1]={ [1]={ limit={ @@ -122768,7 +122784,7 @@ return { [1]="charm_energy_shield_recharge_starts_when_used" } }, - [5635]={ + [5636]={ [1]={ [1]={ limit={ @@ -122784,7 +122800,7 @@ return { [1]="charm_gain_onslaught_during_effect" } }, - [5636]={ + [5637]={ [1]={ [1]={ limit={ @@ -122800,7 +122816,7 @@ return { [1]="charm_grants_frenzy_charge_when_used" } }, - [5637]={ + [5638]={ [1]={ [1]={ limit={ @@ -122816,7 +122832,7 @@ return { [1]="charm_grants_power_charge_when_used" } }, - [5638]={ + [5639]={ [1]={ [1]={ limit={ @@ -122832,7 +122848,7 @@ return { [1]="charm_grants_up_to_your_maximum_rage_when_used" } }, - [5639]={ + [5640]={ [1]={ [1]={ limit={ @@ -122848,7 +122864,7 @@ return { [1]="charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used" } }, - [5640]={ + [5641]={ [1]={ [1]={ limit={ @@ -122864,7 +122880,7 @@ return { [1]="charm_possesed_by_bear_spirit_for_x_seconds_when_used" } }, - [5641]={ + [5642]={ [1]={ [1]={ limit={ @@ -122880,7 +122896,7 @@ return { [1]="charm_possesed_by_boar_spirit_for_x_seconds_when_used" } }, - [5642]={ + [5643]={ [1]={ [1]={ limit={ @@ -122896,7 +122912,7 @@ return { [1]="charm_possesed_by_cat_spirit_for_x_seconds_when_used" } }, - [5643]={ + [5644]={ [1]={ [1]={ limit={ @@ -122912,7 +122928,7 @@ return { [1]="charm_possesed_by_owl_spirit_for_x_seconds_when_used" } }, - [5644]={ + [5645]={ [1]={ [1]={ limit={ @@ -122928,7 +122944,7 @@ return { [1]="charm_possesed_by_ox_spirit_for_x_seconds_when_used" } }, - [5645]={ + [5646]={ [1]={ [1]={ limit={ @@ -122944,7 +122960,7 @@ return { [1]="charm_possesed_by_primate_spirit_for_x_seconds_when_used" } }, - [5646]={ + [5647]={ [1]={ [1]={ limit={ @@ -122960,7 +122976,7 @@ return { [1]="charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used" } }, - [5647]={ + [5648]={ [1]={ [1]={ limit={ @@ -122976,7 +122992,7 @@ return { [1]="charm_possesed_by_serpent_spirit_for_x_seconds_when_used" } }, - [5648]={ + [5649]={ [1]={ [1]={ limit={ @@ -122992,7 +123008,7 @@ return { [1]="charm_possesed_by_stag_spirit_for_x_seconds_when_used" } }, - [5649]={ + [5650]={ [1]={ [1]={ limit={ @@ -123008,7 +123024,7 @@ return { [1]="charm_possesed_by_wolf_spirit_for_x_seconds_when_used" } }, - [5650]={ + [5651]={ [1]={ [1]={ limit={ @@ -123024,7 +123040,7 @@ return { [1]="charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount" } }, - [5651]={ + [5652]={ [1]={ [1]={ limit={ @@ -123040,7 +123056,7 @@ return { [1]="charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount" } }, - [5652]={ + [5653]={ [1]={ [1]={ limit={ @@ -123056,7 +123072,7 @@ return { [1]="charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect" } }, - [5653]={ + [5654]={ [1]={ [1]={ limit={ @@ -123072,7 +123088,7 @@ return { [1]="charms_%_chance_on_use_to_use_another_charm_without_consuming_charges" } }, - [5654]={ + [5655]={ [1]={ [1]={ limit={ @@ -123088,7 +123104,7 @@ return { [1]="charms_%_chance_to_not_consume_charges" } }, - [5655]={ + [5656]={ [1]={ [1]={ limit={ @@ -123104,7 +123120,7 @@ return { [1]="charms_use_no_charges" } }, - [5656]={ + [5657]={ [1]={ [1]={ limit={ @@ -123120,7 +123136,7 @@ return { [1]="chest_drop_additional_corrupted_item_divination_cards" } }, - [5657]={ + [5658]={ [1]={ [1]={ limit={ @@ -123136,7 +123152,7 @@ return { [1]="chest_drop_additional_currency_item_divination_cards" } }, - [5658]={ + [5659]={ [1]={ [1]={ limit={ @@ -123152,7 +123168,7 @@ return { [1]="chest_drop_additional_divination_cards_from_current_world_area" } }, - [5659]={ + [5660]={ [1]={ [1]={ limit={ @@ -123168,7 +123184,7 @@ return { [1]="chest_drop_additional_divination_cards_from_same_set" } }, - [5660]={ + [5661]={ [1]={ [1]={ limit={ @@ -123184,7 +123200,7 @@ return { [1]="chest_drop_additional_unique_item_divination_cards" } }, - [5661]={ + [5662]={ [1]={ [1]={ limit={ @@ -123200,7 +123216,7 @@ return { [1]="chest_number_of_additional_pirate_uniques_to_drop" } }, - [5662]={ + [5663]={ [1]={ [1]={ limit={ @@ -123229,7 +123245,7 @@ return { [1]="chill_and_freeze_duration_+%" } }, - [5663]={ + [5664]={ [1]={ [1]={ limit={ @@ -123254,7 +123270,7 @@ return { [1]="chill_attackers_for_4_seconds_on_block_%_chance" } }, - [5664]={ + [5665]={ [1]={ [1]={ limit={ @@ -123270,7 +123286,7 @@ return { [1]="chill_chance_based_on_damage_fixed_magnitude" } }, - [5665]={ + [5666]={ [1]={ [1]={ limit={ @@ -123299,7 +123315,7 @@ return { [1]="chill_effect_+%_while_mana_leeching" } }, - [5666]={ + [5667]={ [1]={ [1]={ limit={ @@ -123315,7 +123331,7 @@ return { [1]="chill_effect_is_reversed" } }, - [5667]={ + [5668]={ [1]={ [1]={ limit={ @@ -123344,7 +123360,7 @@ return { [1]="chill_effect_+%" } }, - [5668]={ + [5669]={ [1]={ [1]={ limit={ @@ -123373,7 +123389,7 @@ return { [1]="chill_effect_+%_with_critical_strikes" } }, - [5669]={ + [5670]={ [1]={ [1]={ limit={ @@ -123389,7 +123405,7 @@ return { [1]="chill_ground_as_though_dealing_X_damage_on_using_a_wind_skill" } }, - [5670]={ + [5671]={ [1]={ [1]={ limit={ @@ -123405,7 +123421,7 @@ return { [1]="chill_minimum_slow_%_from_mastery" } }, - [5671]={ + [5672]={ [1]={ [1]={ limit={ @@ -123421,7 +123437,7 @@ return { [1]="chill_nearby_enemies_when_you_focus" } }, - [5672]={ + [5673]={ [1]={ [1]={ limit={ @@ -123450,7 +123466,7 @@ return { [1]="chilled_effect_on_self_+%_while_shapeshifted" } }, - [5673]={ + [5674]={ [1]={ [1]={ limit={ @@ -123466,7 +123482,7 @@ return { [1]="chilled_enemies_have_no_elemental_resistance" } }, - [5674]={ + [5675]={ [1]={ [1]={ limit={ @@ -123491,7 +123507,7 @@ return { [1]="chilled_ground_when_hit_with_attack_%" } }, - [5675]={ + [5676]={ [1]={ [1]={ limit={ @@ -123520,7 +123536,7 @@ return { [1]="chilling_areas_also_grant_curse_effect_+%" } }, - [5676]={ + [5677]={ [1]={ [1]={ limit={ @@ -123549,7 +123565,7 @@ return { [1]="chilling_areas_also_grant_lightning_damage_taken_+%" } }, - [5677]={ + [5678]={ [1]={ [1]={ limit={ @@ -123565,7 +123581,7 @@ return { [1]="chills_from_your_hits_cause_shattering" } }, - [5678]={ + [5679]={ [1]={ [1]={ limit={ @@ -123590,7 +123606,7 @@ return { [1]="chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds" } }, - [5679]={ + [5680]={ [1]={ [1]={ limit={ @@ -123606,7 +123622,7 @@ return { [1]="chronomancer_reserves_no_mana" } }, - [5680]={ + [5681]={ [1]={ [1]={ [1]={ @@ -123643,7 +123659,7 @@ return { [1]="clarity_mana_reservation_efficiency_-2%_per_1" } }, - [5681]={ + [5682]={ [1]={ [1]={ limit={ @@ -123672,7 +123688,7 @@ return { [1]="clarity_mana_reservation_efficiency_+%" } }, - [5682]={ + [5683]={ [1]={ [1]={ limit={ @@ -123688,7 +123704,7 @@ return { [1]="clarity_reserves_no_mana" } }, - [5683]={ + [5684]={ [1]={ [1]={ limit={ @@ -123704,7 +123720,7 @@ return { [1]="claw_damage_against_enemies_on_low_life_+%" } }, - [5684]={ + [5685]={ [1]={ [1]={ limit={ @@ -123733,7 +123749,7 @@ return { [1]="claw_damage_+%_while_on_low_life" } }, - [5685]={ + [5686]={ [1]={ [1]={ limit={ @@ -123749,7 +123765,7 @@ return { [1]="cleave_fortify_on_hit" } }, - [5686]={ + [5687]={ [1]={ [1]={ limit={ @@ -123765,7 +123781,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [5687]={ + [5688]={ [1]={ [1]={ limit={ @@ -123794,7 +123810,7 @@ return { [1]="cobra_lash_damage_+%" } }, - [5688]={ + [5689]={ [1]={ [1]={ limit={ @@ -123819,7 +123835,7 @@ return { [1]="cobra_lash_number_of_additional_chains" } }, - [5689]={ + [5690]={ [1]={ [1]={ limit={ @@ -123848,7 +123864,7 @@ return { [1]="cobra_lash_projectile_speed_+%" } }, - [5690]={ + [5691]={ [1]={ [1]={ limit={ @@ -123886,7 +123902,7 @@ return { [1]="coil_of_undoing_curse_magnitude_+%_final" } }, - [5691]={ + [5692]={ [1]={ [1]={ limit={ @@ -123915,7 +123931,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [5692]={ + [5693]={ [1]={ [1]={ limit={ @@ -123944,7 +123960,7 @@ return { [1]="cold_ailment_effect_+%_against_shocked_enemies" } }, - [5693]={ + [5694]={ [1]={ [1]={ limit={ @@ -123973,7 +123989,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [5694]={ + [5695]={ [1]={ [1]={ limit={ @@ -123989,7 +124005,7 @@ return { [1]="cold_and_chaos_damage_resistance_%" } }, - [5695]={ + [5696]={ [1]={ [1]={ limit={ @@ -124005,7 +124021,7 @@ return { [1]="cold_damage_+%_cold_infusion_collected_last_8_seconds" } }, - [5696]={ + [5697]={ [1]={ [1]={ limit={ @@ -124034,7 +124050,7 @@ return { [1]="cold_damage_+%_per_rage" } }, - [5697]={ + [5698]={ [1]={ [1]={ limit={ @@ -124050,7 +124066,7 @@ return { [1]="cold_damage_+%_while_ignited" } }, - [5698]={ + [5699]={ [1]={ [1]={ limit={ @@ -124066,7 +124082,7 @@ return { [1]="cold_damage_+%_per_cold_resistance_above_75" } }, - [5699]={ + [5700]={ [1]={ [1]={ limit={ @@ -124095,7 +124111,7 @@ return { [1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently" } }, - [5700]={ + [5701]={ [1]={ [1]={ limit={ @@ -124111,7 +124127,7 @@ return { [1]="cold_damage_+%_per_25_dexterity" } }, - [5701]={ + [5702]={ [1]={ [1]={ limit={ @@ -124127,7 +124143,7 @@ return { [1]="cold_damage_+%_per_25_intelligence" } }, - [5702]={ + [5703]={ [1]={ [1]={ limit={ @@ -124143,7 +124159,7 @@ return { [1]="cold_damage_+%_per_25_strength" } }, - [5703]={ + [5704]={ [1]={ [1]={ limit={ @@ -124172,7 +124188,7 @@ return { [1]="cold_damage_+%_per_frenzy_charge" } }, - [5704]={ + [5705]={ [1]={ [1]={ limit={ @@ -124201,7 +124217,7 @@ return { [1]="cold_damage_+%_per_missing_cold_resistance" } }, - [5705]={ + [5706]={ [1]={ [1]={ limit={ @@ -124230,7 +124246,7 @@ return { [1]="cold_damage_+%_while_affected_by_hatred" } }, - [5706]={ + [5707]={ [1]={ [1]={ limit={ @@ -124259,7 +124275,7 @@ return { [1]="cold_damage_+%_while_affected_by_herald_of_ice" } }, - [5707]={ + [5708]={ [1]={ [1]={ limit={ @@ -124288,7 +124304,7 @@ return { [1]="cold_damage_+%_while_off_hand_is_empty" } }, - [5708]={ + [5709]={ [1]={ [1]={ limit={ @@ -124304,7 +124320,7 @@ return { [1]="cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [5709]={ + [5710]={ [1]={ [1]={ limit={ @@ -124320,7 +124336,7 @@ return { [1]="cold_damage_taken_goes_to_life_over_4_seconds_%" } }, - [5710]={ + [5711]={ [1]={ [1]={ limit={ @@ -124336,7 +124352,7 @@ return { [1]="cold_damage_taken_+" } }, - [5711]={ + [5712]={ [1]={ [1]={ limit={ @@ -124365,7 +124381,7 @@ return { [1]="cold_damage_taken_+%_if_have_been_hit_recently" } }, - [5712]={ + [5713]={ [1]={ [1]={ limit={ @@ -124394,7 +124410,7 @@ return { [1]="cold_damage_with_attack_skills_+%" } }, - [5713]={ + [5714]={ [1]={ [1]={ limit={ @@ -124423,7 +124439,7 @@ return { [1]="cold_damage_with_spell_skills_+%" } }, - [5714]={ + [5715]={ [1]={ [1]={ limit={ @@ -124452,7 +124468,7 @@ return { [1]="cold_exposure_effect_+%" } }, - [5715]={ + [5716]={ [1]={ [1]={ limit={ @@ -124477,7 +124493,7 @@ return { [1]="cold_exposure_on_hit_magnitude" } }, - [5716]={ + [5717]={ [1]={ [1]={ limit={ @@ -124493,7 +124509,7 @@ return { [1]="cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%" } }, - [5717]={ + [5718]={ [1]={ [1]={ limit={ @@ -124522,7 +124538,7 @@ return { [1]="cold_hit_damage_+%_vs_shocked_enemies" } }, - [5718]={ + [5719]={ [1]={ [1]={ limit={ @@ -124538,7 +124554,7 @@ return { [1]="cold_penetration_%_vs_chilled_enemies" } }, - [5719]={ + [5720]={ [1]={ [1]={ limit={ @@ -124554,7 +124570,7 @@ return { [1]="cold_projectile_mine_critical_multiplier_+" } }, - [5720]={ + [5721]={ [1]={ [1]={ limit={ @@ -124583,7 +124599,7 @@ return { [1]="cold_projectile_mine_damage_+%" } }, - [5721]={ + [5722]={ [1]={ [1]={ [1]={ @@ -124612,7 +124628,7 @@ return { [1]="cold_projectile_mine_throwing_speed_negated_+%" } }, - [5722]={ + [5723]={ [1]={ [1]={ limit={ @@ -124641,7 +124657,7 @@ return { [1]="cold_projectile_mine_throwing_speed_+%" } }, - [5723]={ + [5724]={ [1]={ [1]={ limit={ @@ -124670,7 +124686,7 @@ return { [1]="cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice" } }, - [5724]={ + [5725]={ [1]={ [1]={ limit={ @@ -124686,7 +124702,7 @@ return { [1]="cold_resist_unaffected_by_area_penalties" } }, - [5725]={ + [5726]={ [1]={ [1]={ limit={ @@ -124702,7 +124718,7 @@ return { [1]="cold_skill_chance_to_inflict_cold_exposure_%" } }, - [5726]={ + [5727]={ [1]={ [1]={ limit={ @@ -124718,7 +124734,7 @@ return { [1]="cold_skills_chance_to_poison_on_hit_%" } }, - [5727]={ + [5728]={ [1]={ [1]={ limit={ @@ -124734,7 +124750,7 @@ return { [1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy" } }, - [5728]={ + [5729]={ [1]={ [1]={ limit={ @@ -124763,7 +124779,7 @@ return { [1]="combo_falloff_speed_+%" } }, - [5729]={ + [5730]={ [1]={ [1]={ limit={ @@ -124792,7 +124808,7 @@ return { [1]="combo_finisher_damage_+%_up_to_40%" } }, - [5730]={ + [5731]={ [1]={ [1]={ limit={ @@ -124808,7 +124824,7 @@ return { [1]="combust_area_of_effect_+%" } }, - [5731]={ + [5732]={ [1]={ [1]={ limit={ @@ -124824,7 +124840,7 @@ return { [1]="combust_is_disabled" } }, - [5732]={ + [5733]={ [1]={ [1]={ limit={ @@ -124840,7 +124856,7 @@ return { [1]="companion_%_damage_as_chaos" } }, - [5733]={ + [5734]={ [1]={ [1]={ limit={ @@ -124856,7 +124872,7 @@ return { [1]="companion_%_damage_as_cold" } }, - [5734]={ + [5735]={ [1]={ [1]={ limit={ @@ -124885,7 +124901,7 @@ return { [1]="companion_accuracy_rating_+%" } }, - [5735]={ + [5736]={ [1]={ [1]={ limit={ @@ -124914,7 +124930,7 @@ return { [1]="companion_area_of_effect_+%" } }, - [5736]={ + [5737]={ [1]={ [1]={ limit={ @@ -124943,7 +124959,7 @@ return { [1]="companion_attack_speed_+%" } }, - [5737]={ + [5738]={ [1]={ [1]={ limit={ @@ -124959,7 +124975,7 @@ return { [1]="companion_chance_to_poison_on_hit_%" } }, - [5738]={ + [5739]={ [1]={ [1]={ limit={ @@ -124975,7 +124991,7 @@ return { [1]="companion_chaos_resistance_%" } }, - [5739]={ + [5740]={ [1]={ [1]={ limit={ @@ -124991,7 +125007,7 @@ return { [1]="companion_damage_+%_final_from_idol_per_different_dead_companion" } }, - [5740]={ + [5741]={ [1]={ [1]={ limit={ @@ -125020,7 +125036,7 @@ return { [1]="companion_damage_+%_vs_immobilised_enemies" } }, - [5741]={ + [5742]={ [1]={ [1]={ limit={ @@ -125036,7 +125052,7 @@ return { [1]="companion_damage_increases_and_reductions_also_affects_you" } }, - [5742]={ + [5743]={ [1]={ [1]={ limit={ @@ -125065,7 +125081,7 @@ return { [1]="companion_damage_+%" } }, - [5743]={ + [5744]={ [1]={ [1]={ limit={ @@ -125094,7 +125110,7 @@ return { [1]="companion_damage_+%_per_socketed_idol" } }, - [5744]={ + [5745]={ [1]={ [1]={ limit={ @@ -125110,7 +125126,7 @@ return { [1]="companion_elemental_resistance_%" } }, - [5745]={ + [5746]={ [1]={ [1]={ limit={ @@ -125126,7 +125142,7 @@ return { [1]="companion_maim_on_hit_%" } }, - [5746]={ + [5747]={ [1]={ [1]={ limit={ @@ -125155,7 +125171,7 @@ return { [1]="companion_maximum_life_+%" } }, - [5747]={ + [5748]={ [1]={ [1]={ limit={ @@ -125171,7 +125187,7 @@ return { [1]="companion_movement_speed_%" } }, - [5748]={ + [5749]={ [1]={ [1]={ limit={ @@ -125187,7 +125203,7 @@ return { [1]="companion_onslaught_on_kill_%" } }, - [5749]={ + [5750]={ [1]={ [1]={ limit={ @@ -125216,7 +125232,7 @@ return { [1]="companion_reservation_+%" } }, - [5750]={ + [5751]={ [1]={ [1]={ limit={ @@ -125232,7 +125248,7 @@ return { [1]="companion_takes_%_damage_before_you" } }, - [5751]={ + [5752]={ [1]={ [1]={ limit={ @@ -125248,7 +125264,7 @@ return { [1]="companion_takes_%_damage_before_you_from_support" } }, - [5752]={ + [5753]={ [1]={ [1]={ limit={ @@ -125264,7 +125280,7 @@ return { [1]="companion_takes_%_damage_from_deflected_hits_before_you" } }, - [5753]={ + [5754]={ [1]={ [1]={ [1]={ @@ -125297,7 +125313,7 @@ return { [1]="companions_gain_onslaught_on_hitting_enemies_marked_by_you_ms" } }, - [5754]={ + [5755]={ [1]={ [1]={ limit={ @@ -125313,7 +125329,7 @@ return { [1]="companions_gain_your_dexterity" } }, - [5755]={ + [5756]={ [1]={ [1]={ limit={ @@ -125329,7 +125345,7 @@ return { [1]="companions_gain_your_strength" } }, - [5756]={ + [5757]={ [1]={ [1]={ limit={ @@ -125345,7 +125361,7 @@ return { [1]="companions_in_presence_base_chaos_damage_resistance_%" } }, - [5757]={ + [5758]={ [1]={ [1]={ limit={ @@ -125361,7 +125377,7 @@ return { [1]="companions_in_presence_base_resist_all_elements_%" } }, - [5758]={ + [5759]={ [1]={ [1]={ limit={ @@ -125386,7 +125402,7 @@ return { [1]="companions_in_presence_damage_+%_while_you_are_shapeshifted" } }, - [5759]={ + [5760]={ [1]={ [1]={ limit={ @@ -125402,7 +125418,7 @@ return { [1]="companions_in_presence_gain_x_rage_on_hit" } }, - [5760]={ + [5761]={ [1]={ [1]={ limit={ @@ -125418,7 +125434,7 @@ return { [1]="companions_in_presence_have_onslaught_while_you_are_shapeshifted" } }, - [5761]={ + [5762]={ [1]={ [1]={ limit={ @@ -125434,7 +125450,7 @@ return { [1]="companions_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [5762]={ + [5763]={ [1]={ [1]={ limit={ @@ -125450,7 +125466,7 @@ return { [1]="companions_in_presence_non_skill_base_all_damage_%_to_gain_as_random_element" } }, - [5763]={ + [5764]={ [1]={ [1]={ limit={ @@ -125466,7 +125482,7 @@ return { [1]="conductivity_no_reservation" } }, - [5764]={ + [5765]={ [1]={ [1]={ limit={ @@ -125482,7 +125498,7 @@ return { [1]="connected_notables_grant_armour_display" } }, - [5765]={ + [5766]={ [1]={ [1]={ limit={ @@ -125498,7 +125514,7 @@ return { [1]="consecrated_ground_additional_physical_damage_reduction_%" } }, - [5766]={ + [5767]={ [1]={ [1]={ limit={ @@ -125514,7 +125530,7 @@ return { [1]="consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration" } }, - [5767]={ + [5768]={ [1]={ [1]={ limit={ @@ -125543,7 +125559,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [5768]={ + [5769]={ [1]={ [1]={ limit={ @@ -125572,7 +125588,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [5769]={ + [5770]={ [1]={ [1]={ limit={ @@ -125601,7 +125617,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [5770]={ + [5771]={ [1]={ [1]={ limit={ @@ -125630,7 +125646,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry" } }, - [5771]={ + [5772]={ [1]={ [1]={ limit={ @@ -125646,7 +125662,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [5772]={ + [5773]={ [1]={ [1]={ limit={ @@ -125662,7 +125678,7 @@ return { [1]="consecrated_ground_immune_to_status_ailments" } }, - [5773]={ + [5774]={ [1]={ [1]={ [1]={ @@ -125682,7 +125698,7 @@ return { [1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry" } }, - [5774]={ + [5775]={ [1]={ [1]={ limit={ @@ -125707,7 +125723,7 @@ return { [1]="consecrated_ground_on_death" } }, - [5775]={ + [5776]={ [1]={ [1]={ limit={ @@ -125732,7 +125748,7 @@ return { [1]="consecrated_ground_on_hit" } }, - [5776]={ + [5777]={ [1]={ [1]={ limit={ @@ -125748,7 +125764,7 @@ return { [1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds" } }, - [5777]={ + [5778]={ [1]={ [1]={ limit={ @@ -125764,7 +125780,7 @@ return { [1]="consecrated_ground_while_stationary_radius" } }, - [5778]={ + [5779]={ [1]={ [1]={ limit={ @@ -125780,7 +125796,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength" } }, - [5779]={ + [5780]={ [1]={ [1]={ limit={ @@ -125796,7 +125812,7 @@ return { [1]="consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground" } }, - [5780]={ + [5781]={ [1]={ [1]={ limit={ @@ -125825,7 +125841,7 @@ return { [1]="consecrated_path_area_of_effect_+%" } }, - [5781]={ + [5782]={ [1]={ [1]={ limit={ @@ -125854,7 +125870,7 @@ return { [1]="consecrated_path_damage_+%" } }, - [5782]={ + [5783]={ [1]={ [1]={ limit={ @@ -125870,7 +125886,7 @@ return { [1]="consume_X_life_instead_of_last_crossbow_bolt" } }, - [5783]={ + [5784]={ [1]={ [1]={ limit={ @@ -125886,7 +125902,7 @@ return { [1]="consume_enemy_freeze_to_guarantee_crit" } }, - [5784]={ + [5785]={ [1]={ [1]={ limit={ @@ -125915,7 +125931,7 @@ return { [1]="consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life" } }, - [5785]={ + [5786]={ [1]={ [1]={ limit={ @@ -125936,7 +125952,7 @@ return { [2]="bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount" } }, - [5786]={ + [5787]={ [1]={ [1]={ limit={ @@ -125952,7 +125968,7 @@ return { [1]="consume_rage_when_reverting_to_recover_x%_maximum_life_per_rage" } }, - [5787]={ + [5788]={ [1]={ [1]={ limit={ @@ -125977,7 +125993,7 @@ return { [1]="contagion_spread_on_hit_affected_enemy_%" } }, - [5788]={ + [5789]={ [1]={ [1]={ limit={ @@ -126006,7 +126022,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [5789]={ + [5790]={ [1]={ [1]={ limit={ @@ -126035,7 +126051,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [5790]={ + [5791]={ [1]={ [1]={ limit={ @@ -126051,7 +126067,7 @@ return { [1]="convert_100%_energy_shield_to_divinity" } }, - [5791]={ + [5792]={ [1]={ [1]={ limit={ @@ -126067,7 +126083,7 @@ return { [1]="convert_all_life_leech_to_energy_shield_leech" } }, - [5792]={ + [5793]={ [1]={ [1]={ limit={ @@ -126083,7 +126099,7 @@ return { [1]="cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds" } }, - [5793]={ + [5794]={ [1]={ [1]={ limit={ @@ -126112,7 +126128,7 @@ return { [1]="cooldown_recovery_+%_per_power_charge" } }, - [5794]={ + [5795]={ [1]={ [1]={ limit={ @@ -126141,7 +126157,7 @@ return { [1]="cooldown_speed_+%_per_brand_up_to_40%" } }, - [5795]={ + [5796]={ [1]={ [1]={ limit={ @@ -126166,7 +126182,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [5796]={ + [5797]={ [1]={ [1]={ limit={ @@ -126195,7 +126211,7 @@ return { [1]="corpse_eruption_cast_speed_+%" } }, - [5797]={ + [5798]={ [1]={ [1]={ limit={ @@ -126224,7 +126240,7 @@ return { [1]="corpse_eruption_damage_+%" } }, - [5798]={ + [5799]={ [1]={ [1]={ limit={ @@ -126253,7 +126269,7 @@ return { [1]="corpse_warp_cast_speed_+%" } }, - [5799]={ + [5800]={ [1]={ [1]={ limit={ @@ -126282,7 +126298,7 @@ return { [1]="corpse_warp_damage_+%" } }, - [5800]={ + [5801]={ [1]={ [1]={ limit={ @@ -126298,7 +126314,7 @@ return { [1]="corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry" } }, - [5801]={ + [5802]={ [1]={ [1]={ limit={ @@ -126314,7 +126330,7 @@ return { [1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second" } }, - [5802]={ + [5803]={ [1]={ [1]={ limit={ @@ -126330,7 +126346,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [5803]={ + [5804]={ [1]={ [1]={ limit={ @@ -126359,7 +126375,7 @@ return { [1]="corrupting_fever_damage_+%" } }, - [5804]={ + [5805]={ [1]={ [1]={ limit={ @@ -126388,7 +126404,7 @@ return { [1]="corrupting_fever_duration_+%" } }, - [5805]={ + [5806]={ [1]={ [1]={ limit={ @@ -126417,7 +126433,7 @@ return { [1]="counterattacks_cooldown_recovery_+%" } }, - [5806]={ + [5807]={ [1]={ [1]={ limit={ @@ -126433,7 +126449,7 @@ return { [1]="counterattacks_deal_double_damage" } }, - [5807]={ + [5808]={ [1]={ [1]={ limit={ @@ -126458,7 +126474,7 @@ return { [1]="counterattacks_debilitate_for_1_second_on_hit_%_chance" } }, - [5808]={ + [5809]={ [1]={ [1]={ limit={ @@ -126474,7 +126490,7 @@ return { [1]="cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [5809]={ + [5810]={ [1]={ [1]={ limit={ @@ -126499,7 +126515,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [5810]={ + [5811]={ [1]={ [1]={ limit={ @@ -126515,7 +126531,7 @@ return { [1]="cover_in_ash_on_hit_%_while_you_are_burning" } }, - [5811]={ + [5812]={ [1]={ [1]={ limit={ @@ -126531,7 +126547,7 @@ return { [1]="cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [5812]={ + [5813]={ [1]={ [1]={ limit={ @@ -126547,7 +126563,7 @@ return { [1]="cover_in_frost_on_hit" } }, - [5813]={ + [5814]={ [1]={ [1]={ limit={ @@ -126576,7 +126592,7 @@ return { [1]="crackling_lance_cast_speed_+%" } }, - [5814]={ + [5815]={ [1]={ [1]={ limit={ @@ -126605,7 +126621,7 @@ return { [1]="crackling_lance_damage_+%" } }, - [5815]={ + [5816]={ [1]={ [1]={ limit={ @@ -126621,7 +126637,7 @@ return { [1]="create_additional_brand_%_chance" } }, - [5816]={ + [5817]={ [1]={ [1]={ limit={ @@ -126637,7 +126653,7 @@ return { [1]="create_blighted_spore_on_killing_rare_enemy" } }, - [5817]={ + [5818]={ [1]={ [1]={ limit={ @@ -126653,7 +126669,7 @@ return { [1]="create_chilling_ground_on_freeze" } }, - [5818]={ + [5819]={ [1]={ [1]={ limit={ @@ -126669,7 +126685,7 @@ return { [1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy" } }, - [5819]={ + [5820]={ [1]={ [1]={ limit={ @@ -126685,7 +126701,7 @@ return { [1]="create_consecrated_ground_on_kill_%" } }, - [5820]={ + [5821]={ [1]={ [1]={ limit={ @@ -126710,7 +126726,7 @@ return { [1]="create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [5821]={ + [5822]={ [1]={ [1]={ limit={ @@ -126731,7 +126747,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [5822]={ + [5823]={ [1]={ [1]={ limit={ @@ -126747,7 +126763,7 @@ return { [1]="create_profane_ground_instead_of_consecrated_ground" } }, - [5823]={ + [5824]={ [1]={ [1]={ limit={ @@ -126763,7 +126779,7 @@ return { [1]="create_smoke_cloud_on_kill_%_chance" } }, - [5824]={ + [5825]={ [1]={ [1]={ limit={ @@ -126779,7 +126795,7 @@ return { [1]="created_remnants_have_%_chance_to_duplicate_pick_up_results" } }, - [5825]={ + [5826]={ [1]={ [1]={ limit={ @@ -126808,7 +126824,7 @@ return { [1]="creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5826]={ + [5827]={ [1]={ [1]={ [1]={ @@ -126828,7 +126844,7 @@ return { [1]="cremation_base_fires_projectile_every_x_ms" } }, - [5827]={ + [5828]={ [1]={ [1]={ limit={ @@ -126857,7 +126873,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [5828]={ + [5829]={ [1]={ [1]={ limit={ @@ -126882,7 +126898,7 @@ return { [1]="critical_bonus_+%_final_while_shocked" } }, - [5829]={ + [5830]={ [1]={ [1]={ limit={ @@ -126907,7 +126923,7 @@ return { [1]="critical_chance_luck_against_parry_debuffed_enemies" } }, - [5830]={ + [5831]={ [1]={ [1]={ limit={ @@ -126923,7 +126939,7 @@ return { [1]="critical_damage_+%_per_50_current_life" } }, - [5831]={ + [5832]={ [1]={ [1]={ limit={ @@ -126952,7 +126968,7 @@ return { [1]="critical_hit_bleeding_effect_+%" } }, - [5832]={ + [5833]={ [1]={ [1]={ limit={ @@ -126981,7 +126997,7 @@ return { [1]="critical_hit_chance_+%_against_enemies_entered_your_presence_recently" } }, - [5833]={ + [5834]={ [1]={ [1]={ limit={ @@ -127010,7 +127026,7 @@ return { [1]="critical_hit_chance_+%_vs_humanoids" } }, - [5834]={ + [5835]={ [1]={ [1]={ limit={ @@ -127039,7 +127055,7 @@ return { [1]="critical_hit_damage_+%_against_enemies_exited_your_presence_recently" } }, - [5835]={ + [5836]={ [1]={ [1]={ limit={ @@ -127068,7 +127084,7 @@ return { [1]="critical_hit_damage_bonus_+%_if_consumed_power_charge_recently" } }, - [5836]={ + [5837]={ [1]={ [1]={ limit={ @@ -127097,7 +127113,7 @@ return { [1]="critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance" } }, - [5837]={ + [5838]={ [1]={ [1]={ limit={ @@ -127126,7 +127142,7 @@ return { [1]="critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance" } }, - [5838]={ + [5839]={ [1]={ [1]={ limit={ @@ -127155,7 +127171,7 @@ return { [1]="critical_hit_damaging_ailment_effect_+%" } }, - [5839]={ + [5840]={ [1]={ [1]={ limit={ @@ -127184,7 +127200,7 @@ return { [1]="critical_hit_ignite_effect_+%" } }, - [5840]={ + [5841]={ [1]={ [1]={ limit={ @@ -127213,7 +127229,7 @@ return { [1]="critical_hit_poison_effect_+%" } }, - [5841]={ + [5842]={ [1]={ [1]={ limit={ @@ -127229,7 +127245,7 @@ return { [1]="critical_hits_always_apply_impale" } }, - [5842]={ + [5843]={ [1]={ [1]={ limit={ @@ -127258,7 +127274,7 @@ return { [1]="critical_hits_apply_life_regeneration_rate_+%_for_4_seconds" } }, - [5843]={ + [5844]={ [1]={ [1]={ limit={ @@ -127274,7 +127290,7 @@ return { [1]="critical_hits_cannot_consume_impale" } }, - [5844]={ + [5845]={ [1]={ [1]={ limit={ @@ -127290,7 +127306,7 @@ return { [1]="critical_hits_ignore_armour" } }, - [5845]={ + [5846]={ [1]={ [1]={ limit={ @@ -127306,7 +127322,7 @@ return { [1]="critical_multiplier_+%_per_10_max_es_on_shield" } }, - [5846]={ + [5847]={ [1]={ [1]={ limit={ @@ -127335,7 +127351,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_marked_by_you" } }, - [5847]={ + [5848]={ [1]={ [1]={ limit={ @@ -127364,7 +127380,7 @@ return { [1]="critical_strike_chance_+%_final_while_affected_by_precision" } }, - [5848]={ + [5849]={ [1]={ [1]={ limit={ @@ -127393,7 +127409,7 @@ return { [1]="critical_strike_chance_+%_if_triggered_skill_recently" } }, - [5849]={ + [5850]={ [1]={ [1]={ limit={ @@ -127422,7 +127438,7 @@ return { [1]="critical_strike_chance_+%_if_youve_shapeshifted_to_animal_recently" } }, - [5850]={ + [5851]={ [1]={ [1]={ limit={ @@ -127451,7 +127467,7 @@ return { [1]="critical_strike_chance_+%_vs_dazed_enemies" } }, - [5851]={ + [5852]={ [1]={ [1]={ limit={ @@ -127480,7 +127496,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_further_than_6m_distance" } }, - [5852]={ + [5853]={ [1]={ [1]={ limit={ @@ -127509,7 +127525,7 @@ return { [1]="critical_strike_chance_+%_vs_exposed" } }, - [5853]={ + [5854]={ [1]={ [1]={ limit={ @@ -127538,7 +127554,7 @@ return { [1]="critical_strike_chance_+%_vs_immobilised_enemies" } }, - [5854]={ + [5855]={ [1]={ [1]={ limit={ @@ -127567,7 +127583,7 @@ return { [1]="critical_strike_chance_+%_vs_marked_enemies" } }, - [5855]={ + [5856]={ [1]={ [1]={ limit={ @@ -127596,7 +127612,7 @@ return { [1]="critical_strike_chance_+%_while_shapeshifted" } }, - [5856]={ + [5857]={ [1]={ [1]={ limit={ @@ -127625,7 +127641,7 @@ return { [1]="critical_strike_chance_+%_with_unarmed_attacks" } }, - [5857]={ + [5858]={ [1]={ [1]={ limit={ @@ -127654,7 +127670,7 @@ return { [1]="critical_strike_chance_against_cursed_enemies_+%" } }, - [5858]={ + [5859]={ [1]={ [1]={ limit={ @@ -127670,7 +127686,7 @@ return { [1]="critical_strike_chance_cannot_be_rerolled" } }, - [5859]={ + [5860]={ [1]={ [1]={ limit={ @@ -127686,7 +127702,7 @@ return { [1]="critical_strike_chance_increased_by_lightning_resistance" } }, - [5860]={ + [5861]={ [1]={ [1]={ limit={ @@ -127702,7 +127718,7 @@ return { [1]="critical_strike_chance_increased_by_overcapped_lightning_resistance" } }, - [5861]={ + [5862]={ [1]={ [1]={ limit={ @@ -127718,7 +127734,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry" } }, - [5862]={ + [5863]={ [1]={ [1]={ limit={ @@ -127747,7 +127763,7 @@ return { [1]="critical_strike_chance_+%_during_any_flask_effect" } }, - [5863]={ + [5864]={ [1]={ [1]={ limit={ @@ -127776,7 +127792,7 @@ return { [1]="critical_strike_chance_+%_final_while_unhinged" } }, - [5864]={ + [5865]={ [1]={ [1]={ limit={ @@ -127805,7 +127821,7 @@ return { [1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently" } }, - [5865]={ + [5866]={ [1]={ [1]={ limit={ @@ -127834,7 +127850,7 @@ return { [1]="critical_strike_chance_+%_if_enemy_killed_recently" } }, - [5866]={ + [5867]={ [1]={ [1]={ limit={ @@ -127863,7 +127879,7 @@ return { [1]="critical_strike_chance_+%_if_have_been_shocked_recently" } }, - [5867]={ + [5868]={ [1]={ [1]={ limit={ @@ -127892,7 +127908,7 @@ return { [1]="critical_strike_chance_+%_if_have_not_crit_recently" } }, - [5868]={ + [5869]={ [1]={ [1]={ limit={ @@ -127921,7 +127937,7 @@ return { [1]="critical_strike_chance_+%_if_havent_blocked_recently" } }, - [5869]={ + [5870]={ [1]={ [1]={ limit={ @@ -127950,7 +127966,7 @@ return { [1]="critical_strike_chance_+%_if_not_gained_power_charge_recently" } }, - [5870]={ + [5871]={ [1]={ [1]={ limit={ @@ -127979,7 +127995,7 @@ return { [1]="critical_strike_chance_+%_per_10_strength" } }, - [5871]={ + [5872]={ [1]={ [1]={ limit={ @@ -127995,7 +128011,7 @@ return { [1]="critical_strike_chance_+%_per_25_intelligence" } }, - [5872]={ + [5873]={ [1]={ [1]={ limit={ @@ -128024,7 +128040,7 @@ return { [1]="critical_strike_chance_+%_per_blitz_charge" } }, - [5873]={ + [5874]={ [1]={ [1]={ limit={ @@ -128053,7 +128069,7 @@ return { [1]="critical_strike_chance_+%_per_brand" } }, - [5874]={ + [5875]={ [1]={ [1]={ limit={ @@ -128082,7 +128098,7 @@ return { [1]="critical_strike_chance_+%_per_endurance_charge" } }, - [5875]={ + [5876]={ [1]={ [1]={ limit={ @@ -128111,7 +128127,7 @@ return { [1]="critical_strike_chance_+%_per_frenzy_charge" } }, - [5876]={ + [5877]={ [1]={ [1]={ limit={ @@ -128140,7 +128156,7 @@ return { [1]="critical_strike_chance_+%_per_intensity" } }, - [5877]={ + [5878]={ [1]={ [1]={ limit={ @@ -128169,7 +128185,7 @@ return { [1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%" } }, - [5878]={ + [5879]={ [1]={ [1]={ limit={ @@ -128198,7 +128214,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [5879]={ + [5880]={ [1]={ [1]={ limit={ @@ -128227,7 +128243,7 @@ return { [1]="critical_strike_chance_+%_vs_taunted_enemies" } }, - [5880]={ + [5881]={ [1]={ [1]={ limit={ @@ -128256,7 +128272,7 @@ return { [1]="critical_strike_chance_+%_while_affected_by_wrath" } }, - [5881]={ + [5882]={ [1]={ [1]={ limit={ @@ -128285,7 +128301,7 @@ return { [1]="critical_strike_chance_+%_while_channelling" } }, - [5882]={ + [5883]={ [1]={ [1]={ limit={ @@ -128314,7 +128330,7 @@ return { [1]="spell_critical_strike_chance_+%_while_dual_wielding" } }, - [5883]={ + [5884]={ [1]={ [1]={ limit={ @@ -128343,7 +128359,7 @@ return { [1]="spell_critical_strike_chance_+%_while_holding_shield" } }, - [5884]={ + [5885]={ [1]={ [1]={ limit={ @@ -128372,7 +128388,7 @@ return { [1]="spell_critical_strike_chance_+%_while_wielding_staff" } }, - [5885]={ + [5886]={ [1]={ [1]={ limit={ @@ -128401,7 +128417,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_depleted_physical_aegis" } }, - [5886]={ + [5887]={ [1]={ [1]={ limit={ @@ -128417,7 +128433,7 @@ return { [1]="critical_strike_damage_cannot_be_reflected" } }, - [5887]={ + [5888]={ [1]={ [1]={ limit={ @@ -128433,7 +128449,7 @@ return { [1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently" } }, - [5888]={ + [5889]={ [1]={ [1]={ limit={ @@ -128449,7 +128465,7 @@ return { [1]="critical_strike_multiplier_+_vs_stunned_enemies" } }, - [5889]={ + [5890]={ [1]={ [1]={ limit={ @@ -128465,7 +128481,7 @@ return { [1]="critical_strike_multiplier_for_arrows_that_pierce_+" } }, - [5890]={ + [5891]={ [1]={ [1]={ limit={ @@ -128481,7 +128497,7 @@ return { [1]="critical_strike_multiplier_is_250" } }, - [5891]={ + [5892]={ [1]={ [1]={ limit={ @@ -128497,7 +128513,7 @@ return { [1]="critical_strike_multiplier_+_during_any_flask_effect" } }, - [5892]={ + [5893]={ [1]={ [1]={ limit={ @@ -128513,7 +128529,7 @@ return { [1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently" } }, - [5893]={ + [5894]={ [1]={ [1]={ limit={ @@ -128529,7 +128545,7 @@ return { [1]="critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently" } }, - [5894]={ + [5895]={ [1]={ [1]={ limit={ @@ -128545,7 +128561,7 @@ return { [1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence" } }, - [5895]={ + [5896]={ [1]={ [1]={ limit={ @@ -128561,7 +128577,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_killed_recently" } }, - [5896]={ + [5897]={ [1]={ [1]={ limit={ @@ -128577,7 +128593,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_shattered_recently" } }, - [5897]={ + [5898]={ [1]={ [1]={ limit={ @@ -128602,7 +128618,7 @@ return { [1]="critical_strike_multiplier_+_if_gained_power_charge_recently" } }, - [5898]={ + [5899]={ [1]={ [1]={ limit={ @@ -128631,7 +128647,7 @@ return { [1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently" } }, - [5899]={ + [5900]={ [1]={ [1]={ limit={ @@ -128647,7 +128663,7 @@ return { [1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby" } }, - [5900]={ + [5901]={ [1]={ [1]={ limit={ @@ -128663,7 +128679,7 @@ return { [1]="critical_strike_multiplier_+_if_taken_a_savage_hit_recently" } }, - [5901]={ + [5902]={ [1]={ [1]={ limit={ @@ -128679,7 +128695,7 @@ return { [1]="critical_strike_multiplier_+_if_you_have_blocked_recently" } }, - [5902]={ + [5903]={ [1]={ [1]={ limit={ @@ -128695,7 +128711,7 @@ return { [1]="critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second" } }, - [5903]={ + [5904]={ [1]={ [1]={ limit={ @@ -128711,7 +128727,7 @@ return { [1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40" } }, - [5904]={ + [5905]={ [1]={ [1]={ limit={ @@ -128727,7 +128743,7 @@ return { [1]="critical_strike_multiplier_+_vs_taunted_enemies" } }, - [5905]={ + [5906]={ [1]={ [1]={ limit={ @@ -128743,7 +128759,7 @@ return { [1]="critical_strike_multiplier_+_vs_unique_enemies" } }, - [5906]={ + [5907]={ [1]={ [1]={ limit={ @@ -128759,7 +128775,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_anger" } }, - [5907]={ + [5908]={ [1]={ [1]={ limit={ @@ -128775,7 +128791,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_precision" } }, - [5908]={ + [5909]={ [1]={ [1]={ limit={ @@ -128791,7 +128807,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_dual_wielding" } }, - [5909]={ + [5910]={ [1]={ [1]={ limit={ @@ -128807,7 +128823,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_holding_shield" } }, - [5910]={ + [5911]={ [1]={ [1]={ limit={ @@ -128823,7 +128839,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_wielding_staff" } }, - [5911]={ + [5912]={ [1]={ [1]={ limit={ @@ -128839,7 +128855,7 @@ return { [1]="critical_strike_multiplier_+_with_herald_skills" } }, - [5912]={ + [5913]={ [1]={ [1]={ limit={ @@ -128855,7 +128871,7 @@ return { [1]="critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds" } }, - [5913]={ + [5914]={ [1]={ [1]={ limit={ @@ -128871,7 +128887,7 @@ return { [1]="critical_strike_multiplier_+%_with_claws_daggers" } }, - [5914]={ + [5915]={ [1]={ [1]={ limit={ @@ -128887,7 +128903,7 @@ return { [1]="critical_strike_%_chance_to_deal_double_damage" } }, - [5915]={ + [5916]={ [1]={ [1]={ limit={ @@ -128903,7 +128919,7 @@ return { [1]="critical_strikes_always_knockback_shocked_enemies" } }, - [5916]={ + [5917]={ [1]={ [1]={ limit={ @@ -128919,7 +128935,7 @@ return { [1]="critical_strikes_deal_no_damage" } }, - [5917]={ + [5918]={ [1]={ [1]={ limit={ @@ -128935,7 +128951,7 @@ return { [1]="critical_strikes_do_not_always_ignite" } }, - [5918]={ + [5919]={ [1]={ [1]={ limit={ @@ -128951,7 +128967,7 @@ return { [1]="critical_strikes_from_spells_have_no_multiplier" } }, - [5919]={ + [5920]={ [1]={ [1]={ limit={ @@ -128967,7 +128983,7 @@ return { [1]="critical_strikes_ignore_lightning_resistance" } }, - [5920]={ + [5921]={ [1]={ [1]={ limit={ @@ -128983,7 +128999,7 @@ return { [1]="critical_strikes_ignore_positive_elemental_resistances" } }, - [5921]={ + [5922]={ [1]={ [1]={ limit={ @@ -128999,7 +129015,7 @@ return { [1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry" } }, - [5922]={ + [5923]={ [1]={ [1]={ limit={ @@ -129015,7 +129031,7 @@ return { [1]="critical_support_gem_level_+" } }, - [5923]={ + [5924]={ [1]={ [1]={ limit={ @@ -129031,7 +129047,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo" } }, - [5924]={ + [5925]={ [1]={ [1]={ limit={ @@ -129047,7 +129063,7 @@ return { [1]="crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently" } }, - [5925]={ + [5926]={ [1]={ [1]={ limit={ @@ -129076,7 +129092,7 @@ return { [1]="crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds" } }, - [5926]={ + [5927]={ [1]={ [1]={ limit={ @@ -129092,7 +129108,7 @@ return { [1]="crowd_control_effects_are_triggered_at_%_poise_threshold_instead" } }, - [5927]={ + [5928]={ [1]={ [1]={ limit={ @@ -129121,7 +129137,7 @@ return { [1]="cruelty_effect_+%" } }, - [5928]={ + [5929]={ [1]={ [1]={ limit={ @@ -129146,7 +129162,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [5929]={ + [5930]={ [1]={ [1]={ [1]={ @@ -129166,7 +129182,7 @@ return { [1]="crush_on_hit_ms_vs_full_life_enemies" } }, - [5930]={ + [5931]={ [1]={ [1]={ limit={ @@ -129182,7 +129198,7 @@ return { [1]="culling_strike_enemies_on_block" } }, - [5931]={ + [5932]={ [1]={ [1]={ limit={ @@ -129211,7 +129227,7 @@ return { [1]="culling_strike_threshold_+%_if_culled_recently" } }, - [5932]={ + [5933]={ [1]={ [1]={ limit={ @@ -129240,7 +129256,7 @@ return { [1]="culling_strike_threshold_+%_vs_immobilised_enemies" } }, - [5933]={ + [5934]={ [1]={ [1]={ limit={ @@ -129269,7 +129285,7 @@ return { [1]="culling_strike_threshold_+%_vs_rare_or_unique_monsters" } }, - [5934]={ + [5935]={ [1]={ [1]={ limit={ @@ -129298,7 +129314,7 @@ return { [1]="culling_strike_threshold_+%" } }, - [5935]={ + [5936]={ [1]={ [1]={ limit={ @@ -129314,7 +129330,7 @@ return { [1]="culling_strike_vs_beasts_while_in_presence_of_beast_companion" } }, - [5936]={ + [5937]={ [1]={ [1]={ limit={ @@ -129330,7 +129346,7 @@ return { [1]="culling_strike_vs_cursed_enemies" } }, - [5937]={ + [5938]={ [1]={ [1]={ limit={ @@ -129346,7 +129362,7 @@ return { [1]="culling_strike_vs_marked_enemy" } }, - [5938]={ + [5939]={ [1]={ [1]={ limit={ @@ -129371,7 +129387,7 @@ return { [1]="current_energy_shield_%_as_physical_damage_reduction" } }, - [5939]={ + [5940]={ [1]={ [1]={ limit={ @@ -129405,7 +129421,7 @@ return { [1]="current_energy_shield_%_as_elemental_damage_reduction" } }, - [5940]={ + [5941]={ [1]={ [1]={ limit={ @@ -129434,7 +129450,7 @@ return { [1]="curse_aura_skill_area_of_effect_+%" } }, - [5941]={ + [5942]={ [1]={ [1]={ limit={ @@ -129463,7 +129479,7 @@ return { [1]="curse_aura_skills_reservation_efficiency_+%" } }, - [5942]={ + [5943]={ [1]={ [1]={ [1]={ @@ -129500,7 +129516,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_-2%_per_1" } }, - [5943]={ + [5944]={ [1]={ [1]={ limit={ @@ -129529,7 +129545,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_+%" } }, - [5944]={ + [5945]={ [1]={ [1]={ limit={ @@ -129562,7 +129578,7 @@ return { [1]="curse_delay_+%" } }, - [5945]={ + [5946]={ [1]={ [1]={ limit={ @@ -129591,7 +129607,7 @@ return { [1]="curse_delay_+%_per_20_tribute" } }, - [5946]={ + [5947]={ [1]={ [1]={ limit={ @@ -129620,7 +129636,7 @@ return { [1]="curse_duration_+%_if_you_have_at_least_100_tribute" } }, - [5947]={ + [5948]={ [1]={ [1]={ limit={ @@ -129649,7 +129665,7 @@ return { [1]="curse_duration_+%_per_10_tribute" } }, - [5948]={ + [5949]={ [1]={ [1]={ limit={ @@ -129678,7 +129694,7 @@ return { [1]="curse_effect_on_self_+%_while_on_consecrated_ground" } }, - [5949]={ + [5950]={ [1]={ [1]={ limit={ @@ -129707,7 +129723,7 @@ return { [1]="curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask" } }, - [5950]={ + [5951]={ [1]={ [1]={ limit={ @@ -129736,7 +129752,7 @@ return { [1]="curse_effect_+%_if_200_mana_spent_recently" } }, - [5951]={ + [5952]={ [1]={ [1]={ limit={ @@ -129752,7 +129768,7 @@ return { [1]="curse_ignores_curse_limit" } }, - [5952]={ + [5953]={ [1]={ [1]={ limit={ @@ -129785,7 +129801,7 @@ return { [1]="curse_mana_cost_+%" } }, - [5953]={ + [5954]={ [1]={ [1]={ limit={ @@ -129810,7 +129826,7 @@ return { [1]="curse_on_block_enfeeble_chance_%" } }, - [5954]={ + [5955]={ [1]={ [1]={ limit={ @@ -129839,7 +129855,7 @@ return { [1]="curse_skill_effect_duration_+%" } }, - [5955]={ + [5956]={ [1]={ [1]={ limit={ @@ -129864,7 +129880,7 @@ return { [1]="curse_with_punishment_on_hit_%" } }, - [5956]={ + [5957]={ [1]={ [1]={ limit={ @@ -129880,7 +129896,7 @@ return { [1]="cursed_enemies_are_exorcised_on_kill" } }, - [5957]={ + [5958]={ [1]={ [1]={ limit={ @@ -129905,7 +129921,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_endurance_charge_when_hit" } }, - [5958]={ + [5959]={ [1]={ [1]={ limit={ @@ -129930,7 +129946,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit" } }, - [5959]={ + [5960]={ [1]={ [1]={ limit={ @@ -129955,7 +129971,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_power_charge_when_hit" } }, - [5960]={ + [5961]={ [1]={ [1]={ limit={ @@ -129980,7 +129996,7 @@ return { [1]="cursed_with_silence_when_hit_%_chance" } }, - [5961]={ + [5962]={ [1]={ [1]={ limit={ @@ -129996,7 +130012,7 @@ return { [1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds" } }, - [5962]={ + [5963]={ [1]={ [1]={ limit={ @@ -130012,7 +130028,7 @@ return { [1]="curses_reflected_to_self" } }, - [5963]={ + [5964]={ [1]={ [1]={ limit={ @@ -130028,7 +130044,7 @@ return { [1]="curses_you_inflict_remain_after_death" } }, - [5964]={ + [5965]={ [1]={ [1]={ limit={ @@ -130044,7 +130060,7 @@ return { [1]="cyclone_and_sweep_enemy_knockback_direction_is_reversed" } }, - [5965]={ + [5966]={ [1]={ [1]={ limit={ @@ -130060,7 +130076,7 @@ return { [1]="cyclone_and_sweep_melee_knockback" } }, - [5966]={ + [5967]={ [1]={ [1]={ limit={ @@ -130089,7 +130105,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [5967]={ + [5968]={ [1]={ [1]={ limit={ @@ -130118,7 +130134,7 @@ return { [1]="damage_+%_against_enemies_with_fully_broken_armour" } }, - [5968]={ + [5969]={ [1]={ [1]={ limit={ @@ -130147,7 +130163,7 @@ return { [1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [5969]={ + [5970]={ [1]={ [1]={ limit={ @@ -130176,7 +130192,7 @@ return { [1]="damage_+%_if_consumed_frenzy_charge_recently" } }, - [5970]={ + [5971]={ [1]={ [1]={ limit={ @@ -130205,7 +130221,7 @@ return { [1]="damage_+%_if_triggered_skill_recently" } }, - [5971]={ + [5972]={ [1]={ [1]={ limit={ @@ -130230,7 +130246,7 @@ return { [1]="damage_+%_per_active_minion" } }, - [5972]={ + [5973]={ [1]={ [1]={ limit={ @@ -130259,7 +130275,7 @@ return { [1]="damage_+%_per_different_companion_in_presence" } }, - [5973]={ + [5974]={ [1]={ [1]={ limit={ @@ -130288,7 +130304,7 @@ return { [1]="damage_+%_per_enemy_elemental_ailment" } }, - [5974]={ + [5975]={ [1]={ [1]={ limit={ @@ -130317,7 +130333,7 @@ return { [1]="damage_+%_per_poison_stack" } }, - [5975]={ + [5976]={ [1]={ [1]={ limit={ @@ -130346,7 +130362,7 @@ return { [1]="damage_+%_per_raised_zombie" } }, - [5976]={ + [5977]={ [1]={ [1]={ limit={ @@ -130375,7 +130391,7 @@ return { [1]="damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute" } }, - [5977]={ + [5978]={ [1]={ [1]={ limit={ @@ -130404,7 +130420,7 @@ return { [1]="damage_+%_vs_dazed_enemies" } }, - [5978]={ + [5979]={ [1]={ [1]={ limit={ @@ -130433,7 +130449,7 @@ return { [1]="damage_+%_vs_immobilised_enemies" } }, - [5979]={ + [5980]={ [1]={ [1]={ limit={ @@ -130462,7 +130478,7 @@ return { [1]="damage_+%_vs_immobilised_enemies_while_shapeshifted" } }, - [5980]={ + [5981]={ [1]={ [1]={ limit={ @@ -130491,7 +130507,7 @@ return { [1]="damage_+%_while_in_presence_of_companion" } }, - [5981]={ + [5982]={ [1]={ [1]={ limit={ @@ -130520,7 +130536,7 @@ return { [1]="damage_+%_while_shapeshifted" } }, - [5982]={ + [5983]={ [1]={ [1]={ limit={ @@ -130549,7 +130565,7 @@ return { [1]="damage_against_undead_+%" } }, - [5983]={ + [5984]={ [1]={ [1]={ limit={ @@ -130574,7 +130590,7 @@ return { [1]="damage_blocked_%_recouped_as_mana" } }, - [5984]={ + [5985]={ [1]={ [1]={ limit={ @@ -130590,7 +130606,7 @@ return { [1]="damage_cannot_be_taken_from_ward" } }, - [5985]={ + [5986]={ [1]={ [1]={ limit={ @@ -130606,7 +130622,7 @@ return { [1]="damage_over_time_multiplier_+_if_enemy_killed_recently" } }, - [5986]={ + [5987]={ [1]={ [1]={ limit={ @@ -130635,7 +130651,7 @@ return { [1]="damage_over_time_+%_while_affected_by_a_herald" } }, - [5987]={ + [5988]={ [1]={ [1]={ limit={ @@ -130664,7 +130680,7 @@ return { [1]="damage_over_time_+%_with_attack_skills" } }, - [5988]={ + [5989]={ [1]={ [1]={ limit={ @@ -130693,7 +130709,7 @@ return { [1]="damage_over_time_+%_with_bow_skills" } }, - [5989]={ + [5990]={ [1]={ [1]={ limit={ @@ -130722,7 +130738,7 @@ return { [1]="damage_over_time_+%_with_herald_skills" } }, - [5990]={ + [5991]={ [1]={ [1]={ limit={ @@ -130751,7 +130767,7 @@ return { [1]="damage_over_time_taken_+%_while_you_have_at_least_20_fortification" } }, - [5991]={ + [5992]={ [1]={ [1]={ limit={ @@ -130767,7 +130783,7 @@ return { [1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice" } }, - [5992]={ + [5993]={ [1]={ [1]={ limit={ @@ -130783,7 +130799,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently" } }, - [5993]={ + [5994]={ [1]={ [1]={ limit={ @@ -130799,7 +130815,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies" } }, - [5994]={ + [5995]={ [1]={ [1]={ limit={ @@ -130815,7 +130831,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_cursed_enemies" } }, - [5995]={ + [5996]={ [1]={ [1]={ limit={ @@ -130831,7 +130847,7 @@ return { [1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash" } }, - [5996]={ + [5997]={ [1]={ [1]={ limit={ @@ -130847,7 +130863,7 @@ return { [1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder" } }, - [5997]={ + [5998]={ [1]={ [1]={ limit={ @@ -130863,7 +130879,7 @@ return { [1]="damage_penetrates_x%_of_elemental_resistances_per_glory_skill_used_in_last_6_seconds" } }, - [5998]={ + [5999]={ [1]={ [1]={ limit={ @@ -130892,7 +130908,7 @@ return { [1]="damage_+%_against_enemies_marked_by_you" } }, - [5999]={ + [6000]={ [1]={ [1]={ limit={ @@ -130908,7 +130924,7 @@ return { [1]="damage_+%_final_if_lost_endurance_charge_in_past_8_seconds" } }, - [6000]={ + [6001]={ [1]={ [1]={ limit={ @@ -130937,7 +130953,7 @@ return { [1]="damage_+%_final_with_at_least_1_nearby_ally" } }, - [6001]={ + [6002]={ [1]={ [1]={ limit={ @@ -130966,7 +130982,7 @@ return { [1]="damage_+%_for_each_herald_affecting_you" } }, - [6002]={ + [6003]={ [1]={ [1]={ limit={ @@ -130999,7 +131015,7 @@ return { [1]="damage_+%_for_enemies_you_inflict_spiders_web_upon" } }, - [6003]={ + [6004]={ [1]={ [1]={ limit={ @@ -131028,7 +131044,7 @@ return { [1]="damage_+%_if_enemy_killed_recently" } }, - [6004]={ + [6005]={ [1]={ [1]={ limit={ @@ -131057,7 +131073,7 @@ return { [1]="damage_+%_if_enemy_shattered_recently" } }, - [6005]={ + [6006]={ [1]={ [1]={ limit={ @@ -131086,7 +131102,7 @@ return { [1]="damage_+%_if_firing_atleast_7_projectiles" } }, - [6006]={ + [6007]={ [1]={ [1]={ limit={ @@ -131115,7 +131131,7 @@ return { [1]="damage_+%_if_have_been_ignited_recently" } }, - [6007]={ + [6008]={ [1]={ [1]={ limit={ @@ -131144,7 +131160,7 @@ return { [1]="damage_+%_if_have_crit_in_past_8_seconds" } }, - [6008]={ + [6009]={ [1]={ [1]={ limit={ @@ -131173,7 +131189,7 @@ return { [1]="damage_+%_if_only_one_enemy_nearby" } }, - [6009]={ + [6010]={ [1]={ [1]={ limit={ @@ -131202,7 +131218,7 @@ return { [1]="damage_+%_if_skill_costs_life" } }, - [6010]={ + [6011]={ [1]={ [1]={ limit={ @@ -131231,7 +131247,7 @@ return { [1]="damage_+%_if_used_travel_skill_recently" } }, - [6011]={ + [6012]={ [1]={ [1]={ limit={ @@ -131260,7 +131276,7 @@ return { [1]="damage_+%_if_you_have_frozen_enemy_recently" } }, - [6012]={ + [6013]={ [1]={ [1]={ limit={ @@ -131289,7 +131305,7 @@ return { [1]="damage_+%_if_you_have_shocked_recently" } }, - [6013]={ + [6014]={ [1]={ [1]={ limit={ @@ -131318,7 +131334,7 @@ return { [1]="damage_+%_per_100_dexterity" } }, - [6014]={ + [6015]={ [1]={ [1]={ limit={ @@ -131347,7 +131363,7 @@ return { [1]="damage_+%_per_100_intelligence" } }, - [6015]={ + [6016]={ [1]={ [1]={ limit={ @@ -131376,7 +131392,7 @@ return { [1]="damage_+%_per_100_strength" } }, - [6016]={ + [6017]={ [1]={ [1]={ limit={ @@ -131392,7 +131408,7 @@ return { [1]="damage_+%_per_10_dex" } }, - [6017]={ + [6018]={ [1]={ [1]={ limit={ @@ -131408,7 +131424,7 @@ return { [1]="damage_+%_per_15_dex" } }, - [6018]={ + [6019]={ [1]={ [1]={ limit={ @@ -131424,7 +131440,7 @@ return { [1]="damage_+%_per_15_int" } }, - [6019]={ + [6020]={ [1]={ [1]={ limit={ @@ -131440,7 +131456,7 @@ return { [1]="damage_+%_per_15_strength" } }, - [6020]={ + [6021]={ [1]={ [1]={ limit={ @@ -131469,7 +131485,7 @@ return { [1]="damage_+%_per_1%_block_chance" } }, - [6021]={ + [6022]={ [1]={ [1]={ limit={ @@ -131485,7 +131501,7 @@ return { [1]="damage_+%_per_1%_increased_item_found_quantity" } }, - [6022]={ + [6023]={ [1]={ [1]={ limit={ @@ -131514,7 +131530,7 @@ return { [1]="damage_+%_per_5_of_your_lowest_attribute" } }, - [6023]={ + [6024]={ [1]={ [1]={ limit={ @@ -131543,7 +131559,7 @@ return { [1]="damage_+%_per_active_golem" } }, - [6024]={ + [6025]={ [1]={ [1]={ limit={ @@ -131572,7 +131588,7 @@ return { [1]="damage_+%_per_active_link" } }, - [6025]={ + [6026]={ [1]={ [1]={ limit={ @@ -131597,7 +131613,7 @@ return { [1]="damage_+%_per_different_warcry_used_recently" } }, - [6026]={ + [6027]={ [1]={ [1]={ limit={ @@ -131626,7 +131642,7 @@ return { [1]="damage_+%_per_frenzy_power_or_endurance_charge" } }, - [6027]={ + [6028]={ [1]={ [1]={ limit={ @@ -131655,7 +131671,7 @@ return { [1]="damage_+%_per_poison_up_to_75%" } }, - [6028]={ + [6029]={ [1]={ [1]={ limit={ @@ -131684,7 +131700,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [6029]={ + [6030]={ [1]={ [1]={ limit={ @@ -131713,7 +131729,7 @@ return { [1]="damage_+%_per_recently_triggered_hazard_up_to_50%" } }, - [6030]={ + [6031]={ [1]={ [1]={ limit={ @@ -131742,7 +131758,7 @@ return { [1]="damage_+%_per_warcry_used_recently" } }, - [6031]={ + [6032]={ [1]={ [1]={ limit={ @@ -131758,7 +131774,7 @@ return { [1]="damage_+%_per_your_aura_or_herald_skill_affecting_you" } }, - [6032]={ + [6033]={ [1]={ [1]={ limit={ @@ -131787,7 +131803,7 @@ return { [1]="damage_+%_vs_abyssal_monsters" } }, - [6033]={ + [6034]={ [1]={ [1]={ limit={ @@ -131816,7 +131832,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [6034]={ + [6035]={ [1]={ [1]={ limit={ @@ -131845,7 +131861,7 @@ return { [1]="melee_damage_+%_vs_heavy_stunned_enemies" } }, - [6035]={ + [6036]={ [1]={ [1]={ limit={ @@ -131874,7 +131890,7 @@ return { [1]="damage_+%_vs_magic_monsters" } }, - [6036]={ + [6037]={ [1]={ [1]={ limit={ @@ -131903,7 +131919,7 @@ return { [1]="damage_+%_vs_taunted_enemies" } }, - [6037]={ + [6038]={ [1]={ [1]={ limit={ @@ -131932,7 +131948,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [6038]={ + [6039]={ [1]={ [1]={ limit={ @@ -131961,7 +131977,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [6039]={ + [6040]={ [1]={ [1]={ limit={ @@ -131990,7 +132006,7 @@ return { [1]="damage_+%_while_affected_by_a_herald" } }, - [6040]={ + [6041]={ [1]={ [1]={ limit={ @@ -132019,7 +132035,7 @@ return { [1]="damage_+%_while_channelling" } }, - [6041]={ + [6042]={ [1]={ [1]={ limit={ @@ -132048,7 +132064,7 @@ return { [1]="damage_+%_while_in_blood_stance" } }, - [6042]={ + [6043]={ [1]={ [1]={ limit={ @@ -132077,7 +132093,7 @@ return { [1]="damage_+%_while_using_charm" } }, - [6043]={ + [6044]={ [1]={ [1]={ limit={ @@ -132106,7 +132122,7 @@ return { [1]="damage_+%_while_wielding_bow_if_totem_summoned" } }, - [6044]={ + [6045]={ [1]={ [1]={ limit={ @@ -132135,7 +132151,7 @@ return { [1]="damage_+%_while_wielding_two_different_weapon_types" } }, - [6045]={ + [6046]={ [1]={ [1]={ limit={ @@ -132164,7 +132180,7 @@ return { [1]="damage_+%_while_you_have_a_summoned_golem" } }, - [6046]={ + [6047]={ [1]={ [1]={ limit={ @@ -132193,7 +132209,7 @@ return { [1]="damage_+%_with_daggers_against_full_life_enemies" } }, - [6047]={ + [6048]={ [1]={ [1]={ limit={ @@ -132222,7 +132238,7 @@ return { [1]="damage_+%_with_herald_skills" } }, - [6048]={ + [6049]={ [1]={ [1]={ limit={ @@ -132251,7 +132267,7 @@ return { [1]="damage_+%_with_maces_sceptres_staves" } }, - [6049]={ + [6050]={ [1]={ [1]={ limit={ @@ -132280,7 +132296,7 @@ return { [1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention" } }, - [6050]={ + [6051]={ [1]={ [1]={ limit={ @@ -132309,7 +132325,7 @@ return { [1]="damage_+%_with_shield_skills" } }, - [6051]={ + [6052]={ [1]={ [1]={ limit={ @@ -132338,7 +132354,7 @@ return { [1]="damage_+%_with_shield_skills_per_2%_attack_block" } }, - [6052]={ + [6053]={ [1]={ [1]={ limit={ @@ -132354,7 +132370,7 @@ return { [1]="damage_recouped_as_life_%_if_leech_removed_by_filling_recently" } }, - [6053]={ + [6054]={ [1]={ [1]={ limit={ @@ -132370,7 +132386,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity" } }, - [6054]={ + [6055]={ [1]={ [1]={ limit={ @@ -132386,7 +132402,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_focused" } }, - [6055]={ + [6056]={ [1]={ [1]={ limit={ @@ -132402,7 +132418,7 @@ return { [1]="damage_removed_from_spectres_before_life_or_es_%" } }, - [6056]={ + [6057]={ [1]={ [1]={ limit={ @@ -132418,7 +132434,7 @@ return { [1]="damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [6057]={ + [6058]={ [1]={ [1]={ limit={ @@ -132447,7 +132463,7 @@ return { [1]="damage_taken_+%_for_4_seconds_after_spending_200_mana" } }, - [6058]={ + [6059]={ [1]={ [1]={ limit={ @@ -132476,7 +132492,7 @@ return { [1]="damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute" } }, - [6059]={ + [6060]={ [1]={ [1]={ limit={ @@ -132505,7 +132521,7 @@ return { [1]="damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby" } }, - [6060]={ + [6061]={ [1]={ [1]={ limit={ @@ -132534,7 +132550,7 @@ return { [1]="damage_taken_+%_while_affected_by_elusive" } }, - [6061]={ + [6062]={ [1]={ [1]={ limit={ @@ -132550,7 +132566,7 @@ return { [1]="damage_taken_from_hits_is_unlucky_if_ward_damaged_recently" } }, - [6062]={ + [6063]={ [1]={ [1]={ limit={ @@ -132566,7 +132582,7 @@ return { [1]="damage_taken_goes_to_life_mana_es_over_4_seconds_%" } }, - [6063]={ + [6064]={ [1]={ [1]={ limit={ @@ -132582,7 +132598,7 @@ return { [1]="damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute" } }, - [6064]={ + [6065]={ [1]={ [1]={ limit={ @@ -132598,7 +132614,7 @@ return { [1]="damage_taken_goes_to_mana_%_per_10_tribute" } }, - [6065]={ + [6066]={ [1]={ [1]={ limit={ @@ -132614,7 +132630,7 @@ return { [1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity" } }, - [6066]={ + [6067]={ [1]={ [1]={ limit={ @@ -132643,7 +132659,7 @@ return { [1]="damage_taken_over_time_+%_final_during_life_flask_effect" } }, - [6067]={ + [6068]={ [1]={ [1]={ limit={ @@ -132672,7 +132688,7 @@ return { [1]="damage_taken_per_250_dexterity_+%" } }, - [6068]={ + [6069]={ [1]={ [1]={ limit={ @@ -132701,7 +132717,7 @@ return { [1]="damage_taken_per_250_intelligence_+%" } }, - [6069]={ + [6070]={ [1]={ [1]={ limit={ @@ -132730,7 +132746,7 @@ return { [1]="damage_taken_per_250_strength_+%" } }, - [6070]={ + [6071]={ [1]={ [1]={ limit={ @@ -132759,7 +132775,7 @@ return { [1]="damage_taken_per_ghost_dance_stack_+%" } }, - [6071]={ + [6072]={ [1]={ [1]={ limit={ @@ -132775,7 +132791,7 @@ return { [1]="damage_taken_%_recovered_as_energy_shield_from_stunning_hits" } }, - [6072]={ + [6073]={ [1]={ [1]={ limit={ @@ -132791,7 +132807,7 @@ return { [1]="damage_taken_%_recovered_as_life_from_stunning_hits" } }, - [6073]={ + [6074]={ [1]={ [1]={ limit={ @@ -132820,7 +132836,7 @@ return { [1]="damage_taken_+%_final_from_enemies_near_marked_enemy" } }, - [6074]={ + [6075]={ [1]={ [1]={ limit={ @@ -132849,7 +132865,7 @@ return { [1]="damage_taken_+%_final_per_tailwind" } }, - [6075]={ + [6076]={ [1]={ [1]={ limit={ @@ -132878,7 +132894,7 @@ return { [1]="damage_taken_+%_final_per_totem" } }, - [6076]={ + [6077]={ [1]={ [1]={ limit={ @@ -132907,7 +132923,7 @@ return { [1]="damage_taken_+%_if_have_been_frozen_recently" } }, - [6077]={ + [6078]={ [1]={ [1]={ limit={ @@ -132936,7 +132952,7 @@ return { [1]="damage_taken_+%_if_have_not_been_hit_recently" } }, - [6078]={ + [6079]={ [1]={ [1]={ limit={ @@ -132965,7 +132981,7 @@ return { [1]="damage_taken_+%_on_full_life" } }, - [6079]={ + [6080]={ [1]={ [1]={ limit={ @@ -132994,7 +133010,7 @@ return { [1]="damage_taken_+%_on_low_life" } }, - [6080]={ + [6081]={ [1]={ [1]={ limit={ @@ -133023,7 +133039,7 @@ return { [1]="damage_taken_+%_while_leeching" } }, - [6081]={ + [6082]={ [1]={ [1]={ limit={ @@ -133052,7 +133068,7 @@ return { [1]="damage_taken_+%_while_phasing" } }, - [6082]={ + [6083]={ [1]={ [1]={ limit={ @@ -133068,7 +133084,7 @@ return { [1]="damage_with_hits_is_lucky_vs_enemies_on_low_life" } }, - [6083]={ + [6084]={ [1]={ [1]={ limit={ @@ -133084,7 +133100,7 @@ return { [1]="damage_with_hits_is_lucky_vs_heavy_stunned_enemies" } }, - [6084]={ + [6085]={ [1]={ [1]={ limit={ @@ -133113,7 +133129,7 @@ return { [1]="damaging_ailment_duration_+%" } }, - [6085]={ + [6086]={ [1]={ [1]={ limit={ @@ -133142,7 +133158,7 @@ return { [1]="damaging_ailment_duration_+%_per_10_tribute" } }, - [6086]={ + [6087]={ [1]={ [1]={ limit={ @@ -133171,7 +133187,7 @@ return { [1]="base_damaging_ailment_effect_+%" } }, - [6087]={ + [6088]={ [1]={ [1]={ limit={ @@ -133187,7 +133203,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [6088]={ + [6089]={ [1]={ [1]={ limit={ @@ -133203,7 +133219,7 @@ return { [1]="dark_pact_minions_recover_%_life_on_hit" } }, - [6089]={ + [6090]={ [1]={ [1]={ limit={ @@ -133232,7 +133248,7 @@ return { [1]="dark_ritual_area_of_effect_+%" } }, - [6090]={ + [6091]={ [1]={ [1]={ limit={ @@ -133261,7 +133277,7 @@ return { [1]="dark_ritual_damage_+%" } }, - [6091]={ + [6092]={ [1]={ [1]={ limit={ @@ -133290,7 +133306,7 @@ return { [1]="dark_ritual_linked_curse_effect_+%" } }, - [6092]={ + [6093]={ [1]={ [1]={ limit={ @@ -133306,7 +133322,7 @@ return { [1]="darkness_per_level" } }, - [6093]={ + [6094]={ [1]={ [1]={ limit={ @@ -133335,7 +133351,7 @@ return { [1]="darkness_refresh_rate_+%" } }, - [6094]={ + [6095]={ [1]={ [1]={ limit={ @@ -133364,7 +133380,7 @@ return { [1]="daytime_fish_caught_size_+%" } }, - [6095]={ + [6096]={ [1]={ [1]={ limit={ @@ -133393,7 +133409,7 @@ return { [1]="daze_build_up_+%" } }, - [6096]={ + [6097]={ [1]={ [1]={ limit={ @@ -133422,7 +133438,7 @@ return { [1]="daze_duration_+%" } }, - [6097]={ + [6098]={ [1]={ [1]={ limit={ @@ -133451,7 +133467,7 @@ return { [1]="daze_magnitude_+%" } }, - [6098]={ + [6099]={ [1]={ [1]={ limit={ @@ -133467,7 +133483,7 @@ return { [1]="deadeye_accuracy_unaffected_by_range" } }, - [6099]={ + [6100]={ [1]={ [1]={ limit={ @@ -133496,7 +133512,7 @@ return { [1]="deadeye_damage_taken_+%_final_from_marked_enemy" } }, - [6100]={ + [6101]={ [1]={ [1]={ limit={ @@ -133525,7 +133541,7 @@ return { [1]="deadeye_movement_speed_penalty_+%_final_while_performing_action" } }, - [6101]={ + [6102]={ [1]={ [1]={ limit={ @@ -133541,7 +133557,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases" } }, - [6102]={ + [6103]={ [1]={ [1]={ limit={ @@ -133557,7 +133573,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases" } }, - [6103]={ + [6104]={ [1]={ [1]={ limit={ @@ -133573,7 +133589,7 @@ return { [1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [6104]={ + [6105]={ [1]={ [1]={ limit={ @@ -133589,7 +133605,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [6105]={ + [6106]={ [1]={ [1]={ limit={ @@ -133605,7 +133621,7 @@ return { [1]="deal_double_damage_to_enemies_on_full_life" } }, - [6106]={ + [6107]={ [1]={ [1]={ limit={ @@ -133621,7 +133637,7 @@ return { [1]="deal_no_damage_when_not_on_low_life" } }, - [6107]={ + [6108]={ [1]={ [1]={ limit={ @@ -133637,7 +133653,7 @@ return { [1]="deal_no_elemental_damage" } }, - [6108]={ + [6109]={ [1]={ [1]={ limit={ @@ -133653,7 +133669,7 @@ return { [1]="deal_no_elemental_physical_damage" } }, - [6109]={ + [6110]={ [1]={ [1]={ limit={ @@ -133669,7 +133685,7 @@ return { [1]="deal_no_non_chaos_damage" } }, - [6110]={ + [6111]={ [1]={ [1]={ limit={ @@ -133685,7 +133701,7 @@ return { [1]="deal_no_non_elemental_damage" } }, - [6111]={ + [6112]={ [1]={ [1]={ limit={ @@ -133701,7 +133717,7 @@ return { [1]="deal_thorns_damage_on_hit" } }, - [6112]={ + [6113]={ [1]={ [1]={ limit={ @@ -133717,7 +133733,7 @@ return { [1]="deal_thorns_damage_on_melee_crit" } }, - [6113]={ + [6114]={ [1]={ [1]={ limit={ @@ -133733,7 +133749,7 @@ return { [1]="deal_thorns_damage_on_stun" } }, - [6114]={ + [6115]={ [1]={ [1]={ limit={ @@ -133749,7 +133765,7 @@ return { [1]="deathgrip_presence" } }, - [6115]={ + [6116]={ [1]={ [1]={ limit={ @@ -133774,7 +133790,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [6116]={ + [6117]={ [1]={ [1]={ limit={ @@ -133790,7 +133806,7 @@ return { [1]="debilitate_enemies_within_X_metres_while_active_blocking" } }, - [6117]={ + [6118]={ [1]={ [1]={ limit={ @@ -133823,7 +133839,7 @@ return { [1]="debuff_time_passed_-%_while_affected_by_haste" } }, - [6118]={ + [6119]={ [1]={ [1]={ limit={ @@ -133852,7 +133868,7 @@ return { [1]="debuff_time_passed_+%" } }, - [6119]={ + [6120]={ [1]={ [1]={ limit={ @@ -133868,7 +133884,7 @@ return { [1]="decimating_strike" } }, - [6120]={ + [6121]={ [1]={ [1]={ limit={ @@ -133884,7 +133900,7 @@ return { [1]="decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [6121]={ + [6122]={ [1]={ [1]={ limit={ @@ -133909,7 +133925,7 @@ return { [1]="armour_evasion_energy_shield_+%_while_channelling" } }, - [6122]={ + [6123]={ [1]={ [1]={ limit={ @@ -133938,7 +133954,7 @@ return { [1]="armour_evasion_energy_shield_+%_while_on_low_life" } }, - [6123]={ + [6124]={ [1]={ [1]={ limit={ @@ -133967,7 +133983,7 @@ return { [1]="armour_evasion_energy_shield_+%_while_wielding_quarterstaff" } }, - [6124]={ + [6125]={ [1]={ [1]={ limit={ @@ -133996,7 +134012,7 @@ return { [1]="armour_evasion_energy_shield_+%_while_you_have_four_linked_targets" } }, - [6125]={ + [6126]={ [1]={ [1]={ limit={ @@ -134012,7 +134028,7 @@ return { [1]="armour_evasion_energy_shield_are_zero" } }, - [6126]={ + [6127]={ [1]={ [1]={ limit={ @@ -134028,7 +134044,7 @@ return { [1]="defences_from_animated_guardians_items_apply_to_animated_weapon" } }, - [6127]={ + [6128]={ [1]={ [1]={ limit={ @@ -134044,7 +134060,7 @@ return { [1]="defend_with_%_armour_against_critical_strikes" } }, - [6128]={ + [6129]={ [1]={ [1]={ limit={ @@ -134060,7 +134076,7 @@ return { [1]="defend_with_%_armour_against_hits_from_distance_greater_than_6m" } }, - [6129]={ + [6130]={ [1]={ [1]={ limit={ @@ -134076,7 +134092,7 @@ return { [1]="defend_with_%_armour_against_ranged_attacks" } }, - [6130]={ + [6131]={ [1]={ [1]={ limit={ @@ -134092,7 +134108,7 @@ return { [1]="defend_with_%_armour_when_low_energy_shield" } }, - [6131]={ + [6132]={ [1]={ [1]={ limit={ @@ -134108,7 +134124,7 @@ return { [1]="defend_with_%_armour_while_you_have_energy_shield" } }, - [6132]={ + [6133]={ [1]={ [1]={ limit={ @@ -134124,7 +134140,7 @@ return { [1]="defend_with_%_of_armour_while_not_on_low_energy_shield" } }, - [6133]={ + [6134]={ [1]={ [1]={ limit={ @@ -134153,7 +134169,7 @@ return { [1]="defiance_banner_aura_effect_+%" } }, - [6134]={ + [6135]={ [1]={ [1]={ limit={ @@ -134182,7 +134198,7 @@ return { [1]="defiance_banner_mana_reservation_efficiency_+%" } }, - [6135]={ + [6136]={ [1]={ [1]={ limit={ @@ -134198,7 +134214,7 @@ return { [1]="deflected_hit_damage_taken_%_recouped_as_life" } }, - [6136]={ + [6137]={ [1]={ [1]={ limit={ @@ -134214,7 +134230,7 @@ return { [1]="deflected_hits_cannot_directly_inflict_maim_on_self" } }, - [6137]={ + [6138]={ [1]={ [1]={ limit={ @@ -134230,7 +134246,7 @@ return { [1]="deflected_hits_cannot_inflict_bleeding_on_self" } }, - [6138]={ + [6139]={ [1]={ [1]={ limit={ @@ -134259,7 +134275,7 @@ return { [1]="deflection_rating_+%" } }, - [6139]={ + [6140]={ [1]={ [1]={ limit={ @@ -134284,7 +134300,7 @@ return { [1]="deflection_rating_+%_while_moving" } }, - [6140]={ + [6141]={ [1]={ [1]={ limit={ @@ -134309,7 +134325,7 @@ return { [1]="deflection_rating_+%_while_surrounded" } }, - [6141]={ + [6142]={ [1]={ [1]={ limit={ @@ -134338,7 +134354,7 @@ return { [1]="delirium_aura_effect_+%" } }, - [6142]={ + [6143]={ [1]={ [1]={ limit={ @@ -134371,7 +134387,7 @@ return { [1]="delirium_mana_reservation_+%" } }, - [6143]={ + [6144]={ [1]={ [1]={ limit={ @@ -134387,7 +134403,7 @@ return { [1]="delirium_reserves_no_mana" } }, - [6144]={ + [6145]={ [1]={ [1]={ limit={ @@ -134403,7 +134419,7 @@ return { [1]="delve_biome_area_contains_x_extra_packs_of_insects" } }, - [6145]={ + [6146]={ [1]={ [1]={ limit={ @@ -134419,7 +134435,7 @@ return { [1]="delve_biome_monster_projectiles_always_pierce" } }, - [6146]={ + [6147]={ [1]={ [1]={ limit={ @@ -134435,7 +134451,7 @@ return { [1]="delve_boss_life_+%_final_from_biome" } }, - [6147]={ + [6148]={ [1]={ [1]={ limit={ @@ -134451,7 +134467,7 @@ return { [1]="demon_form_has_no_max_stacks" } }, - [6148]={ + [6149]={ [1]={ [1]={ limit={ @@ -134484,7 +134500,7 @@ return { [1]="demon_minion_reservation_+%" } }, - [6149]={ + [6150]={ [1]={ [1]={ limit={ @@ -134500,7 +134516,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [6150]={ + [6151]={ [1]={ [1]={ limit={ @@ -134529,7 +134545,7 @@ return { [1]="despair_curse_effect_+%" } }, - [6151]={ + [6152]={ [1]={ [1]={ limit={ @@ -134558,7 +134574,7 @@ return { [1]="despair_duration_+%" } }, - [6152]={ + [6153]={ [1]={ [1]={ limit={ @@ -134574,7 +134590,7 @@ return { [1]="despair_no_reservation" } }, - [6153]={ + [6154]={ [1]={ [1]={ limit={ @@ -134603,7 +134619,7 @@ return { [1]="destructive_link_duration_+%" } }, - [6154]={ + [6155]={ [1]={ [1]={ [1]={ @@ -134640,7 +134656,7 @@ return { [1]="determination_mana_reservation_efficiency_-2%_per_1" } }, - [6155]={ + [6156]={ [1]={ [1]={ limit={ @@ -134669,7 +134685,7 @@ return { [1]="determination_mana_reservation_efficiency_+%" } }, - [6156]={ + [6157]={ [1]={ [1]={ limit={ @@ -134685,7 +134701,7 @@ return { [1]="determination_reserves_no_mana" } }, - [6157]={ + [6158]={ [1]={ [1]={ limit={ @@ -134714,7 +134730,7 @@ return { [1]="detonator_skill_area_of_effect_+%" } }, - [6158]={ + [6159]={ [1]={ [1]={ limit={ @@ -134743,7 +134759,7 @@ return { [1]="detonator_skill_damage_+%" } }, - [6159]={ + [6160]={ [1]={ [1]={ limit={ @@ -134759,7 +134775,7 @@ return { [1]="dexterity_can_satisfy_strength_and_intelligence_requirements_of_melee_weapons_and_skills" } }, - [6160]={ + [6161]={ [1]={ [1]={ limit={ @@ -134788,7 +134804,7 @@ return { [1]="dexterity_+%_if_strength_higher_than_intelligence" } }, - [6161]={ + [6162]={ [1]={ [1]={ limit={ @@ -134804,7 +134820,7 @@ return { [1]="discharge_and_voltaxic_burst_nova_spells_cast_at_target_location" } }, - [6162]={ + [6163]={ [1]={ [1]={ limit={ @@ -134833,7 +134849,7 @@ return { [1]="discharge_area_of_effect_+%_final" } }, - [6163]={ + [6164]={ [1]={ [1]={ limit={ @@ -134849,7 +134865,7 @@ return { [1]="discharge_cooldown_override_ms" } }, - [6164]={ + [6165]={ [1]={ [1]={ limit={ @@ -134878,7 +134894,7 @@ return { [1]="discharge_damage_+%_final" } }, - [6165]={ + [6166]={ [1]={ [1]={ limit={ @@ -134894,7 +134910,7 @@ return { [1]="discharge_radius_+" } }, - [6166]={ + [6167]={ [1]={ [1]={ limit={ @@ -134923,7 +134939,7 @@ return { [1]="discharge_triggered_damage_+%_final" } }, - [6167]={ + [6168]={ [1]={ [1]={ [1]={ @@ -134960,7 +134976,7 @@ return { [1]="discipline_mana_reservation_efficiency_-2%_per_1" } }, - [6168]={ + [6169]={ [1]={ [1]={ limit={ @@ -134989,7 +135005,7 @@ return { [1]="discipline_mana_reservation_efficiency_+%" } }, - [6169]={ + [6170]={ [1]={ [1]={ limit={ @@ -135005,7 +135021,7 @@ return { [1]="discipline_reserves_no_mana" } }, - [6170]={ + [6171]={ [1]={ [1]={ limit={ @@ -135034,7 +135050,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [6171]={ + [6172]={ [1]={ [1]={ limit={ @@ -135050,7 +135066,7 @@ return { [1]="dispel_bleed_on_guard_skill_use" } }, - [6172]={ + [6173]={ [1]={ [1]={ limit={ @@ -135066,7 +135082,7 @@ return { [1]="dispel_corrupted_blood_on_guard_skill_use" } }, - [6173]={ + [6174]={ [1]={ [1]={ limit={ @@ -135082,7 +135098,7 @@ return { [1]="display_altar_chaos_aura" } }, - [6174]={ + [6175]={ [1]={ [1]={ limit={ @@ -135098,7 +135114,7 @@ return { [1]="display_altar_cold_aura" } }, - [6175]={ + [6176]={ [1]={ [1]={ limit={ @@ -135114,7 +135130,7 @@ return { [1]="display_altar_fire_aura" } }, - [6176]={ + [6177]={ [1]={ [1]={ limit={ @@ -135130,7 +135146,7 @@ return { [1]="display_altar_lightning_aura" } }, - [6177]={ + [6178]={ [1]={ [1]={ limit={ @@ -135146,7 +135162,7 @@ return { [1]="display_altar_tangle_tentalces_daemon" } }, - [6178]={ + [6179]={ [1]={ [1]={ limit={ @@ -135162,7 +135178,7 @@ return { [1]="display_area_contains_alluring_vaal_side_area" } }, - [6179]={ + [6180]={ [1]={ [1]={ limit={ @@ -135178,7 +135194,7 @@ return { [1]="display_area_contains_corrupting_tempest" } }, - [6180]={ + [6181]={ [1]={ [1]={ limit={ @@ -135194,7 +135210,7 @@ return { [1]="display_area_contains_improved_labyrinth_trial" } }, - [6181]={ + [6182]={ [1]={ [1]={ limit={ @@ -135210,7 +135226,7 @@ return { [1]="display_cowards_trial_waves_of_monsters" } }, - [6182]={ + [6183]={ [1]={ [1]={ limit={ @@ -135226,7 +135242,7 @@ return { [1]="display_cowards_trial_waves_of_undead_monsters" } }, - [6183]={ + [6184]={ [1]={ [1]={ limit={ @@ -135242,7 +135258,7 @@ return { [1]="display_dark_ritual_curse_max_skill_level_requirement" } }, - [6184]={ + [6185]={ [1]={ [1]={ limit={ @@ -135271,7 +135287,7 @@ return { [1]="display_heist_contract_lockdown_timer_+%" } }, - [6185]={ + [6186]={ [1]={ [1]={ limit={ @@ -135287,7 +135303,7 @@ return { [1]="display_item_can_also_roll_ring_mods" } }, - [6186]={ + [6187]={ [1]={ [1]={ limit={ @@ -135312,7 +135328,7 @@ return { [1]="display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value" } }, - [6187]={ + [6188]={ [1]={ [1]={ limit={ @@ -135337,7 +135353,7 @@ return { [1]="display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value" } }, - [6188]={ + [6189]={ [1]={ [1]={ limit={ @@ -135353,7 +135369,7 @@ return { [1]="display_legion_uber_fragment_improved_rewards_+%" } }, - [6189]={ + [6190]={ [1]={ [1]={ limit={ @@ -135369,7 +135385,7 @@ return { [1]="display_map_augmentable_boss" } }, - [6190]={ + [6191]={ [1]={ [1]={ limit={ @@ -135385,7 +135401,7 @@ return { [1]="display_map_inhabited_by_lunaris_fanatics" } }, - [6191]={ + [6192]={ [1]={ [1]={ limit={ @@ -135401,7 +135417,7 @@ return { [1]="display_map_inhabited_by_solaris_fanatics" } }, - [6192]={ + [6193]={ [1]={ [1]={ limit={ @@ -135417,7 +135433,7 @@ return { [1]="display_map_labyrinth_chests_fortune" } }, - [6193]={ + [6194]={ [1]={ [1]={ limit={ @@ -135433,7 +135449,7 @@ return { [1]="display_map_labyrinth_enchant_belts" } }, - [6194]={ + [6195]={ [1]={ [1]={ limit={ @@ -135503,7 +135519,7 @@ return { [1]="display_map_mission_id" } }, - [6195]={ + [6196]={ [1]={ [1]={ limit={ @@ -135519,7 +135535,7 @@ return { [1]="display_memory_line_abyss_beyond_monsters_from_cracks" } }, - [6196]={ + [6197]={ [1]={ [1]={ limit={ @@ -135535,7 +135551,7 @@ return { [1]="display_memory_line_ambush_contains_standalone_map_boss" } }, - [6197]={ + [6198]={ [1]={ [1]={ limit={ @@ -135551,7 +135567,7 @@ return { [1]="display_memory_line_ambush_strongbox_chain" } }, - [6198]={ + [6199]={ [1]={ [1]={ limit={ @@ -135567,7 +135583,7 @@ return { [1]="display_memory_line_anarchy_rogue_exiles_in_packs" } }, - [6199]={ + [6200]={ [1]={ [1]={ limit={ @@ -135583,7 +135599,7 @@ return { [1]="display_memory_line_bestiary_capturable_harvest_monsters" } }, - [6200]={ + [6201]={ [1]={ [1]={ limit={ @@ -135599,7 +135615,7 @@ return { [1]="display_memory_line_breach_area_is_breached" } }, - [6201]={ + [6202]={ [1]={ [1]={ limit={ @@ -135615,7 +135631,7 @@ return { [1]="display_memory_line_breach_miniature_flash_breaches" } }, - [6202]={ + [6203]={ [1]={ [1]={ limit={ @@ -135631,7 +135647,7 @@ return { [1]="display_memory_line_domination_multiple_modded_shrines" } }, - [6203]={ + [6204]={ [1]={ [1]={ limit={ @@ -135647,7 +135663,7 @@ return { [1]="display_memory_line_domination_shrines_to_pantheon_gods" } }, - [6204]={ + [6205]={ [1]={ [1]={ limit={ @@ -135663,7 +135679,7 @@ return { [1]="display_memory_line_essence_multiple_rare_monsters" } }, - [6205]={ + [6206]={ [1]={ [1]={ limit={ @@ -135679,7 +135695,7 @@ return { [1]="display_memory_line_essence_rogue_exiles" } }, - [6206]={ + [6207]={ [1]={ [1]={ limit={ @@ -135695,7 +135711,7 @@ return { [1]="display_memory_line_harbinger_player_is_a_harbinger" } }, - [6207]={ + [6208]={ [1]={ [1]={ limit={ @@ -135711,7 +135727,7 @@ return { [1]="display_memory_line_harbinger_portals_everywhere" } }, - [6208]={ + [6209]={ [1]={ [1]={ limit={ @@ -135727,7 +135743,7 @@ return { [1]="display_memory_line_harvest_larger_plot_with_premium_seeds" } }, - [6209]={ + [6210]={ [1]={ [1]={ limit={ @@ -135743,7 +135759,7 @@ return { [1]="display_memory_line_torment_player_is_possessed" } }, - [6210]={ + [6211]={ [1]={ [1]={ limit={ @@ -135759,7 +135775,7 @@ return { [1]="display_memory_line_torment_rares_uniques_are_possessed" } }, - [6211]={ + [6212]={ [1]={ [1]={ limit={ @@ -135775,7 +135791,7 @@ return { [1]="display_modifiers_to_totem_life_effect_these_minions" } }, - [6212]={ + [6213]={ [1]={ [1]={ limit={ @@ -135791,7 +135807,7 @@ return { [1]="display_passive_attribute_text" } }, - [6213]={ + [6214]={ [1]={ [1]={ limit={ @@ -135807,7 +135823,7 @@ return { [1]="display_stat_coming_soon" } }, - [6214]={ + [6215]={ [1]={ [1]={ limit={ @@ -135823,7 +135839,7 @@ return { [1]="display_strongbox_drops_additional_shaper_or_elder_cards" } }, - [6215]={ + [6216]={ [1]={ [1]={ limit={ @@ -135861,7 +135877,7 @@ return { [1]="distance_scaled_accuracy_rating_penalty_+%" } }, - [6216]={ + [6217]={ [1]={ [1]={ limit={ @@ -135890,7 +135906,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [6217]={ + [6218]={ [1]={ [1]={ limit={ @@ -135919,7 +135935,7 @@ return { [1]="divine_tempest_damage_+%" } }, - [6218]={ + [6219]={ [1]={ [1]={ limit={ @@ -135944,7 +135960,7 @@ return { [1]="divine_tempest_number_of_additional_nearby_enemies_to_zap" } }, - [6219]={ + [6220]={ [1]={ [1]={ [1]={ @@ -135977,7 +135993,7 @@ return { [1]="dodge_roll_base_travel_distance" } }, - [6220]={ + [6221]={ [1]={ [1]={ limit={ @@ -135993,7 +136009,7 @@ return { [1]="dodge_roll_can_avoid_all_damage" } }, - [6221]={ + [6222]={ [1]={ [1]={ limit={ @@ -136009,7 +136025,7 @@ return { [1]="dodge_roll_phasing_without_visual" } }, - [6222]={ + [6223]={ [1]={ [1]={ limit={ @@ -136025,7 +136041,7 @@ return { [1]="dodge_roll_speed_+%" } }, - [6223]={ + [6224]={ [1]={ [1]={ [1]={ @@ -136071,7 +136087,7 @@ return { [1]="dodge_roll_travel_distance_+_while_surrounded" } }, - [6224]={ + [6225]={ [1]={ [1]={ limit={ @@ -136100,7 +136116,7 @@ return { [1]="doedre_aura_damage_+%_final" } }, - [6225]={ + [6226]={ [1]={ [1]={ limit={ @@ -136116,7 +136132,7 @@ return { [1]="dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [6226]={ + [6227]={ [1]={ [1]={ limit={ @@ -136132,7 +136148,7 @@ return { [1]="dot_multiplier_+_if_crit_in_past_8_seconds" } }, - [6227]={ + [6228]={ [1]={ [1]={ limit={ @@ -136148,7 +136164,7 @@ return { [1]="dot_multiplier_+_while_affected_by_malevolence" } }, - [6228]={ + [6229]={ [1]={ [1]={ limit={ @@ -136164,7 +136180,7 @@ return { [1]="dot_multiplier_+_with_bow_skills" } }, - [6229]={ + [6230]={ [1]={ [1]={ limit={ @@ -136189,7 +136205,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [6230]={ + [6231]={ [1]={ [1]={ limit={ @@ -136205,7 +136221,7 @@ return { [1]="double_armour_effect" } }, - [6231]={ + [6232]={ [1]={ [1]={ limit={ @@ -136221,7 +136237,7 @@ return { [1]="double_damage_chance_%_if_below_100_strength" } }, - [6232]={ + [6233]={ [1]={ [1]={ limit={ @@ -136237,7 +136253,7 @@ return { [1]="double_damage_%_chance_while_wielding_mace_sceptre_staff" } }, - [6233]={ + [6234]={ [1]={ [1]={ limit={ @@ -136253,7 +136269,7 @@ return { [1]="double_effect_of_consuming_frenzy_charges" } }, - [6234]={ + [6235]={ [1]={ [1]={ limit={ @@ -136269,7 +136285,7 @@ return { [1]="double_evasion_rating_from_gloves_helmets_boots" } }, - [6235]={ + [6236]={ [1]={ [1]={ limit={ @@ -136285,7 +136301,7 @@ return { [1]="double_evasion_rating_if_you_havent_been_hit_recently" } }, - [6236]={ + [6237]={ [1]={ [1]={ limit={ @@ -136301,7 +136317,7 @@ return { [1]="double_number_of_poison_you_can_inflict" } }, - [6237]={ + [6238]={ [1]={ [1]={ limit={ @@ -136322,7 +136338,7 @@ return { [2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6238]={ + [6239]={ [1]={ [1]={ limit={ @@ -136338,7 +136354,7 @@ return { [1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [6239]={ + [6240]={ [1]={ [1]={ limit={ @@ -136354,7 +136370,7 @@ return { [1]="drain_%_max_mana_to_activate_expended_charms" } }, - [6240]={ + [6241]={ [1]={ [1]={ limit={ @@ -136370,7 +136386,7 @@ return { [1]="drain_focus_%_of_damage_dealt_on_hit" } }, - [6241]={ + [6242]={ [1]={ [1]={ limit={ @@ -136386,7 +136402,7 @@ return { [1]="drain_x_flask_charges_over_time_on_hit_for_6_seconds" } }, - [6242]={ + [6243]={ [1]={ [1]={ limit={ @@ -136415,7 +136431,7 @@ return { [1]="dread_banner_aura_effect_+%" } }, - [6243]={ + [6244]={ [1]={ [1]={ limit={ @@ -136431,7 +136447,7 @@ return { [1]="dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner" } }, - [6244]={ + [6245]={ [1]={ [1]={ [1]={ @@ -136451,7 +136467,7 @@ return { [1]="dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50" } }, - [6245]={ + [6246]={ [1]={ [1]={ limit={ @@ -136480,7 +136496,7 @@ return { [1]="dread_banner_mana_reservation_efficiency_+%" } }, - [6246]={ + [6247]={ [1]={ [1]={ limit={ @@ -136509,7 +136525,7 @@ return { [1]="dual_strike_accuracy_rating_+%_while_wielding_sword" } }, - [6247]={ + [6248]={ [1]={ [1]={ limit={ @@ -136538,7 +136554,7 @@ return { [1]="dual_strike_attack_speed_+%_while_wielding_claw" } }, - [6248]={ + [6249]={ [1]={ [1]={ limit={ @@ -136554,7 +136570,7 @@ return { [1]="dual_strike_critical_strike_multiplier_+_while_wielding_dagger" } }, - [6249]={ + [6250]={ [1]={ [1]={ limit={ @@ -136570,7 +136586,7 @@ return { [1]="dual_strike_intimidate_on_hit_while_wielding_axe" } }, - [6250]={ + [6251]={ [1]={ [1]={ limit={ @@ -136595,7 +136611,7 @@ return { [1]="dual_strike_main_hand_deals_double_damage_%" } }, - [6251]={ + [6252]={ [1]={ [1]={ limit={ @@ -136611,7 +136627,7 @@ return { [1]="dual_strike_melee_splash_while_wielding_mace" } }, - [6252]={ + [6253]={ [1]={ [1]={ limit={ @@ -136627,7 +136643,7 @@ return { [1]="dual_strike_melee_splash_with_off_hand_weapon" } }, - [6253]={ + [6254]={ [1]={ [1]={ limit={ @@ -136643,7 +136659,7 @@ return { [1]="dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws" } }, - [6254]={ + [6255]={ [1]={ [1]={ limit={ @@ -136659,7 +136675,23 @@ return { [1]="dummy_display_defeating_arbiter_will_allow_completion_of_a_section_of_fortress" } }, - [6255]={ + [6256]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="DNT Obliterated #233763" + } + }, + stats={ + [1]="dummy_display_is_obliterated" + } + }, + [6257]={ [1]={ [1]={ limit={ @@ -136675,7 +136707,7 @@ return { [1]="dummy_display_stat_active" } }, - [6256]={ + [6258]={ [1]={ [1]={ limit={ @@ -136691,7 +136723,7 @@ return { [1]="dummy_display_stat_inactive" } }, - [6257]={ + [6259]={ [1]={ [1]={ limit={ @@ -136707,7 +136739,7 @@ return { [1]="dummy_display_stat_rune_chaos_convert" } }, - [6258]={ + [6260]={ [1]={ [1]={ limit={ @@ -136723,7 +136755,7 @@ return { [1]="dummy_display_stat_rune_cold_convert" } }, - [6259]={ + [6261]={ [1]={ [1]={ limit={ @@ -136739,7 +136771,7 @@ return { [1]="dummy_display_stat_rune_create_jewel_socket" } }, - [6260]={ + [6262]={ [1]={ [1]={ limit={ @@ -136755,7 +136787,7 @@ return { [1]="dummy_display_stat_rune_delevel_inherent_skill" } }, - [6261]={ + [6263]={ [1]={ [1]={ limit={ @@ -136771,7 +136803,7 @@ return { [1]="dummy_display_stat_rune_fire_convert" } }, - [6262]={ + [6264]={ [1]={ [1]={ limit={ @@ -136787,7 +136819,7 @@ return { [1]="dummy_display_stat_rune_lightning_convert" } }, - [6263]={ + [6265]={ [1]={ [1]={ limit={ @@ -136803,7 +136835,7 @@ return { [1]="dummy_display_stat_rune_olroths_legacy" } }, - [6264]={ + [6266]={ [1]={ [1]={ limit={ @@ -136819,7 +136851,7 @@ return { [1]="dummy_display_stat_rune_reforge" } }, - [6265]={ + [6267]={ [1]={ [1]={ limit={ @@ -136835,7 +136867,7 @@ return { [1]="dummy_display_stat_rune_upgrade" } }, - [6266]={ + [6268]={ [1]={ [1]={ limit={ @@ -136851,7 +136883,7 @@ return { [1]="dummy_stat_zarokhs_gift_jewel_slot" } }, - [6267]={ + [6269]={ [1]={ [1]={ limit={ @@ -136880,7 +136912,7 @@ return { [1]="duration_of_ailments_on_self_+%_per_fortification" } }, - [6268]={ + [6270]={ [1]={ [1]={ limit={ @@ -136896,7 +136928,7 @@ return { [1]="each_arrow_fired_gains_random_perdandus_prefix" } }, - [6269]={ + [6271]={ [1]={ [1]={ limit={ @@ -136912,7 +136944,7 @@ return { [1]="earthquake_and_earthshatter_shatter_on_killing_blow" } }, - [6270]={ + [6272]={ [1]={ [1]={ limit={ @@ -136941,7 +136973,7 @@ return { [1]="earthquake_damage_+%_per_100ms_duration" } }, - [6271]={ + [6273]={ [1]={ [1]={ limit={ @@ -136970,7 +137002,7 @@ return { [1]="earthshatter_area_of_effect_+%" } }, - [6272]={ + [6274]={ [1]={ [1]={ limit={ @@ -136999,7 +137031,7 @@ return { [1]="earthshatter_damage_+%" } }, - [6273]={ + [6275]={ [1]={ [1]={ limit={ @@ -137028,7 +137060,7 @@ return { [1]="echoed_spell_area_of_effect_+%" } }, - [6274]={ + [6276]={ [1]={ [1]={ limit={ @@ -137057,7 +137089,7 @@ return { [1]="electrocuted_enemy_damage_taken_+%" } }, - [6275]={ + [6277]={ [1]={ [1]={ limit={ @@ -137086,7 +137118,7 @@ return { [1]="elemental_ailment_chance_+%" } }, - [6276]={ + [6278]={ [1]={ [1]={ limit={ @@ -137115,7 +137147,7 @@ return { [1]="elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently" } }, - [6277]={ + [6279]={ [1]={ [1]={ limit={ @@ -137144,7 +137176,7 @@ return { [1]="elemental_ailment_duration_on_self_+%_while_holding_shield" } }, - [6278]={ + [6280]={ [1]={ [1]={ limit={ @@ -137173,7 +137205,7 @@ return { [1]="elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed" } }, - [6279]={ + [6281]={ [1]={ [1]={ limit={ @@ -137202,7 +137234,7 @@ return { [1]="elemental_ailment_types_apply_damage_taken_+%" } }, - [6280]={ + [6282]={ [1]={ [1]={ limit={ @@ -137218,7 +137250,7 @@ return { [1]="elemental_ailments_reflected_to_self" } }, - [6281]={ + [6283]={ [1]={ [1]={ limit={ @@ -137247,7 +137279,7 @@ return { [1]="elemental_damage_+%_while_shapeshifted" } }, - [6282]={ + [6284]={ [1]={ [1]={ limit={ @@ -137263,7 +137295,7 @@ return { [1]="elemental_damage_additional_rolls_lucky_shocked" } }, - [6283]={ + [6285]={ [1]={ [1]={ limit={ @@ -137292,7 +137324,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [6284]={ + [6286]={ [1]={ [1]={ limit={ @@ -137321,7 +137353,7 @@ return { [1]="elemental_damage_+%_if_cursed_enemy_killed_recently" } }, - [6285]={ + [6287]={ [1]={ [1]={ limit={ @@ -137350,7 +137382,7 @@ return { [1]="elemental_damage_+%_if_enemy_chilled_recently" } }, - [6286]={ + [6288]={ [1]={ [1]={ limit={ @@ -137379,7 +137411,7 @@ return { [1]="elemental_damage_+%_if_enemy_ignited_recently" } }, - [6287]={ + [6289]={ [1]={ [1]={ limit={ @@ -137408,7 +137440,7 @@ return { [1]="elemental_damage_+%_if_enemy_shocked_recently" } }, - [6288]={ + [6290]={ [1]={ [1]={ limit={ @@ -137437,7 +137469,7 @@ return { [1]="elemental_damage_+%_if_have_crit_recently" } }, - [6289]={ + [6291]={ [1]={ [1]={ limit={ @@ -137453,7 +137485,7 @@ return { [1]="elemental_damage_+%_if_used_a_warcry_recently" } }, - [6290]={ + [6292]={ [1]={ [1]={ limit={ @@ -137482,7 +137514,7 @@ return { [1]="elemental_damage_+%_per_10_devotion" } }, - [6291]={ + [6293]={ [1]={ [1]={ limit={ @@ -137511,7 +137543,7 @@ return { [1]="elemental_damage_+%_per_10_dexterity" } }, - [6292]={ + [6294]={ [1]={ [1]={ limit={ @@ -137540,7 +137572,7 @@ return { [1]="elemental_damage_+%_per_12_int" } }, - [6293]={ + [6295]={ [1]={ [1]={ limit={ @@ -137569,7 +137601,7 @@ return { [1]="elemental_damage_+%_per_12_strength" } }, - [6294]={ + [6296]={ [1]={ [1]={ limit={ @@ -137598,7 +137630,7 @@ return { [1]="elemental_damage_+%_per_power_charge" } }, - [6295]={ + [6297]={ [1]={ [1]={ limit={ @@ -137627,7 +137659,7 @@ return { [1]="elemental_damage_+%_per_sextant_affecting_area" } }, - [6296]={ + [6298]={ [1]={ [1]={ limit={ @@ -137656,7 +137688,7 @@ return { [1]="elemental_damage_+%_while_affected_by_a_herald" } }, - [6297]={ + [6299]={ [1]={ [1]={ limit={ @@ -137685,7 +137717,7 @@ return { [1]="elemental_damage_+%_while_in_area_affected_by_sextant" } }, - [6298]={ + [6300]={ [1]={ [1]={ limit={ @@ -137710,7 +137742,7 @@ return { [1]="elemental_damage_reduction_%_from_evasion_rating" } }, - [6299]={ + [6301]={ [1]={ [1]={ limit={ @@ -137743,7 +137775,7 @@ return { [1]="elemental_damage_resistance_+%" } }, - [6300]={ + [6302]={ [1]={ [1]={ limit={ @@ -137759,7 +137791,7 @@ return { [1]="elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [6301]={ + [6303]={ [1]={ [1]={ limit={ @@ -137775,7 +137807,7 @@ return { [1]="elemental_damage_taken_%_recouped_as_life" } }, - [6302]={ + [6304]={ [1]={ [1]={ limit={ @@ -137804,7 +137836,7 @@ return { [1]="elemental_damage_taken_+%_final_per_raised_zombie" } }, - [6303]={ + [6305]={ [1]={ [1]={ limit={ @@ -137837,7 +137869,7 @@ return { [1]="elemental_damage_taken_from_hits_+%_per_endurance_charge" } }, - [6304]={ + [6306]={ [1]={ [1]={ limit={ @@ -137866,7 +137898,7 @@ return { [1]="elemental_damage_taken_+%_if_been_hit_recently" } }, - [6305]={ + [6307]={ [1]={ [1]={ limit={ @@ -137895,7 +137927,7 @@ return { [1]="elemental_damage_taken_+%_if_not_hit_recently" } }, - [6306]={ + [6308]={ [1]={ [1]={ limit={ @@ -137924,7 +137956,7 @@ return { [1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge" } }, - [6307]={ + [6309]={ [1]={ [1]={ limit={ @@ -137953,7 +137985,7 @@ return { [1]="elemental_damage_taken_+%_per_endurance_charge" } }, - [6308]={ + [6310]={ [1]={ [1]={ limit={ @@ -137986,7 +138018,7 @@ return { [1]="elemental_damage_taken_+%_while_stationary" } }, - [6309]={ + [6311]={ [1]={ [1]={ limit={ @@ -138015,7 +138047,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_per_power_charge" } }, - [6310]={ + [6312]={ [1]={ [1]={ limit={ @@ -138031,7 +138063,7 @@ return { [1]="elemental_golems_maximum_life_is_doubled" } }, - [6311]={ + [6313]={ [1]={ [1]={ limit={ @@ -138056,7 +138088,7 @@ return { [1]="elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%" } }, - [6312]={ + [6314]={ [1]={ [1]={ limit={ @@ -138072,7 +138104,7 @@ return { [1]="elemental_hit_cannot_roll_cold_damage" } }, - [6313]={ + [6315]={ [1]={ [1]={ limit={ @@ -138088,7 +138120,7 @@ return { [1]="elemental_hit_cannot_roll_fire_damage" } }, - [6314]={ + [6316]={ [1]={ [1]={ limit={ @@ -138104,7 +138136,7 @@ return { [1]="elemental_hit_cannot_roll_lightning_damage" } }, - [6315]={ + [6317]={ [1]={ [1]={ limit={ @@ -138120,7 +138152,7 @@ return { [1]="elemental_hit_deals_50%_less_cold_damage" } }, - [6316]={ + [6318]={ [1]={ [1]={ limit={ @@ -138136,7 +138168,7 @@ return { [1]="elemental_hit_deals_50%_less_fire_damage" } }, - [6317]={ + [6319]={ [1]={ [1]={ limit={ @@ -138152,7 +138184,7 @@ return { [1]="elemental_hit_deals_50%_less_lightning_damage" } }, - [6318]={ + [6320]={ [1]={ [1]={ limit={ @@ -138168,7 +138200,7 @@ return { [1]="elemental_penetration_can_go_down_to_override" } }, - [6319]={ + [6321]={ [1]={ [1]={ limit={ @@ -138184,7 +138216,7 @@ return { [1]="elemental_penetration_%_if_you_have_a_power_charge" } }, - [6320]={ + [6322]={ [1]={ [1]={ limit={ @@ -138200,7 +138232,7 @@ return { [1]="elemental_penetration_%_while_chilled" } }, - [6321]={ + [6323]={ [1]={ [1]={ limit={ @@ -138233,7 +138265,7 @@ return { [1]="elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%" } }, - [6322]={ + [6324]={ [1]={ [1]={ limit={ @@ -138266,7 +138298,7 @@ return { [1]="elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements" } }, - [6323]={ + [6325]={ [1]={ [1]={ limit={ @@ -138282,7 +138314,7 @@ return { [1]="elemental_resistance_%_per_minion_up_to_30%" } }, - [6324]={ + [6326]={ [1]={ [1]={ limit={ @@ -138298,7 +138330,7 @@ return { [1]="elemental_resistance_cannot_be_lowered_by_curses" } }, - [6325]={ + [6327]={ [1]={ [1]={ limit={ @@ -138314,7 +138346,7 @@ return { [1]="elemental_resistance_%_per_10_devotion" } }, - [6326]={ + [6328]={ [1]={ [1]={ limit={ @@ -138330,7 +138362,7 @@ return { [1]="elemental_resistances_are_limited_by_highest_maximum_elemental_resistance" } }, - [6327]={ + [6329]={ [1]={ [1]={ limit={ @@ -138346,7 +138378,7 @@ return { [1]="elemental_skill_chance_to_blind_nearby_enemies_%" } }, - [6328]={ + [6330]={ [1]={ [1]={ limit={ @@ -138362,7 +138394,7 @@ return { [1]="elemental_skill_limit_+" } }, - [6329]={ + [6331]={ [1]={ [1]={ limit={ @@ -138378,7 +138410,7 @@ return { [1]="elemental_skills_deal_triple_damage" } }, - [6330]={ + [6332]={ [1]={ [1]={ limit={ @@ -138407,7 +138439,7 @@ return { [1]="elemental_storm_cooldown_recovery_speed_+%_final" } }, - [6331]={ + [6333]={ [1]={ [1]={ limit={ @@ -138436,7 +138468,7 @@ return { [1]="elemental_sundering_damage_+%_final_if_created_from_unique" } }, - [6332]={ + [6334]={ [1]={ [1]={ limit={ @@ -138452,7 +138484,7 @@ return { [1]="elemental_weakness_no_reservation" } }, - [6333]={ + [6335]={ [1]={ [1]={ limit={ @@ -138481,7 +138513,7 @@ return { [1]="elementalist_area_of_effect_+%_for_5_seconds" } }, - [6334]={ + [6336]={ [1]={ [1]={ limit={ @@ -138497,7 +138529,7 @@ return { [1]="elementalist_chill_maximum_magnitude_override" } }, - [6335]={ + [6337]={ [1]={ [1]={ limit={ @@ -138526,7 +138558,7 @@ return { [1]="elementalist_elemental_damage_+%_for_5_seconds" } }, - [6336]={ + [6338]={ [1]={ [1]={ limit={ @@ -138542,7 +138574,7 @@ return { [1]="elementalist_gain_shaper_of_desolation_every_10_seconds" } }, - [6337]={ + [6339]={ [1]={ [1]={ limit={ @@ -138571,7 +138603,7 @@ return { [1]="elementalist_ignite_effect_+%_final" } }, - [6338]={ + [6340]={ [1]={ [1]={ limit={ @@ -138600,7 +138632,7 @@ return { [1]="elusive_effect_+%" } }, - [6339]={ + [6341]={ [1]={ [1]={ limit={ @@ -138629,7 +138661,7 @@ return { [1]="ember_projectile_spread_area_+%" } }, - [6340]={ + [6342]={ [1]={ [1]={ limit={ @@ -138658,7 +138690,7 @@ return { [1]="empowered_attack_damage_+%_per_10_tribute" } }, - [6341]={ + [6343]={ [1]={ [1]={ limit={ @@ -138687,7 +138719,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [6342]={ + [6344]={ [1]={ [1]={ limit={ @@ -138703,7 +138735,7 @@ return { [1]="empowered_attack_double_damage_%_chance" } }, - [6343]={ + [6345]={ [1]={ [1]={ limit={ @@ -138732,7 +138764,7 @@ return { [1]="empowered_attack_hit_damage_stun_multiplier_+%" } }, - [6344]={ + [6346]={ [1]={ [1]={ limit={ @@ -138748,7 +138780,7 @@ return { [1]="empowered_attack_physical_damage_%_to_gain_as_fire" } }, - [6345]={ + [6347]={ [1]={ [1]={ limit={ @@ -138764,7 +138796,7 @@ return { [1]="enable_chakras" } }, - [6346]={ + [6348]={ [1]={ [1]={ limit={ @@ -138780,7 +138812,7 @@ return { [1]="enable_ring_slot_3" } }, - [6347]={ + [6349]={ [1]={ [1]={ limit={ @@ -138809,7 +138841,7 @@ return { [1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently" } }, - [6348]={ + [6350]={ [1]={ [1]={ limit={ @@ -138825,7 +138857,7 @@ return { [1]="endurance_charge_on_hit_%_vs_no_armour" } }, - [6349]={ + [6351]={ [1]={ [1]={ limit={ @@ -138841,7 +138873,7 @@ return { [1]="endurance_charge_on_kill_percent_chance_while_holding_shield" } }, - [6350]={ + [6352]={ [1]={ [1]={ limit={ @@ -138870,7 +138902,7 @@ return { [1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" } }, - [6351]={ + [6353]={ [1]={ [1]={ limit={ @@ -138895,7 +138927,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [6352]={ + [6354]={ [1]={ [1]={ limit={ @@ -138924,7 +138956,7 @@ return { [1]="enemies_affected_by_your_hazards_recently_have_+%_armour" } }, - [6353]={ + [6355]={ [1]={ [1]={ limit={ @@ -138953,7 +138985,7 @@ return { [1]="enemies_affected_by_your_hazards_recently_have_+%_evasion_rating" } }, - [6354]={ + [6356]={ [1]={ [1]={ limit={ @@ -138978,7 +139010,7 @@ return { [1]="enemies_are_maimed_for_x_seconds_after_becoming_unpinned" } }, - [6355]={ + [6357]={ [1]={ [1]={ limit={ @@ -138994,7 +139026,7 @@ return { [1]="enemies_blinded_by_you_while_blinded_have_malediction" } }, - [6356]={ + [6358]={ [1]={ [1]={ limit={ @@ -139010,7 +139042,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [6357]={ + [6359]={ [1]={ [1]={ limit={ @@ -139026,7 +139058,7 @@ return { [1]="enemies_chilled_by_hits_take_damage_increased_by_chill_effect" } }, - [6358]={ + [6360]={ [1]={ [1]={ limit={ @@ -139055,7 +139087,7 @@ return { [1]="enemies_cursed_by_you_have_life_regeneration_rate_+%" } }, - [6359]={ + [6361]={ [1]={ [1]={ limit={ @@ -139071,7 +139103,7 @@ return { [1]="enemies_dying_while_afflicted_by_abyssal_wasting_have_x%_chance_to_explode_on_death_for_10%_of_maximum_life" } }, - [6360]={ + [6362]={ [1]={ [1]={ limit={ @@ -139087,7 +139119,7 @@ return { [1]="enemies_explode_for_%_life_as_physical_damage" } }, - [6361]={ + [6363]={ [1]={ [1]={ limit={ @@ -139103,7 +139135,7 @@ return { [1]="enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage" } }, - [6362]={ + [6364]={ [1]={ [1]={ limit={ @@ -139119,7 +139151,7 @@ return { [1]="enemies_explode_on_kill" } }, - [6363]={ + [6365]={ [1]={ [1]={ limit={ @@ -139135,7 +139167,7 @@ return { [1]="enemies_explode_on_kill_while_unhinged" } }, - [6364]={ + [6366]={ [1]={ [1]={ limit={ @@ -139160,7 +139192,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage" } }, - [6365]={ + [6367]={ [1]={ [1]={ limit={ @@ -139185,7 +139217,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked" } }, - [6366]={ + [6368]={ [1]={ [1]={ limit={ @@ -139210,7 +139242,7 @@ return { [1]="enemies_extra_damage_rolls_with_physical_damage" } }, - [6367]={ + [6369]={ [1]={ [1]={ limit={ @@ -139235,7 +139267,7 @@ return { [1]="enemies_hitting_you_drop_burning_ground_%" } }, - [6368]={ + [6370]={ [1]={ [1]={ limit={ @@ -139260,7 +139292,7 @@ return { [1]="enemies_hitting_you_drop_chilled_ground_%" } }, - [6369]={ + [6371]={ [1]={ [1]={ limit={ @@ -139285,7 +139317,7 @@ return { [1]="enemies_hitting_you_drop_shocked_ground_%" } }, - [6370]={ + [6372]={ [1]={ [1]={ limit={ @@ -139301,7 +139333,7 @@ return { [1]="enemies_ignited_by_you_have_physical_damage_%_converted_to_fire" } }, - [6371]={ + [6373]={ [1]={ [1]={ limit={ @@ -139317,7 +139349,7 @@ return { [1]="enemies_in_chilled_ground_take_+%_fire_damage" } }, - [6372]={ + [6374]={ [1]={ [1]={ limit={ @@ -139333,7 +139365,7 @@ return { [1]="enemies_in_ignited_ground_take_+%_cold_damage" } }, - [6373]={ + [6375]={ [1]={ [1]={ limit={ @@ -139349,7 +139381,7 @@ return { [1]="enemies_in_presence_are_blinded" } }, - [6374]={ + [6376]={ [1]={ [1]={ limit={ @@ -139365,7 +139397,7 @@ return { [1]="enemies_in_presence_are_blinded_by_the_wendigo" } }, - [6375]={ + [6377]={ [1]={ [1]={ limit={ @@ -139381,7 +139413,7 @@ return { [1]="enemies_in_presence_are_intimidated" } }, - [6376]={ + [6378]={ [1]={ [1]={ limit={ @@ -139410,7 +139442,7 @@ return { [1]="enemies_in_presence_cooldown_recovery_+%" } }, - [6377]={ + [6379]={ [1]={ [1]={ limit={ @@ -139426,7 +139458,7 @@ return { [1]="enemies_in_presence_count_as_low_life" } }, - [6378]={ + [6380]={ [1]={ [1]={ limit={ @@ -139442,7 +139474,7 @@ return { [1]="enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [6379]={ + [6381]={ [1]={ [1]={ limit={ @@ -139458,7 +139490,7 @@ return { [1]="enemies_in_your_presence_gain_a_stack_of_gruelling_madness_every_second" } }, - [6380]={ + [6382]={ [1]={ [1]={ limit={ @@ -139483,7 +139515,7 @@ return { [1]="enemies_in_presence_gain_critical_weakness_every_second_for_seconds" } }, - [6381]={ + [6383]={ [1]={ [1]={ limit={ @@ -139499,7 +139531,7 @@ return { [1]="enemies_in_presence_have_exposure" } }, - [6382]={ + [6384]={ [1]={ [1]={ limit={ @@ -139515,7 +139547,7 @@ return { [1]="enemies_in_presence_have_fire_resistance_%" } }, - [6383]={ + [6385]={ [1]={ [1]={ limit={ @@ -139531,7 +139563,7 @@ return { [1]="enemies_in_presence_have_no_elemental_resistances" } }, - [6384]={ + [6386]={ [1]={ [1]={ limit={ @@ -139560,7 +139592,7 @@ return { [1]="enemies_in_presence_life_regeneration_+%" } }, - [6385]={ + [6387]={ [1]={ [1]={ limit={ @@ -139576,7 +139608,7 @@ return { [1]="enemies_in_presence_lightning_resist_equal_to_yours" } }, - [6386]={ + [6388]={ [1]={ [1]={ limit={ @@ -139592,7 +139624,7 @@ return { [1]="enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos" } }, - [6387]={ + [6389]={ [1]={ [1]={ limit={ @@ -139608,7 +139640,7 @@ return { [1]="enemies_in_your_presence_with_abyssal_wasting_have_doubled_power" } }, - [6388]={ + [6390]={ [1]={ [1]={ limit={ @@ -139624,7 +139656,7 @@ return { [1]="enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted" } }, - [6389]={ + [6391]={ [1]={ [1]={ limit={ @@ -139649,7 +139681,7 @@ return { [1]="enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance" } }, - [6390]={ + [6392]={ [1]={ [1]={ limit={ @@ -139665,7 +139697,7 @@ return { [1]="enemies_killed_while_afflicted_by_abyssal_wasting_grant_+%_flask_charges" } }, - [6391]={ + [6393]={ [1]={ [1]={ limit={ @@ -139681,7 +139713,7 @@ return { [1]="enemies_killed_while_afflicted_by_abyssal_wasting_grant_x_rage" } }, - [6392]={ + [6394]={ [1]={ [1]={ limit={ @@ -139697,7 +139729,7 @@ return { [1]="enemies_killed_while_afflicted_by_abyssal_wasting_grant_x_volatility" } }, - [6393]={ + [6395]={ [1]={ [1]={ limit={ @@ -139713,7 +139745,7 @@ return { [1]="enemies_killed_while_afflicted_by_abyssal_wasting_have_%_chance_to_grant_you_onslaught_for_3_seconds" } }, - [6394]={ + [6396]={ [1]={ [1]={ limit={ @@ -139729,7 +139761,7 @@ return { [1]="enemies_killed_while_afflicted_by_abyssal_wasting_have_%_chance_to_revive_a_minion" } }, - [6395]={ + [6397]={ [1]={ [1]={ limit={ @@ -139745,7 +139777,7 @@ return { [1]="enemies_near_corpses_created_recently_are_shocked_and_chilled" } }, - [6396]={ + [6398]={ [1]={ [1]={ limit={ @@ -139761,7 +139793,7 @@ return { [1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage" } }, - [6397]={ + [6399]={ [1]={ [1]={ limit={ @@ -139777,7 +139809,7 @@ return { [1]="enemies_near_link_skill_target_have_exposure" } }, - [6398]={ + [6400]={ [1]={ [1]={ limit={ @@ -139793,7 +139825,7 @@ return { [1]="enemies_near_marked_enemy_are_blinded" } }, - [6399]={ + [6401]={ [1]={ [1]={ limit={ @@ -139809,7 +139841,7 @@ return { [1]="enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning" } }, - [6400]={ + [6402]={ [1]={ [1]={ limit={ @@ -139834,7 +139866,7 @@ return { [1]="enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage" } }, - [6401]={ + [6403]={ [1]={ [1]={ limit={ @@ -139850,7 +139882,7 @@ return { [1]="enemies_taunted_by_you_cannot_evade_attacks" } }, - [6402]={ + [6404]={ [1]={ [1]={ limit={ @@ -139866,7 +139898,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [6403]={ + [6405]={ [1]={ [1]={ limit={ @@ -139882,7 +139914,7 @@ return { [1]="enemies_taunted_by_your_warcries_are_unnerved" } }, - [6404]={ + [6406]={ [1]={ [1]={ limit={ @@ -139898,7 +139930,7 @@ return { [1]="enemies_that_hit_you_inflict_temporal_chains" } }, - [6405]={ + [6407]={ [1]={ [1]={ limit={ @@ -139927,7 +139959,7 @@ return { [1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%" } }, - [6406]={ + [6408]={ [1]={ [1]={ limit={ @@ -139956,7 +139988,7 @@ return { [1]="enemies_you_blind_have_critical_strike_chance_+%" } }, - [6407]={ + [6409]={ [1]={ [1]={ limit={ @@ -139972,7 +140004,7 @@ return { [1]="enemies_you_blind_have_no_crit_bonus_for_x_seconds" } }, - [6408]={ + [6410]={ [1]={ [1]={ limit={ @@ -139988,7 +140020,7 @@ return { [1]="enemies_you_curse_are_intimidated" } }, - [6409]={ + [6411]={ [1]={ [1]={ limit={ @@ -140004,7 +140036,7 @@ return { [1]="enemies_you_curse_are_unnerved" } }, - [6410]={ + [6412]={ [1]={ [1]={ limit={ @@ -140020,7 +140052,7 @@ return { [1]="enemies_you_curse_cannot_recharge_energy_shield" } }, - [6411]={ + [6413]={ [1]={ [1]={ limit={ @@ -140036,7 +140068,7 @@ return { [1]="enemies_you_curse_have_15%_hinder" } }, - [6412]={ + [6414]={ [1]={ [1]={ limit={ @@ -140065,7 +140097,7 @@ return { [1]="enemies_you_expose_have_self_elemental_status_duration_+%" } }, - [6413]={ + [6415]={ [1]={ [1]={ limit={ @@ -140081,7 +140113,7 @@ return { [1]="enemies_you_heavy_stun_while_shapeshifted_are_intimidated_for_x_seconds" } }, - [6414]={ + [6416]={ [1]={ [1]={ limit={ @@ -140110,7 +140142,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [6415]={ + [6417]={ [1]={ [1]={ limit={ @@ -140126,7 +140158,7 @@ return { [1]="enemies_you_ignite_wither_does_not_expire" } }, - [6416]={ + [6418]={ [1]={ [1]={ limit={ @@ -140155,7 +140187,7 @@ return { [1]="enemies_you_intimidate_have_stun_duration_on_self_+%" } }, - [6417]={ + [6419]={ [1]={ [1]={ limit={ @@ -140184,7 +140216,7 @@ return { [1]="enemies_you_maim_have_damage_taken_over_time_+%" } }, - [6418]={ + [6420]={ [1]={ [1]={ limit={ @@ -140213,7 +140245,7 @@ return { [1]="enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self" } }, - [6419]={ + [6421]={ [1]={ [1]={ limit={ @@ -140229,7 +140261,7 @@ return { [1]="enemies_you_wither_have_all_resistances_%" } }, - [6420]={ + [6422]={ [1]={ [1]={ limit={ @@ -140262,7 +140294,7 @@ return { [1]="enemy_evasion_+%_if_you_have_hit_them_recently" } }, - [6421]={ + [6423]={ [1]={ [1]={ limit={ @@ -140291,7 +140323,7 @@ return { [1]="enemy_extra_damage_rolls_chance_%" } }, - [6422]={ + [6424]={ [1]={ [1]={ limit={ @@ -140320,7 +140352,7 @@ return { [1]="enemy_extra_damage_rolls_chance_%" } }, - [6423]={ + [6425]={ [1]={ [1]={ limit={ @@ -140349,7 +140381,7 @@ return { [1]="enemy_extra_damage_rolls_if_magic_ring_equipped" } }, - [6424]={ + [6426]={ [1]={ [1]={ limit={ @@ -140378,7 +140410,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_full_life" } }, - [6425]={ + [6427]={ [1]={ [1]={ limit={ @@ -140407,7 +140439,7 @@ return { [1]="enemy_hit_critical_strike_chance_+%_against_self_while_chilled" } }, - [6426]={ + [6428]={ [1]={ [1]={ limit={ @@ -140423,7 +140455,7 @@ return { [1]="enemy_hits_against_you_have_distance_based_accuracy_falloff" } }, - [6427]={ + [6429]={ [1]={ [1]={ limit={ @@ -140456,7 +140488,7 @@ return { [1]="enemy_life_regeneration_rate_+%_for_4_seconds_on_hit" } }, - [6428]={ + [6430]={ [1]={ [1]={ limit={ @@ -140485,7 +140517,7 @@ return { [1]="enemy_spell_critical_strike_chance_+%_against_self" } }, - [6429]={ + [6431]={ [1]={ [1]={ limit={ @@ -140514,7 +140546,7 @@ return { [1]="energy_generated_+%" } }, - [6430]={ + [6432]={ [1]={ [1]={ limit={ @@ -140543,7 +140575,7 @@ return { [1]="ascendancy_energy_generated_+%_final" } }, - [6431]={ + [6433]={ [1]={ [1]={ limit={ @@ -140572,7 +140604,7 @@ return { [1]="energy_generated_+%_if_crit_recently" } }, - [6432]={ + [6434]={ [1]={ [1]={ limit={ @@ -140601,7 +140633,7 @@ return { [1]="energy_generated_+%_on_full_mana" } }, - [6433]={ + [6435]={ [1]={ [1]={ limit={ @@ -140630,7 +140662,7 @@ return { [1]="energy_generated_+%_per_spell_crit_dealt_recently" } }, - [6434]={ + [6436]={ [1]={ [1]={ limit={ @@ -140646,7 +140678,7 @@ return { [1]="energy_generation_is_doubled" } }, - [6435]={ + [6437]={ [1]={ [1]={ limit={ @@ -140675,7 +140707,7 @@ return { [1]="energy_shield_+%_if_both_rings_have_evasion_mod" } }, - [6436]={ + [6438]={ [1]={ [1]={ limit={ @@ -140704,7 +140736,7 @@ return { [1]="energy_shield_+%_if_consumed_power_charge_recently" } }, - [6437]={ + [6439]={ [1]={ [1]={ limit={ @@ -140720,7 +140752,7 @@ return { [1]="energy_shield_+_per_8_evasion_on_boots" } }, - [6438]={ + [6440]={ [1]={ [1]={ limit={ @@ -140736,7 +140768,7 @@ return { [1]="energy_shield_+_per_8_helmet_armour" } }, - [6439]={ + [6441]={ [1]={ [1]={ limit={ @@ -140752,7 +140784,7 @@ return { [1]="energy_shield_cannot_be_converted" } }, - [6440]={ + [6442]={ [1]={ [1]={ limit={ @@ -140781,7 +140813,7 @@ return { [1]="energy_shield_delay_-%_if_stunned_recently" } }, - [6441]={ + [6443]={ [1]={ [1]={ limit={ @@ -140810,7 +140842,7 @@ return { [1]="energy_shield_delay_-%_when_not_on_full_life" } }, - [6442]={ + [6444]={ [1]={ [1]={ limit={ @@ -140839,7 +140871,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_archon" } }, - [6443]={ + [6445]={ [1]={ [1]={ limit={ @@ -140868,7 +140900,7 @@ return { [1]="energy_shield_delay_-%_while_shapeshifted" } }, - [6444]={ + [6446]={ [1]={ [1]={ limit={ @@ -140897,7 +140929,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_discipline" } }, - [6445]={ + [6447]={ [1]={ [1]={ limit={ @@ -140926,7 +140958,7 @@ return { [1]="energy_shield_from_focus_+%" } }, - [6446]={ + [6448]={ [1]={ [1]={ limit={ @@ -140955,7 +140987,7 @@ return { [1]="energy_shield_from_gloves_and_boots_+%" } }, - [6447]={ + [6449]={ [1]={ [1]={ limit={ @@ -140984,7 +141016,7 @@ return { [1]="energy_shield_from_helmet_+%" } }, - [6448]={ + [6450]={ [1]={ [1]={ limit={ @@ -141013,7 +141045,7 @@ return { [1]="energy_shield_gain_per_target_hit_while_affected_by_discipline" } }, - [6449]={ + [6451]={ [1]={ [1]={ limit={ @@ -141029,7 +141061,7 @@ return { [1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web" } }, - [6450]={ + [6452]={ [1]={ [1]={ limit={ @@ -141045,7 +141077,7 @@ return { [1]="energy_shield_increased_by_uncapped_cold_resistance" } }, - [6451]={ + [6453]={ [1]={ [1]={ [1]={ @@ -141065,7 +141097,7 @@ return { [1]="energy_shield_lost_per_minute_%" } }, - [6452]={ + [6454]={ [1]={ [1]={ limit={ @@ -141081,7 +141113,7 @@ return { [1]="energy_shield_per_level" } }, - [6453]={ + [6455]={ [1]={ [1]={ limit={ @@ -141097,7 +141129,7 @@ return { [1]="energy_shield_+%_per_10_strength" } }, - [6454]={ + [6456]={ [1]={ [1]={ limit={ @@ -141113,7 +141145,7 @@ return { [1]="energy_shield_+%_per_power_charge" } }, - [6455]={ + [6457]={ [1]={ [1]={ limit={ @@ -141142,7 +141174,7 @@ return { [1]="energy_shield_recharge_+%_if_amulet_has_evasion_mod" } }, - [6456]={ + [6458]={ [1]={ [1]={ [1]={ @@ -141175,7 +141207,7 @@ return { [1]="energy_shield_recharge_delay_override_ms" } }, - [6457]={ + [6459]={ [1]={ [1]={ limit={ @@ -141204,7 +141236,7 @@ return { [1]="energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently" } }, - [6458]={ + [6460]={ [1]={ [1]={ limit={ @@ -141233,7 +141265,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_25_tribute" } }, - [6459]={ + [6461]={ [1]={ [1]={ limit={ @@ -141262,7 +141294,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_4_dexterity" } }, - [6460]={ + [6462]={ [1]={ [1]={ limit={ @@ -141291,7 +141323,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_4_strength" } }, - [6461]={ + [6463]={ [1]={ [1]={ limit={ @@ -141307,7 +141339,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_X_maximum_ward" } }, - [6462]={ + [6464]={ [1]={ [1]={ limit={ @@ -141336,7 +141368,7 @@ return { [1]="energy_shield_recharge_rate_+%_while_affected_by_archon" } }, - [6463]={ + [6465]={ [1]={ [1]={ limit={ @@ -141365,7 +141397,7 @@ return { [1]="energy_shield_recharge_rate_+%_while_shapeshifted" } }, - [6464]={ + [6466]={ [1]={ [1]={ limit={ @@ -141394,7 +141426,7 @@ return { [1]="energy_shield_recharge_rate_+%_if_blocked_recently" } }, - [6465]={ + [6467]={ [1]={ [1]={ limit={ @@ -141410,7 +141442,7 @@ return { [1]="energy_shield_recharge_start_when_minions_reform" } }, - [6466]={ + [6468]={ [1]={ [1]={ limit={ @@ -141426,7 +141458,7 @@ return { [1]="energy_shield_recharge_start_when_stunned" } }, - [6467]={ + [6469]={ [1]={ [1]={ limit={ @@ -141442,7 +141474,7 @@ return { [1]="energy_shield_recharge_starts_after_spending_2000_mana_every_2_seconds" } }, - [6468]={ + [6470]={ [1]={ [1]={ limit={ @@ -141458,7 +141490,7 @@ return { [1]="energy_shield_recharges_on_kill_%" } }, - [6469]={ + [6471]={ [1]={ [1]={ limit={ @@ -141474,7 +141506,7 @@ return { [1]="energy_shield_recharges_on_skill_use_chance_%" } }, - [6470]={ + [6472]={ [1]={ [1]={ limit={ @@ -141503,7 +141535,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_havent_killed_recently" } }, - [6471]={ + [6473]={ [1]={ [1]={ limit={ @@ -141532,7 +141564,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_not_hit_recently" } }, - [6472]={ + [6474]={ [1]={ [1]={ limit={ @@ -141561,7 +141593,7 @@ return { [1]="energy_shield_recovery_rate_while_affected_by_discipline_+%" } }, - [6473]={ + [6475]={ [1]={ [1]={ [1]={ @@ -141581,7 +141613,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently" } }, - [6474]={ + [6476]={ [1]={ [1]={ [1]={ @@ -141601,7 +141633,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_killed_recently" } }, - [6475]={ + [6477]={ [1]={ [1]={ [1]={ @@ -141621,7 +141653,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby" } }, - [6476]={ + [6478]={ [1]={ [1]={ [1]={ @@ -141641,7 +141673,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_per_poison_stack" } }, - [6477]={ + [6479]={ [1]={ [1]={ [1]={ @@ -141661,7 +141693,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently" } }, - [6478]={ + [6480]={ [1]={ [1]={ [1]={ @@ -141681,7 +141713,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline" } }, - [6479]={ + [6481]={ [1]={ [1]={ [1]={ @@ -141701,7 +141733,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [6480]={ + [6482]={ [1]={ [1]={ limit={ @@ -141717,7 +141749,7 @@ return { [1]="energy_shield_regeneration_rate_per_second" } }, - [6481]={ + [6483]={ [1]={ [1]={ limit={ @@ -141746,7 +141778,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [6482]={ + [6484]={ [1]={ [1]={ limit={ @@ -141762,7 +141794,7 @@ return { [1]="enfeeble_no_reservation" } }, - [6483]={ + [6485]={ [1]={ [1]={ limit={ @@ -141791,7 +141823,7 @@ return { [1]="ensnaring_arrow_area_of_effect_+%" } }, - [6484]={ + [6486]={ [1]={ [1]={ limit={ @@ -141820,7 +141852,7 @@ return { [1]="ensnaring_arrow_debuff_effect_+%" } }, - [6485]={ + [6487]={ [1]={ [1]={ limit={ @@ -141836,7 +141868,7 @@ return { [1]="envy_reserves_no_mana" } }, - [6486]={ + [6488]={ [1]={ [1]={ limit={ @@ -141852,7 +141884,7 @@ return { [1]="ephemeral_edge_maximum_lightning_damage_from_es_%" } }, - [6487]={ + [6489]={ [1]={ [1]={ limit={ @@ -141877,7 +141909,7 @@ return { [1]="equipped_jewellery_effect_of_bonuses_+%" } }, - [6488]={ + [6490]={ [1]={ [1]={ limit={ @@ -141902,7 +141934,7 @@ return { [1]="equipped_ring1_effect_of_bonuses_+%" } }, - [6489]={ + [6491]={ [1]={ [1]={ limit={ @@ -141927,7 +141959,7 @@ return { [1]="equipped_ring2_effect_of_bonuses_+%" } }, - [6490]={ + [6492]={ [1]={ [1]={ limit={ @@ -141952,7 +141984,7 @@ return { [1]="equipped_rings_effect_of_bonuses_+%" } }, - [6491]={ + [6493]={ [1]={ [1]={ [1]={ @@ -141972,7 +142004,7 @@ return { [1]="es_regeneration_per_minute_%_while_stationary" } }, - [6492]={ + [6494]={ [1]={ [1]={ limit={ @@ -141988,7 +142020,7 @@ return { [1]="essence_abyss_guaranteed_pick" } }, - [6493]={ + [6495]={ [1]={ [1]={ limit={ @@ -142017,7 +142049,7 @@ return { [1]="essence_drain_soulrend_base_projectile_speed_+%" } }, - [6494]={ + [6496]={ [1]={ [1]={ limit={ @@ -142042,7 +142074,7 @@ return { [1]="essence_drain_soulrend_number_of_additional_projectiles" } }, - [6495]={ + [6497]={ [1]={ [1]={ limit={ @@ -142058,7 +142090,7 @@ return { [1]="essence_grants_additional_attributes" } }, - [6496]={ + [6498]={ [1]={ [1]={ limit={ @@ -142074,7 +142106,7 @@ return { [1]="essence_grants_additional_attributes_increase" } }, - [6497]={ + [6499]={ [1]={ [1]={ limit={ @@ -142103,7 +142135,7 @@ return { [1]="essence_grants_armour_evasion_energy_shield_+%" } }, - [6498]={ + [6500]={ [1]={ [1]={ [1]={ @@ -142154,7 +142186,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [6499]={ + [6501]={ [1]={ [1]={ limit={ @@ -142179,7 +142211,7 @@ return { [1]="ethereal_knives_number_of_additional_projectiles" } }, - [6500]={ + [6502]={ [1]={ [1]={ limit={ @@ -142204,7 +142236,7 @@ return { [1]="ethereal_knives_projectile_base_number_of_targets_to_pierce" } }, - [6501]={ + [6503]={ [1]={ [1]={ limit={ @@ -142220,7 +142252,7 @@ return { [1]="ethereal_knives_projectiles_nova" } }, - [6502]={ + [6504]={ [1]={ [1]={ limit={ @@ -142249,7 +142281,7 @@ return { [1]="evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds" } }, - [6503]={ + [6505]={ [1]={ [1]={ limit={ @@ -142278,7 +142310,7 @@ return { [1]="evasion_rating_+%_per_5_intelligence" } }, - [6504]={ + [6506]={ [1]={ [1]={ limit={ @@ -142294,7 +142326,7 @@ return { [1]="evasion_+%_per_10_intelligence" } }, - [6505]={ + [6507]={ [1]={ [1]={ limit={ @@ -142310,7 +142342,7 @@ return { [1]="evasion_rating_%_to_gain_as_ailment_threshold" } }, - [6506]={ + [6508]={ [1]={ [1]={ limit={ @@ -142326,7 +142358,7 @@ return { [1]="evasion_rating_+%_during_focus" } }, - [6507]={ + [6509]={ [1]={ [1]={ limit={ @@ -142355,7 +142387,7 @@ return { [1]="evasion_rating_+%_if_consumed_frenzy_charge_recently" } }, - [6508]={ + [6510]={ [1]={ [1]={ limit={ @@ -142384,7 +142416,7 @@ return { [1]="evasion_rating_+%_if_not_dodge_rolled_recently" } }, - [6509]={ + [6511]={ [1]={ [1]={ limit={ @@ -142413,7 +142445,7 @@ return { [1]="evasion_rating_+%_if_sprinting" } }, - [6510]={ + [6512]={ [1]={ [1]={ limit={ @@ -142442,7 +142474,7 @@ return { [1]="evasion_rating_+%_per_10_tribute" } }, - [6511]={ + [6513]={ [1]={ [1]={ limit={ @@ -142458,7 +142490,7 @@ return { [1]="evasion_rating_+%_per_500_maximum_mana_up_to_100%" } }, - [6512]={ + [6514]={ [1]={ [1]={ limit={ @@ -142474,7 +142506,7 @@ return { [1]="evasion_rating_+%_per_rage" } }, - [6513]={ + [6515]={ [1]={ [1]={ limit={ @@ -142503,7 +142535,7 @@ return { [1]="evasion_rating_+%_while_surrounded" } }, - [6514]={ + [6516]={ [1]={ [1]={ limit={ @@ -142519,7 +142551,7 @@ return { [1]="evasion_rating_+_per_1_armour_on_gloves" } }, - [6515]={ + [6517]={ [1]={ [1]={ limit={ @@ -142535,7 +142567,7 @@ return { [1]="evasion_rating_also_reduces_physical_damage" } }, - [6516]={ + [6518]={ [1]={ [1]={ limit={ @@ -142564,7 +142596,7 @@ return { [1]="evasion_rating_from_helmet_and_boots_+%" } }, - [6517]={ + [6519]={ [1]={ [1]={ limit={ @@ -142580,7 +142612,7 @@ return { [1]="evasion_rating_increased_by_overcapped_cold_resistance" } }, - [6518]={ + [6520]={ [1]={ [1]={ limit={ @@ -142596,7 +142628,7 @@ return { [1]="evasion_rating_increased_by_uncapped_lightning_resistance" } }, - [6519]={ + [6521]={ [1]={ [1]={ [1]={ @@ -142616,7 +142648,7 @@ return { [1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus" } }, - [6520]={ + [6522]={ [1]={ [1]={ limit={ @@ -142632,7 +142664,7 @@ return { [1]="evasion_rating_%_to_gain_as_armour" } }, - [6521]={ + [6523]={ [1]={ [1]={ limit={ @@ -142648,7 +142680,7 @@ return { [1]="evasion_rating_+_if_you_have_hit_an_enemy_recently" } }, - [6522]={ + [6524]={ [1]={ [1]={ limit={ @@ -142677,7 +142709,7 @@ return { [1]="evasion_rating_+_while_phasing" } }, - [6523]={ + [6525]={ [1]={ [1]={ limit={ @@ -142693,7 +142725,7 @@ return { [1]="evasion_rating_+_while_you_have_tailwind" } }, - [6524]={ + [6526]={ [1]={ [1]={ [1]={ @@ -142722,7 +142754,7 @@ return { [1]="evasion_rating_+%_if_have_not_been_hit_recently" } }, - [6525]={ + [6527]={ [1]={ [1]={ limit={ @@ -142751,7 +142783,7 @@ return { [1]="evasion_rating_+%_if_you_dodge_rolled_recently" } }, - [6526]={ + [6528]={ [1]={ [1]={ limit={ @@ -142780,7 +142812,7 @@ return { [1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently" } }, - [6527]={ + [6529]={ [1]={ [1]={ limit={ @@ -142809,7 +142841,7 @@ return { [1]="evasion_rating_+%_per_green_socket_on_main_hand_weapon" } }, - [6528]={ + [6530]={ [1]={ [1]={ limit={ @@ -142838,7 +142870,7 @@ return { [1]="evasion_rating_+%_when_on_full_life" } }, - [6529]={ + [6531]={ [1]={ [1]={ limit={ @@ -142867,7 +142899,7 @@ return { [1]="evasion_rating_+%_while_leeching" } }, - [6530]={ + [6532]={ [1]={ [1]={ limit={ @@ -142896,7 +142928,7 @@ return { [1]="evasion_rating_+%_while_moving" } }, - [6531]={ + [6533]={ [1]={ [1]={ limit={ @@ -142925,7 +142957,7 @@ return { [1]="evasion_rating_+%_while_you_have_energy_shield" } }, - [6532]={ + [6534]={ [1]={ [1]={ limit={ @@ -142941,7 +142973,7 @@ return { [1]="every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second" } }, - [6533]={ + [6535]={ [1]={ [1]={ limit={ @@ -142957,7 +142989,7 @@ return { [1]="excess_ward_regeneration_is_applied_to_mana" } }, - [6534]={ + [6536]={ [1]={ [1]={ limit={ @@ -142982,7 +143014,7 @@ return { [1]="exerted_attack_knockback_chance_%" } }, - [6535]={ + [6537]={ [1]={ [1]={ limit={ @@ -142998,7 +143030,7 @@ return { [1]="exerted_attacks_overwhelm_%_physical_damage_reduction" } }, - [6536]={ + [6538]={ [1]={ [1]={ limit={ @@ -143014,7 +143046,7 @@ return { [1]="expanding_fire_cone_additional_maximum_number_of_stages" } }, - [6537]={ + [6539]={ [1]={ [1]={ limit={ @@ -143043,7 +143075,7 @@ return { [1]="expanding_fire_cone_area_of_effect_+%" } }, - [6538]={ + [6540]={ [1]={ [1]={ limit={ @@ -143072,7 +143104,7 @@ return { [1]="expedition_chest_logbook_chance_%" } }, - [6539]={ + [6541]={ [1]={ [1]={ limit={ @@ -143097,7 +143129,7 @@ return { [1]="expedition_monsters_logbook_chance_+%" } }, - [6540]={ + [6542]={ [1]={ [1]={ limit={ @@ -143113,7 +143145,7 @@ return { [1]="explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [6541]={ + [6543]={ [1]={ [1]={ limit={ @@ -143160,7 +143192,7 @@ return { [2]="allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%" } }, - [6542]={ + [6544]={ [1]={ [1]={ limit={ @@ -143176,7 +143208,7 @@ return { [1]="explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%" } }, - [6543]={ + [6545]={ [1]={ [1]={ limit={ @@ -143192,7 +143224,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride" } }, - [6544]={ + [6546]={ [1]={ [1]={ limit={ @@ -143208,7 +143240,7 @@ return { [1]="explode_enemies_for_500%_life_as_fire_on_kill_%_chance" } }, - [6545]={ + [6547]={ [1]={ [1]={ limit={ @@ -143237,7 +143269,7 @@ return { [1]="explosive_arrow_duration_+%" } }, - [6546]={ + [6548]={ [1]={ [1]={ limit={ @@ -143266,7 +143298,7 @@ return { [1]="explosive_concoction_damage_+%" } }, - [6547]={ + [6549]={ [1]={ [1]={ limit={ @@ -143295,7 +143327,7 @@ return { [1]="explosive_concoction_flask_charges_consumed_+%" } }, - [6548]={ + [6550]={ [1]={ [1]={ limit={ @@ -143324,7 +143356,7 @@ return { [1]="explosive_concoction_skill_area_of_effect_+%" } }, - [6549]={ + [6551]={ [1]={ [1]={ limit={ @@ -143353,7 +143385,7 @@ return { [1]="exposure_effect_+%" } }, - [6550]={ + [6552]={ [1]={ [1]={ limit={ @@ -143382,7 +143414,7 @@ return { [1]="exposure_effect_+%_if_fire_cold_lightning_infusion" } }, - [6551]={ + [6553]={ [1]={ [1]={ limit={ @@ -143411,7 +143443,7 @@ return { [1]="exposure_effect_on_you_+%" } }, - [6552]={ + [6554]={ [1]={ [1]={ limit={ @@ -143440,7 +143472,7 @@ return { [1]="exposure_effect_+%" } }, - [6553]={ + [6555]={ [1]={ [1]={ limit={ @@ -143456,7 +143488,7 @@ return { [1]="exposure_you_inflict_lowers_affected_resistance_by_extra_%" } }, - [6554]={ + [6556]={ [1]={ [1]={ limit={ @@ -143472,7 +143504,7 @@ return { [1]="exsanguinate_additional_chain_chance_%" } }, - [6555]={ + [6557]={ [1]={ [1]={ limit={ @@ -143501,7 +143533,7 @@ return { [1]="exsanguinate_damage_+%" } }, - [6556]={ + [6558]={ [1]={ [1]={ limit={ @@ -143517,7 +143549,7 @@ return { [1]="exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [6557]={ + [6559]={ [1]={ [1]={ limit={ @@ -143546,7 +143578,7 @@ return { [1]="exsanguinate_duration_+%" } }, - [6558]={ + [6560]={ [1]={ [1]={ limit={ @@ -143562,7 +143594,7 @@ return { [1]="extinguish_on_hit_%_chance" } }, - [6559]={ + [6561]={ [1]={ [1]={ limit={ @@ -143587,7 +143619,7 @@ return { [1]="extra_critical_rolls_during_focus" } }, - [6560]={ + [6562]={ [1]={ [1]={ limit={ @@ -143612,7 +143644,7 @@ return { [1]="extra_critical_rolls_while_on_low_life" } }, - [6561]={ + [6563]={ [1]={ [1]={ limit={ @@ -143628,7 +143660,7 @@ return { [1]="extra_damage_rolls_with_lightning_damage_on_non_critical_hits" } }, - [6562]={ + [6564]={ [1]={ [1]={ limit={ @@ -143661,7 +143693,7 @@ return { [1]="extra_damage_taken_from_crit_+%_while_affected_by_determination" } }, - [6563]={ + [6565]={ [1]={ [1]={ limit={ @@ -143694,7 +143726,7 @@ return { [1]="extra_damage_taken_from_crit_while_no_power_charges_+%" } }, - [6564]={ + [6566]={ [1]={ [1]={ limit={ @@ -143710,7 +143742,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [6565]={ + [6567]={ [1]={ [1]={ limit={ @@ -143739,7 +143771,7 @@ return { [1]="eye_of_winter_damage_+%" } }, - [6566]={ + [6568]={ [1]={ [1]={ limit={ @@ -143768,7 +143800,7 @@ return { [1]="eye_of_winter_projectile_speed_+%" } }, - [6567]={ + [6569]={ [1]={ [1]={ limit={ @@ -143797,7 +143829,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [6568]={ + [6570]={ [1]={ [1]={ limit={ @@ -143813,7 +143845,7 @@ return { [1]="faster_bleed_per_frenzy_charge_%" } }, - [6569]={ + [6571]={ [1]={ [1]={ limit={ @@ -143829,7 +143861,7 @@ return { [1]="faster_bleed_%" } }, - [6570]={ + [6572]={ [1]={ [1]={ limit={ @@ -143845,7 +143877,7 @@ return { [1]="faster_poison_%" } }, - [6571]={ + [6573]={ [1]={ [1]={ limit={ @@ -143874,7 +143906,7 @@ return { [1]="fire_ailment_duration_+%" } }, - [6572]={ + [6574]={ [1]={ [1]={ limit={ @@ -143890,7 +143922,7 @@ return { [1]="fire_and_chaos_damage_resistance_%" } }, - [6573]={ + [6575]={ [1]={ [1]={ limit={ @@ -143915,7 +143947,7 @@ return { [1]="fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined" } }, - [6574]={ + [6576]={ [1]={ [1]={ limit={ @@ -143944,7 +143976,7 @@ return { [1]="fire_beam_cast_speed_+%" } }, - [6575]={ + [6577]={ [1]={ [1]={ limit={ @@ -143973,7 +144005,7 @@ return { [1]="fire_beam_damage_+%" } }, - [6576]={ + [6578]={ [1]={ [1]={ limit={ @@ -143989,7 +144021,7 @@ return { [1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill" } }, - [6577]={ + [6579]={ [1]={ [1]={ limit={ @@ -144005,7 +144037,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_at_max_stacks" } }, - [6578]={ + [6580]={ [1]={ [1]={ limit={ @@ -144021,7 +144053,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [6579]={ + [6581]={ [1]={ [1]={ limit={ @@ -144050,7 +144082,7 @@ return { [1]="fire_beam_length_+%" } }, - [6580]={ + [6582]={ [1]={ [1]={ limit={ @@ -144066,7 +144098,7 @@ return { [1]="fire_damage_+%_if_fire_infusion_collected_last_8_seconds" } }, - [6581]={ + [6583]={ [1]={ [1]={ limit={ @@ -144095,7 +144127,7 @@ return { [1]="fire_damage_+%_per_10%_armour_break" } }, - [6582]={ + [6584]={ [1]={ [1]={ limit={ @@ -144124,7 +144156,7 @@ return { [1]="fire_damage_+%_per_rage" } }, - [6583]={ + [6585]={ [1]={ [1]={ limit={ @@ -144140,7 +144172,7 @@ return { [1]="fire_damage_+%_while_ignited" } }, - [6584]={ + [6586]={ [1]={ [1]={ limit={ @@ -144156,7 +144188,7 @@ return { [1]="fire_damage_over_time_multiplier_+%_while_burning" } }, - [6585]={ + [6587]={ [1]={ [1]={ limit={ @@ -144185,7 +144217,7 @@ return { [1]="fire_damage_+%_if_you_have_been_hit_recently" } }, - [6586]={ + [6588]={ [1]={ [1]={ limit={ @@ -144214,7 +144246,7 @@ return { [1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently" } }, - [6587]={ + [6589]={ [1]={ [1]={ limit={ @@ -144243,7 +144275,7 @@ return { [1]="fire_damage_+%_per_20_strength" } }, - [6588]={ + [6590]={ [1]={ [1]={ limit={ @@ -144272,7 +144304,7 @@ return { [1]="fire_damage_+%_per_endurance_charge" } }, - [6589]={ + [6591]={ [1]={ [1]={ limit={ @@ -144301,7 +144333,7 @@ return { [1]="fire_damage_+%_per_missing_fire_resistance" } }, - [6590]={ + [6592]={ [1]={ [1]={ limit={ @@ -144330,7 +144362,7 @@ return { [1]="fire_damage_+%_vs_bleeding_enemies" } }, - [6591]={ + [6593]={ [1]={ [1]={ limit={ @@ -144359,7 +144391,7 @@ return { [1]="fire_damage_+%_while_affected_by_anger" } }, - [6592]={ + [6594]={ [1]={ [1]={ limit={ @@ -144388,7 +144420,7 @@ return { [1]="fire_damage_+%_while_affected_by_herald_of_ash" } }, - [6593]={ + [6595]={ [1]={ [1]={ limit={ @@ -144404,7 +144436,7 @@ return { [1]="fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [6594]={ + [6596]={ [1]={ [1]={ limit={ @@ -144420,7 +144452,7 @@ return { [1]="fire_damage_taken_goes_to_life_over_4_seconds_%" } }, - [6595]={ + [6597]={ [1]={ [1]={ limit={ @@ -144436,7 +144468,7 @@ return { [1]="fire_damage_taken_per_second_while_flame_touched" } }, - [6596]={ + [6598]={ [1]={ [1]={ limit={ @@ -144465,7 +144497,7 @@ return { [1]="fire_damage_taken_+%_while_moving" } }, - [6597]={ + [6599]={ [1]={ [1]={ limit={ @@ -144481,7 +144513,7 @@ return { [1]="fire_damage_taken_when_enemy_ignited" } }, - [6598]={ + [6600]={ [1]={ [1]={ limit={ @@ -144497,7 +144529,7 @@ return { [1]="fire_damage_to_return_on_block" } }, - [6599]={ + [6601]={ [1]={ [1]={ limit={ @@ -144526,7 +144558,7 @@ return { [1]="fire_damage_with_attack_skills_+%" } }, - [6600]={ + [6602]={ [1]={ [1]={ limit={ @@ -144555,7 +144587,7 @@ return { [1]="fire_damage_with_spell_skills_+%" } }, - [6601]={ + [6603]={ [1]={ [1]={ limit={ @@ -144584,7 +144616,7 @@ return { [1]="fire_exposure_effect_+%" } }, - [6602]={ + [6604]={ [1]={ [1]={ limit={ @@ -144609,7 +144641,7 @@ return { [1]="fire_exposure_on_hit_magnitude" } }, - [6603]={ + [6605]={ [1]={ [1]={ limit={ @@ -144625,7 +144657,7 @@ return { [1]="fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%" } }, - [6604]={ + [6606]={ [1]={ [1]={ limit={ @@ -144641,7 +144673,7 @@ return { [1]="fire_penetration_%_if_you_have_blocked_recently" } }, - [6605]={ + [6607]={ [1]={ [1]={ limit={ @@ -144670,7 +144702,7 @@ return { [1]="fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire" } }, - [6606]={ + [6608]={ [1]={ [1]={ limit={ @@ -144686,7 +144718,7 @@ return { [1]="fire_resist_unaffected_by_area_penalties" } }, - [6607]={ + [6609]={ [1]={ [1]={ limit={ @@ -144702,7 +144734,7 @@ return { [1]="fire_skill_chance_to_inflict_fire_exposure_%" } }, - [6608]={ + [6610]={ [1]={ [1]={ limit={ @@ -144718,7 +144750,7 @@ return { [1]="fire_skills_chance_to_poison_on_hit_%" } }, - [6609]={ + [6611]={ [1]={ [1]={ [1]={ @@ -144738,7 +144770,7 @@ return { [1]="fire_spell_additional_critical_strike_chance_permyriad" } }, - [6610]={ + [6612]={ [1]={ [1]={ limit={ @@ -144767,7 +144799,7 @@ return { [1]="fire_trap_burning_ground_duration_+%" } }, - [6611]={ + [6613]={ [1]={ [1]={ limit={ @@ -144792,7 +144824,7 @@ return { [1]="fire_trap_number_of_additional_traps_to_throw" } }, - [6612]={ + [6614]={ [1]={ [1]={ limit={ @@ -144821,7 +144853,7 @@ return { [1]="fireball_and_rolling_magma_active_skill_area_of_effect_+%_final" } }, - [6613]={ + [6615]={ [1]={ [1]={ limit={ @@ -144837,7 +144869,7 @@ return { [1]="fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply" } }, - [6614]={ + [6616]={ [1]={ [1]={ limit={ @@ -144853,7 +144885,7 @@ return { [1]="fireball_cannot_ignite" } }, - [6615]={ + [6617]={ [1]={ [1]={ limit={ @@ -144869,7 +144901,7 @@ return { [1]="fireball_chance_to_scorch_%" } }, - [6616]={ + [6618]={ [1]={ [1]={ limit={ @@ -144894,7 +144926,7 @@ return { [1]="first_X_minions_have_0_base_spirit_reservation" } }, - [6617]={ + [6619]={ [1]={ [1]={ limit={ @@ -144910,7 +144942,7 @@ return { [1]="fish_rot_when_caught" } }, - [6618]={ + [6620]={ [1]={ [1]={ limit={ @@ -144926,7 +144958,7 @@ return { [1]="fishing_bestiary_lures_at_fishing_holes" } }, - [6619]={ + [6621]={ [1]={ [1]={ limit={ @@ -144942,7 +144974,7 @@ return { [1]="fishing_can_catch_divine_fish" } }, - [6620]={ + [6622]={ [1]={ [1]={ limit={ @@ -144971,7 +145003,7 @@ return { [1]="fishing_chance_to_catch_boots_+%" } }, - [6621]={ + [6623]={ [1]={ [1]={ limit={ @@ -145000,7 +145032,7 @@ return { [1]="fishing_chance_to_catch_divine_orb_+%" } }, - [6622]={ + [6624]={ [1]={ [1]={ limit={ @@ -145025,7 +145057,7 @@ return { [1]="fishing_corrupted_fish_cleansed_chance_%" } }, - [6623]={ + [6625]={ [1]={ [1]={ limit={ @@ -145041,7 +145073,7 @@ return { [1]="fishing_fish_always_tell_truth_with_this_rod" } }, - [6624]={ + [6626]={ [1]={ [1]={ limit={ @@ -145057,7 +145089,7 @@ return { [1]="fishing_ghastly_fisherman_cannot_spawn" } }, - [6625]={ + [6627]={ [1]={ [1]={ limit={ @@ -145073,7 +145105,7 @@ return { [1]="fishing_ghastly_fisherman_spawns_behind_you" } }, - [6626]={ + [6628]={ [1]={ [1]={ limit={ @@ -145102,7 +145134,7 @@ return { [1]="fishing_krillson_affection_per_fish_gifted_+%" } }, - [6627]={ + [6629]={ [1]={ [1]={ limit={ @@ -145131,7 +145163,7 @@ return { [1]="fishing_life_of_fish_with_this_rod_+%" } }, - [6628]={ + [6630]={ [1]={ [1]={ limit={ @@ -145147,7 +145179,7 @@ return { [1]="fishing_magmatic_fish_are_cooked" } }, - [6629]={ + [6631]={ [1]={ [1]={ limit={ @@ -145176,7 +145208,7 @@ return { [1]="fishing_molten_one_confusion_+%_per_fish_gifted" } }, - [6630]={ + [6632]={ [1]={ [1]={ limit={ @@ -145205,7 +145237,7 @@ return { [1]="fishing_reeling_stability_+%" } }, - [6631]={ + [6633]={ [1]={ [1]={ limit={ @@ -145234,7 +145266,7 @@ return { [1]="fishing_tasalio_ire_per_fish_caught_+%" } }, - [6632]={ + [6634]={ [1]={ [1]={ limit={ @@ -145263,7 +145295,7 @@ return { [1]="fishing_valako_aid_per_stormy_day_+%" } }, - [6633]={ + [6635]={ [1]={ [1]={ limit={ @@ -145292,7 +145324,7 @@ return { [1]="fishing_wish_effect_of_ancient_fish_+%" } }, - [6634]={ + [6636]={ [1]={ [1]={ limit={ @@ -145308,7 +145340,7 @@ return { [1]="fishing_wish_per_fish_+" } }, - [6635]={ + [6637]={ [1]={ [1]={ limit={ @@ -145324,7 +145356,7 @@ return { [1]="fissure_skills_limit_+" } }, - [6636]={ + [6638]={ [1]={ [1]={ limit={ @@ -145353,7 +145385,7 @@ return { [1]="flame_link_duration_+%" } }, - [6637]={ + [6639]={ [1]={ [1]={ limit={ @@ -145382,7 +145414,7 @@ return { [1]="flame_totem_consecrated_ground_enemy_damage_taken_+%" } }, - [6638]={ + [6640]={ [1]={ [1]={ limit={ @@ -145411,7 +145443,7 @@ return { [1]="flame_wall_damage_+%" } }, - [6639]={ + [6641]={ [1]={ [1]={ limit={ @@ -145432,7 +145464,7 @@ return { [2]="flame_wall_maximum_added_fire_damage" } }, - [6640]={ + [6642]={ [1]={ [1]={ limit={ @@ -145448,7 +145480,7 @@ return { [1]="flame_wall_projectiles_gain_all_damage_%_as_fire" } }, - [6641]={ + [6643]={ [1]={ [1]={ [1]={ @@ -145481,7 +145513,7 @@ return { [1]="flameblast_and_incinerate_base_cooldown_modifier_ms" } }, - [6642]={ + [6644]={ [1]={ [1]={ limit={ @@ -145497,7 +145529,7 @@ return { [1]="flameblast_and_incinerate_cannot_inflict_elemental_ailments" } }, - [6643]={ + [6645]={ [1]={ [1]={ limit={ @@ -145526,7 +145558,7 @@ return { [1]="flameblast_cast_speed_+%_final_when_targeting_solar_orb" } }, - [6644]={ + [6646]={ [1]={ [1]={ limit={ @@ -145542,7 +145574,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [6645]={ + [6647]={ [1]={ [1]={ limit={ @@ -145571,7 +145603,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%" } }, - [6646]={ + [6648]={ [1]={ [1]={ limit={ @@ -145614,7 +145646,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count" } }, - [6647]={ + [6649]={ [1]={ [1]={ limit={ @@ -145643,7 +145675,7 @@ return { [1]="flamethrower_tower_trap_cast_speed_+%" } }, - [6648]={ + [6650]={ [1]={ [1]={ limit={ @@ -145672,7 +145704,7 @@ return { [1]="flamethrower_tower_trap_cooldown_speed_+%" } }, - [6649]={ + [6651]={ [1]={ [1]={ limit={ @@ -145701,7 +145733,7 @@ return { [1]="flamethrower_tower_trap_damage_+%" } }, - [6650]={ + [6652]={ [1]={ [1]={ limit={ @@ -145730,7 +145762,7 @@ return { [1]="flamethrower_tower_trap_duration_+%" } }, - [6651]={ + [6653]={ [1]={ [1]={ limit={ @@ -145755,7 +145787,7 @@ return { [1]="flamethrower_tower_trap_number_of_additional_flamethrowers" } }, - [6652]={ + [6654]={ [1]={ [1]={ limit={ @@ -145784,7 +145816,7 @@ return { [1]="flamethrower_tower_trap_throwing_speed_+%" } }, - [6653]={ + [6655]={ [1]={ [1]={ limit={ @@ -145813,7 +145845,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [6654]={ + [6656]={ [1]={ [1]={ limit={ @@ -145829,7 +145861,7 @@ return { [1]="flammability_no_reservation" } }, - [6655]={ + [6657]={ [1]={ [1]={ limit={ @@ -145845,7 +145877,7 @@ return { [1]="flask_charge_recovery_is_doubled" } }, - [6656]={ + [6658]={ [1]={ [1]={ limit={ @@ -145874,7 +145906,7 @@ return { [1]="flask_charges_gained_+%_if_crit_recently" } }, - [6657]={ + [6659]={ [1]={ [1]={ limit={ @@ -145903,7 +145935,7 @@ return { [1]="flask_charges_gained_from_kills_+%_final_from_unique" } }, - [6658]={ + [6660]={ [1]={ [1]={ limit={ @@ -145932,7 +145964,7 @@ return { [1]="flask_charges_gained_from_marked_enemy_+%" } }, - [6659]={ + [6661]={ [1]={ [1]={ limit={ @@ -145961,7 +145993,7 @@ return { [1]="flask_charges_gained_+%" } }, - [6660]={ + [6662]={ [1]={ [1]={ limit={ @@ -145990,7 +146022,7 @@ return { [1]="flask_duration_+%_per_25_tribute" } }, - [6661]={ + [6663]={ [1]={ [1]={ limit={ @@ -146019,7 +146051,7 @@ return { [1]="flask_life_and_mana_recovery_+%_while_using_charm" } }, - [6662]={ + [6664]={ [1]={ [1]={ limit={ @@ -146048,7 +146080,7 @@ return { [1]="flask_life_and_mana_to_recover_+%_per_10_tribute" } }, - [6663]={ + [6665]={ [1]={ [1]={ limit={ @@ -146077,7 +146109,7 @@ return { [1]="flask_life_and_mana_to_recover_+%" } }, - [6664]={ + [6666]={ [1]={ [1]={ limit={ @@ -146106,7 +146138,7 @@ return { [1]="flask_life_recovery_+%_while_affected_by_vitality" } }, - [6665]={ + [6667]={ [1]={ [1]={ limit={ @@ -146122,7 +146154,7 @@ return { [1]="flask_recovery_amount_%_to_recover_instantly" } }, - [6666]={ + [6668]={ [1]={ [1]={ limit={ @@ -146138,7 +146170,7 @@ return { [1]="flask_recovery_is_instant" } }, - [6667]={ + [6669]={ [1]={ [1]={ limit={ @@ -146154,7 +146186,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [6668]={ + [6670]={ [1]={ [1]={ limit={ @@ -146170,7 +146202,7 @@ return { [1]="flasks_apply_to_your_linked_targets" } }, - [6669]={ + [6671]={ [1]={ [1]={ limit={ @@ -146186,7 +146218,7 @@ return { [1]="flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique" } }, - [6670]={ + [6672]={ [1]={ [1]={ limit={ @@ -146202,7 +146234,7 @@ return { [1]="flasks_gain_x_charges_while_inactive_every_3_seconds" } }, - [6671]={ + [6673]={ [1]={ [1]={ limit={ @@ -146231,7 +146263,7 @@ return { [1]="flesh_and_stone_area_of_effect_+%" } }, - [6672]={ + [6674]={ [1]={ [1]={ [1]={ @@ -146268,7 +146300,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_-2%_per_1" } }, - [6673]={ + [6675]={ [1]={ [1]={ limit={ @@ -146297,7 +146329,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_+%" } }, - [6674]={ + [6676]={ [1]={ [1]={ limit={ @@ -146313,7 +146345,7 @@ return { [1]="flesh_stone_no_reservation" } }, - [6675]={ + [6677]={ [1]={ [1]={ limit={ @@ -146329,7 +146361,7 @@ return { [1]="focus_cooldown_modifier_ms" } }, - [6676]={ + [6678]={ [1]={ [1]={ limit={ @@ -146358,7 +146390,7 @@ return { [1]="focus_cooldown_speed_+%" } }, - [6677]={ + [6679]={ [1]={ [1]={ [1]={ @@ -146378,7 +146410,7 @@ return { [1]="focus_decay_%_per_minute" } }, - [6678]={ + [6680]={ [1]={ [1]={ limit={ @@ -146394,7 +146426,7 @@ return { [1]="forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable" } }, - [6679]={ + [6681]={ [1]={ [1]={ limit={ @@ -146423,7 +146455,7 @@ return { [1]="forbidden_rite_damage_+%" } }, - [6680]={ + [6682]={ [1]={ [1]={ limit={ @@ -146448,7 +146480,7 @@ return { [1]="forbidden_rite_number_of_additional_projectiles" } }, - [6681]={ + [6683]={ [1]={ [1]={ limit={ @@ -146477,7 +146509,7 @@ return { [1]="forbidden_rite_projectile_speed_+%" } }, - [6682]={ + [6684]={ [1]={ [1]={ limit={ @@ -146506,7 +146538,7 @@ return { [1]="forking_angle_+%" } }, - [6683]={ + [6685]={ [1]={ [1]={ limit={ @@ -146535,7 +146567,7 @@ return { [1]="fortification_gained_from_hits_+%" } }, - [6684]={ + [6686]={ [1]={ [1]={ limit={ @@ -146564,7 +146596,7 @@ return { [1]="fortification_gained_from_hits_+%_against_unique_enemies" } }, - [6685]={ + [6687]={ [1]={ [1]={ limit={ @@ -146593,7 +146625,7 @@ return { [1]="fortify_duration_+%_per_10_strength" } }, - [6686]={ + [6688]={ [1]={ [1]={ limit={ @@ -146609,7 +146641,7 @@ return { [1]="fortify_on_hit" } }, - [6687]={ + [6689]={ [1]={ [1]={ limit={ @@ -146638,7 +146670,7 @@ return { [1]="frag_rounds_damage_+%_final_if_created_from_unique" } }, - [6688]={ + [6690]={ [1]={ [1]={ limit={ @@ -146663,7 +146695,7 @@ return { [1]="freeze_applies_cold_damage_taken_+%" } }, - [6689]={ + [6691]={ [1]={ [1]={ limit={ @@ -146679,7 +146711,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [6690]={ + [6692]={ [1]={ [1]={ limit={ @@ -146708,7 +146740,7 @@ return { [1]="freeze_duration_against_cursed_enemies_+%" } }, - [6691]={ + [6693]={ [1]={ [1]={ [1]={ @@ -146728,7 +146760,7 @@ return { [1]="base_freezing_enemy_chills_enemies_in_radius" } }, - [6692]={ + [6694]={ [1]={ [1]={ limit={ @@ -146744,7 +146776,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_all_damage_can_poison" } }, - [6693]={ + [6695]={ [1]={ [1]={ limit={ @@ -146773,7 +146805,7 @@ return { [1]="freezing_pulse_damage_+%_if_enemy_shattered_recently" } }, - [6694]={ + [6696]={ [1]={ [1]={ limit={ @@ -146798,7 +146830,7 @@ return { [1]="freezing_pulse_number_of_additional_projectiles" } }, - [6695]={ + [6697]={ [1]={ [1]={ [1]={ @@ -146818,7 +146850,7 @@ return { [1]="frenzy_and_power_charge_add_duration_ms_on_cull" } }, - [6696]={ + [6698]={ [1]={ [1]={ limit={ @@ -146834,7 +146866,7 @@ return { [1]="frenzy_charge_on_hit_%_vs_no_evasion_rating" } }, - [6697]={ + [6699]={ [1]={ [1]={ limit={ @@ -146850,7 +146882,7 @@ return { [1]="frenzy_charge_on_kill_percent_chance_while_holding_shield" } }, - [6698]={ + [6700]={ [1]={ [1]={ limit={ @@ -146866,7 +146898,7 @@ return { [1]="frost_blades_melee_damage_penetrates_%_cold_resistance" } }, - [6699]={ + [6701]={ [1]={ [1]={ limit={ @@ -146895,7 +146927,7 @@ return { [1]="frost_bolt_nova_cooldown_speed_+%" } }, - [6700]={ + [6702]={ [1]={ [1]={ limit={ @@ -146924,7 +146956,7 @@ return { [1]="frost_bomb_buff_duration_+%" } }, - [6701]={ + [6703]={ [1]={ [1]={ limit={ @@ -146940,7 +146972,7 @@ return { [1]="frost_bomb_+%_area_of_effect_when_frost_blink_is_cast" } }, - [6702]={ + [6704]={ [1]={ [1]={ limit={ @@ -146956,7 +146988,7 @@ return { [1]="frost_fury_additional_max_number_of_stages" } }, - [6703]={ + [6705]={ [1]={ [1]={ limit={ @@ -146985,7 +147017,7 @@ return { [1]="frost_fury_area_of_effect_+%_per_stage" } }, - [6704]={ + [6706]={ [1]={ [1]={ limit={ @@ -147014,7 +147046,7 @@ return { [1]="frost_fury_damage_+%" } }, - [6705]={ + [6707]={ [1]={ [1]={ limit={ @@ -147039,7 +147071,7 @@ return { [1]="frost_globe_added_cooldown_count" } }, - [6706]={ + [6708]={ [1]={ [1]={ limit={ @@ -147055,7 +147087,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [6707]={ + [6709]={ [1]={ [1]={ limit={ @@ -147071,7 +147103,7 @@ return { [1]="frostbite_no_reservation" } }, - [6708]={ + [6710]={ [1]={ [1]={ limit={ @@ -147087,7 +147119,7 @@ return { [1]="frostbolt_number_of_additional_projectiles" } }, - [6709]={ + [6711]={ [1]={ [1]={ limit={ @@ -147116,7 +147148,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [6710]={ + [6712]={ [1]={ [1]={ limit={ @@ -147141,7 +147173,7 @@ return { [1]="frozen_legion_added_cooldown_count" } }, - [6711]={ + [6713]={ [1]={ [1]={ limit={ @@ -147170,7 +147202,7 @@ return { [1]="frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat" } }, - [6712]={ + [6714]={ [1]={ [1]={ limit={ @@ -147199,7 +147231,7 @@ return { [1]="frozen_legion_cooldown_speed_+%" } }, - [6713]={ + [6715]={ [1]={ [1]={ limit={ @@ -147215,7 +147247,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [6714]={ + [6716]={ [1]={ [1]={ limit={ @@ -147244,7 +147276,7 @@ return { [1]="frozen_sweep_damage_+%" } }, - [6715]={ + [6717]={ [1]={ [1]={ limit={ @@ -147273,7 +147305,7 @@ return { [1]="frozen_sweep_damage_+%_final" } }, - [6716]={ + [6718]={ [1]={ [1]={ limit={ @@ -147289,7 +147321,7 @@ return { [1]="full_life_threshold_%_override" } }, - [6717]={ + [6719]={ [1]={ [1]={ limit={ @@ -147305,7 +147337,7 @@ return { [1]="full_mana_threshold_%_override" } }, - [6718]={ + [6720]={ [1]={ [1]={ limit={ @@ -147321,7 +147353,7 @@ return { [1]="fully_break_enemies_armour_on_heavy_stun_with_shield_skills" } }, - [6719]={ + [6721]={ [1]={ [1]={ limit={ @@ -147337,7 +147369,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage" } }, - [6720]={ + [6722]={ [1]={ [1]={ limit={ @@ -147353,7 +147385,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_fire_damage" } }, - [6721]={ + [6723]={ [1]={ [1]={ limit={ @@ -147369,7 +147401,7 @@ return { [1]="fully_broken_armour_and_sundered_armour_you_inflict_applies_to_all_damage" } }, - [6722]={ + [6724]={ [1]={ [1]={ limit={ @@ -147385,7 +147417,7 @@ return { [1]="fungal_ground_while_stationary_radius" } }, - [6723]={ + [6725]={ [1]={ [1]={ limit={ @@ -147401,7 +147433,7 @@ return { [1]="gain_%_damage_as_chaos_from_unreserved_darkness" } }, - [6724]={ + [6726]={ [1]={ [1]={ limit={ @@ -147426,7 +147458,7 @@ return { [1]="gain_%_life_from_body_es" } }, - [6725]={ + [6727]={ [1]={ [1]={ limit={ @@ -147442,7 +147474,7 @@ return { [1]="gain_%_maximum_energy_shield_as_freeze_threshold_+" } }, - [6726]={ + [6728]={ [1]={ [1]={ limit={ @@ -147458,7 +147490,7 @@ return { [1]="gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use" } }, - [6727]={ + [6729]={ [1]={ [1]={ limit={ @@ -147483,7 +147515,7 @@ return { [1]="gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence" } }, - [6728]={ + [6730]={ [1]={ [1]={ [1]={ @@ -147503,7 +147535,7 @@ return { [1]="gain_1_random_charge_on_reaching_maximum_rage_no_more_than_once_every_X_ms" } }, - [6729]={ + [6731]={ [1]={ [1]={ limit={ @@ -147519,7 +147551,7 @@ return { [1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance" } }, - [6730]={ + [6732]={ [1]={ [1]={ limit={ @@ -147544,7 +147576,7 @@ return { [1]="gain_1_verisium_infusion_every_X_seconds" } }, - [6731]={ + [6733]={ [1]={ [1]={ limit={ @@ -147560,7 +147592,7 @@ return { [1]="gain_X%_armour_per_50_mana_reserved" } }, - [6732]={ + [6734]={ [1]={ [1]={ limit={ @@ -147576,7 +147608,7 @@ return { [1]="gain_X_druidic_prowess_on_heavy_stunning_rare_or_unique_enemy" } }, - [6733]={ + [6735]={ [1]={ [1]={ limit={ @@ -147592,7 +147624,7 @@ return { [1]="gain_X_fortification_on_killing_rare_or_unique_monster" } }, - [6734]={ + [6736]={ [1]={ [1]={ limit={ @@ -147617,7 +147649,7 @@ return { [1]="gain_X_frenzy_charges_after_spending_200_mana" } }, - [6735]={ + [6737]={ [1]={ [1]={ limit={ @@ -147642,7 +147674,7 @@ return { [1]="gain_X_instilling_fire_when_charge_is_consumed" } }, - [6736]={ + [6738]={ [1]={ [1]={ limit={ @@ -147667,7 +147699,7 @@ return { [1]="gain_X_instilling_cold_when_charge_is_consumed" } }, - [6737]={ + [6739]={ [1]={ [1]={ limit={ @@ -147705,7 +147737,7 @@ return { [1]="gain_X_instilling_lightning_when_charge_is_consumed" } }, - [6738]={ + [6740]={ [1]={ [1]={ limit={ @@ -147730,7 +147762,7 @@ return { [1]="gain_X_instilling_chaos_when_any_charge_is_consumed" } }, - [6739]={ + [6741]={ [1]={ [1]={ limit={ @@ -147790,7 +147822,7 @@ return { [2]="gain_X_instilling_fire_on_reload" } }, - [6740]={ + [6742]={ [1]={ [1]={ limit={ @@ -147806,7 +147838,7 @@ return { [1]="gain_X_life_on_stun" } }, - [6741]={ + [6743]={ [1]={ [1]={ limit={ @@ -147822,7 +147854,7 @@ return { [1]="gain_X_max_life_per_8_armour_on_equipped_helmet" } }, - [6742]={ + [6744]={ [1]={ [1]={ limit={ @@ -147838,7 +147870,23 @@ return { [1]="gain_X_max_mana_per_2_es_on_equipped_helmet" } }, - [6743]={ + [6745]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to maximum Mana per 3 Item Armour on Equipped Helmet" + } + }, + stats={ + [1]="gain_X_max_mana_per_3_armour_on_equipped_helmet" + } + }, + [6746]={ [1]={ [1]={ limit={ @@ -147854,7 +147902,7 @@ return { [1]="gain_X_power_charges_on_using_a_warcry" } }, - [6744]={ + [6747]={ [1]={ [1]={ limit={ @@ -147870,7 +147918,7 @@ return { [1]="gain_X_rage_on_hit_per_enemy_power" } }, - [6745]={ + [6748]={ [1]={ [1]={ limit={ @@ -147886,7 +147934,7 @@ return { [1]="gain_X_rage_on_ignite_hit" } }, - [6746]={ + [6749]={ [1]={ [1]={ limit={ @@ -147911,7 +147959,7 @@ return { [1]="gain_X_random_charges_every_6_seconds" } }, - [6747]={ + [6750]={ [1]={ [1]={ limit={ @@ -147936,7 +147984,7 @@ return { [1]="gain_X_volatility_on_persistent_minion_death" } }, - [6748]={ + [6751]={ [1]={ [1]={ [1]={ @@ -147969,7 +148017,7 @@ return { [1]="gain_a_modifier_from_enemies_in_presence_when_shapeshifting_ms" } }, - [6749]={ + [6752]={ [1]={ [1]={ limit={ @@ -147985,7 +148033,7 @@ return { [1]="gain_a_power_charge_when_you_consume_an_elemental_infusion" } }, - [6750]={ + [6753]={ [1]={ [1]={ limit={ @@ -148001,7 +148049,7 @@ return { [1]="gain_absorption_charges_instead_of_power_charges" } }, - [6751]={ + [6754]={ [1]={ [1]={ limit={ @@ -148017,7 +148065,7 @@ return { [1]="gain_accuracy_rating_equal_to_2_times_strength" } }, - [6752]={ + [6755]={ [1]={ [1]={ limit={ @@ -148033,7 +148081,7 @@ return { [1]="gain_accuracy_rating_equal_to_intelligence" } }, - [6753]={ + [6756]={ [1]={ [1]={ limit={ @@ -148049,7 +148097,7 @@ return { [1]="gain_accuracy_rating_equal_to_strength" } }, - [6754]={ + [6757]={ [1]={ [1]={ limit={ @@ -148074,7 +148122,7 @@ return { [1]="gain_additional_crit_chance_from_%_chance_to_hit_over_100" } }, - [6755]={ + [6758]={ [1]={ [1]={ [1]={ @@ -148107,7 +148155,7 @@ return { [1]="gain_adrenaline_for_X_ms_on_swapping_stance" } }, - [6756]={ + [6759]={ [1]={ [1]={ limit={ @@ -148132,7 +148180,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_kill" } }, - [6757]={ + [6760]={ [1]={ [1]={ limit={ @@ -148148,7 +148196,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline" } }, - [6758]={ + [6761]={ [1]={ [1]={ [1]={ @@ -148168,7 +148216,7 @@ return { [1]="gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you" } }, - [6759]={ + [6762]={ [1]={ [1]={ limit={ @@ -148184,7 +148232,7 @@ return { [1]="gain_adrenaline_on_gaining_flame_touched" } }, - [6760]={ + [6763]={ [1]={ [1]={ limit={ @@ -148200,7 +148248,7 @@ return { [1]="gain_affliction_charges_instead_of_frenzy_charges" } }, - [6761]={ + [6764]={ [1]={ [1]={ limit={ @@ -148225,7 +148273,7 @@ return { [1]="gain_alchemists_genius_on_flask_use_%" } }, - [6762]={ + [6765]={ [1]={ [1]={ limit={ @@ -148241,7 +148289,7 @@ return { [1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently" } }, - [6763]={ + [6766]={ [1]={ [1]={ limit={ @@ -148257,7 +148305,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_after_channelling_for_1_second" } }, - [6764]={ + [6767]={ [1]={ [1]={ limit={ @@ -148273,7 +148321,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_on_minion_death" } }, - [6765]={ + [6768]={ [1]={ [1]={ limit={ @@ -148289,7 +148337,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry" } }, - [6766]={ + [6769]={ [1]={ [1]={ limit={ @@ -148314,7 +148362,7 @@ return { [1]="gain_arcane_surge_on_crit_%_chance" } }, - [6767]={ + [6770]={ [1]={ [1]={ limit={ @@ -148330,7 +148378,7 @@ return { [1]="gain_arcane_surge_on_hit_at_devotion_threshold" } }, - [6768]={ + [6771]={ [1]={ [1]={ limit={ @@ -148355,7 +148403,7 @@ return { [1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%" } }, - [6769]={ + [6772]={ [1]={ [1]={ limit={ @@ -148380,7 +148428,7 @@ return { [1]="gain_arcane_surge_on_hit_%_chance" } }, - [6770]={ + [6773]={ [1]={ [1]={ limit={ @@ -148396,7 +148444,7 @@ return { [1]="gain_arcane_surge_on_hit_vs_unique_enemy_%_chance" } }, - [6771]={ + [6774]={ [1]={ [1]={ limit={ @@ -148421,7 +148469,7 @@ return { [1]="gain_arcane_surge_on_kill_chance_%" } }, - [6772]={ + [6775]={ [1]={ [1]={ limit={ @@ -148437,7 +148485,7 @@ return { [1]="gain_arcane_surge_on_reverting_if_you_were_shapeshifted_x_seconds" } }, - [6773]={ + [6776]={ [1]={ [1]={ limit={ @@ -148453,7 +148501,7 @@ return { [1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems" } }, - [6774]={ + [6777]={ [1]={ [1]={ limit={ @@ -148469,7 +148517,7 @@ return { [1]="gain_arcane_surge_when_mine_detonated_targeting_an_enemy" } }, - [6775]={ + [6778]={ [1]={ [1]={ limit={ @@ -148485,7 +148533,7 @@ return { [1]="gain_arcane_surge_when_trap_triggered_by_an_enemy" } }, - [6776]={ + [6779]={ [1]={ [1]={ limit={ @@ -148501,7 +148549,7 @@ return { [1]="gain_arcane_surge_when_you_summon_a_totem" } }, - [6777]={ + [6780]={ [1]={ [1]={ limit={ @@ -148517,7 +148565,7 @@ return { [1]="gain_archon_cold_when_energy_shield_recharge_starts" } }, - [6778]={ + [6781]={ [1]={ [1]={ limit={ @@ -148533,7 +148581,7 @@ return { [1]="gain_archon_elemental_after_spending_100%_of_your_maximum_mana" } }, - [6779]={ + [6782]={ [1]={ [1]={ limit={ @@ -148549,7 +148597,7 @@ return { [1]="gain_archon_elemental_when_energy_shield_recharge_starts" } }, - [6780]={ + [6783]={ [1]={ [1]={ limit={ @@ -148574,7 +148622,7 @@ return { [1]="gain_archon_elemental_when_you_ignite_enemy_chance_%" } }, - [6781]={ + [6784]={ [1]={ [1]={ limit={ @@ -148599,7 +148647,7 @@ return { [1]="gain_archon_fire_when_you_ignite_enemy_chance_%" } }, - [6782]={ + [6785]={ [1]={ [1]={ limit={ @@ -148615,7 +148663,7 @@ return { [1]="gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana" } }, - [6783]={ + [6786]={ [1]={ [1]={ limit={ @@ -148631,7 +148679,7 @@ return { [1]="gain_armour_equal_to_strength" } }, - [6784]={ + [6787]={ [1]={ [1]={ limit={ @@ -148647,7 +148695,7 @@ return { [1]="gain_armour_from_%_life_loss_from_hits_lasting_8_seconds" } }, - [6785]={ + [6788]={ [1]={ [1]={ limit={ @@ -148663,7 +148711,7 @@ return { [1]="gain_attack_damage_+%_for_each_your_minion_in_presence_capped" } }, - [6786]={ + [6789]={ [1]={ [1]={ limit={ @@ -148679,7 +148727,7 @@ return { [1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy" } }, - [6787]={ + [6790]={ [1]={ [1]={ limit={ @@ -148704,7 +148752,7 @@ return { [1]="gain_blitz_charge_%_chance_on_crit" } }, - [6788]={ + [6791]={ [1]={ [1]={ limit={ @@ -148720,7 +148768,7 @@ return { [1]="gain_brutal_charges_instead_of_endurance_charges" } }, - [6789]={ + [6792]={ [1]={ [1]={ limit={ @@ -148745,7 +148793,7 @@ return { [1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance" } }, - [6790]={ + [6793]={ [1]={ [1]={ limit={ @@ -148770,7 +148818,7 @@ return { [1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance" } }, - [6791]={ + [6794]={ [1]={ [1]={ [1]={ @@ -148790,7 +148838,7 @@ return { [1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana" } }, - [6792]={ + [6795]={ [1]={ [1]={ limit={ @@ -148806,7 +148854,7 @@ return { [1]="gain_dark_whispers_every_second_there_is_a_cursed_enemy_in_presence" } }, - [6793]={ + [6796]={ [1]={ [1]={ limit={ @@ -148822,7 +148870,7 @@ return { [1]="gain_druidic_prowess_per_X_rage_spent" } }, - [6794]={ + [6797]={ [1]={ [1]={ limit={ @@ -148838,7 +148886,7 @@ return { [1]="gain_stormsurge_on_hit" } }, - [6795]={ + [6798]={ [1]={ [1]={ limit={ @@ -148854,7 +148902,7 @@ return { [1]="gain_elusive_on_reaching_low_life" } }, - [6796]={ + [6799]={ [1]={ [1]={ limit={ @@ -148870,7 +148918,7 @@ return { [1]="gain_endurance_charge_if_attack_freezes" } }, - [6797]={ + [6800]={ [1]={ [1]={ limit={ @@ -148886,7 +148934,7 @@ return { [1]="gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy" } }, - [6798]={ + [6801]={ [1]={ [1]={ limit={ @@ -148902,7 +148950,7 @@ return { [1]="gain_endurance_charge_on_reaching_low_life_once_per_2s" } }, - [6799]={ + [6802]={ [1]={ [1]={ limit={ @@ -148927,7 +148975,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently" } }, - [6800]={ + [6803]={ [1]={ [1]={ limit={ @@ -148952,7 +149000,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_used_warcry_recently" } }, - [6801]={ + [6804]={ [1]={ [1]={ limit={ @@ -148977,7 +149025,7 @@ return { [1]="gain_endurance_charge_%_chance_when_you_lose_fortify" } }, - [6802]={ + [6805]={ [1]={ [1]={ limit={ @@ -148993,7 +149041,7 @@ return { [1]="gain_endurance_charge_%_when_hit_while_channelling" } }, - [6803]={ + [6806]={ [1]={ [1]={ limit={ @@ -149009,7 +149057,7 @@ return { [1]="gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges" } }, - [6804]={ + [6807]={ [1]={ [1]={ [1]={ @@ -149029,7 +149077,7 @@ return { [1]="gain_finality_for_x_ms_per_combo_lost_using_skills" } }, - [6805]={ + [6808]={ [1]={ [1]={ limit={ @@ -149058,7 +149106,7 @@ return { [1]="gain_fire_damage_+%_per_endurance_charge_consumed_recently" } }, - [6806]={ + [6809]={ [1]={ [1]={ limit={ @@ -149083,7 +149131,7 @@ return { [1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges" } }, - [6807]={ + [6810]={ [1]={ [1]={ limit={ @@ -149108,7 +149156,7 @@ return { [1]="gain_flask_charges_every_second_if_hit_unique_enemy_recently" } }, - [6808]={ + [6811]={ [1]={ [1]={ limit={ @@ -149124,7 +149172,7 @@ return { [1]="gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff" } }, - [6809]={ + [6812]={ [1]={ [1]={ limit={ @@ -149140,7 +149188,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_at_close_range_%" } }, - [6810]={ + [6813]={ [1]={ [1]={ limit={ @@ -149165,7 +149213,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_%" } }, - [6811]={ + [6814]={ [1]={ [1]={ limit={ @@ -149181,7 +149229,7 @@ return { [1]="gain_frenzy_charge_on_enemy_shattered_chance_%" } }, - [6812]={ + [6815]={ [1]={ [1]={ limit={ @@ -149197,7 +149245,7 @@ return { [1]="gain_frenzy_charge_on_hit_%_while_blinded" } }, - [6813]={ + [6816]={ [1]={ [1]={ limit={ @@ -149213,7 +149261,7 @@ return { [1]="gain_frenzy_charge_on_hit_while_bleeding" } }, - [6814]={ + [6817]={ [1]={ [1]={ limit={ @@ -149229,7 +149277,7 @@ return { [1]="gain_frenzy_charge_on_hitting_marked_enemy_%" } }, - [6815]={ + [6818]={ [1]={ [1]={ limit={ @@ -149245,7 +149293,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [6816]={ + [6819]={ [1]={ [1]={ limit={ @@ -149270,7 +149318,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [6817]={ + [6820]={ [1]={ [1]={ limit={ @@ -149286,7 +149334,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [6818]={ + [6821]={ [1]={ [1]={ limit={ @@ -149311,7 +149359,7 @@ return { [1]="gain_frenzy_charge_per_enemy_you_crit_%_chance" } }, - [6819]={ + [6822]={ [1]={ [1]={ limit={ @@ -149327,7 +149375,7 @@ return { [1]="gain_frenzy_charge_%_when_hit_while_channelling" } }, - [6820]={ + [6823]={ [1]={ [1]={ limit={ @@ -149343,7 +149391,7 @@ return { [1]="gain_frenzy_power_endurance_charges_on_vaal_skill_use" } }, - [6821]={ + [6824]={ [1]={ [1]={ limit={ @@ -149359,7 +149407,7 @@ return { [1]="gain_guard_%_of_max_ward_for_2s_every_4s" } }, - [6822]={ + [6825]={ [1]={ [1]={ limit={ @@ -149375,7 +149423,7 @@ return { [1]="gain_guard_%_of_maximum_life_for_4_seconds_on_taking_savage_hit" } }, - [6823]={ + [6826]={ [1]={ [1]={ limit={ @@ -149391,7 +149439,7 @@ return { [1]="gain_guard_after_sprinting_equal_to_x%_of_maximum_life_per_second_sprinted_up_to_20%" } }, - [6824]={ + [6827]={ [1]={ [1]={ limit={ @@ -149407,7 +149455,7 @@ return { [1]="gain_guard_equal_to_%_of_your_missing_energy_shield_for_4_seconds_on_dodge_roll" } }, - [6825]={ + [6828]={ [1]={ [1]={ limit={ @@ -149423,7 +149471,7 @@ return { [1]="gain_guard_flask_charge_when_hit_by_enemy_chance_%" } }, - [6826]={ + [6829]={ [1]={ [1]={ limit={ @@ -149439,7 +149487,7 @@ return { [1]="gain_lightning_archon_after_spending_100%_of_your_maximum_mana" } }, - [6827]={ + [6830]={ [1]={ [1]={ limit={ @@ -149464,7 +149512,7 @@ return { [1]="gain_magic_monster_mods_on_kill_%_chance" } }, - [6828]={ + [6831]={ [1]={ [1]={ limit={ @@ -149480,7 +149528,7 @@ return { [1]="gain_max_rage_on_losing_temporal_chains_debuff" } }, - [6829]={ + [6832]={ [1]={ [1]={ limit={ @@ -149496,7 +149544,7 @@ return { [1]="gain_max_rage_on_rage_gain_from_hit_%_chance" } }, - [6830]={ + [6833]={ [1]={ [1]={ limit={ @@ -149521,7 +149569,7 @@ return { [1]="gain_maximum_endurance_charges_when_crit_chance_%" } }, - [6831]={ + [6834]={ [1]={ [1]={ limit={ @@ -149537,7 +149585,7 @@ return { [1]="gain_maximum_energy_shield_equal_to_%_total_strength_requirement_of_equipped_armour_items" } }, - [6832]={ + [6835]={ [1]={ [1]={ limit={ @@ -149553,7 +149601,7 @@ return { [1]="gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility" } }, - [6833]={ + [6836]={ [1]={ [1]={ limit={ @@ -149569,7 +149617,7 @@ return { [1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth" } }, - [6834]={ + [6837]={ [1]={ [1]={ limit={ @@ -149585,7 +149633,7 @@ return { [1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance" } }, - [6835]={ + [6838]={ [1]={ [1]={ limit={ @@ -149601,7 +149649,7 @@ return { [1]="gain_maximum_power_charges_on_power_charge_gained_%_chance" } }, - [6836]={ + [6839]={ [1]={ [1]={ limit={ @@ -149617,7 +149665,7 @@ return { [1]="gain_maximum_power_charges_on_vaal_skill_use" } }, - [6837]={ + [6840]={ [1]={ [1]={ limit={ @@ -149638,7 +149686,7 @@ return { [2]="gain_max_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks" } }, - [6838]={ + [6841]={ [1]={ [1]={ limit={ @@ -149659,7 +149707,7 @@ return { [2]="gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life" } }, - [6839]={ + [6842]={ [1]={ [1]={ limit={ @@ -149680,7 +149728,7 @@ return { [2]="gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted" } }, - [6840]={ + [6843]={ [1]={ [1]={ limit={ @@ -149696,7 +149744,7 @@ return { [1]="gain_movement_speed_+%_for_20_seconds_on_kill" } }, - [6841]={ + [6844]={ [1]={ [1]={ limit={ @@ -149712,7 +149760,7 @@ return { [1]="gain_onslaught_during_soul_gain_prevention" } }, - [6842]={ + [6845]={ [1]={ [1]={ limit={ @@ -149737,7 +149785,7 @@ return { [1]="gain_onslaught_for_3_seconds_%_chance_when_hit" } }, - [6843]={ + [6846]={ [1]={ [1]={ limit={ @@ -149753,7 +149801,7 @@ return { [1]="gain_onslaught_for_4_seconds_on_minion_death" } }, - [6844]={ + [6847]={ [1]={ [1]={ limit={ @@ -149769,7 +149817,7 @@ return { [1]="gain_onslaught_for_x_seconds_when_your_marks_activate" } }, - [6845]={ + [6848]={ [1]={ [1]={ limit={ @@ -149785,7 +149833,7 @@ return { [1]="gain_onslaught_if_you_have_swapped_stance_recently" } }, - [6846]={ + [6849]={ [1]={ [1]={ [1]={ @@ -149805,7 +149853,7 @@ return { [1]="gain_onslaught_ms_on_using_a_warcry" } }, - [6847]={ + [6850]={ [1]={ [1]={ limit={ @@ -149830,7 +149878,7 @@ return { [1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%" } }, - [6848]={ + [6851]={ [1]={ [1]={ [1]={ @@ -149850,7 +149898,7 @@ return { [1]="gain_onslaught_on_hit_duration_ms" } }, - [6849]={ + [6852]={ [1]={ [1]={ [1]={ @@ -149870,7 +149918,7 @@ return { [1]="gain_onslaught_on_kill_ms_while_affected_by_haste" } }, - [6850]={ + [6853]={ [1]={ [1]={ limit={ @@ -149886,7 +149934,7 @@ return { [1]="gain_onslaught_while_at_maximum_endurance_charges" } }, - [6851]={ + [6854]={ [1]={ [1]={ limit={ @@ -149902,7 +149950,7 @@ return { [1]="gain_onslaught_while_not_on_low_mana" } }, - [6852]={ + [6855]={ [1]={ [1]={ limit={ @@ -149918,7 +149966,7 @@ return { [1]="gain_onslaught_while_on_low_life" } }, - [6853]={ + [6856]={ [1]={ [1]={ limit={ @@ -149934,7 +149982,7 @@ return { [1]="gain_onslaught_while_you_have_cats_agility" } }, - [6854]={ + [6857]={ [1]={ [1]={ limit={ @@ -149950,7 +149998,7 @@ return { [1]="gain_onslaught_while_you_have_fortify" } }, - [6855]={ + [6858]={ [1]={ [1]={ [1]={ @@ -149970,7 +150018,7 @@ return { [1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec" } }, - [6856]={ + [6859]={ [1]={ [1]={ limit={ @@ -149986,7 +150034,7 @@ return { [1]="gain_phasing_if_enemy_killed_recently" } }, - [6857]={ + [6860]={ [1]={ [1]={ limit={ @@ -150002,7 +150050,7 @@ return { [1]="gain_phasing_while_affected_by_haste" } }, - [6858]={ + [6861]={ [1]={ [1]={ limit={ @@ -150018,7 +150066,7 @@ return { [1]="gain_phasing_while_you_have_cats_stealth" } }, - [6859]={ + [6862]={ [1]={ [1]={ limit={ @@ -150034,7 +150082,7 @@ return { [1]="gain_phasing_while_you_have_low_life" } }, - [6860]={ + [6863]={ [1]={ [1]={ limit={ @@ -150050,7 +150098,7 @@ return { [1]="gain_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted" } }, - [6861]={ + [6864]={ [1]={ [1]={ limit={ @@ -150066,7 +150114,7 @@ return { [1]="gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6862]={ + [6865]={ [1]={ [1]={ limit={ @@ -150082,7 +150130,7 @@ return { [1]="gain_power_charge_on_critical_strike_with_wands_%" } }, - [6863]={ + [6866]={ [1]={ [1]={ limit={ @@ -150098,7 +150146,7 @@ return { [1]="gain_power_charge_on_curse_cast_%" } }, - [6864]={ + [6867]={ [1]={ [1]={ limit={ @@ -150123,7 +150171,7 @@ return { [1]="gain_power_charge_on_hit_%_chance_against_frozen_enemy" } }, - [6865]={ + [6868]={ [1]={ [1]={ limit={ @@ -150139,7 +150187,7 @@ return { [1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%" } }, - [6866]={ + [6869]={ [1]={ [1]={ limit={ @@ -150155,7 +150203,7 @@ return { [1]="gain_power_charge_on_mana_flask_use_%_chance" } }, - [6867]={ + [6870]={ [1]={ [1]={ limit={ @@ -150180,7 +150228,7 @@ return { [1]="gain_power_charge_on_vaal_skill_use_%" } }, - [6868]={ + [6871]={ [1]={ [1]={ limit={ @@ -150196,7 +150244,7 @@ return { [1]="gain_power_charge_per_second_if_have_not_lost_power_charge_recently" } }, - [6869]={ + [6872]={ [1]={ [1]={ limit={ @@ -150212,7 +150260,7 @@ return { [1]="gain_power_or_frenzy_charge_for_each_second_channeling" } }, - [6870]={ + [6873]={ [1]={ [1]={ limit={ @@ -150228,7 +150276,7 @@ return { [1]="gain_x_rage_on_hit" } }, - [6871]={ + [6874]={ [1]={ [1]={ limit={ @@ -150244,7 +150292,7 @@ return { [1]="gain_random_charge_on_block" } }, - [6872]={ + [6875]={ [1]={ [1]={ limit={ @@ -150260,7 +150308,7 @@ return { [1]="gain_random_charge_per_second_while_stationary" } }, - [6873]={ + [6876]={ [1]={ [1]={ limit={ @@ -150276,7 +150324,7 @@ return { [1]="gain_runic_binding_stack_on_damaging_spell_hit_once_per_second" } }, - [6874]={ + [6877]={ [1]={ [1]={ limit={ @@ -150292,7 +150340,7 @@ return { [1]="gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal" } }, - [6875]={ + [6878]={ [1]={ [1]={ limit={ @@ -150308,7 +150356,7 @@ return { [1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster" } }, - [6876]={ + [6879]={ [1]={ [1]={ limit={ @@ -150324,7 +150372,7 @@ return { [1]="gain_shrine_buff_every_10_seconds" } }, - [6877]={ + [6880]={ [1]={ [1]={ limit={ @@ -150358,7 +150406,7 @@ return { [1]="gain_single_conflux_for_3_seconds_every_8_seconds" } }, - [6878]={ + [6881]={ [1]={ [1]={ [1]={ @@ -150378,7 +150426,7 @@ return { [1]="gain_soul_eater_for_x_ms_on_vaal_skill_use" } }, - [6879]={ + [6882]={ [1]={ [1]={ [1]={ @@ -150411,7 +150459,7 @@ return { [1]="gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms" } }, - [6880]={ + [6883]={ [1]={ [1]={ limit={ @@ -150427,7 +150475,7 @@ return { [1]="gain_spell_cost_as_mana_every_fifth_cast" } }, - [6881]={ + [6884]={ [1]={ [1]={ limit={ @@ -150443,7 +150491,7 @@ return { [1]="gain_spell_damage_+%_for_each_second_shapeshifted_capped_when_reverting_for_duration" } }, - [6882]={ + [6885]={ [1]={ [1]={ limit={ @@ -150468,7 +150516,7 @@ return { [1]="gain_stack_of_disorderly_conduct_every_x_grenade_skills_used" } }, - [6883]={ + [6886]={ [1]={ [1]={ limit={ @@ -150484,7 +150532,7 @@ return { [1]="stun_threshold_+_per_dexterity" } }, - [6884]={ + [6887]={ [1]={ [1]={ limit={ @@ -150500,7 +150548,7 @@ return { [1]="gain_tailwind_on_critical_hit" } }, - [6885]={ + [6888]={ [1]={ [1]={ limit={ @@ -150516,7 +150564,7 @@ return { [1]="gain_tailwind_stack_on_skill_use" } }, - [6886]={ + [6889]={ [1]={ [1]={ limit={ @@ -150532,7 +150580,7 @@ return { [1]="gain_up_to_maximum_fragile_regrowth_when_hit" } }, - [6887]={ + [6890]={ [1]={ [1]={ [1]={ @@ -150552,7 +150600,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [6888]={ + [6891]={ [1]={ [1]={ limit={ @@ -150603,7 +150651,7 @@ return { [1]="gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second" } }, - [6889]={ + [6892]={ [1]={ [1]={ limit={ @@ -150632,7 +150680,7 @@ return { [1]="gain_x_fragile_regrowth_per_second" } }, - [6890]={ + [6893]={ [1]={ [1]={ limit={ @@ -150648,7 +150696,7 @@ return { [1]="gain_x_rage_on_hit_with_axes" } }, - [6891]={ + [6894]={ [1]={ [1]={ limit={ @@ -150664,7 +150712,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords_1s_cooldown" } }, - [6892]={ + [6895]={ [1]={ [1]={ limit={ @@ -150680,7 +150728,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [6893]={ + [6896]={ [1]={ [1]={ limit={ @@ -150696,7 +150744,7 @@ return { [1]="gain_x_rage_per_200_mana_spent" } }, - [6894]={ + [6897]={ [1]={ [1]={ limit={ @@ -150712,7 +150760,7 @@ return { [1]="gain_x_rage_when_hit" } }, - [6895]={ + [6898]={ [1]={ [1]={ limit={ @@ -150728,7 +150776,7 @@ return { [1]="gain_x_rage_when_taken_crit" } }, - [6896]={ + [6899]={ [1]={ [1]={ limit={ @@ -150757,7 +150805,7 @@ return { [1]="galvanic_arrow_projectile_speed_+%" } }, - [6897]={ + [6900]={ [1]={ [1]={ limit={ @@ -150782,7 +150830,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [6898]={ + [6901]={ [1]={ [1]={ limit={ @@ -150798,7 +150846,7 @@ return { [1]="galvanic_field_cast_speed_+%" } }, - [6899]={ + [6902]={ [1]={ [1]={ limit={ @@ -150827,7 +150875,7 @@ return { [1]="galvanic_field_damage_+%" } }, - [6900]={ + [6903]={ [1]={ [1]={ limit={ @@ -150852,7 +150900,7 @@ return { [1]="galvanic_field_number_of_chains" } }, - [6901]={ + [6904]={ [1]={ [1]={ limit={ @@ -150868,7 +150916,7 @@ return { [1]="gem_requirements_can_be_satisfied_by_highest_attribute" } }, - [6902]={ + [6905]={ [1]={ [1]={ limit={ @@ -150897,7 +150945,7 @@ return { [1]="gemling_all_attributes_+%_final" } }, - [6903]={ + [6906]={ [1]={ [1]={ limit={ @@ -150913,7 +150961,7 @@ return { [1]="gemling_double_basic_attribute_bonuses" } }, - [6904]={ + [6907]={ [1]={ [1]={ limit={ @@ -150942,7 +150990,7 @@ return { [1]="gemling_skill_cost_+%_final" } }, - [6905]={ + [6908]={ [1]={ [1]={ limit={ @@ -150958,7 +151006,7 @@ return { [1]="generals_cry_cooldown_speed_+%" } }, - [6906]={ + [6909]={ [1]={ [1]={ limit={ @@ -150974,7 +151022,7 @@ return { [1]="generals_cry_maximum_warriors_+" } }, - [6907]={ + [6910]={ [1]={ [1]={ [1]={ @@ -150994,7 +151042,7 @@ return { [1]="generate_x_charges_for_any_flask_per_minute" } }, - [6908]={ + [6911]={ [1]={ [1]={ [1]={ @@ -151027,7 +151075,7 @@ return { [1]="generate_x_charges_for_charms_per_minute" } }, - [6909]={ + [6912]={ [1]={ [1]={ [1]={ @@ -151047,7 +151095,7 @@ return { [1]="generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute" } }, - [6910]={ + [6913]={ [1]={ [1]={ [1]={ @@ -151067,7 +151115,7 @@ return { [1]="generate_x_charges_for_guard_flasks_per_minute" } }, - [6911]={ + [6914]={ [1]={ [1]={ [1]={ @@ -151087,7 +151135,7 @@ return { [1]="generate_x_charges_for_life_flasks_per_minute" } }, - [6912]={ + [6915]={ [1]={ [1]={ [1]={ @@ -151107,7 +151155,7 @@ return { [1]="generate_x_charges_for_mana_flasks_per_minute" } }, - [6913]={ + [6916]={ [1]={ [1]={ [1]={ @@ -151127,7 +151175,7 @@ return { [1]="ghostflame_on_hit_duration_ms" } }, - [6914]={ + [6917]={ [1]={ [1]={ limit={ @@ -151143,7 +151191,7 @@ return { [1]="gifts_from_above_consecrated_ground_while_stationary" } }, - [6915]={ + [6918]={ [1]={ [1]={ limit={ @@ -151168,7 +151216,7 @@ return { [1]="glacial_cascade_number_of_additional_bursts" } }, - [6916]={ + [6919]={ [1]={ [1]={ limit={ @@ -151184,7 +151232,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_gain_as_cold" } }, - [6917]={ + [6920]={ [1]={ [1]={ limit={ @@ -151200,7 +151248,7 @@ return { [1]="glacial_hammer_melee_splash_with_cold_damage" } }, - [6918]={ + [6921]={ [1]={ [1]={ limit={ @@ -151233,7 +151281,7 @@ return { [1]="global_attack_speed_+%_per_level" } }, - [6919]={ + [6922]={ [1]={ [1]={ limit={ @@ -151249,7 +151297,7 @@ return { [1]="global_bleed_on_hit" } }, - [6920]={ + [6923]={ [1]={ [1]={ limit={ @@ -151274,7 +151322,7 @@ return { [1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [6921]={ + [6924]={ [1]={ [1]={ limit={ @@ -151303,7 +151351,7 @@ return { [1]="global_critical_strike_chance_+%_vs_chilled_enemies" } }, - [6922]={ + [6925]={ [1]={ [1]={ limit={ @@ -151332,7 +151380,7 @@ return { [1]="global_armour_evasion_energy_shield_+%_per_frenzy_charge" } }, - [6923]={ + [6926]={ [1]={ [1]={ limit={ @@ -151361,7 +151409,7 @@ return { [1]="global_armour_evasion_energy_shield_while_in_presence_of_companion_+%" } }, - [6924]={ + [6927]={ [1]={ [1]={ limit={ @@ -151377,7 +151425,7 @@ return { [1]="global_evasion_rating_+_while_moving" } }, - [6925]={ + [6928]={ [1]={ [1]={ limit={ @@ -151406,7 +151454,7 @@ return { [1]="global_gem_attribute_requirements_+%_final_from_gemling" } }, - [6926]={ + [6929]={ [1]={ [1]={ limit={ @@ -151427,7 +151475,7 @@ return { [2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies" } }, - [6927]={ + [6930]={ [1]={ [1]={ limit={ @@ -151448,7 +151496,7 @@ return { [2]="global_maximum_added_fire_damage_vs_ignited_enemies" } }, - [6928]={ + [6931]={ [1]={ [1]={ limit={ @@ -151469,7 +151517,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_ignited_enemies" } }, - [6929]={ + [6932]={ [1]={ [1]={ limit={ @@ -151490,7 +151538,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_shocked_enemies" } }, - [6930]={ + [6933]={ [1]={ [1]={ limit={ @@ -151511,7 +151559,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6931]={ + [6934]={ [1]={ [1]={ limit={ @@ -151527,7 +151575,7 @@ return { [1]="global_physical_damage_reduction_rating_while_moving" } }, - [6932]={ + [6935]={ [1]={ [1]={ limit={ @@ -151543,7 +151591,7 @@ return { [1]="glory_generation_+%_if_you_have_at_least_100_tribute" } }, - [6933]={ + [6936]={ [1]={ [1]={ limit={ @@ -151572,7 +151620,7 @@ return { [1]="glory_generation_+%" } }, - [6934]={ + [6937]={ [1]={ [1]={ limit={ @@ -151588,7 +151636,7 @@ return { [1]="glory_generation_+%_for_banners" } }, - [6935]={ + [6938]={ [1]={ [1]={ [1]={ @@ -151608,7 +151656,7 @@ return { [1]="glove_implicit_gain_rage_on_attack_hit_cooldown_ms" } }, - [6936]={ + [6939]={ [1]={ [1]={ limit={ @@ -151637,7 +151685,7 @@ return { [1]="gold_+%_from_enemies" } }, - [6937]={ + [6940]={ [1]={ [1]={ limit={ @@ -151666,7 +151714,7 @@ return { [1]="golem_attack_and_cast_speed_+%" } }, - [6938]={ + [6941]={ [1]={ [1]={ limit={ @@ -151687,7 +151735,7 @@ return { [2]="golem_attack_maximum_added_physical_damage" } }, - [6939]={ + [6942]={ [1]={ [1]={ limit={ @@ -151716,7 +151764,7 @@ return { [1]="golem_buff_effect_+%" } }, - [6940]={ + [6943]={ [1]={ [1]={ limit={ @@ -151745,7 +151793,7 @@ return { [1]="golem_buff_effect_+%_per_summoned_golem" } }, - [6941]={ + [6944]={ [1]={ [1]={ [1]={ @@ -151765,7 +151813,7 @@ return { [1]="golem_life_regeneration_per_minute_%" } }, - [6942]={ + [6945]={ [1]={ [1]={ limit={ @@ -151794,7 +151842,7 @@ return { [1]="golem_maximum_life_+%" } }, - [6943]={ + [6946]={ [1]={ [1]={ limit={ @@ -151823,7 +151871,7 @@ return { [1]="golem_maximum_mana_+%" } }, - [6944]={ + [6947]={ [1]={ [1]={ limit={ @@ -151852,7 +151900,7 @@ return { [1]="golem_movement_speed_+%" } }, - [6945]={ + [6948]={ [1]={ [1]={ limit={ @@ -151868,7 +151916,7 @@ return { [1]="golem_physical_damage_reduction_rating" } }, - [6946]={ + [6949]={ [1]={ [1]={ [1]={ @@ -151905,7 +151953,7 @@ return { [1]="grace_mana_reservation_efficiency_-2%_per_1" } }, - [6947]={ + [6950]={ [1]={ [1]={ limit={ @@ -151934,7 +151982,7 @@ return { [1]="grace_mana_reservation_efficiency_+%" } }, - [6948]={ + [6951]={ [1]={ [1]={ limit={ @@ -151950,7 +151998,7 @@ return { [1]="grace_reserves_no_mana" } }, - [6949]={ + [6952]={ [1]={ [1]={ limit={ @@ -151983,7 +152031,7 @@ return { [1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash" } }, - [6950]={ + [6953]={ [1]={ [1]={ [1]={ @@ -152003,7 +152051,7 @@ return { [1]="grant_elemental_archon_to_minions_for_x_ms_when_they_revive" } }, - [6951]={ + [6954]={ [1]={ [1]={ limit={ @@ -152019,7 +152067,7 @@ return { [1]="grant_fear_incarnate_stack_on_culling_enemies" } }, - [6952]={ + [6955]={ [1]={ [1]={ limit={ @@ -152035,7 +152083,7 @@ return { [1]="grant_fear_overwhelming_stack_on_culling_enemies" } }, - [6953]={ + [6956]={ [1]={ [1]={ limit={ @@ -152051,7 +152099,7 @@ return { [1]="grant_tailwind_to_nearby_allies_if_used_skill_recently" } }, - [6954]={ + [6957]={ [1]={ [1]={ limit={ @@ -152084,7 +152132,7 @@ return { [1]="grant_void_arrow_every_x_ms" } }, - [6955]={ + [6958]={ [1]={ [1]={ limit={ @@ -152113,7 +152161,7 @@ return { [1]="gratuitous_violence_physical_damage_over_time_+%_final" } }, - [6956]={ + [6959]={ [1]={ [1]={ limit={ @@ -152142,7 +152190,7 @@ return { [1]="grenade_fuse_duration_+%" } }, - [6957]={ + [6960]={ [1]={ [1]={ limit={ @@ -152167,7 +152215,7 @@ return { [1]="grenade_projectile_speed_+%" } }, - [6958]={ + [6961]={ [1]={ [1]={ limit={ @@ -152192,7 +152240,7 @@ return { [1]="grenade_skill_%_chance_to_explode_twice" } }, - [6959]={ + [6962]={ [1]={ [1]={ limit={ @@ -152221,7 +152269,7 @@ return { [1]="grenade_skill_area_of_effect_+%" } }, - [6960]={ + [6963]={ [1]={ [1]={ limit={ @@ -152246,7 +152294,7 @@ return { [1]="grenade_skill_cooldown_count_+" } }, - [6961]={ + [6964]={ [1]={ [1]={ limit={ @@ -152275,7 +152323,7 @@ return { [1]="grenade_skill_cooldown_speed_+%" } }, - [6962]={ + [6965]={ [1]={ [1]={ limit={ @@ -152304,7 +152352,7 @@ return { [1]="grenade_skill_damage_+%" } }, - [6963]={ + [6966]={ [1]={ [1]={ limit={ @@ -152333,7 +152381,23 @@ return { [1]="grenade_skill_duration_+%" } }, - [6964]={ + [6967]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Grenade Skill Gems" + } + }, + stats={ + [1]="grenade_skill_gem_level_+" + } + }, + [6968]={ [1]={ [1]={ limit={ @@ -152358,7 +152422,7 @@ return { [1]="grenade_skill_number_of_additional_projectiles" } }, - [6965]={ + [6969]={ [1]={ [1]={ limit={ @@ -152387,7 +152451,7 @@ return { [1]="ground_effect_duration_+%" } }, - [6966]={ + [6970]={ [1]={ [1]={ limit={ @@ -152412,7 +152476,7 @@ return { [1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun" } }, - [6967]={ + [6971]={ [1]={ [1]={ limit={ @@ -152428,7 +152492,7 @@ return { [1]="ground_tar_on_block_base_area_of_effect_radius" } }, - [6968]={ + [6972]={ [1]={ [1]={ limit={ @@ -152444,7 +152508,7 @@ return { [1]="ground_tar_when_hit_%_chance" } }, - [6969]={ + [6973]={ [1]={ [1]={ limit={ @@ -152473,7 +152537,7 @@ return { [1]="guard_flask_effect_+%" } }, - [6970]={ + [6974]={ [1]={ [1]={ limit={ @@ -152502,7 +152566,7 @@ return { [1]="guard_gained_+%" } }, - [6971]={ + [6975]={ [1]={ [1]={ limit={ @@ -152531,7 +152595,7 @@ return { [1]="guard_skill_cooldown_recovery_+%" } }, - [6972]={ + [6976]={ [1]={ [1]={ limit={ @@ -152560,7 +152624,7 @@ return { [1]="guard_skill_effect_duration_+%" } }, - [6973]={ + [6977]={ [1]={ [1]={ limit={ @@ -152576,7 +152640,7 @@ return { [1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught" } }, - [6974]={ + [6978]={ [1]={ [1]={ limit={ @@ -152605,7 +152669,7 @@ return { [1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies" } }, - [6975]={ + [6979]={ [1]={ [1]={ limit={ @@ -152630,7 +152694,7 @@ return { [1]="infernal_flame_instead_of_mana_at_%_ratio" } }, - [6976]={ + [6980]={ [1]={ [1]={ limit={ @@ -152646,7 +152710,7 @@ return { [1]="halve_evasion_rating_from_body" } }, - [6977]={ + [6981]={ [1]={ [1]={ limit={ @@ -152675,7 +152739,7 @@ return { [1]="hand_wraps_damage_taken_+%_final_while_cursed" } }, - [6978]={ + [6982]={ [1]={ [1]={ limit={ @@ -152691,7 +152755,7 @@ return { [1]="harvest_encounter_fluid_granted_+%" } }, - [6979]={ + [6983]={ [1]={ [1]={ limit={ @@ -152707,7 +152771,7 @@ return { [1]="has_avoid_shock_as_avoid_all_elemental_ailments" } }, - [6980]={ + [6984]={ [1]={ [1]={ limit={ @@ -152723,7 +152787,7 @@ return { [1]="has_curse_limit_equal_to_maximum_power_charges" } }, - [6981]={ + [6985]={ [1]={ [1]={ limit={ @@ -152739,7 +152803,7 @@ return { [1]="has_ignite_duration_on_self_as_all_elemental_ailments_on_self" } }, - [6982]={ + [6986]={ [1]={ [1]={ limit={ @@ -152755,7 +152819,7 @@ return { [1]="has_onslaught_if_totem_summoned_recently" } }, - [6983]={ + [6987]={ [1]={ [1]={ limit={ @@ -152771,7 +152835,7 @@ return { [1]="has_stun_prevention_flask" } }, - [6984]={ + [6988]={ [1]={ [1]={ limit={ @@ -152800,7 +152864,7 @@ return { [1]="has_trickster_alternating_damage_taken_+%_final" } }, - [6985]={ + [6989]={ [1]={ [1]={ limit={ @@ -152816,7 +152880,7 @@ return { [1]="has_unique_brutal_shrine_effect" } }, - [6986]={ + [6990]={ [1]={ [1]={ limit={ @@ -152832,7 +152896,7 @@ return { [1]="has_unique_chaos_shrine_effect" } }, - [6987]={ + [6991]={ [1]={ [1]={ limit={ @@ -152848,7 +152912,7 @@ return { [1]="has_unique_cold_shrine_effect" } }, - [6988]={ + [6992]={ [1]={ [1]={ limit={ @@ -152864,7 +152928,7 @@ return { [1]="has_unique_fire_shrine_effect" } }, - [6989]={ + [6993]={ [1]={ [1]={ limit={ @@ -152880,7 +152944,7 @@ return { [1]="has_unique_lightning_shrine_effect" } }, - [6990]={ + [6994]={ [1]={ [1]={ limit={ @@ -152896,7 +152960,7 @@ return { [1]="has_unique_massive_shrine_effect" } }, - [6991]={ + [6995]={ [1]={ [1]={ [1]={ @@ -152933,7 +152997,7 @@ return { [1]="haste_mana_reservation_efficiency_-2%_per_1" } }, - [6992]={ + [6996]={ [1]={ [1]={ limit={ @@ -152962,7 +153026,7 @@ return { [1]="haste_mana_reservation_efficiency_+%" } }, - [6993]={ + [6997]={ [1]={ [1]={ limit={ @@ -152978,7 +153042,7 @@ return { [1]="haste_reserves_no_mana" } }, - [6994]={ + [6998]={ [1]={ [1]={ [1]={ @@ -153015,7 +153079,7 @@ return { [1]="hatred_mana_reservation_efficiency_-2%_per_1" } }, - [6995]={ + [6999]={ [1]={ [1]={ limit={ @@ -153044,7 +153108,7 @@ return { [1]="hatred_mana_reservation_efficiency_+%" } }, - [6996]={ + [7000]={ [1]={ [1]={ limit={ @@ -153060,7 +153124,7 @@ return { [1]="hatred_reserves_no_mana" } }, - [6997]={ + [7001]={ [1]={ [1]={ limit={ @@ -153076,7 +153140,7 @@ return { [1]="have_unholy_might" } }, - [6998]={ + [7002]={ [1]={ [1]={ limit={ @@ -153101,7 +153165,7 @@ return { [1]="hazard_area_of_effect_+%" } }, - [6999]={ + [7003]={ [1]={ [1]={ limit={ @@ -153130,7 +153194,7 @@ return { [1]="hazard_base_debuff_slow_magnitude_+%" } }, - [7000]={ + [7004]={ [1]={ [1]={ limit={ @@ -153159,7 +153223,7 @@ return { [1]="hazard_damage_+%" } }, - [7001]={ + [7005]={ [1]={ [1]={ limit={ @@ -153188,7 +153252,7 @@ return { [1]="hazard_hit_damage_immobilisation_multiplier_+%" } }, - [7002]={ + [7006]={ [1]={ [1]={ limit={ @@ -153213,7 +153277,23 @@ return { [1]="hazard_rearm_%_chance" } }, - [7003]={ + [7007]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Hazard Skill Gems" + } + }, + stats={ + [1]="hazard_skill_gem_level_+" + } + }, + [7008]={ [1]={ [1]={ limit={ @@ -153229,7 +153309,7 @@ return { [1]="hazards_cant_trigger_x_seconds_after_creation" } }, - [7004]={ + [7009]={ [1]={ [1]={ limit={ @@ -153258,7 +153338,7 @@ return { [1]="heat_loss_%_slower" } }, - [7005]={ + [7010]={ [1]={ [1]={ limit={ @@ -153287,7 +153367,7 @@ return { [1]="heavy_stun_poise_decay_rate_+%_per_10_tribute" } }, - [7006]={ + [7011]={ [1]={ [1]={ limit={ @@ -153316,7 +153396,7 @@ return { [1]="heavy_stun_poise_decay_rate_+%" } }, - [7007]={ + [7012]={ [1]={ [1]={ limit={ @@ -153332,7 +153412,7 @@ return { [1]="heavy_stun_threshold_+" } }, - [7008]={ + [7013]={ [1]={ [1]={ limit={ @@ -153348,7 +153428,7 @@ return { [1]="heavy_stuns_have_culling_strike" } }, - [7009]={ + [7014]={ [1]={ [1]={ limit={ @@ -153364,7 +153444,7 @@ return { [1]="heist_additional_abyss_rewards_from_reward_chests_%" } }, - [7010]={ + [7015]={ [1]={ [1]={ limit={ @@ -153380,7 +153460,7 @@ return { [1]="heist_additional_armour_rewards_from_reward_chests_%" } }, - [7011]={ + [7016]={ [1]={ [1]={ limit={ @@ -153396,7 +153476,7 @@ return { [1]="heist_additional_blight_rewards_from_reward_chests_%" } }, - [7012]={ + [7017]={ [1]={ [1]={ limit={ @@ -153412,7 +153492,7 @@ return { [1]="heist_additional_breach_rewards_from_reward_chests_%" } }, - [7013]={ + [7018]={ [1]={ [1]={ limit={ @@ -153428,7 +153508,7 @@ return { [1]="heist_additional_corrupted_rewards_from_reward_chests_%" } }, - [7014]={ + [7019]={ [1]={ [1]={ limit={ @@ -153444,7 +153524,7 @@ return { [1]="heist_additional_delirium_rewards_from_reward_chests_%" } }, - [7015]={ + [7020]={ [1]={ [1]={ limit={ @@ -153460,7 +153540,7 @@ return { [1]="heist_additional_delve_rewards_from_reward_chests_%" } }, - [7016]={ + [7021]={ [1]={ [1]={ limit={ @@ -153476,7 +153556,7 @@ return { [1]="heist_additional_divination_rewards_from_reward_chests_%" } }, - [7017]={ + [7022]={ [1]={ [1]={ limit={ @@ -153492,7 +153572,7 @@ return { [1]="heist_additional_essences_rewards_from_reward_chests_%" } }, - [7018]={ + [7023]={ [1]={ [1]={ limit={ @@ -153508,7 +153588,7 @@ return { [1]="heist_additional_gems_rewards_from_reward_chests_%" } }, - [7019]={ + [7024]={ [1]={ [1]={ limit={ @@ -153524,7 +153604,7 @@ return { [1]="heist_additional_harbinger_rewards_from_reward_chests_%" } }, - [7020]={ + [7025]={ [1]={ [1]={ limit={ @@ -153540,7 +153620,7 @@ return { [1]="heist_additional_jewellery_rewards_from_reward_chests_%" } }, - [7021]={ + [7026]={ [1]={ [1]={ limit={ @@ -153556,7 +153636,7 @@ return { [1]="heist_additional_legion_rewards_from_reward_chests_%" } }, - [7022]={ + [7027]={ [1]={ [1]={ limit={ @@ -153572,7 +153652,7 @@ return { [1]="heist_additional_metamorph_rewards_from_reward_chests_%" } }, - [7023]={ + [7028]={ [1]={ [1]={ limit={ @@ -153588,7 +153668,7 @@ return { [1]="heist_additional_perandus_rewards_from_reward_chests_%" } }, - [7024]={ + [7029]={ [1]={ [1]={ limit={ @@ -153604,7 +153684,7 @@ return { [1]="heist_additional_talisman_rewards_from_reward_chests_%" } }, - [7025]={ + [7030]={ [1]={ [1]={ limit={ @@ -153620,7 +153700,7 @@ return { [1]="heist_additional_uniques_rewards_from_reward_chests_%" } }, - [7026]={ + [7031]={ [1]={ [1]={ limit={ @@ -153636,7 +153716,7 @@ return { [1]="heist_additional_weapons_rewards_from_reward_chests_%" } }, - [7027]={ + [7032]={ [1]={ [1]={ limit={ @@ -153665,7 +153745,7 @@ return { [1]="heist_alert_level_gained_on_monster_death" } }, - [7028]={ + [7033]={ [1]={ [1]={ [1]={ @@ -153702,7 +153782,7 @@ return { [1]="heist_alert_level_gained_per_10_sec" } }, - [7029]={ + [7034]={ [1]={ [1]={ limit={ @@ -153718,7 +153798,7 @@ return { [1]="heist_chests_chance_for_secondary_objectives_%" } }, - [7030]={ + [7035]={ [1]={ [1]={ limit={ @@ -153743,7 +153823,7 @@ return { [1]="heist_chests_double_blighted_maps_and_catalysts_%" } }, - [7031]={ + [7036]={ [1]={ [1]={ limit={ @@ -153768,7 +153848,7 @@ return { [1]="heist_chests_double_breach_splinters_%" } }, - [7032]={ + [7037]={ [1]={ [1]={ limit={ @@ -153793,7 +153873,7 @@ return { [1]="heist_chests_double_catalysts_%" } }, - [7033]={ + [7038]={ [1]={ [1]={ limit={ @@ -153818,7 +153898,7 @@ return { [1]="heist_chests_double_currency_%" } }, - [7034]={ + [7039]={ [1]={ [1]={ limit={ @@ -153843,7 +153923,7 @@ return { [1]="heist_chests_double_delirium_orbs_and_splinters_%" } }, - [7035]={ + [7040]={ [1]={ [1]={ limit={ @@ -153868,7 +153948,7 @@ return { [1]="heist_chests_double_divination_cards_%" } }, - [7036]={ + [7041]={ [1]={ [1]={ limit={ @@ -153893,7 +153973,7 @@ return { [1]="heist_chests_double_essences_%" } }, - [7037]={ + [7042]={ [1]={ [1]={ limit={ @@ -153918,7 +153998,7 @@ return { [1]="heist_chests_double_jewels_%" } }, - [7038]={ + [7043]={ [1]={ [1]={ limit={ @@ -153943,7 +154023,7 @@ return { [1]="heist_chests_double_legion_splinters_%" } }, - [7039]={ + [7044]={ [1]={ [1]={ limit={ @@ -153968,7 +154048,7 @@ return { [1]="heist_chests_double_map_fragments_%" } }, - [7040]={ + [7045]={ [1]={ [1]={ limit={ @@ -153993,7 +154073,7 @@ return { [1]="heist_chests_double_maps_%" } }, - [7041]={ + [7046]={ [1]={ [1]={ limit={ @@ -154018,7 +154098,7 @@ return { [1]="heist_chests_double_oils_%" } }, - [7042]={ + [7047]={ [1]={ [1]={ limit={ @@ -154043,7 +154123,7 @@ return { [1]="heist_chests_double_scarabs_%" } }, - [7043]={ + [7048]={ [1]={ [1]={ limit={ @@ -154068,7 +154148,7 @@ return { [1]="heist_chests_double_sextants_%" } }, - [7044]={ + [7049]={ [1]={ [1]={ limit={ @@ -154097,7 +154177,7 @@ return { [1]="heist_chests_double_uniques_%" } }, - [7045]={ + [7050]={ [1]={ [1]={ limit={ @@ -154126,7 +154206,7 @@ return { [1]="heist_chests_unique_rarity_%" } }, - [7046]={ + [7051]={ [1]={ [1]={ limit={ @@ -154151,7 +154231,7 @@ return { [1]="heist_coins_from_world_chests_double_%" } }, - [7047]={ + [7052]={ [1]={ [1]={ limit={ @@ -154176,7 +154256,7 @@ return { [1]="heist_coins_dropped_by_monsters_double_%" } }, - [7048]={ + [7053]={ [1]={ [1]={ limit={ @@ -154205,7 +154285,7 @@ return { [1]="heist_contract_alert_level_from_chests_+%" } }, - [7049]={ + [7054]={ [1]={ [1]={ limit={ @@ -154234,7 +154314,7 @@ return { [1]="heist_contract_alert_level_from_monsters_+%" } }, - [7050]={ + [7055]={ [1]={ [1]={ limit={ @@ -154263,7 +154343,7 @@ return { [1]="heist_contract_alert_level_+%" } }, - [7051]={ + [7056]={ [1]={ [1]={ limit={ @@ -154292,7 +154372,7 @@ return { [1]="heist_contract_gang_cost_+%" } }, - [7052]={ + [7057]={ [1]={ [1]={ limit={ @@ -154308,7 +154388,7 @@ return { [1]="heist_contract_gang_takes_no_cut" } }, - [7053]={ + [7058]={ [1]={ [1]={ limit={ @@ -154324,7 +154404,7 @@ return { [1]="heist_contract_generate_secondary_objectives_chance_%" } }, - [7054]={ + [7059]={ [1]={ [1]={ limit={ @@ -154353,7 +154433,7 @@ return { [1]="heist_contract_guarding_monsters_damage_+%" } }, - [7055]={ + [7060]={ [1]={ [1]={ limit={ @@ -154382,7 +154462,7 @@ return { [1]="heist_contract_guarding_monsters_take_damage_+%" } }, - [7056]={ + [7061]={ [1]={ [1]={ limit={ @@ -154407,7 +154487,7 @@ return { [1]="heist_contract_mechanical_unlock_count" } }, - [7057]={ + [7062]={ [1]={ [1]={ limit={ @@ -154432,7 +154512,7 @@ return { [1]="heist_contract_magical_unlock_count" } }, - [7058]={ + [7063]={ [1]={ [1]={ limit={ @@ -154448,7 +154528,7 @@ return { [1]="heist_contract_no_travel_cost" } }, - [7059]={ + [7064]={ [1]={ [1]={ limit={ @@ -154477,7 +154557,7 @@ return { [1]="heist_contract_npc_cost_+%" } }, - [7060]={ + [7065]={ [1]={ [1]={ limit={ @@ -154506,7 +154586,7 @@ return { [1]="heist_contract_objective_completion_time_+%" } }, - [7061]={ + [7066]={ [1]={ [1]={ limit={ @@ -154535,7 +154615,7 @@ return { [1]="heist_contract_patrol_additional_elite_chance_+%" } }, - [7062]={ + [7067]={ [1]={ [1]={ limit={ @@ -154564,7 +154644,7 @@ return { [1]="heist_contract_patrol_damage_+%" } }, - [7063]={ + [7068]={ [1]={ [1]={ limit={ @@ -154593,7 +154673,7 @@ return { [1]="heist_contract_patrol_take_damage_+%" } }, - [7064]={ + [7069]={ [1]={ [1]={ limit={ @@ -154622,7 +154702,7 @@ return { [1]="heist_contract_side_area_monsters_damage_+%" } }, - [7065]={ + [7070]={ [1]={ [1]={ limit={ @@ -154651,7 +154731,7 @@ return { [1]="heist_contract_side_area_monsters_take_damage_+%" } }, - [7066]={ + [7071]={ [1]={ [1]={ limit={ @@ -154680,7 +154760,7 @@ return { [1]="heist_contract_total_cost_+%_final" } }, - [7067]={ + [7072]={ [1]={ [1]={ limit={ @@ -154709,7 +154789,7 @@ return { [1]="heist_contract_travel_cost_+%" } }, - [7068]={ + [7073]={ [1]={ [1]={ limit={ @@ -154734,7 +154814,7 @@ return { [1]="heist_currency_alchemy_drops_as_blessed_%" } }, - [7069]={ + [7074]={ [1]={ [1]={ limit={ @@ -154759,7 +154839,7 @@ return { [1]="heist_currency_alchemy_drops_as_divine_%" } }, - [7070]={ + [7075]={ [1]={ [1]={ limit={ @@ -154784,7 +154864,7 @@ return { [1]="heist_currency_alchemy_drops_as_exalted_%" } }, - [7071]={ + [7076]={ [1]={ [1]={ limit={ @@ -154809,7 +154889,7 @@ return { [1]="heist_currency_alteration_drops_as_alchemy_%" } }, - [7072]={ + [7077]={ [1]={ [1]={ limit={ @@ -154834,7 +154914,7 @@ return { [1]="heist_currency_alteration_drops_as_chaos_%" } }, - [7073]={ + [7078]={ [1]={ [1]={ limit={ @@ -154859,7 +154939,7 @@ return { [1]="heist_currency_alteration_drops_as_regal_%" } }, - [7074]={ + [7079]={ [1]={ [1]={ limit={ @@ -154884,7 +154964,7 @@ return { [1]="heist_currency_augmentation_drops_as_alchemy_%" } }, - [7075]={ + [7080]={ [1]={ [1]={ limit={ @@ -154909,7 +154989,7 @@ return { [1]="heist_currency_augmentation_drops_as_chaos_%" } }, - [7076]={ + [7081]={ [1]={ [1]={ limit={ @@ -154934,7 +155014,7 @@ return { [1]="heist_currency_augmentation_drops_as_regal_%" } }, - [7077]={ + [7082]={ [1]={ [1]={ limit={ @@ -154959,7 +155039,7 @@ return { [1]="heist_currency_chaos_drops_as_blessed_%" } }, - [7078]={ + [7083]={ [1]={ [1]={ limit={ @@ -154984,7 +155064,7 @@ return { [1]="heist_currency_chaos_drops_as_divine_%" } }, - [7079]={ + [7084]={ [1]={ [1]={ limit={ @@ -155009,7 +155089,7 @@ return { [1]="heist_currency_chaos_drops_as_exalted_%" } }, - [7080]={ + [7085]={ [1]={ [1]={ limit={ @@ -155034,7 +155114,7 @@ return { [1]="heist_currency_chromatic_drops_as_fusing_%" } }, - [7081]={ + [7086]={ [1]={ [1]={ limit={ @@ -155059,7 +155139,7 @@ return { [1]="heist_currency_chromatic_drops_as_jewellers_%" } }, - [7082]={ + [7087]={ [1]={ [1]={ limit={ @@ -155084,7 +155164,7 @@ return { [1]="heist_currency_jewellers_drops_as_fusing_%" } }, - [7083]={ + [7088]={ [1]={ [1]={ limit={ @@ -155109,7 +155189,7 @@ return { [1]="heist_currency_regal_drops_as_blessed_%" } }, - [7084]={ + [7089]={ [1]={ [1]={ limit={ @@ -155134,7 +155214,7 @@ return { [1]="heist_currency_regal_drops_as_divine_%" } }, - [7085]={ + [7090]={ [1]={ [1]={ limit={ @@ -155159,7 +155239,7 @@ return { [1]="heist_currency_regal_drops_as_exalted_%" } }, - [7086]={ + [7091]={ [1]={ [1]={ limit={ @@ -155184,7 +155264,7 @@ return { [1]="heist_currency_regret_drops_as_annulment_%" } }, - [7087]={ + [7092]={ [1]={ [1]={ limit={ @@ -155209,7 +155289,7 @@ return { [1]="heist_currency_scouring_drops_as_annulment_%" } }, - [7088]={ + [7093]={ [1]={ [1]={ limit={ @@ -155234,7 +155314,7 @@ return { [1]="heist_currency_scouring_drops_as_regret_%" } }, - [7089]={ + [7094]={ [1]={ [1]={ limit={ @@ -155259,7 +155339,7 @@ return { [1]="heist_currency_transmutation_drops_as_alchemy_%" } }, - [7090]={ + [7095]={ [1]={ [1]={ limit={ @@ -155284,7 +155364,7 @@ return { [1]="heist_currency_transmutation_drops_as_chaos_%" } }, - [7091]={ + [7096]={ [1]={ [1]={ limit={ @@ -155309,7 +155389,7 @@ return { [1]="heist_currency_transmutation_drops_as_regal_%" } }, - [7092]={ + [7097]={ [1]={ [1]={ limit={ @@ -155334,7 +155414,7 @@ return { [1]="heist_drops_double_currency_%" } }, - [7093]={ + [7098]={ [1]={ [1]={ limit={ @@ -155350,7 +155430,7 @@ return { [1]="heist_guards_are_magic" } }, - [7094]={ + [7099]={ [1]={ [1]={ limit={ @@ -155366,7 +155446,7 @@ return { [1]="heist_guards_are_rare" } }, - [7095]={ + [7100]={ [1]={ [1]={ limit={ @@ -155382,7 +155462,7 @@ return { [1]="heist_interruption_resistance_%" } }, - [7096]={ + [7101]={ [1]={ [1]={ limit={ @@ -155411,7 +155491,7 @@ return { [1]="heist_item_quantity_+%" } }, - [7097]={ + [7102]={ [1]={ [1]={ limit={ @@ -155440,7 +155520,7 @@ return { [1]="heist_item_rarity_+%" } }, - [7098]={ + [7103]={ [1]={ [1]={ limit={ @@ -155465,7 +155545,7 @@ return { [1]="heist_items_are_fully_linked_%" } }, - [7099]={ + [7104]={ [1]={ [1]={ limit={ @@ -155490,7 +155570,7 @@ return { [1]="heist_items_drop_corrupted_%" } }, - [7100]={ + [7105]={ [1]={ [1]={ limit={ @@ -155515,7 +155595,7 @@ return { [1]="heist_items_drop_identified_%" } }, - [7101]={ + [7106]={ [1]={ [1]={ limit={ @@ -155540,7 +155620,7 @@ return { [1]="heist_items_have_elder_influence_%" } }, - [7102]={ + [7107]={ [1]={ [1]={ limit={ @@ -155565,7 +155645,7 @@ return { [1]="heist_items_have_one_additional_socket_%" } }, - [7103]={ + [7108]={ [1]={ [1]={ limit={ @@ -155590,7 +155670,7 @@ return { [1]="heist_items_have_shaper_influence_%" } }, - [7104]={ + [7109]={ [1]={ [1]={ limit={ @@ -155606,7 +155686,7 @@ return { [1]="heist_job_agility_level_+" } }, - [7105]={ + [7110]={ [1]={ [1]={ limit={ @@ -155622,7 +155702,7 @@ return { [1]="heist_job_brute_force_level_+" } }, - [7106]={ + [7111]={ [1]={ [1]={ limit={ @@ -155638,7 +155718,7 @@ return { [1]="heist_job_counter_thaumaturgy_level_+" } }, - [7107]={ + [7112]={ [1]={ [1]={ limit={ @@ -155654,7 +155734,7 @@ return { [1]="heist_job_deception_level_+" } }, - [7108]={ + [7113]={ [1]={ [1]={ limit={ @@ -155670,7 +155750,7 @@ return { [1]="heist_job_demolition_level_+" } }, - [7109]={ + [7114]={ [1]={ [1]={ limit={ @@ -155699,7 +155779,7 @@ return { [1]="heist_job_demolition_speed_+%" } }, - [7110]={ + [7115]={ [1]={ [1]={ limit={ @@ -155715,7 +155795,7 @@ return { [1]="heist_job_engineering_level_+" } }, - [7111]={ + [7116]={ [1]={ [1]={ limit={ @@ -155731,7 +155811,7 @@ return { [1]="heist_job_lockpicking_level_+" } }, - [7112]={ + [7117]={ [1]={ [1]={ limit={ @@ -155760,7 +155840,7 @@ return { [1]="heist_job_lockpicking_speed_+%" } }, - [7113]={ + [7118]={ [1]={ [1]={ limit={ @@ -155776,7 +155856,7 @@ return { [1]="heist_job_perception_level_+" } }, - [7114]={ + [7119]={ [1]={ [1]={ limit={ @@ -155792,7 +155872,7 @@ return { [1]="heist_job_trap_disarmament_level_+" } }, - [7115]={ + [7120]={ [1]={ [1]={ limit={ @@ -155821,7 +155901,7 @@ return { [1]="heist_job_trap_disarmament_speed_+%" } }, - [7116]={ + [7121]={ [1]={ [1]={ limit={ @@ -155837,7 +155917,7 @@ return { [1]="heist_lockdown_is_instant" } }, - [7117]={ + [7122]={ [1]={ [1]={ limit={ @@ -155853,7 +155933,7 @@ return { [1]="heist_nenet_scouts_nearby_patrols_and_mini_bosses" } }, - [7118]={ + [7123]={ [1]={ [1]={ limit={ @@ -155882,7 +155962,7 @@ return { [1]="heist_npc_blueprint_reveal_cost_+%" } }, - [7119]={ + [7124]={ [1]={ [1]={ limit={ @@ -155907,7 +155987,7 @@ return { [1]="heist_npc_contract_generates_gianna_intelligence" } }, - [7120]={ + [7125]={ [1]={ [1]={ limit={ @@ -155932,7 +156012,7 @@ return { [1]="heist_npc_contract_generates_niles_intelligence" } }, - [7121]={ + [7126]={ [1]={ [1]={ limit={ @@ -155948,7 +156028,7 @@ return { [1]="heist_npc_display_huck_combat" } }, - [7122]={ + [7127]={ [1]={ [1]={ limit={ @@ -155977,7 +156057,7 @@ return { [1]="heist_npc_karst_alert_level_from_chests_+%_final" } }, - [7123]={ + [7128]={ [1]={ [1]={ limit={ @@ -156006,7 +156086,7 @@ return { [1]="heist_npc_nenet_alert_level_+%_final" } }, - [7124]={ + [7129]={ [1]={ [1]={ limit={ @@ -156035,7 +156115,7 @@ return { [1]="heist_npc_tullina_alert_level_+%_final" } }, - [7125]={ + [7130]={ [1]={ [1]={ limit={ @@ -156064,7 +156144,7 @@ return { [1]="heist_npc_vinderi_alert_level_+%_final" } }, - [7126]={ + [7131]={ [1]={ [1]={ limit={ @@ -156080,7 +156160,7 @@ return { [1]="heist_patrols_are_magic" } }, - [7127]={ + [7132]={ [1]={ [1]={ limit={ @@ -156096,7 +156176,7 @@ return { [1]="heist_patrols_are_rare" } }, - [7128]={ + [7133]={ [1]={ [1]={ limit={ @@ -156112,7 +156192,7 @@ return { [1]="heist_player_additional_maximum_resistances_%_per_25%_alert_level" } }, - [7129]={ + [7134]={ [1]={ [1]={ limit={ @@ -156141,7 +156221,7 @@ return { [1]="heist_player_armour_+%_final_per_25%_alert_level" } }, - [7130]={ + [7135]={ [1]={ [1]={ limit={ @@ -156157,7 +156237,7 @@ return { [1]="heist_player_cold_resistance_%_per_25%_alert_level" } }, - [7131]={ + [7136]={ [1]={ [1]={ limit={ @@ -156186,7 +156266,7 @@ return { [1]="heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level" } }, - [7132]={ + [7137]={ [1]={ [1]={ limit={ @@ -156215,7 +156295,7 @@ return { [1]="heist_player_evasion_rating_+%_final_per_25%_alert_level" } }, - [7133]={ + [7138]={ [1]={ [1]={ limit={ @@ -156244,7 +156324,7 @@ return { [1]="heist_player_experience_gain_+%" } }, - [7134]={ + [7139]={ [1]={ [1]={ limit={ @@ -156260,7 +156340,7 @@ return { [1]="heist_player_fire_resistance_%_per_25%_alert_level" } }, - [7135]={ + [7140]={ [1]={ [1]={ limit={ @@ -156289,7 +156369,7 @@ return { [1]="heist_player_flask_charges_gained_+%_per_25%_alert_level" } }, - [7136]={ + [7141]={ [1]={ [1]={ limit={ @@ -156318,7 +156398,7 @@ return { [1]="heist_player_life_recovery_rate_+%_final_per_25%_alert_level" } }, - [7137]={ + [7142]={ [1]={ [1]={ limit={ @@ -156334,7 +156414,7 @@ return { [1]="heist_player_lightning_resistance_%_per_25%_alert_level" } }, - [7138]={ + [7143]={ [1]={ [1]={ limit={ @@ -156363,7 +156443,7 @@ return { [1]="heist_player_mana_recovery_rate_+%_final_per_25%_alert_level" } }, - [7139]={ + [7144]={ [1]={ [1]={ limit={ @@ -156392,7 +156472,7 @@ return { [1]="heist_reinforcements_attack_speed_+%" } }, - [7140]={ + [7145]={ [1]={ [1]={ limit={ @@ -156421,7 +156501,7 @@ return { [1]="heist_reinforcements_cast_speed_+%" } }, - [7141]={ + [7146]={ [1]={ [1]={ limit={ @@ -156450,7 +156530,7 @@ return { [1]="heist_reinforcements_movements_speed_+%" } }, - [7142]={ + [7147]={ [1]={ [1]={ limit={ @@ -156479,7 +156559,7 @@ return { [1]="heist_side_reward_room_monsters_+%" } }, - [7143]={ + [7148]={ [1]={ [1]={ limit={ @@ -156504,7 +156584,7 @@ return { [1]="hellscape_extra_item_slots" } }, - [7144]={ + [7149]={ [1]={ [1]={ limit={ @@ -156529,7 +156609,7 @@ return { [1]="hellscape_extra_map_slots" } }, - [7145]={ + [7150]={ [1]={ [1]={ limit={ @@ -156545,7 +156625,7 @@ return { [1]="hellscaping_add_corruption_implicit_chance_%" } }, - [7146]={ + [7151]={ [1]={ [1]={ limit={ @@ -156561,7 +156641,7 @@ return { [1]="hellscaping_add_explicit_mod_chance_%" } }, - [7147]={ + [7152]={ [1]={ [1]={ limit={ @@ -156577,7 +156657,7 @@ return { [1]="hellscaping_additional_link_chance_%" } }, - [7148]={ + [7153]={ [1]={ [1]={ limit={ @@ -156593,7 +156673,7 @@ return { [1]="hellscaping_additional_socket_chance_%" } }, - [7149]={ + [7154]={ [1]={ [1]={ limit={ @@ -156609,7 +156689,7 @@ return { [1]="hellscaping_additional_upside_chance_%" } }, - [7150]={ + [7155]={ [1]={ [1]={ limit={ @@ -156625,7 +156705,7 @@ return { [1]="hellscaping_downsides_tier_downgrade_chance_%" } }, - [7151]={ + [7156]={ [1]={ [1]={ limit={ @@ -156641,7 +156721,7 @@ return { [1]="hellscaping_speed_+%_per_map_hellscape_tier" } }, - [7152]={ + [7157]={ [1]={ [1]={ limit={ @@ -156657,7 +156737,7 @@ return { [1]="armour_hellscaping_speed_+%" } }, - [7153]={ + [7158]={ [1]={ [1]={ limit={ @@ -156673,7 +156753,7 @@ return { [1]="jewellery_hellscaping_speed_+%" } }, - [7154]={ + [7159]={ [1]={ [1]={ limit={ @@ -156689,7 +156769,7 @@ return { [1]="map_hellscaping_speed_+%" } }, - [7155]={ + [7160]={ [1]={ [1]={ limit={ @@ -156705,7 +156785,7 @@ return { [1]="weapon_hellscaping_speed_+%" } }, - [7156]={ + [7161]={ [1]={ [1]={ limit={ @@ -156721,7 +156801,7 @@ return { [1]="quiver_hellscaping_speed_+%" } }, - [7157]={ + [7162]={ [1]={ [1]={ limit={ @@ -156737,7 +156817,7 @@ return { [1]="hellscaping_upgrade_mod_tier_chance_%" } }, - [7158]={ + [7163]={ [1]={ [1]={ limit={ @@ -156753,7 +156833,7 @@ return { [1]="hellscaping_upsides_tier_upgrade_chance_%" } }, - [7159]={ + [7164]={ [1]={ [1]={ limit={ @@ -156769,7 +156849,7 @@ return { [1]="helmet_mod_freeze_as_though_damage_+%_final" } }, - [7160]={ + [7165]={ [1]={ [1]={ limit={ @@ -156785,7 +156865,7 @@ return { [1]="helmet_mod_shock_as_though_damage_+%_final" } }, - [7161]={ + [7166]={ [1]={ [1]={ limit={ @@ -156814,7 +156894,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [7162]={ + [7167]={ [1]={ [1]={ limit={ @@ -156830,7 +156910,7 @@ return { [1]="herald_mana_reservation_override_45%" } }, - [7163]={ + [7168]={ [1]={ [1]={ limit={ @@ -156859,7 +156939,7 @@ return { [1]="herald_of_agony_buff_drop_off_speed_+%" } }, - [7164]={ + [7169]={ [1]={ [1]={ limit={ @@ -156888,7 +156968,7 @@ return { [1]="herald_of_agony_buff_effect_+%" } }, - [7165]={ + [7170]={ [1]={ [1]={ [1]={ @@ -156925,7 +157005,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_-2%_per_1" } }, - [7166]={ + [7171]={ [1]={ [1]={ limit={ @@ -156954,7 +157034,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_+%" } }, - [7167]={ + [7172]={ [1]={ [1]={ limit={ @@ -156987,7 +157067,7 @@ return { [1]="herald_of_agony_mana_reservation_+%" } }, - [7168]={ + [7173]={ [1]={ [1]={ limit={ @@ -157016,7 +157096,7 @@ return { [1]="herald_of_ash_buff_effect_+%" } }, - [7169]={ + [7174]={ [1]={ [1]={ [1]={ @@ -157053,7 +157133,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_-2%_per_1" } }, - [7170]={ + [7175]={ [1]={ [1]={ limit={ @@ -157082,7 +157162,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_+%" } }, - [7171]={ + [7176]={ [1]={ [1]={ limit={ @@ -157111,7 +157191,7 @@ return { [1]="herald_of_ice_buff_effect_+%" } }, - [7172]={ + [7177]={ [1]={ [1]={ [1]={ @@ -157148,7 +157228,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [7173]={ + [7178]={ [1]={ [1]={ limit={ @@ -157177,7 +157257,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_+%" } }, - [7174]={ + [7179]={ [1]={ [1]={ limit={ @@ -157193,7 +157273,7 @@ return { [1]="herald_of_light_and_dominating_blow_minions_use_holy_slam" } }, - [7175]={ + [7180]={ [1]={ [1]={ limit={ @@ -157222,7 +157302,7 @@ return { [1]="herald_of_light_buff_effect_+%" } }, - [7176]={ + [7181]={ [1]={ [1]={ limit={ @@ -157251,7 +157331,7 @@ return { [1]="herald_of_light_minion_area_of_effect_+%" } }, - [7177]={ + [7182]={ [1]={ [1]={ [1]={ @@ -157288,7 +157368,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_-2%_per_1" } }, - [7178]={ + [7183]={ [1]={ [1]={ limit={ @@ -157317,7 +157397,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_+%" } }, - [7179]={ + [7184]={ [1]={ [1]={ limit={ @@ -157350,7 +157430,7 @@ return { [1]="herald_of_purity_mana_reservation_+%" } }, - [7180]={ + [7185]={ [1]={ [1]={ limit={ @@ -157375,7 +157455,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [7181]={ + [7186]={ [1]={ [1]={ limit={ @@ -157404,7 +157484,7 @@ return { [1]="herald_of_thunder_buff_effect_+%" } }, - [7182]={ + [7187]={ [1]={ [1]={ [1]={ @@ -157441,7 +157521,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_-2%_per_1" } }, - [7183]={ + [7188]={ [1]={ [1]={ limit={ @@ -157470,7 +157550,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_+%" } }, - [7184]={ + [7189]={ [1]={ [1]={ limit={ @@ -157495,7 +157575,23 @@ return { [1]="herald_scorpion_number_of_additional_projectiles" } }, - [7185]={ + [7190]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Herald Skill Gems" + } + }, + stats={ + [1]="herald_skill_gem_level_+" + } + }, + [7191]={ [1]={ [1]={ [1]={ @@ -157532,7 +157628,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_-2%_per_1" } }, - [7186]={ + [7192]={ [1]={ [1]={ limit={ @@ -157561,7 +157657,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_+%" } }, - [7187]={ + [7193]={ [1]={ [1]={ limit={ @@ -157590,7 +157686,7 @@ return { [1]="herald_skills_mana_reservation_+%" } }, - [7188]={ + [7194]={ [1]={ [1]={ limit={ @@ -157619,7 +157715,7 @@ return { [1]="hex_skill_duration_+%" } }, - [7189]={ + [7195]={ [1]={ [1]={ limit={ @@ -157648,7 +157744,7 @@ return { [1]="hexblast_damage_+%" } }, - [7190]={ + [7196]={ [1]={ [1]={ limit={ @@ -157664,7 +157760,7 @@ return { [1]="hexblast_%_chance_to_not_consume_hex" } }, - [7191]={ + [7197]={ [1]={ [1]={ limit={ @@ -157693,7 +157789,7 @@ return { [1]="hexblast_skill_area_of_effect_+%" } }, - [7192]={ + [7198]={ [1]={ [1]={ [1]={ @@ -157722,7 +157818,7 @@ return { [2]="hex_remove_at_effect_variance" } }, - [7193]={ + [7199]={ [1]={ [1]={ limit={ @@ -157738,7 +157834,7 @@ return { [1]="hexproof_if_right_ring_is_magic_item" } }, - [7194]={ + [7200]={ [1]={ [1]={ limit={ @@ -157754,7 +157850,7 @@ return { [1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%" } }, - [7195]={ + [7201]={ [1]={ [1]={ limit={ @@ -157770,7 +157866,7 @@ return { [1]="hierophant_gain_arcane_surge_on_mana_use_threshold" } }, - [7196]={ + [7202]={ [1]={ [1]={ limit={ @@ -157799,7 +157895,7 @@ return { [1]="hierophant_mana_cost_+%_final" } }, - [7197]={ + [7203]={ [1]={ [1]={ limit={ @@ -157828,7 +157924,7 @@ return { [1]="hierophant_mana_reservation_+%_final" } }, - [7198]={ + [7204]={ [1]={ [1]={ limit={ @@ -157844,7 +157940,7 @@ return { [1]="hinder_chance_%_on_spreading_poioson" } }, - [7199]={ + [7205]={ [1]={ [1]={ limit={ @@ -157873,7 +157969,7 @@ return { [1]="hinder_duration_+%" } }, - [7200]={ + [7206]={ [1]={ [1]={ limit={ @@ -157902,7 +157998,7 @@ return { [1]="hinder_effect_on_self_+%" } }, - [7201]={ + [7207]={ [1]={ [1]={ limit={ @@ -157931,7 +158027,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [7202]={ + [7208]={ [1]={ [1]={ limit={ @@ -157960,7 +158056,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [7203]={ + [7209]={ [1]={ [1]={ limit={ @@ -157989,7 +158085,7 @@ return { [1]="hinder_enemy_elemental_damage_taken_+%" } }, - [7204]={ + [7210]={ [1]={ [1]={ limit={ @@ -158018,7 +158114,7 @@ return { [1]="hinder_enemy_physical_damage_taken_+%" } }, - [7205]={ + [7211]={ [1]={ [1]={ limit={ @@ -158047,7 +158143,7 @@ return { [1]="hit_damage_+%_against_enemies_in_presence" } }, - [7206]={ + [7212]={ [1]={ [1]={ limit={ @@ -158076,7 +158172,7 @@ return { [1]="hit_damage_+%_vs_ignited_enemies" } }, - [7207]={ + [7213]={ [1]={ [1]={ limit={ @@ -158105,7 +158201,7 @@ return { [1]="hit_damage_electrocute_multiplier_+%" } }, - [7208]={ + [7214]={ [1]={ [1]={ limit={ @@ -158134,7 +158230,7 @@ return { [1]="hit_damage_electrocute_multiplier_+%_vs_shocked_enemies" } }, - [7209]={ + [7215]={ [1]={ [1]={ limit={ @@ -158163,7 +158259,7 @@ return { [1]="hit_damage_freeze_multiplier_+%_with_empowered_attacks" } }, - [7210]={ + [7216]={ [1]={ [1]={ limit={ @@ -158192,7 +158288,7 @@ return { [1]="hit_damage_freeze_multiplier_+%_against_ignited_enemies" } }, - [7211]={ + [7217]={ [1]={ [1]={ limit={ @@ -158221,7 +158317,7 @@ return { [1]="hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently" } }, - [7212]={ + [7218]={ [1]={ [1]={ limit={ @@ -158250,7 +158346,7 @@ return { [1]="hit_damage_immobilisation_multiplier_+%" } }, - [7213]={ + [7219]={ [1]={ [1]={ limit={ @@ -158279,7 +158375,7 @@ return { [1]="hit_damage_immobilisation_multiplier_+%_vs_constructs" } }, - [7214]={ + [7220]={ [1]={ [1]={ limit={ @@ -158308,7 +158404,7 @@ return { [1]="hit_damage_pin_multiplier_+%" } }, - [7215]={ + [7221]={ [1]={ [1]={ limit={ @@ -158337,7 +158433,7 @@ return { [1]="hit_damage_+%" } }, - [7216]={ + [7222]={ [1]={ [1]={ limit={ @@ -158366,7 +158462,7 @@ return { [1]="hit_damage_+%_vs_bleeding_enemies" } }, - [7217]={ + [7223]={ [1]={ [1]={ limit={ @@ -158395,7 +158491,7 @@ return { [1]="hit_damage_+%_vs_blinded_enemies" } }, - [7218]={ + [7224]={ [1]={ [1]={ limit={ @@ -158424,7 +158520,7 @@ return { [1]="hit_damage_+%_vs_chilled_enemies" } }, - [7219]={ + [7225]={ [1]={ [1]={ limit={ @@ -158453,7 +158549,7 @@ return { [1]="hit_damage_+%_vs_cursed_enemies" } }, - [7220]={ + [7226]={ [1]={ [1]={ limit={ @@ -158482,7 +158578,7 @@ return { [1]="hit_damage_+%_vs_enemies_affected_by_ailments" } }, - [7221]={ + [7227]={ [1]={ [1]={ limit={ @@ -158511,7 +158607,7 @@ return { [1]="hit_damage_+%_vs_unique_enemies" } }, - [7222]={ + [7228]={ [1]={ [1]={ limit={ @@ -158540,7 +158636,7 @@ return { [1]="hit_damage_stun_multiplier_+%_if_youve_shapeshifted_to_animal_recently" } }, - [7223]={ + [7229]={ [1]={ [1]={ limit={ @@ -158569,7 +158665,7 @@ return { [1]="hit_damage_stun_multiplier_+%_per_10_tribute" } }, - [7224]={ + [7230]={ [1]={ [1]={ limit={ @@ -158598,7 +158694,7 @@ return { [1]="hit_damage_stun_multiplier_+%_while_shapeshifted" } }, - [7225]={ + [7231]={ [1]={ [1]={ limit={ @@ -158627,7 +158723,7 @@ return { [1]="hit_damage_stun_multiplier_+%_vs_enemies_at_close_range" } }, - [7226]={ + [7232]={ [1]={ [1]={ limit={ @@ -158652,7 +158748,7 @@ return { [1]="hit_damage_stun_multiplier_+%_vs_enemies_on_low_life" } }, - [7227]={ + [7233]={ [1]={ [1]={ limit={ @@ -158677,7 +158773,7 @@ return { [1]="hit_for_%_max_life_es_on_max_infernal_flame" } }, - [7228]={ + [7234]={ [1]={ [1]={ limit={ @@ -158693,7 +158789,7 @@ return { [1]="hit_for_%_of_infernal_flame_on_max_infernal_flame" } }, - [7229]={ + [7235]={ [1]={ [1]={ limit={ @@ -158709,7 +158805,7 @@ return { [1]="hits_against_you_overwhelm_x%_of_physical_damage_reduction" } }, - [7230]={ + [7236]={ [1]={ [1]={ limit={ @@ -158725,7 +158821,7 @@ return { [1]="hits_cannot_be_evaded_vs_blinded_enemies" } }, - [7231]={ + [7237]={ [1]={ [1]={ limit={ @@ -158741,7 +158837,7 @@ return { [1]="hits_cannot_be_evaded_vs_blinded_maimed_bleeding_enemies" } }, - [7232]={ + [7238]={ [1]={ [1]={ limit={ @@ -158757,7 +158853,7 @@ return { [1]="hits_cannot_be_evaded_vs_heavy_stunned_enemies" } }, - [7233]={ + [7239]={ [1]={ [1]={ limit={ @@ -158773,7 +158869,7 @@ return { [1]="hits_from_maces_and_sceptres_crush_enemies" } }, - [7234]={ + [7240]={ [1]={ [1]={ limit={ @@ -158789,7 +158885,7 @@ return { [1]="hits_ignore_elemental_resistances_vs_frozen_enemies" } }, - [7235]={ + [7241]={ [1]={ [1]={ limit={ @@ -158805,7 +158901,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped" } }, - [7236]={ + [7242]={ [1]={ [1]={ limit={ @@ -158821,7 +158917,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped" } }, - [7237]={ + [7243]={ [1]={ [1]={ limit={ @@ -158837,7 +158933,7 @@ return { [1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited" } }, - [7238]={ + [7244]={ [1]={ [1]={ limit={ @@ -158853,7 +158949,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds" } }, - [7239]={ + [7245]={ [1]={ [1]={ limit={ @@ -158878,7 +158974,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [7240]={ + [7246]={ [1]={ [1]={ limit={ @@ -158894,7 +158990,7 @@ return { [1]="hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%" } }, - [7241]={ + [7247]={ [1]={ [1]={ limit={ @@ -158910,7 +159006,7 @@ return { [1]="hits_treat_enemy_cold_resistance_as_x%" } }, - [7242]={ + [7248]={ [1]={ [1]={ limit={ @@ -158926,7 +159022,7 @@ return { [1]="hits_treat_enemy_fire_resistance_as_x%" } }, - [7243]={ + [7249]={ [1]={ [1]={ limit={ @@ -158942,7 +159038,7 @@ return { [1]="hits_treat_enemy_lightning_resistance_as_x%" } }, - [7244]={ + [7250]={ [1]={ [1]={ limit={ @@ -158958,7 +159054,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond" } }, - [7245]={ + [7251]={ [1]={ [1]={ limit={ @@ -158974,7 +159070,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [7246]={ + [7252]={ [1]={ [1]={ limit={ @@ -159003,7 +159099,7 @@ return { [1]="holy_relic_area_of_effect_+%" } }, - [7247]={ + [7253]={ [1]={ [1]={ limit={ @@ -159019,7 +159115,7 @@ return { [1]="holy_relic_buff_effect_+%" } }, - [7248]={ + [7254]={ [1]={ [1]={ limit={ @@ -159052,7 +159148,7 @@ return { [1]="holy_relic_cooldown_recovery_+%" } }, - [7249]={ + [7255]={ [1]={ [1]={ limit={ @@ -159081,7 +159177,7 @@ return { [1]="holy_relic_damage_+%" } }, - [7250]={ + [7256]={ [1]={ [1]={ limit={ @@ -159110,7 +159206,7 @@ return { [1]="husk_of_dreams_flask_charges_used_-%_final" } }, - [7251]={ + [7257]={ [1]={ [1]={ limit={ @@ -159139,7 +159235,7 @@ return { [1]="hydro_sphere_pulse_frequency_+%" } }, - [7252]={ + [7258]={ [1]={ [1]={ limit={ @@ -159155,7 +159251,7 @@ return { [1]="ice_and_lightning_trap_base_penetrate_elemental_resistances_%" } }, - [7253]={ + [7259]={ [1]={ [1]={ limit={ @@ -159171,7 +159267,7 @@ return { [1]="ice_and_lightning_trap_can_be_triggered_by_warcries" } }, - [7254]={ + [7260]={ [1]={ [1]={ limit={ @@ -159187,7 +159283,7 @@ return { [1]="ice_and_lightning_traps_cannot_be_triggered_by_enemies" } }, - [7255]={ + [7261]={ [1]={ [1]={ limit={ @@ -159203,7 +159299,7 @@ return { [1]="ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen" } }, - [7256]={ + [7262]={ [1]={ [1]={ limit={ @@ -159232,7 +159328,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [7257]={ + [7263]={ [1]={ [1]={ limit={ @@ -159261,7 +159357,7 @@ return { [1]="ice_crystal_maximum_life_+%" } }, - [7258]={ + [7264]={ [1]={ [1]={ limit={ @@ -159290,7 +159386,7 @@ return { [1]="ice_crystal_maximum_life_+%_per_5%_cold_resistance" } }, - [7259]={ + [7265]={ [1]={ [1]={ limit={ @@ -159323,7 +159419,7 @@ return { [1]="ice_dash_cooldown_speed_+%" } }, - [7260]={ + [7266]={ [1]={ [1]={ limit={ @@ -159352,7 +159448,7 @@ return { [1]="ice_dash_duration_+%" } }, - [7261]={ + [7267]={ [1]={ [1]={ limit={ @@ -159381,7 +159477,7 @@ return { [1]="ice_dash_travel_distance_+%" } }, - [7262]={ + [7268]={ [1]={ [1]={ limit={ @@ -159397,7 +159493,7 @@ return { [1]="ice_nova_chill_minimum_slow_%" } }, - [7263]={ + [7269]={ [1]={ [1]={ limit={ @@ -159426,7 +159522,7 @@ return { [1]="ice_shot_additional_pierce_per_10_old" } }, - [7264]={ + [7270]={ [1]={ [1]={ limit={ @@ -159455,7 +159551,7 @@ return { [1]="ice_shot_area_angle_+%" } }, - [7265]={ + [7271]={ [1]={ [1]={ limit={ @@ -159480,7 +159576,7 @@ return { [1]="ice_shot_pierce_+" } }, - [7266]={ + [7272]={ [1]={ [1]={ limit={ @@ -159509,7 +159605,7 @@ return { [1]="ice_siphon_trap_chill_effect_+%" } }, - [7267]={ + [7273]={ [1]={ [1]={ limit={ @@ -159538,7 +159634,7 @@ return { [1]="ice_siphon_trap_damage_+%" } }, - [7268]={ + [7274]={ [1]={ [1]={ limit={ @@ -159571,7 +159667,7 @@ return { [1]="ice_siphon_trap_damage_taken_+%_per_beam" } }, - [7269]={ + [7275]={ [1]={ [1]={ limit={ @@ -159600,7 +159696,7 @@ return { [1]="ice_siphon_trap_duration_+%" } }, - [7270]={ + [7276]={ [1]={ [1]={ limit={ @@ -159616,7 +159712,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_nova" } }, - [7271]={ + [7277]={ [1]={ [1]={ limit={ @@ -159632,7 +159728,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_return" } }, - [7272]={ + [7278]={ [1]={ [1]={ limit={ @@ -159665,7 +159761,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [7273]={ + [7279]={ [1]={ [1]={ limit={ @@ -159690,7 +159786,7 @@ return { [1]="ice_spear_number_of_additional_projectiles" } }, - [7274]={ + [7280]={ [1]={ [1]={ limit={ @@ -159706,7 +159802,7 @@ return { [1]="ice_trap_cold_resistance_penetration_%" } }, - [7275]={ + [7281]={ [1]={ [1]={ limit={ @@ -159735,7 +159831,7 @@ return { [1]="skills_gain_damage_+%_per_sockted_or_adjacent_red_support_gem" } }, - [7276]={ + [7282]={ [1]={ [1]={ limit={ @@ -159764,7 +159860,7 @@ return { [1]="skills_gain_skill_speed_+%_per_sockted_or_adjacent_green_support_gem" } }, - [7277]={ + [7283]={ [1]={ [1]={ limit={ @@ -159793,7 +159889,7 @@ return { [1]="skills_gain_critical_strike_chance_+%_per_sockted_or_adjacent_blue_support_gem" } }, - [7278]={ + [7284]={ [1]={ [1]={ limit={ @@ -159809,7 +159905,7 @@ return { [1]="ignite_as_though_dealing_X_damage_in_your_presence" } }, - [7279]={ + [7285]={ [1]={ [1]={ limit={ @@ -159838,7 +159934,7 @@ return { [1]="ignite_effect_on_self_+%_while_shapeshifted" } }, - [7280]={ + [7286]={ [1]={ [1]={ limit={ @@ -159871,7 +159967,7 @@ return { [1]="ignite_effect_on_self_+%" } }, - [7281]={ + [7287]={ [1]={ [1]={ limit={ @@ -159900,7 +159996,7 @@ return { [1]="ignite_effect_+%_against_frozen_enemies" } }, - [7282]={ + [7288]={ [1]={ [1]={ limit={ @@ -159929,7 +160025,7 @@ return { [1]="ignite_effect_+%_if_consumed_endurance_charge_recently" } }, - [7283]={ + [7289]={ [1]={ [1]={ limit={ @@ -159945,7 +160041,7 @@ return { [1]="ignite_ground_as_though_dealing_X_damage_on_using_a_wind_skill" } }, - [7284]={ + [7290]={ [1]={ [1]={ limit={ @@ -159974,7 +160070,7 @@ return { [1]="ignite_magnitude_+%_against_poisoned_enemies" } }, - [7285]={ + [7291]={ [1]={ [1]={ limit={ @@ -160003,7 +160099,7 @@ return { [1]="ignite_shock_chill_duration_+%" } }, - [7286]={ + [7292]={ [1]={ [1]={ limit={ @@ -160019,7 +160115,7 @@ return { [1]="ignites_and_chill_apply_elemental_resistance_+" } }, - [7287]={ + [7293]={ [1]={ [1]={ limit={ @@ -160035,7 +160131,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [7288]={ + [7294]={ [1]={ [1]={ limit={ @@ -160051,7 +160147,7 @@ return { [1]="ignore_armour_movement_penalties_if_you_have_at_least_100_tribute" } }, - [7289]={ + [7295]={ [1]={ [1]={ limit={ @@ -160067,7 +160163,7 @@ return { [1]="ignore_attribute_requirements_for_gloves" } }, - [7290]={ + [7296]={ [1]={ [1]={ limit={ @@ -160083,7 +160179,7 @@ return { [1]="ignore_strength_requirements_of_melee_weapons_and_skills" } }, - [7291]={ + [7297]={ [1]={ [1]={ limit={ @@ -160099,7 +160195,7 @@ return { [1]="ignores_enemy_cold_resistance" } }, - [7292]={ + [7298]={ [1]={ [1]={ limit={ @@ -160115,7 +160211,7 @@ return { [1]="ignores_enemy_fire_resistance" } }, - [7293]={ + [7299]={ [1]={ [1]={ limit={ @@ -160131,7 +160227,7 @@ return { [1]="ignores_enemy_lightning_resistance" } }, - [7294]={ + [7300]={ [1]={ [1]={ limit={ @@ -160156,7 +160252,7 @@ return { [1]="imbue_weapon_max_exerts" } }, - [7295]={ + [7301]={ [1]={ [1]={ limit={ @@ -160172,7 +160268,7 @@ return { [1]="immobilisation_buildup_+%_against_enemies_with_abyssal_wasting" } }, - [7296]={ + [7302]={ [1]={ [1]={ limit={ @@ -160201,7 +160297,7 @@ return { [1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge" } }, - [7297]={ + [7303]={ [1]={ [1]={ [1]={ @@ -160234,7 +160330,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [7298]={ + [7304]={ [1]={ [1]={ limit={ @@ -160250,7 +160346,7 @@ return { [1]="immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion" } }, - [7299]={ + [7305]={ [1]={ [1]={ limit={ @@ -160266,7 +160362,7 @@ return { [1]="immune_to_bleeding_while_archon" } }, - [7300]={ + [7306]={ [1]={ [1]={ limit={ @@ -160282,7 +160378,7 @@ return { [1]="immune_to_bleeding_while_shapeshifted" } }, - [7301]={ + [7307]={ [1]={ [1]={ limit={ @@ -160298,7 +160394,7 @@ return { [1]="immune_to_burning_shocks_and_chilled_ground" } }, - [7302]={ + [7308]={ [1]={ [1]={ limit={ @@ -160314,7 +160410,7 @@ return { [1]="immune_to_chill_if_majority_blue_supports_socketed" } }, - [7303]={ + [7309]={ [1]={ [1]={ limit={ @@ -160330,7 +160426,7 @@ return { [1]="immune_to_corrupted_blood" } }, - [7304]={ + [7310]={ [1]={ [1]={ limit={ @@ -160346,7 +160442,7 @@ return { [1]="immune_to_curses_if_cast_dispair_in_past_10_seconds" } }, - [7305]={ + [7311]={ [1]={ [1]={ limit={ @@ -160362,7 +160458,7 @@ return { [1]="immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse" } }, - [7306]={ + [7312]={ [1]={ [1]={ limit={ @@ -160378,7 +160474,7 @@ return { [1]="immune_to_curses_while_at_least_X_rage" } }, - [7307]={ + [7313]={ [1]={ [1]={ limit={ @@ -160394,7 +160490,7 @@ return { [1]="immune_to_curses_while_channelling" } }, - [7308]={ + [7314]={ [1]={ [1]={ limit={ @@ -160410,7 +160506,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground" } }, - [7309]={ + [7315]={ [1]={ [1]={ limit={ @@ -160426,7 +160522,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold" } }, - [7310]={ + [7316]={ [1]={ [1]={ limit={ @@ -160442,7 +160538,7 @@ return { [1]="immune_to_elemental_ailments_while_you_have_arcane_surge" } }, - [7311]={ + [7317]={ [1]={ [1]={ limit={ @@ -160458,7 +160554,7 @@ return { [1]="immune_to_exposure" } }, - [7312]={ + [7318]={ [1]={ [1]={ limit={ @@ -160474,7 +160570,7 @@ return { [1]="immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds" } }, - [7313]={ + [7319]={ [1]={ [1]={ limit={ @@ -160490,7 +160586,7 @@ return { [1]="immune_to_freeze_and_chill_while_ignited" } }, - [7314]={ + [7320]={ [1]={ [1]={ limit={ @@ -160506,7 +160602,7 @@ return { [1]="immune_to_freeze_chill_while_archon" } }, - [7315]={ + [7321]={ [1]={ [1]={ limit={ @@ -160522,7 +160618,7 @@ return { [1]="immune_to_freeze_while_affected_by_purity_of_ice" } }, - [7316]={ + [7322]={ [1]={ [1]={ limit={ @@ -160538,7 +160634,7 @@ return { [1]="immune_to_hinder" } }, - [7317]={ + [7323]={ [1]={ [1]={ limit={ @@ -160554,7 +160650,7 @@ return { [1]="immune_to_ignite_and_shock" } }, - [7318]={ + [7324]={ [1]={ [1]={ limit={ @@ -160570,7 +160666,7 @@ return { [1]="immune_to_ignite_if_majority_red_supports_socketed" } }, - [7319]={ + [7325]={ [1]={ [1]={ limit={ @@ -160586,7 +160682,7 @@ return { [1]="immune_to_ignite_while_affected_by_purity_of_fire" } }, - [7320]={ + [7326]={ [1]={ [1]={ limit={ @@ -160602,7 +160698,7 @@ return { [1]="immune_to_ignite_while_archon" } }, - [7321]={ + [7327]={ [1]={ [1]={ limit={ @@ -160618,7 +160714,7 @@ return { [1]="immune_to_maim" } }, - [7322]={ + [7328]={ [1]={ [1]={ limit={ @@ -160634,7 +160730,7 @@ return { [1]="immune_to_maim_while_shapeshifted" } }, - [7323]={ + [7329]={ [1]={ [1]={ limit={ @@ -160650,7 +160746,7 @@ return { [1]="immune_to_poison_if_helmet_grants_higher_evasion_than_armour" } }, - [7324]={ + [7330]={ [1]={ [1]={ limit={ @@ -160666,7 +160762,7 @@ return { [1]="immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds" } }, - [7325]={ + [7331]={ [1]={ [1]={ limit={ @@ -160682,7 +160778,7 @@ return { [1]="immune_to_shock_if_majority_green_supports_socketed" } }, - [7326]={ + [7332]={ [1]={ [1]={ limit={ @@ -160698,7 +160794,7 @@ return { [1]="immune_to_shock_while_affected_by_purity_of_lightning" } }, - [7327]={ + [7333]={ [1]={ [1]={ limit={ @@ -160714,7 +160810,7 @@ return { [1]="immune_to_shock_while_archon" } }, - [7328]={ + [7334]={ [1]={ [1]={ limit={ @@ -160730,7 +160826,7 @@ return { [1]="immune_to_status_ailments_while_focused" } }, - [7329]={ + [7335]={ [1]={ [1]={ limit={ @@ -160746,7 +160842,7 @@ return { [1]="immune_to_thorns_damage" } }, - [7330]={ + [7336]={ [1]={ [1]={ limit={ @@ -160762,7 +160858,7 @@ return { [1]="immune_to_wither" } }, - [7331]={ + [7337]={ [1]={ [1]={ limit={ @@ -160778,7 +160874,7 @@ return { [1]="impacting_steel_%_chance_to_not_consume_ammo" } }, - [7332]={ + [7338]={ [1]={ [1]={ limit={ @@ -160807,7 +160903,7 @@ return { [1]="impale_inflicted_by_two_handed_weapons_magnitude_+%" } }, - [7333]={ + [7339]={ [1]={ [1]={ limit={ @@ -160836,7 +160932,7 @@ return { [1]="impale_magnitude_+%" } }, - [7334]={ + [7340]={ [1]={ [1]={ limit={ @@ -160865,7 +160961,7 @@ return { [1]="impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies" } }, - [7335]={ + [7341]={ [1]={ [1]={ limit={ @@ -160894,7 +160990,7 @@ return { [1]="impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies" } }, - [7336]={ + [7342]={ [1]={ [1]={ limit={ @@ -160919,7 +161015,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [7337]={ + [7343]={ [1]={ [1]={ limit={ @@ -160935,7 +161031,7 @@ return { [1]="impale_on_hit_%_chance_with_axes_swords" } }, - [7338]={ + [7344]={ [1]={ [1]={ limit={ @@ -160951,7 +161047,7 @@ return { [1]="impending_doom_base_added_chaos_damage_%_of_current_mana" } }, - [7339]={ + [7345]={ [1]={ [1]={ limit={ @@ -160980,7 +161076,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [7340]={ + [7346]={ [1]={ [1]={ limit={ @@ -161009,7 +161105,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [7341]={ + [7347]={ [1]={ [1]={ limit={ @@ -161038,7 +161134,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [7342]={ + [7348]={ [1]={ [1]={ limit={ @@ -161054,7 +161150,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [7343]={ + [7349]={ [1]={ [1]={ limit={ @@ -161083,7 +161179,7 @@ return { [1]="incision_effect_+%" } }, - [7344]={ + [7350]={ [1]={ [1]={ limit={ @@ -161099,7 +161195,7 @@ return { [1]="incision_you_inflict_applies_%_increased_physical_damage_taken" } }, - [7345]={ + [7351]={ [1]={ [1]={ limit={ @@ -161115,7 +161211,7 @@ return { [1]="increase_crit_chance_by_lowest_of_str_or_int" } }, - [7346]={ + [7352]={ [1]={ [1]={ limit={ @@ -161131,7 +161227,7 @@ return { [1]="increases_and_reductions_to_move_speed_apply_to_es_recharge_rate" } }, - [7347]={ + [7353]={ [1]={ [1]={ limit={ @@ -161156,7 +161252,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [7348]={ + [7354]={ [1]={ [1]={ limit={ @@ -161172,7 +161268,7 @@ return { [1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [7349]={ + [7355]={ [1]={ [1]={ limit={ @@ -161188,7 +161284,7 @@ return { [1]="infernal_cry_area_of_effect_+%" } }, - [7350]={ + [7356]={ [1]={ [1]={ limit={ @@ -161204,7 +161300,7 @@ return { [1]="infernal_cry_cooldown_speed_+%" } }, - [7351]={ + [7357]={ [1]={ }, stats={ @@ -161212,7 +161308,7 @@ return { [2]="infernal_familiar_total_burn_radius" } }, - [7352]={ + [7358]={ [1]={ [1]={ limit={ @@ -161228,7 +161324,7 @@ return { [1]="infernal_familiar_nearby_enemies_fire_damage_taken_+%" } }, - [7353]={ + [7359]={ [1]={ [1]={ [1]={ @@ -161248,7 +161344,7 @@ return { [1]="infernal_familiar_revive_if_killed_by_enemies_ms" } }, - [7354]={ + [7360]={ [1]={ [1]={ limit={ @@ -161264,7 +161360,7 @@ return { [1]="infernalist_burn_life_and_es_%_per_second_if_crit_recently" } }, - [7355]={ + [7361]={ [1]={ [1]={ limit={ @@ -161289,7 +161385,7 @@ return { [1]="infernalist_critical_strike_chance_+%_final" } }, - [7356]={ + [7362]={ [1]={ [1]={ limit={ @@ -161318,7 +161414,7 @@ return { [1]="infernalist_critical_strike_multiplier_+%_final" } }, - [7357]={ + [7363]={ [1]={ [1]={ limit={ @@ -161334,7 +161430,7 @@ return { [1]="infinite_active_block_distance" } }, - [7358]={ + [7364]={ [1]={ [1]={ limit={ @@ -161350,7 +161446,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [7359]={ + [7365]={ [1]={ [1]={ limit={ @@ -161366,7 +161462,7 @@ return { [1]="inflict_blind_on_enemies_within_x_meters_while_shield_is_raised" } }, - [7360]={ + [7366]={ [1]={ [1]={ limit={ @@ -161382,7 +161478,7 @@ return { [1]="inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds" } }, - [7361]={ + [7367]={ [1]={ [1]={ limit={ @@ -161407,7 +161503,7 @@ return { [1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [7362]={ + [7368]={ [1]={ [1]={ limit={ @@ -161423,7 +161519,7 @@ return { [1]="inflict_cold_exposure_on_ignite" } }, - [7363]={ + [7369]={ [1]={ [1]={ limit={ @@ -161439,7 +161535,7 @@ return { [1]="inflict_fire_exposure_if_cast_flammability_in_past_10_seconds" } }, - [7364]={ + [7370]={ [1]={ [1]={ limit={ @@ -161464,7 +161560,7 @@ return { [1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [7365]={ + [7371]={ [1]={ [1]={ limit={ @@ -161480,7 +161576,7 @@ return { [1]="inflict_fire_exposure_on_hits_that_heavy_stun" } }, - [7366]={ + [7372]={ [1]={ [1]={ limit={ @@ -161496,7 +161592,7 @@ return { [1]="inflict_fire_exposure_on_shock" } }, - [7367]={ + [7373]={ [1]={ [1]={ limit={ @@ -161512,7 +161608,7 @@ return { [1]="inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds" } }, - [7368]={ + [7374]={ [1]={ [1]={ limit={ @@ -161528,7 +161624,7 @@ return { [1]="inflict_lightning_exposure_on_crit" } }, - [7369]={ + [7375]={ [1]={ [1]={ limit={ @@ -161544,7 +161640,7 @@ return { [1]="inflict_lightning_exposure_on_electrocute_for_x_seconds" } }, - [7370]={ + [7376]={ [1]={ [1]={ limit={ @@ -161569,7 +161665,7 @@ return { [1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [7371]={ + [7377]={ [1]={ [1]={ limit={ @@ -161585,7 +161681,7 @@ return { [1]="inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds" } }, - [7372]={ + [7378]={ [1]={ [1]={ limit={ @@ -161610,7 +161706,7 @@ return { [1]="inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence" } }, - [7373]={ + [7379]={ [1]={ [1]={ limit={ @@ -161635,7 +161731,7 @@ return { [1]="inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%" } }, - [7374]={ + [7380]={ [1]={ [1]={ limit={ @@ -161660,7 +161756,7 @@ return { [1]="inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%" } }, - [7375]={ + [7381]={ [1]={ [1]={ limit={ @@ -161685,7 +161781,7 @@ return { [1]="inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%" } }, - [7376]={ + [7382]={ [1]={ [1]={ limit={ @@ -161710,7 +161806,7 @@ return { [1]="inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%" } }, - [7377]={ + [7383]={ [1]={ [1]={ limit={ @@ -161735,7 +161831,7 @@ return { [1]="inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%" } }, - [7378]={ + [7384]={ [1]={ [1]={ limit={ @@ -161764,7 +161860,7 @@ return { [1]="infusion_blast_area_of_effect_+%" } }, - [7379]={ + [7385]={ [1]={ [1]={ limit={ @@ -161793,7 +161889,7 @@ return { [1]="infusion_blast_damage_+%" } }, - [7380]={ + [7386]={ [1]={ [1]={ limit={ @@ -161822,7 +161918,7 @@ return { [1]="infusion_duration_+%" } }, - [7381]={ + [7387]={ [1]={ [1]={ limit={ @@ -161851,7 +161947,7 @@ return { [1]="inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%" } }, - [7382]={ + [7388]={ [1]={ [1]={ limit={ @@ -161880,7 +161976,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [7383]={ + [7389]={ [1]={ [1]={ limit={ @@ -161905,7 +162001,7 @@ return { [1]="instability_on_critical_%_chance" } }, - [7384]={ + [7390]={ [1]={ [1]={ limit={ @@ -161930,7 +162026,7 @@ return { [1]="instilling_%_chance_to_gain_additional_instilling_stack" } }, - [7385]={ + [7391]={ [1]={ [1]={ limit={ @@ -161946,7 +162042,7 @@ return { [1]="intelligence_is_0" } }, - [7386]={ + [7392]={ [1]={ [1]={ limit={ @@ -161975,7 +162071,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [7387]={ + [7393]={ [1]={ [1]={ limit={ @@ -161991,7 +162087,7 @@ return { [1]="internecine_draw_%_damage_gained_as_lightning_per_cleansed_form" } }, - [7388]={ + [7394]={ [1]={ [1]={ limit={ @@ -162007,7 +162103,7 @@ return { [1]="internecine_draw_%_damage_gained_as_physical_per_corrupted_form" } }, - [7389]={ + [7395]={ [1]={ [1]={ limit={ @@ -162023,7 +162119,7 @@ return { [1]="internecine_draw_always_bleed_at_maximum_corrupted_form" } }, - [7390]={ + [7396]={ [1]={ [1]={ limit={ @@ -162039,7 +162135,7 @@ return { [1]="internecine_draw_always_shock_at_maximum_cleansed_form" } }, - [7391]={ + [7397]={ [1]={ [1]={ limit={ @@ -162055,7 +162151,7 @@ return { [1]="internecine_draw_gain_cleansing_on_bow_attack" } }, - [7392]={ + [7398]={ [1]={ [1]={ limit={ @@ -162071,7 +162167,7 @@ return { [1]="internecine_draw_gain_corruption_on_bow_attack" } }, - [7393]={ + [7399]={ [1]={ [1]={ limit={ @@ -162087,7 +162183,7 @@ return { [1]="internecine_draw_lightning_damage_taken_on_attack_per_cleansed_form_above_corrupted_form" } }, - [7394]={ + [7400]={ [1]={ [1]={ limit={ @@ -162103,7 +162199,7 @@ return { [1]="internecine_draw_maximum_stacks" } }, - [7395]={ + [7401]={ [1]={ [1]={ limit={ @@ -162119,7 +162215,7 @@ return { [1]="internecine_draw_physical_damage_taken_on_attack_per_corrupted_form_above_cleansed_form" } }, - [7396]={ + [7402]={ [1]={ [1]={ limit={ @@ -162135,7 +162231,7 @@ return { [1]="intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield" } }, - [7397]={ + [7403]={ [1]={ [1]={ limit={ @@ -162151,7 +162247,7 @@ return { [1]="intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds" } }, - [7398]={ + [7404]={ [1]={ [1]={ [1]={ @@ -162184,7 +162280,7 @@ return { [1]="intimidate_enemy_on_block_for_duration_ms" } }, - [7399]={ + [7405]={ [1]={ [1]={ [1]={ @@ -162204,7 +162300,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [7400]={ + [7406]={ [1]={ [1]={ limit={ @@ -162229,7 +162325,7 @@ return { [1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%" } }, - [7401]={ + [7407]={ [1]={ [1]={ limit={ @@ -162245,7 +162341,7 @@ return { [1]="intimidating_cry_area_of_effect_+%" } }, - [7402]={ + [7408]={ [1]={ [1]={ limit={ @@ -162261,7 +162357,7 @@ return { [1]="intimidating_cry_cooldown_speed_+%" } }, - [7403]={ + [7409]={ [1]={ [1]={ limit={ @@ -162290,7 +162386,7 @@ return { [1]="intuitive_link_duration_+%" } }, - [7404]={ + [7410]={ [1]={ [1]={ limit={ @@ -162319,7 +162415,7 @@ return { [1]="invocation_skill_maximum_energy_+%" } }, - [7405]={ + [7411]={ [1]={ [1]={ limit={ @@ -162335,7 +162431,7 @@ return { [1]="invocation_spell_chance_to_cost_half_energy_%" } }, - [7406]={ + [7412]={ [1]={ [1]={ limit={ @@ -162364,7 +162460,7 @@ return { [1]="invocation_spell_critical_strike_chance_+%" } }, - [7407]={ + [7413]={ [1]={ [1]={ limit={ @@ -162393,7 +162489,7 @@ return { [1]="invocation_spell_critical_strike_multiplier_+" } }, - [7408]={ + [7414]={ [1]={ [1]={ limit={ @@ -162422,7 +162518,7 @@ return { [1]="invocation_spell_damage_+%" } }, - [7409]={ + [7415]={ [1]={ [1]={ limit={ @@ -162447,7 +162543,7 @@ return { [1]="is_blighted_map" } }, - [7410]={ + [7416]={ [1]={ [1]={ limit={ @@ -162463,7 +162559,7 @@ return { [1]="item_can_have_catalyst_quality_in_addition_to_base_quality" } }, - [7411]={ + [7417]={ [1]={ [1]={ limit={ @@ -162492,7 +162588,7 @@ return { [1]="item_found_quantity_+%_per_chest_opened_recently" } }, - [7412]={ + [7418]={ [1]={ [1]={ limit={ @@ -162508,7 +162604,7 @@ return { [1]="item_found_rarity_+1%_per_X_rampage_stacks" } }, - [7413]={ + [7419]={ [1]={ [1]={ limit={ @@ -162537,7 +162633,7 @@ return { [1]="jagged_ground_duration_+%" } }, - [7414]={ + [7420]={ [1]={ [1]={ limit={ @@ -162566,7 +162662,7 @@ return { [1]="jagged_ground_effect_+%" } }, - [7415]={ + [7421]={ [1]={ [1]={ limit={ @@ -162595,7 +162691,7 @@ return { [1]="jagged_ground_enemy_damage_taken_+%" } }, - [7416]={ + [7422]={ [1]={ [1]={ [1]={ @@ -162615,7 +162711,7 @@ return { [1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms" } }, - [7417]={ + [7423]={ [1]={ [1]={ limit={ @@ -162631,7 +162727,7 @@ return { [1]="keystone_shepherd_of_souls" } }, - [7418]={ + [7424]={ [1]={ [1]={ limit={ @@ -162656,7 +162752,7 @@ return { [1]="killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance" } }, - [7419]={ + [7425]={ [1]={ [1]={ limit={ @@ -162681,7 +162777,7 @@ return { [1]="kills_count_twice_for_rampage_%" } }, - [7420]={ + [7426]={ [1]={ [1]={ limit={ @@ -162697,7 +162793,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [7421]={ + [7427]={ [1]={ [1]={ limit={ @@ -162726,7 +162822,7 @@ return { [1]="kinetic_bolt_attack_speed_+%" } }, - [7422]={ + [7428]={ [1]={ [1]={ limit={ @@ -162755,7 +162851,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%" } }, - [7423]={ + [7429]={ [1]={ [1]={ limit={ @@ -162771,7 +162867,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%" } }, - [7424]={ + [7430]={ [1]={ [1]={ limit={ @@ -162800,7 +162896,7 @@ return { [1]="kinetic_bolt_projectile_speed_+%" } }, - [7425]={ + [7431]={ [1]={ [1]={ limit={ @@ -162825,7 +162921,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [7426]={ + [7432]={ [1]={ [1]={ limit={ @@ -162841,7 +162937,7 @@ return { [1]="knockback_chance_%_against_bleeding_enemies_with_hits" } }, - [7427]={ + [7433]={ [1]={ [1]={ limit={ @@ -162857,7 +162953,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [7428]={ + [7434]={ [1]={ [1]={ limit={ @@ -162886,7 +162982,7 @@ return { [1]="knockback_distance_+%_final_vs_unique_enemies" } }, - [7429]={ + [7435]={ [1]={ [1]={ limit={ @@ -162902,7 +162998,7 @@ return { [1]="knockback_on_crit_with_projectile_damage" } }, - [7430]={ + [7436]={ [1]={ [1]={ limit={ @@ -162927,7 +163023,7 @@ return { [1]="labyrinth_darkshrine_additional_divine_font_use_display" } }, - [7431]={ + [7437]={ [1]={ [1]={ limit={ @@ -162943,7 +163039,7 @@ return { [1]="labyrinth_darkshrine_boss_room_traps_are_disabled" } }, - [7432]={ + [7438]={ [1]={ [1]={ limit={ @@ -162968,7 +163064,7 @@ return { [1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x" } }, - [7433]={ + [7439]={ [1]={ [1]={ limit={ @@ -162993,7 +163089,7 @@ return { [1]="labyrinth_darkshrine_izaro_dropped_unique_items_+" } }, - [7434]={ + [7440]={ [1]={ [1]={ limit={ @@ -163018,7 +163114,7 @@ return { [1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys" } }, - [7435]={ + [7441]={ [1]={ [1]={ limit={ @@ -163047,7 +163143,7 @@ return { [1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%" } }, - [7436]={ + [7442]={ [1]={ [1]={ limit={ @@ -163207,7 +163303,7 @@ return { [1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth" } }, - [7437]={ + [7443]={ [1]={ [1]={ limit={ @@ -163232,7 +163328,7 @@ return { [1]="labyrinth_owner_x_addition_enchants" } }, - [7438]={ + [7444]={ [1]={ [1]={ limit={ @@ -163261,7 +163357,7 @@ return { [1]="lancing_steel_damage_+%" } }, - [7439]={ + [7445]={ [1]={ [1]={ limit={ @@ -163286,7 +163382,7 @@ return { [1]="lancing_steel_impale_chance_%" } }, - [7440]={ + [7446]={ [1]={ [1]={ limit={ @@ -163311,7 +163407,7 @@ return { [1]="lancing_steel_number_of_additional_projectiles" } }, - [7441]={ + [7447]={ [1]={ [1]={ limit={ @@ -163327,7 +163423,7 @@ return { [1]="lancing_steel_%_chance_to_not_consume_ammo" } }, - [7442]={ + [7448]={ [1]={ [1]={ limit={ @@ -163352,7 +163448,7 @@ return { [1]="lancing_steel_primary_proj_pierce_num" } }, - [7443]={ + [7449]={ [1]={ [1]={ [1]={ @@ -163385,7 +163481,7 @@ return { [1]="last_tremor_duration_ms" } }, - [7444]={ + [7450]={ [1]={ [1]={ limit={ @@ -163401,7 +163497,7 @@ return { [1]="leech_%_is_instant" } }, - [7445]={ + [7451]={ [1]={ [1]={ limit={ @@ -163430,7 +163526,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%" } }, - [7446]={ + [7452]={ [1]={ [1]={ limit={ @@ -163459,7 +163555,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently" } }, - [7447]={ + [7453]={ [1]={ [1]={ limit={ @@ -163488,7 +163584,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%" } }, - [7448]={ + [7454]={ [1]={ [1]={ limit={ @@ -163517,7 +163613,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_power_charge" } }, - [7449]={ + [7455]={ [1]={ [1]={ limit={ @@ -163546,7 +163642,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence" } }, - [7450]={ + [7456]={ [1]={ [1]={ limit={ @@ -163562,7 +163658,7 @@ return { [1]="life_and_mana_flasks_can_be_equipped_in_either_slot" } }, - [7451]={ + [7457]={ [1]={ [1]={ limit={ @@ -163578,7 +163674,7 @@ return { [1]="life_and_mana_regeneration_rate_+%_for_each_minion_in_your_presence_capped" } }, - [7452]={ + [7458]={ [1]={ [1]={ limit={ @@ -163607,7 +163703,7 @@ return { [1]="life_flask_charges_gained_+%" } }, - [7453]={ + [7459]={ [1]={ [1]={ limit={ @@ -163632,7 +163728,7 @@ return { [1]="life_flask_charges_recovered_per_3_seconds" } }, - [7454]={ + [7460]={ [1]={ [1]={ limit={ @@ -163648,7 +163744,7 @@ return { [1]="life_flask_effects_are_not_removed_at_full_life" } }, - [7455]={ + [7461]={ [1]={ [1]={ limit={ @@ -163664,7 +163760,7 @@ return { [1]="life_flask_recovery_can_overcap_life" } }, - [7456]={ + [7462]={ [1]={ [1]={ limit={ @@ -163680,7 +163776,7 @@ return { [1]="life_flask_recovery_is_instant" } }, - [7457]={ + [7463]={ [1]={ [1]={ limit={ @@ -163696,7 +163792,7 @@ return { [1]="life_flask_recovery_is_instant_while_on_low_life" } }, - [7458]={ + [7464]={ [1]={ [1]={ limit={ @@ -163712,7 +163808,7 @@ return { [1]="life_flasks_do_not_recover_life" } }, - [7459]={ + [7465]={ [1]={ [1]={ limit={ @@ -163728,7 +163824,7 @@ return { [1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently" } }, - [7460]={ + [7466]={ [1]={ [1]={ limit={ @@ -163744,7 +163840,7 @@ return { [1]="life_flasks_gain_a_charge_on_hit_once_per_second" } }, - [7461]={ + [7467]={ [1]={ [1]={ limit={ @@ -163769,7 +163865,7 @@ return { [1]="life_flasks_gain_x_charges_when_you_hit_your_marked_enemy" } }, - [7462]={ + [7468]={ [1]={ [1]={ limit={ @@ -163798,7 +163894,7 @@ return { [1]="life_gain_per_target_hit_while_affected_by_vitality" } }, - [7463]={ + [7469]={ [1]={ [1]={ limit={ @@ -163827,7 +163923,7 @@ return { [1]="life_gain_per_target_if_have_used_a_vaal_skill_recently" } }, - [7464]={ + [7470]={ [1]={ [1]={ limit={ @@ -163856,7 +163952,7 @@ return { [1]="life_gained_on_attack_hit_if_crit_recently" } }, - [7465]={ + [7471]={ [1]={ [1]={ limit={ @@ -163885,7 +163981,7 @@ return { [1]="life_gained_on_attack_hit_vs_cursed_enemies" } }, - [7466]={ + [7472]={ [1]={ [1]={ limit={ @@ -163901,7 +163997,7 @@ return { [1]="life_gained_on_cull" } }, - [7467]={ + [7473]={ [1]={ [1]={ limit={ @@ -163917,7 +164013,7 @@ return { [1]="life_gained_on_kill_per_wither_stack_on_slain_enemy_%" } }, - [7468]={ + [7474]={ [1]={ [1]={ limit={ @@ -163933,7 +164029,7 @@ return { [1]="life_leech_%_is_instant_if_you_have_at_least_200_tribute" } }, - [7469]={ + [7475]={ [1]={ [1]={ limit={ @@ -163949,7 +164045,7 @@ return { [1]="life_leech_also_recovers_based_on_elemental_damage_types" } }, - [7470]={ + [7476]={ [1]={ [1]={ limit={ @@ -163965,7 +164061,7 @@ return { [1]="life_leech_also_recovers_based_on_lightning_damage" } }, - [7471]={ + [7477]={ [1]={ [1]={ limit={ @@ -163994,7 +164090,7 @@ return { [1]="life_leech_amount_+%_if_consumed_frenzy_charge_recently" } }, - [7472]={ + [7478]={ [1]={ [1]={ limit={ @@ -164023,7 +164119,7 @@ return { [1]="life_leech_amount_+%_while_shapeshifted" } }, - [7473]={ + [7479]={ [1]={ [1]={ limit={ @@ -164039,7 +164135,7 @@ return { [1]="life_leech_can_overcap_life" } }, - [7474]={ + [7480]={ [1]={ [1]={ limit={ @@ -164055,7 +164151,7 @@ return { [1]="life_leech_excess_goes_to_energy_shield" } }, - [7475]={ + [7481]={ [1]={ [1]={ [1]={ @@ -164075,7 +164171,7 @@ return { [1]="life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute" } }, - [7476]={ + [7482]={ [1]={ [1]={ limit={ @@ -164091,7 +164187,7 @@ return { [1]="life_leech_is_instant_for_empowered_attacks" } }, - [7477]={ + [7483]={ [1]={ [1]={ limit={ @@ -164107,7 +164203,7 @@ return { [1]="life_leech_%_is_instant_per_defiance" } }, - [7478]={ + [7484]={ [1]={ [1]={ limit={ @@ -164123,7 +164219,7 @@ return { [1]="life_leech_%_maximum_life_on_spell_cast" } }, - [7479]={ + [7485]={ [1]={ [1]={ limit={ @@ -164152,7 +164248,7 @@ return { [1]="life_leech_rate_+%_if_you_have_at_least_100_tribute" } }, - [7480]={ + [7486]={ [1]={ [1]={ limit={ @@ -164168,7 +164264,7 @@ return { [1]="life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage" } }, - [7481]={ + [7487]={ [1]={ [1]={ limit={ @@ -164184,7 +164280,7 @@ return { [1]="life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence" } }, - [7482]={ + [7488]={ [1]={ [1]={ limit={ @@ -164200,7 +164296,7 @@ return { [1]="life_leeched_from_hits_also_leeches_same_amount_to_companions" } }, - [7483]={ + [7489]={ [1]={ [1]={ [1]={ @@ -164220,7 +164316,7 @@ return { [1]="life_loss_%_per_minute_while_sprinting" } }, - [7484]={ + [7490]={ [1]={ [1]={ [1]={ @@ -164240,7 +164336,7 @@ return { [1]="life_loss_%_per_minute_if_have_been_hit_recently" } }, - [7485]={ + [7491]={ [1]={ [1]={ [1]={ @@ -164260,7 +164356,7 @@ return { [1]="life_lost_%_per_minute_nonlethal" } }, - [7486]={ + [7492]={ [1]={ [1]={ limit={ @@ -164289,7 +164385,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_endurance_charge" } }, - [7487]={ + [7493]={ [1]={ [1]={ limit={ @@ -164305,7 +164401,7 @@ return { [1]="life_mana_flasks_restore_mana_life" } }, - [7488]={ + [7494]={ [1]={ [1]={ limit={ @@ -164321,7 +164417,7 @@ return { [1]="life_mastery_count_maximum_life_+%_final" } }, - [7489]={ + [7495]={ [1]={ [1]={ limit={ @@ -164337,7 +164433,7 @@ return { [1]="life_per_level" } }, - [7490]={ + [7496]={ [1]={ [1]={ limit={ @@ -164353,7 +164449,7 @@ return { [1]="life_recoup_also_applies_to_energy_shield" } }, - [7491]={ + [7497]={ [1]={ [1]={ limit={ @@ -164369,7 +164465,7 @@ return { [1]="life_recoup_applies_to_energy_shield_instead" } }, - [7492]={ + [7498]={ [1]={ [1]={ limit={ @@ -164385,7 +164481,7 @@ return { [1]="life_recovery_from_flasks_also_recovers_energy_shield" } }, - [7493]={ + [7499]={ [1]={ [1]={ limit={ @@ -164401,7 +164497,7 @@ return { [1]="life_recovery_from_flasks_also_recovers_ward_%" } }, - [7494]={ + [7500]={ [1]={ [1]={ limit={ @@ -164417,7 +164513,7 @@ return { [1]="life_recovery_from_flasks_applies_to_companions" } }, - [7495]={ + [7501]={ [1]={ [1]={ limit={ @@ -164433,7 +164529,7 @@ return { [1]="life_recovery_from_flasks_apply_to_minions_in_your_presence" } }, - [7496]={ + [7502]={ [1]={ [1]={ limit={ @@ -164449,7 +164545,7 @@ return { [1]="life_recovery_from_flasks_instead_applies_to_nearby_allies_%" } }, - [7497]={ + [7503]={ [1]={ [1]={ limit={ @@ -164465,7 +164561,7 @@ return { [1]="life_recovery_from_regeneration_is_not_applied" } }, - [7498]={ + [7504]={ [1]={ [1]={ limit={ @@ -164494,7 +164590,7 @@ return { [1]="life_recovery_+%_from_flasks_while_on_low_life" } }, - [7499]={ + [7505]={ [1]={ [1]={ limit={ @@ -164523,7 +164619,7 @@ return { [1]="life_recovery_rate_+%_per_10_tribute" } }, - [7500]={ + [7506]={ [1]={ [1]={ limit={ @@ -164552,7 +164648,7 @@ return { [1]="life_recovery_rate_+%_per_5%_missing_life" } }, - [7501]={ + [7507]={ [1]={ [1]={ limit={ @@ -164581,7 +164677,7 @@ return { [1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7502]={ + [7508]={ [1]={ [1]={ limit={ @@ -164610,7 +164706,7 @@ return { [1]="life_recovery_rate_+%_if_havent_killed_recently" } }, - [7503]={ + [7509]={ [1]={ [1]={ limit={ @@ -164639,7 +164735,7 @@ return { [1]="life_recovery_rate_+%_while_affected_by_vitality" } }, - [7504]={ + [7510]={ [1]={ [1]={ limit={ @@ -164668,7 +164764,7 @@ return { [1]="life_recovery_rate_while_in_presence_of_companion_+%" } }, - [7505]={ + [7511]={ [1]={ [1]={ [1]={ @@ -164688,7 +164784,7 @@ return { [1]="life_regeneration_%_per_minute_if_stunned_an_enemy_recently" } }, - [7506]={ + [7512]={ [1]={ [1]={ [1]={ @@ -164708,7 +164804,7 @@ return { [1]="life_regeneration_per_minute_%_if_used_a_command_skill_recently" } }, - [7507]={ + [7513]={ [1]={ [1]={ [1]={ @@ -164728,7 +164824,7 @@ return { [1]="life_regeneration_per_minute_%_while_ignited" } }, - [7508]={ + [7514]={ [1]={ [1]={ [1]={ @@ -164748,7 +164844,7 @@ return { [1]="life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance" } }, - [7509]={ + [7515]={ [1]={ [1]={ [1]={ @@ -164768,7 +164864,7 @@ return { [1]="life_regeneration_per_minute_per_active_buff" } }, - [7510]={ + [7516]={ [1]={ [1]={ [1]={ @@ -164788,7 +164884,7 @@ return { [1]="life_regeneration_per_minute_per_maximum_energy_shield" } }, - [7511]={ + [7517]={ [1]={ [1]={ [1]={ @@ -164808,7 +164904,7 @@ return { [1]="life_regeneration_per_minute_per_nearby_corpse" } }, - [7512]={ + [7518]={ [1]={ [1]={ [1]={ @@ -164828,7 +164924,7 @@ return { [1]="life_regeneration_per_minute_%_per_ailment_affecting_you" } }, - [7513]={ + [7519]={ [1]={ [1]={ [1]={ @@ -164848,7 +164944,7 @@ return { [1]="life_regeneration_per_minute_%_per_fortification" } }, - [7514]={ + [7520]={ [1]={ [1]={ [1]={ @@ -164868,7 +164964,7 @@ return { [1]="life_regeneration_per_minute_%_while_affected_by_guard_skill" } }, - [7515]={ + [7521]={ [1]={ [1]={ [1]={ @@ -164888,7 +164984,7 @@ return { [1]="life_regeneration_per_minute_%_while_channelling" } }, - [7516]={ + [7522]={ [1]={ [1]={ [1]={ @@ -164908,7 +165004,7 @@ return { [1]="life_regeneration_per_minute_while_affected_by_vitality" } }, - [7517]={ + [7523]={ [1]={ [1]={ [1]={ @@ -164928,7 +165024,7 @@ return { [1]="life_regeneration_per_minute_while_ignited" } }, - [7518]={ + [7524]={ [1]={ [1]={ [1]={ @@ -164948,7 +165044,7 @@ return { [1]="life_regeneration_per_minute_while_moving" } }, - [7519]={ + [7525]={ [1]={ [1]={ [1]={ @@ -164968,7 +165064,7 @@ return { [1]="life_regeneration_per_minute_while_you_have_avians_flight" } }, - [7520]={ + [7526]={ [1]={ [1]={ [1]={ @@ -164988,7 +165084,7 @@ return { [1]="life_regeneration_%_per_minute_if_detonated_mine_recently" } }, - [7521]={ + [7527]={ [1]={ [1]={ [1]={ @@ -165008,7 +165104,7 @@ return { [1]="life_regeneration_%_per_minute_if_player_minion_died_recently" } }, - [7522]={ + [7528]={ [1]={ [1]={ limit={ @@ -165037,7 +165133,7 @@ return { [1]="life_regeneration_rate_+%_while_ignited" } }, - [7523]={ + [7529]={ [1]={ [1]={ limit={ @@ -165066,7 +165162,7 @@ return { [1]="life_regeneration_rate_+%_while_shapeshifted" } }, - [7524]={ + [7530]={ [1]={ [1]={ limit={ @@ -165095,7 +165191,7 @@ return { [1]="life_regeneration_rate_+%_while_surrounded" } }, - [7525]={ + [7531]={ [1]={ [1]={ limit={ @@ -165124,7 +165220,7 @@ return { [1]="life_regeneration_rate_+%_while_using_life_flask" } }, - [7526]={ + [7532]={ [1]={ [1]={ [1]={ @@ -165144,7 +165240,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently" } }, - [7527]={ + [7533]={ [1]={ [1]={ [1]={ @@ -165164,7 +165260,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment" } }, - [7528]={ + [7534]={ [1]={ [1]={ [1]={ @@ -165184,7 +165280,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_vitality" } }, - [7529]={ + [7535]={ [1]={ [1]={ [1]={ @@ -165204,7 +165300,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_surrounded" } }, - [7530]={ + [7536]={ [1]={ [1]={ [1]={ @@ -165224,7 +165320,7 @@ return { [1]="base_life_regeneration_rate_per_minute_per_10_intelligence" } }, - [7531]={ + [7537]={ [1]={ [1]={ [1]={ @@ -165244,7 +165340,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [7532]={ + [7538]={ [1]={ [1]={ [1]={ @@ -165264,7 +165360,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [7533]={ + [7539]={ [1]={ [1]={ [1]={ @@ -165284,7 +165380,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds" } }, - [7534]={ + [7540]={ [1]={ [1]={ [1]={ @@ -165304,7 +165400,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7535]={ + [7541]={ [1]={ [1]={ [1]={ @@ -165324,7 +165420,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds" } }, - [7536]={ + [7542]={ [1]={ [1]={ [1]={ @@ -165344,7 +165440,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield" } }, - [7537]={ + [7543]={ [1]={ [1]={ [1]={ @@ -165364,7 +165460,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%" } }, - [7538]={ + [7544]={ [1]={ [1]={ [1]={ @@ -165384,7 +165480,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%" } }, - [7539]={ + [7545]={ [1]={ [1]={ [1]={ @@ -165404,7 +165500,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_power_charge" } }, - [7540]={ + [7546]={ [1]={ [1]={ [1]={ @@ -165424,7 +165520,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_raised_zombie" } }, - [7541]={ + [7547]={ [1]={ [1]={ [1]={ @@ -165444,7 +165540,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%" } }, - [7542]={ + [7548]={ [1]={ [1]={ [1]={ @@ -165464,7 +165560,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_moving" } }, - [7543]={ + [7549]={ [1]={ [1]={ [1]={ @@ -165484,7 +165580,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_stationary" } }, - [7544]={ + [7550]={ [1]={ [1]={ [1]={ @@ -165504,7 +165600,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_using_flask" } }, - [7545]={ + [7551]={ [1]={ [1]={ [1]={ @@ -165524,7 +165620,7 @@ return { [1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength" } }, - [7546]={ + [7552]={ [1]={ [1]={ [1]={ @@ -165544,7 +165640,7 @@ return { [1]="life_regeneration_rate_per_minute_while_on_low_life" } }, - [7547]={ + [7553]={ [1]={ [1]={ limit={ @@ -165573,7 +165669,7 @@ return { [1]="life_regeneration_rate_+%_while_moving" } }, - [7548]={ + [7554]={ [1]={ [1]={ limit={ @@ -165602,7 +165698,7 @@ return { [1]="life_regeneration_rate_+%_while_on_low_life" } }, - [7549]={ + [7555]={ [1]={ [1]={ limit={ @@ -165631,7 +165727,7 @@ return { [1]="life_regeneration_rate_+%_while_stationary" } }, - [7550]={ + [7556]={ [1]={ [1]={ limit={ @@ -165660,7 +165756,7 @@ return { [1]="light_radius_+%_per_10_tribute" } }, - [7551]={ + [7557]={ [1]={ [1]={ limit={ @@ -165676,7 +165772,7 @@ return { [1]="light_radius_increases_apply_to_accuracy" } }, - [7552]={ + [7558]={ [1]={ [1]={ limit={ @@ -165692,7 +165788,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [7553]={ + [7559]={ [1]={ [1]={ limit={ @@ -165721,7 +165817,7 @@ return { [1]="lightning_ailment_duration_+%" } }, - [7554]={ + [7560]={ [1]={ [1]={ limit={ @@ -165750,7 +165846,7 @@ return { [1]="lightning_ailment_effect_+%_against_chilled_enemies" } }, - [7555]={ + [7561]={ [1]={ [1]={ limit={ @@ -165779,7 +165875,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [7556]={ + [7562]={ [1]={ [1]={ limit={ @@ -165795,7 +165891,7 @@ return { [1]="lightning_and_chaos_damage_resistance_%" } }, - [7557]={ + [7563]={ [1]={ [1]={ limit={ @@ -165820,7 +165916,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [7558]={ + [7564]={ [1]={ [1]={ limit={ @@ -165836,7 +165932,7 @@ return { [1]="lightning_conduit_and_galvanic_field_shatter_on_killing_blow" } }, - [7559]={ + [7565]={ [1]={ [1]={ limit={ @@ -165865,7 +165961,7 @@ return { [1]="lightning_conduit_area_of_effect_+%" } }, - [7560]={ + [7566]={ [1]={ [1]={ limit={ @@ -165881,7 +165977,7 @@ return { [1]="lightning_conduit_cast_speed_+%" } }, - [7561]={ + [7567]={ [1]={ [1]={ limit={ @@ -165910,7 +166006,7 @@ return { [1]="lightning_conduit_damage_+%" } }, - [7562]={ + [7568]={ [1]={ [1]={ limit={ @@ -165926,7 +166022,7 @@ return { [1]="lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds" } }, - [7563]={ + [7569]={ [1]={ [1]={ limit={ @@ -165955,7 +166051,7 @@ return { [1]="lightning_damage_+%_per_rage" } }, - [7564]={ + [7570]={ [1]={ [1]={ limit={ @@ -165971,7 +166067,7 @@ return { [1]="lightning_damage_+%_while_ignited" } }, - [7565]={ + [7571]={ [1]={ [1]={ limit={ @@ -165987,7 +166083,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [7566]={ + [7572]={ [1]={ [1]={ limit={ @@ -166003,7 +166099,7 @@ return { [1]="lightning_damage_+%_per_lightning_resistance_above_75" } }, - [7567]={ + [7573]={ [1]={ [1]={ limit={ @@ -166032,7 +166128,7 @@ return { [1]="lightning_damage_+%_while_affected_by_herald_of_thunder" } }, - [7568]={ + [7574]={ [1]={ [1]={ limit={ @@ -166061,7 +166157,7 @@ return { [1]="lightning_damage_+%_while_affected_by_wrath" } }, - [7569]={ + [7575]={ [1]={ [1]={ limit={ @@ -166077,7 +166173,7 @@ return { [1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [7570]={ + [7576]={ [1]={ [1]={ limit={ @@ -166093,7 +166189,7 @@ return { [1]="lightning_damage_taken_goes_to_life_over_4_seconds_%" } }, - [7571]={ + [7577]={ [1]={ [1]={ limit={ @@ -166109,7 +166205,7 @@ return { [1]="lightning_damage_taken_+" } }, - [7572]={ + [7578]={ [1]={ [1]={ limit={ @@ -166138,7 +166234,7 @@ return { [1]="lightning_damage_with_attack_skills_+%" } }, - [7573]={ + [7579]={ [1]={ [1]={ limit={ @@ -166167,7 +166263,7 @@ return { [1]="lightning_damage_with_spell_skills_+%" } }, - [7574]={ + [7580]={ [1]={ [1]={ limit={ @@ -166196,7 +166292,7 @@ return { [1]="lightning_explosion_mine_aura_effect_+%" } }, - [7575]={ + [7581]={ [1]={ [1]={ limit={ @@ -166225,7 +166321,7 @@ return { [1]="lightning_explosion_mine_damage_+%" } }, - [7576]={ + [7582]={ [1]={ [1]={ limit={ @@ -166254,7 +166350,7 @@ return { [1]="lightning_explosion_mine_throwing_speed_+%" } }, - [7577]={ + [7583]={ [1]={ [1]={ limit={ @@ -166283,7 +166379,7 @@ return { [1]="lightning_exposure_effect_+%" } }, - [7578]={ + [7584]={ [1]={ [1]={ limit={ @@ -166308,7 +166404,7 @@ return { [1]="lightning_exposure_on_hit_magnitude" } }, - [7579]={ + [7585]={ [1]={ [1]={ limit={ @@ -166337,7 +166433,7 @@ return { [1]="lightning_hit_damage_+%_vs_chilled_enemies" } }, - [7580]={ + [7586]={ [1]={ [1]={ limit={ @@ -166366,7 +166462,7 @@ return { [1]="lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning" } }, - [7581]={ + [7587]={ [1]={ [1]={ limit={ @@ -166382,7 +166478,7 @@ return { [1]="lightning_resist_unaffected_by_area_penalties" } }, - [7582]={ + [7588]={ [1]={ [1]={ limit={ @@ -166398,7 +166494,7 @@ return { [1]="lightning_resistance_does_not_apply_to_lighting_damage" } }, - [7583]={ + [7589]={ [1]={ [1]={ limit={ @@ -166414,7 +166510,7 @@ return { [1]="lightning_skill_additional_chain_chance_%" } }, - [7584]={ + [7590]={ [1]={ [1]={ limit={ @@ -166430,7 +166526,7 @@ return { [1]="lightning_skill_additional_chains" } }, - [7585]={ + [7591]={ [1]={ [1]={ limit={ @@ -166446,7 +166542,7 @@ return { [1]="lightning_skill_chance_to_inflict_lightning_exposure_%" } }, - [7586]={ + [7592]={ [1]={ [1]={ limit={ @@ -166475,7 +166571,7 @@ return { [1]="lightning_skill_stun_threshold_+%" } }, - [7587]={ + [7593]={ [1]={ [1]={ limit={ @@ -166491,7 +166587,7 @@ return { [1]="lightning_skills_chance_to_poison_on_hit_%" } }, - [7588]={ + [7594]={ [1]={ [1]={ limit={ @@ -166507,7 +166603,7 @@ return { [1]="lightning_strike_and_frost_blades_all_damage_can_ignite" } }, - [7589]={ + [7595]={ [1]={ [1]={ limit={ @@ -166536,7 +166632,7 @@ return { [1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit" } }, - [7590]={ + [7596]={ [1]={ [1]={ limit={ @@ -166565,7 +166661,7 @@ return { [1]="lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent" } }, - [7591]={ + [7597]={ [1]={ [1]={ limit={ @@ -166590,7 +166686,7 @@ return { [1]="lightning_tower_trap_additional_number_of_beams" } }, - [7592]={ + [7598]={ [1]={ [1]={ limit={ @@ -166619,7 +166715,7 @@ return { [1]="lightning_tower_trap_cast_speed_+%" } }, - [7593]={ + [7599]={ [1]={ [1]={ limit={ @@ -166648,7 +166744,7 @@ return { [1]="lightning_tower_trap_cooldown_speed_+%" } }, - [7594]={ + [7600]={ [1]={ [1]={ limit={ @@ -166677,7 +166773,7 @@ return { [1]="lightning_tower_trap_damage_+%" } }, - [7595]={ + [7601]={ [1]={ [1]={ limit={ @@ -166706,7 +166802,7 @@ return { [1]="lightning_tower_trap_duration_+%" } }, - [7596]={ + [7602]={ [1]={ [1]={ limit={ @@ -166735,7 +166831,7 @@ return { [1]="lightning_tower_trap_throwing_speed_+%" } }, - [7597]={ + [7603]={ [1]={ [1]={ limit={ @@ -166751,7 +166847,7 @@ return { [1]="lightning_trap_lightning_resistance_penetration_%" } }, - [7598]={ + [7604]={ [1]={ [1]={ limit={ @@ -166780,7 +166876,7 @@ return { [1]="lightning_trap_shock_effect_+%" } }, - [7599]={ + [7605]={ [1]={ [1]={ limit={ @@ -166805,7 +166901,7 @@ return { [1]="lineage_support_gem_limit_+" } }, - [7600]={ + [7606]={ [1]={ [1]={ limit={ @@ -166821,7 +166917,7 @@ return { [1]="link_buff_effect_+%_on_animate_guardian" } }, - [7601]={ + [7607]={ [1]={ [1]={ limit={ @@ -166850,7 +166946,7 @@ return { [1]="link_effect_+%_when_50%_expired" } }, - [7602]={ + [7608]={ [1]={ [1]={ limit={ @@ -166871,7 +166967,7 @@ return { [2]="link_grace_period_8_second_override" } }, - [7603]={ + [7609]={ [1]={ [1]={ limit={ @@ -166900,7 +166996,7 @@ return { [1]="link_skill_buff_effect_+%" } }, - [7604]={ + [7610]={ [1]={ [1]={ limit={ @@ -166929,7 +167025,7 @@ return { [1]="link_skill_buff_effect_+%_if_linked_target_recently" } }, - [7605]={ + [7611]={ [1]={ [1]={ limit={ @@ -166958,7 +167054,7 @@ return { [1]="link_skill_cast_speed_+%" } }, - [7606]={ + [7612]={ [1]={ [1]={ limit={ @@ -166987,7 +167083,7 @@ return { [1]="link_skill_duration_+%" } }, - [7607]={ + [7613]={ [1]={ [1]={ limit={ @@ -167003,7 +167099,7 @@ return { [1]="link_skill_gem_level_+" } }, - [7608]={ + [7614]={ [1]={ [1]={ limit={ @@ -167019,7 +167115,7 @@ return { [1]="link_skill_link_target_cannot_die_for_X_seconds" } }, - [7609]={ + [7615]={ [1]={ [1]={ limit={ @@ -167035,7 +167131,7 @@ return { [1]="link_skill_lose_no_experience_on_link_target_death" } }, - [7610]={ + [7616]={ [1]={ [1]={ limit={ @@ -167068,7 +167164,7 @@ return { [1]="link_skill_mana_cost_+%" } }, - [7611]={ + [7617]={ [1]={ [1]={ limit={ @@ -167084,7 +167180,7 @@ return { [1]="link_skills_can_target_animate_guardian" } }, - [7612]={ + [7618]={ [1]={ [1]={ limit={ @@ -167100,7 +167196,7 @@ return { [1]="link_skills_can_target_minions" } }, - [7613]={ + [7619]={ [1]={ [1]={ limit={ @@ -167129,7 +167225,7 @@ return { [1]="link_skills_grant_damage_+%" } }, - [7614]={ + [7620]={ [1]={ [1]={ limit={ @@ -167158,7 +167254,7 @@ return { [1]="link_skills_grant_damage_taken_+%" } }, - [7615]={ + [7621]={ [1]={ [1]={ limit={ @@ -167174,7 +167270,7 @@ return { [1]="link_skills_grant_redirect_curses_to_link_source" } }, - [7616]={ + [7622]={ [1]={ [1]={ limit={ @@ -167199,7 +167295,7 @@ return { [1]="link_to_X_additional_random_allies" } }, - [7617]={ + [7623]={ [1]={ [1]={ limit={ @@ -167215,7 +167311,7 @@ return { [1]="linked_targets_share_endurance_frenzy_power_charges_with_you" } }, - [7618]={ + [7624]={ [1]={ [1]={ limit={ @@ -167231,7 +167327,7 @@ return { [1]="local_%_chance_to_gain_flask_charge_when_hit" } }, - [7619]={ + [7625]={ [1]={ [1]={ limit={ @@ -167256,7 +167352,7 @@ return { [1]="local_+%_weapon_range" } }, - [7620]={ + [7626]={ [1]={ [1]={ limit={ @@ -167281,7 +167377,7 @@ return { [1]="local_X_additional_chains" } }, - [7621]={ + [7627]={ [1]={ [1]={ limit={ @@ -167297,7 +167393,7 @@ return { [1]="local_accuracy_rating_+%_per_2%_quality" } }, - [7622]={ + [7628]={ [1]={ [1]={ limit={ @@ -167322,7 +167418,7 @@ return { [1]="local_additional_attack_chain_chance_%" } }, - [7623]={ + [7629]={ [1]={ [1]={ limit={ @@ -167338,7 +167434,7 @@ return { [1]="local_aggravate_bleeding_on_hit_chance_%" } }, - [7624]={ + [7630]={ [1]={ [1]={ limit={ @@ -167354,7 +167450,7 @@ return { [1]="local_all_attributes_+_per_rune_or_soul_core" } }, - [7625]={ + [7631]={ [1]={ [1]={ [1]={ @@ -167374,7 +167470,7 @@ return { [1]="local_all_attributes_-_per_level" } }, - [7626]={ + [7632]={ [1]={ [1]={ limit={ @@ -167403,7 +167499,7 @@ return { [1]="local_all_attributes_+%_per_rune_or_soul_core" } }, - [7627]={ + [7633]={ [1]={ [1]={ limit={ @@ -167419,7 +167515,7 @@ return { [1]="local_all_damage_can_chill" } }, - [7628]={ + [7634]={ [1]={ [1]={ limit={ @@ -167435,7 +167531,7 @@ return { [1]="local_all_damage_can_electrocute" } }, - [7629]={ + [7635]={ [1]={ [1]={ limit={ @@ -167451,7 +167547,7 @@ return { [1]="local_all_damage_can_freeze" } }, - [7630]={ + [7636]={ [1]={ [1]={ limit={ @@ -167467,7 +167563,7 @@ return { [1]="local_all_damage_can_pin" } }, - [7631]={ + [7637]={ [1]={ [1]={ limit={ @@ -167483,7 +167579,7 @@ return { [1]="local_always_crit_heavy_stunned_enemies" } }, - [7632]={ + [7638]={ [1]={ [1]={ limit={ @@ -167499,7 +167595,7 @@ return { [1]="local_always_freeze_on_full_life" } }, - [7633]={ + [7639]={ [1]={ [1]={ limit={ @@ -167515,7 +167611,7 @@ return { [1]="local_always_maim_on_crit" } }, - [7634]={ + [7640]={ [1]={ [1]={ limit={ @@ -167531,7 +167627,7 @@ return { [1]="local_apply_X_armour_break_on_crit" } }, - [7635]={ + [7641]={ [1]={ [1]={ limit={ @@ -167547,7 +167643,7 @@ return { [1]="local_apply_X_armour_break_on_hit" } }, - [7636]={ + [7642]={ [1]={ [1]={ limit={ @@ -167563,7 +167659,7 @@ return { [1]="local_apply_X_armour_break_on_stun" } }, - [7637]={ + [7643]={ [1]={ [1]={ limit={ @@ -167579,7 +167675,7 @@ return { [1]="local_apply_elemental_exposure_on_full_armour_break" } }, - [7638]={ + [7644]={ [1]={ [1]={ limit={ @@ -167595,7 +167691,7 @@ return { [1]="local_area_of_effect_+%_per_4%_quality" } }, - [7639]={ + [7645]={ [1]={ [1]={ limit={ @@ -167611,7 +167707,7 @@ return { [1]="local_armour_break_damage_%_dealt_as_armour_break" } }, - [7640]={ + [7646]={ [1]={ [1]={ limit={ @@ -167640,7 +167736,7 @@ return { [1]="local_attack_and_cast_speed_+%_if_item_corrupted" } }, - [7641]={ + [7647]={ [1]={ [1]={ limit={ @@ -167669,7 +167765,7 @@ return { [1]="local_attack_damage_+%_if_item_corrupted" } }, - [7642]={ + [7648]={ [1]={ [1]={ limit={ @@ -167685,7 +167781,7 @@ return { [1]="local_attack_speed_+%_per_8%_quality" } }, - [7643]={ + [7649]={ [1]={ [1]={ limit={ @@ -167701,7 +167797,7 @@ return { [1]="local_attacks_cannot_be_blocked" } }, - [7644]={ + [7650]={ [1]={ [1]={ limit={ @@ -167717,7 +167813,7 @@ return { [1]="local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed" } }, - [7645]={ + [7651]={ [1]={ [1]={ limit={ @@ -167738,7 +167834,7 @@ return { [2]="local_attacks_have_added_max_cold_damage_equal_to_%_of_maximum_mana" } }, - [7646]={ + [7652]={ [1]={ [1]={ limit={ @@ -167763,7 +167859,7 @@ return { [1]="local_attacks_impale_on_hit_%_chance" } }, - [7647]={ + [7653]={ [1]={ [1]={ limit={ @@ -167779,7 +167875,7 @@ return { [1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed" } }, - [7648]={ + [7654]={ [1]={ [1]={ limit={ @@ -167795,7 +167891,7 @@ return { [1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed" } }, - [7649]={ + [7655]={ [1]={ [1]={ limit={ @@ -167811,7 +167907,7 @@ return { [1]="local_base_chaos_damage_resistance_%_per_rune_or_soul_core" } }, - [7650]={ + [7656]={ [1]={ [1]={ [1]={ @@ -167831,7 +167927,7 @@ return { [1]="local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core" } }, - [7651]={ + [7657]={ [1]={ [1]={ limit={ @@ -167847,7 +167943,7 @@ return { [1]="local_base_maximum_life_+_per_rune_or_soul_core" } }, - [7652]={ + [7658]={ [1]={ [1]={ limit={ @@ -167863,7 +167959,7 @@ return { [1]="local_base_maximum_mana_+_per_rune_or_soul_core" } }, - [7653]={ + [7659]={ [1]={ [1]={ limit={ @@ -167892,7 +167988,7 @@ return { [1]="local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core" } }, - [7654]={ + [7660]={ [1]={ [1]={ limit={ @@ -167917,7 +168013,7 @@ return { [1]="local_bleed_on_critical_strike_chance_%" } }, - [7655]={ + [7661]={ [1]={ [1]={ limit={ @@ -167933,7 +168029,7 @@ return { [1]="local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed" } }, - [7656]={ + [7662]={ [1]={ [1]={ limit={ @@ -167949,7 +168045,7 @@ return { [1]="local_cannot_be_thrown" } }, - [7657]={ + [7663]={ [1]={ [1]={ limit={ @@ -167965,7 +168061,7 @@ return { [1]="local_chance_to_bleed_on_crit_50%" } }, - [7658]={ + [7664]={ [1]={ [1]={ limit={ @@ -167981,7 +168077,7 @@ return { [1]="local_chance_to_gain_onslaught_on_killing_blow_%" } }, - [7659]={ + [7665]={ [1]={ [1]={ limit={ @@ -167997,7 +168093,7 @@ return { [1]="local_chance_to_intimidate_on_hit_%" } }, - [7660]={ + [7666]={ [1]={ [1]={ limit={ @@ -168013,7 +168109,7 @@ return { [1]="local_chaos_penetration_%" } }, - [7661]={ + [7667]={ [1]={ [1]={ limit={ @@ -168042,7 +168138,7 @@ return { [1]="local_charm_effect_+%" } }, - [7662]={ + [7668]={ [1]={ [1]={ [1]={ @@ -168075,7 +168171,7 @@ return { [1]="local_chill_on_hit_ms_if_in_off_hand" } }, - [7663]={ + [7669]={ [1]={ [1]={ limit={ @@ -168091,7 +168187,7 @@ return { [1]="local_cold_resistance_%_per_2%_quality" } }, - [7664]={ + [7670]={ [1]={ [1]={ limit={ @@ -168107,7 +168203,7 @@ return { [1]="local_concoction_can_consume_sulphur_flasks" } }, - [7665]={ + [7671]={ [1]={ [1]={ limit={ @@ -168136,7 +168232,7 @@ return { [1]="local_critical_strike_chance_+%_if_item_corrupted" } }, - [7666]={ + [7672]={ [1]={ [1]={ limit={ @@ -168152,7 +168248,7 @@ return { [1]="local_critical_strike_chance_+%_per_4%_quality" } }, - [7667]={ + [7673]={ [1]={ [1]={ limit={ @@ -168168,7 +168264,7 @@ return { [1]="local_crits_have_culling_strike" } }, - [7668]={ + [7674]={ [1]={ [1]={ limit={ @@ -168184,7 +168280,7 @@ return { [1]="local_crossbow_no_ammo_skills_and_give_alternate_grenade_default_attack" } }, - [7669]={ + [7675]={ [1]={ [1]={ limit={ @@ -168200,7 +168296,7 @@ return { [1]="local_crush_on_hit" } }, - [7670]={ + [7676]={ [1]={ [1]={ limit={ @@ -168216,7 +168312,7 @@ return { [1]="local_cull_frozen_enemies_on_hit" } }, - [7671]={ + [7677]={ [1]={ [1]={ limit={ @@ -168232,7 +168328,7 @@ return { [1]="local_culling_strike" } }, - [7672]={ + [7678]={ [1]={ [1]={ limit={ @@ -168248,7 +168344,7 @@ return { [1]="local_culling_strike_if_crit_recently" } }, - [7673]={ + [7679]={ [1]={ [1]={ limit={ @@ -168264,7 +168360,7 @@ return { [1]="local_culling_strike_vs_bleeding_enemies" } }, - [7674]={ + [7680]={ [1]={ [1]={ limit={ @@ -168293,7 +168389,7 @@ return { [1]="local_damage_+%_if_item_corrupted" } }, - [7675]={ + [7681]={ [1]={ [1]={ limit={ @@ -168309,7 +168405,7 @@ return { [1]="local_damage_roll_always_min_or_max" } }, - [7676]={ + [7682]={ [1]={ [1]={ limit={ @@ -168342,7 +168438,7 @@ return { [1]="local_damage_taken_+%_if_item_corrupted" } }, - [7677]={ + [7683]={ [1]={ [1]={ limit={ @@ -168358,7 +168454,7 @@ return { [1]="local_destroy_corpses_with_critical_strikes" } }, - [7678]={ + [7684]={ [1]={ [1]={ limit={ @@ -168374,7 +168470,7 @@ return { [1]="local_dexterity_per_2%_quality" } }, - [7679]={ + [7685]={ [1]={ [1]={ limit={ @@ -168399,7 +168495,7 @@ return { [1]="local_disable_rare_mod_on_hit_%_chance" } }, - [7680]={ + [7686]={ [1]={ [1]={ limit={ @@ -168424,7 +168520,7 @@ return { [1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance" } }, - [7681]={ + [7687]={ [1]={ [1]={ limit={ @@ -168440,7 +168536,7 @@ return { [1]="local_display_enemies_killed_nearby_count_as_being_killed_by_you" } }, - [7682]={ + [7688]={ [1]={ [1]={ limit={ @@ -168456,7 +168552,7 @@ return { [1]="local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds" } }, - [7683]={ + [7689]={ [1]={ [1]={ limit={ @@ -168485,7 +168581,7 @@ return { [1]="local_display_fire_and_cold_resist_debuff" } }, - [7684]={ + [7690]={ [1]={ [1]={ limit={ @@ -168501,7 +168597,7 @@ return { [1]="local_display_gain_power_charge_on_spending_mana" } }, - [7685]={ + [7691]={ [1]={ [1]={ limit={ @@ -168517,7 +168613,7 @@ return { [1]="local_display_grants_skill_frostbolt_level" } }, - [7686]={ + [7692]={ [1]={ [1]={ limit={ @@ -168546,7 +168642,7 @@ return { [1]="local_display_mod_aura_mana_regeration_rate_+%" } }, - [7687]={ + [7693]={ [1]={ [1]={ limit={ @@ -168575,7 +168671,7 @@ return { [1]="local_display_movement_speed_+%_for_you_and_nearby_allies" } }, - [7688]={ + [7694]={ [1]={ [1]={ limit={ @@ -168591,7 +168687,7 @@ return { [1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base" } }, - [7689]={ + [7695]={ [1]={ [1]={ limit={ @@ -168607,7 +168703,7 @@ return { [1]="local_display_nearby_allies_critical_strike_multiplier_+" } }, - [7690]={ + [7696]={ [1]={ [1]={ limit={ @@ -168623,7 +168719,7 @@ return { [1]="local_display_nearby_allies_extra_damage_rolls" } }, - [7691]={ + [7697]={ [1]={ [1]={ limit={ @@ -168639,7 +168735,7 @@ return { [1]="local_display_nearby_allies_have_fortify" } }, - [7692]={ + [7698]={ [1]={ [1]={ limit={ @@ -168655,7 +168751,7 @@ return { [1]="local_display_nearby_enemies_are_chilled" } }, - [7693]={ + [7699]={ [1]={ [1]={ limit={ @@ -168671,7 +168767,7 @@ return { [1]="local_display_nearby_enemies_are_covered_in_ash" } }, - [7694]={ + [7700]={ [1]={ [1]={ limit={ @@ -168687,7 +168783,7 @@ return { [1]="local_display_nearby_enemies_are_intimidated" } }, - [7695]={ + [7701]={ [1]={ [1]={ limit={ @@ -168703,7 +168799,7 @@ return { [1]="local_display_nearby_enemies_cannot_crit" } }, - [7696]={ + [7702]={ [1]={ [1]={ limit={ @@ -168719,7 +168815,7 @@ return { [1]="local_display_nearby_enemies_have_fire_exposure" } }, - [7697]={ + [7703]={ [1]={ [1]={ limit={ @@ -168735,7 +168831,7 @@ return { [1]="local_display_nearby_enemy_chaos_damage_resistance_%" } }, - [7698]={ + [7704]={ [1]={ [1]={ limit={ @@ -168751,7 +168847,7 @@ return { [1]="local_display_nearby_enemy_cold_damage_resistance_%" } }, - [7699]={ + [7705]={ [1]={ [1]={ limit={ @@ -168767,7 +168863,7 @@ return { [1]="local_display_nearby_enemy_elemental_damage_taken_+%" } }, - [7700]={ + [7706]={ [1]={ [1]={ limit={ @@ -168783,7 +168879,7 @@ return { [1]="local_display_nearby_enemy_fire_damage_resistance_%" } }, - [7701]={ + [7707]={ [1]={ [1]={ limit={ @@ -168799,7 +168895,7 @@ return { [1]="local_display_nearby_enemy_lightning_damage_resistance_%" } }, - [7702]={ + [7708]={ [1]={ [1]={ limit={ @@ -168815,7 +168911,7 @@ return { [1]="local_display_nearby_enemy_no_chaos_damage_resistance" } }, - [7703]={ + [7709]={ [1]={ [1]={ limit={ @@ -168844,7 +168940,7 @@ return { [1]="local_display_nearby_enemy_physical_damage_taken_+%" } }, - [7704]={ + [7710]={ [1]={ [1]={ limit={ @@ -168860,7 +168956,7 @@ return { [1]="local_display_self_crushed" } }, - [7705]={ + [7711]={ [1]={ [1]={ limit={ @@ -168876,7 +168972,7 @@ return { [1]="local_display_trigger_summon_infernal_familiar_when_allocated" } }, - [7706]={ + [7712]={ [1]={ [1]={ limit={ @@ -168892,7 +168988,7 @@ return { [1]="local_display_triggers_corpse_cloud_on_12_units_travelled" } }, - [7707]={ + [7713]={ [1]={ [1]={ limit={ @@ -168908,7 +169004,7 @@ return { [1]="local_display_triggers_level_x_detonation_on_off_hand_hit" } }, - [7708]={ + [7714]={ [1]={ [1]={ limit={ @@ -168924,7 +169020,7 @@ return { [1]="local_display_triggers_level_x_ember_fusillade_on_spell_cast" } }, - [7709]={ + [7715]={ [1]={ [1]={ limit={ @@ -168940,7 +169036,7 @@ return { [1]="local_display_triggers_level_x_gas_cloud_on_main_hand_hit" } }, - [7710]={ + [7716]={ [1]={ [1]={ limit={ @@ -168956,7 +169052,7 @@ return { [1]="local_display_triggers_level_x_lightning_bolt_on_critical_strike" } }, - [7711]={ + [7717]={ [1]={ [1]={ limit={ @@ -168972,7 +169068,7 @@ return { [1]="local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin" } }, - [7712]={ + [7718]={ [1]={ [1]={ limit={ @@ -168988,7 +169084,7 @@ return { [1]="local_double_damage_with_attacks" } }, - [7713]={ + [7719]={ [1]={ [1]={ limit={ @@ -169013,7 +169109,7 @@ return { [1]="local_double_damage_with_attacks_chance_%" } }, - [7714]={ + [7720]={ [1]={ [1]={ limit={ @@ -169029,7 +169125,7 @@ return { [1]="local_double_hit_damage_stun_build_up" } }, - [7715]={ + [7721]={ [1]={ [1]={ limit={ @@ -169045,7 +169141,7 @@ return { [1]="local_edict_declaration_gain_per_mod_disabled" } }, - [7716]={ + [7722]={ [1]={ [1]={ limit={ @@ -169061,7 +169157,7 @@ return { [1]="local_elemental_damage_+%_per_2%_quality" } }, - [7717]={ + [7723]={ [1]={ [1]={ [1]={ @@ -169081,7 +169177,7 @@ return { [1]="local_energy_shield_regeneration_per_minute_%_if_crit_recently" } }, - [7718]={ + [7724]={ [1]={ [1]={ limit={ @@ -169097,7 +169193,7 @@ return { [1]="local_evasion_rating_and_energy_shield" } }, - [7719]={ + [7725]={ [1]={ [1]={ limit={ @@ -169113,7 +169209,7 @@ return { [1]="local_explode_on_kill_with_crit_%_physical_damage_to_deal" } }, - [7720]={ + [7726]={ [1]={ [1]={ limit={ @@ -169129,7 +169225,7 @@ return { [1]="local_fire_resistance_%_per_2%_quality" } }, - [7721]={ + [7727]={ [1]={ [1]={ [1]={ @@ -169149,7 +169245,7 @@ return { [1]="local_flask_ward_regeneration_per_minute_%_during_flask_effect" } }, - [7722]={ + [7728]={ [1]={ [1]={ limit={ @@ -169165,7 +169261,7 @@ return { [1]="local_force_corruption_outcome_two_enchants" } }, - [7723]={ + [7729]={ [1]={ [1]={ limit={ @@ -169181,7 +169277,7 @@ return { [1]="local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed" } }, - [7724]={ + [7730]={ [1]={ [1]={ limit={ @@ -169197,7 +169293,7 @@ return { [1]="local_gain_X_rage_on_hit" } }, - [7725]={ + [7731]={ [1]={ [1]={ limit={ @@ -169213,7 +169309,7 @@ return { [1]="local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed" } }, - [7726]={ + [7732]={ [1]={ [1]={ limit={ @@ -169229,7 +169325,7 @@ return { [1]="local_gain_shrine_buff_every_10_seconds" } }, - [7727]={ + [7733]={ [1]={ [1]={ limit={ @@ -169258,7 +169354,7 @@ return { [1]="local_global_armour_evasion_energy_shield_+%_per_rune_or_soul_core" } }, - [7728]={ + [7734]={ [1]={ [1]={ limit={ @@ -169274,7 +169370,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes" } }, - [7729]={ + [7735]={ [1]={ [1]={ limit={ @@ -169290,7 +169386,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity" } }, - [7730]={ + [7736]={ [1]={ [1]={ limit={ @@ -169306,7 +169402,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence" } }, - [7731]={ + [7737]={ [1]={ [1]={ limit={ @@ -169322,7 +169418,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_strength" } }, - [7732]={ + [7738]={ [1]={ [1]={ limit={ @@ -169338,7 +169434,7 @@ return { [1]="local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute" } }, - [7733]={ + [7739]={ [1]={ [1]={ limit={ @@ -169367,7 +169463,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%" } }, - [7734]={ + [7740]={ [1]={ [1]={ limit={ @@ -169396,7 +169492,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%" } }, - [7735]={ + [7741]={ [1]={ [1]={ limit={ @@ -169425,7 +169521,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%" } }, - [7736]={ + [7742]={ [1]={ [1]={ limit={ @@ -169454,7 +169550,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%" } }, - [7737]={ + [7743]={ [1]={ [1]={ limit={ @@ -169483,7 +169579,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%" } }, - [7738]={ + [7744]={ [1]={ [1]={ limit={ @@ -169512,7 +169608,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%" } }, - [7739]={ + [7745]={ [1]={ [1]={ limit={ @@ -169541,7 +169637,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%" } }, - [7740]={ + [7746]={ [1]={ [1]={ limit={ @@ -169570,7 +169666,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%" } }, - [7741]={ + [7747]={ [1]={ [1]={ limit={ @@ -169599,7 +169695,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%" } }, - [7742]={ + [7748]={ [1]={ [1]={ limit={ @@ -169628,7 +169724,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%" } }, - [7743]={ + [7749]={ [1]={ [1]={ limit={ @@ -169657,7 +169753,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%" } }, - [7744]={ + [7750]={ [1]={ [1]={ limit={ @@ -169686,7 +169782,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%" } }, - [7745]={ + [7751]={ [1]={ [1]={ limit={ @@ -169715,7 +169811,7 @@ return { [1]="local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%" } }, - [7746]={ + [7752]={ [1]={ [1]={ [1]={ @@ -169735,7 +169831,7 @@ return { [1]="local_historic_jewel_override_1_conquored_notable_to_passive_hash_1" } }, - [7747]={ + [7753]={ [1]={ [1]={ [1]={ @@ -169755,7 +169851,7 @@ return { [1]="local_historic_jewel_override_1_conquored_notable_to_passive_hash_2" } }, - [7748]={ + [7754]={ [1]={ [1]={ limit={ @@ -169771,7 +169867,7 @@ return { [1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently" } }, - [7749]={ + [7755]={ [1]={ [1]={ limit={ @@ -169800,7 +169896,7 @@ return { [1]="local_hits_with_this_weapon_freeze_as_though_damage_+%_final" } }, - [7750]={ + [7756]={ [1]={ [1]={ limit={ @@ -169816,7 +169912,7 @@ return { [1]="local_hits_with_this_weapon_ignore_poison_limit" } }, - [7751]={ + [7757]={ [1]={ [1]={ limit={ @@ -169845,7 +169941,7 @@ return { [1]="local_hits_with_this_weapon_shock_as_though_damage_+%_final" } }, - [7752]={ + [7758]={ [1]={ [1]={ limit={ @@ -169861,7 +169957,7 @@ return { [1]="local_idols_gain_additional_socketable_mods" } }, - [7753]={ + [7759]={ [1]={ [1]={ limit={ @@ -169890,7 +169986,7 @@ return { [1]="local_ignite_effect_+%_final_with_this_weapon" } }, - [7754]={ + [7760]={ [1]={ [1]={ limit={ @@ -169906,7 +170002,7 @@ return { [1]="local_immune_to_curses_if_item_corrupted" } }, - [7755]={ + [7761]={ [1]={ [1]={ limit={ @@ -169931,7 +170027,7 @@ return { [1]="local_inflict_exposure_on_hit_%_chance" } }, - [7756]={ + [7762]={ [1]={ [1]={ limit={ @@ -169956,7 +170052,7 @@ return { [1]="local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant" } }, - [7757]={ + [7763]={ [1]={ [1]={ limit={ @@ -169972,7 +170068,7 @@ return { [1]="local_inflict_x_stacks_of_gruelling_madness_on_hit" } }, - [7758]={ + [7764]={ [1]={ [1]={ limit={ @@ -169988,7 +170084,7 @@ return { [1]="local_intelligence_per_2%_quality" } }, - [7759]={ + [7765]={ [1]={ [1]={ limit={ @@ -170004,7 +170100,7 @@ return { [1]="local_item_benefit_socketable_as_if_body_armour" } }, - [7760]={ + [7766]={ [1]={ [1]={ limit={ @@ -170020,7 +170116,7 @@ return { [1]="local_item_benefit_socketable_as_if_boots" } }, - [7761]={ + [7767]={ [1]={ [1]={ limit={ @@ -170036,7 +170132,7 @@ return { [1]="local_item_benefit_socketable_as_if_gloves" } }, - [7762]={ + [7768]={ [1]={ [1]={ limit={ @@ -170052,7 +170148,7 @@ return { [1]="local_item_benefit_socketable_as_if_helmet" } }, - [7763]={ + [7769]={ [1]={ [1]={ limit={ @@ -170068,7 +170164,7 @@ return { [1]="local_item_benefit_socketable_as_if_shield" } }, - [7764]={ + [7770]={ [1]={ [1]={ limit={ @@ -170084,7 +170180,7 @@ return { [1]="local_item_can_roll_all_influences" } }, - [7765]={ + [7771]={ [1]={ [1]={ limit={ @@ -170113,7 +170209,7 @@ return { [1]="local_item_found_rarity_+%_per_rune_or_soul_core" } }, - [7766]={ + [7772]={ [1]={ [1]={ limit={ @@ -170129,7 +170225,7 @@ return { [1]="local_item_quality_+" } }, - [7767]={ + [7773]={ [1]={ [1]={ limit={ @@ -170145,7 +170241,7 @@ return { [1]="local_item_sell_price_doubled" } }, - [7768]={ + [7774]={ [1]={ [1]={ limit={ @@ -170161,7 +170257,7 @@ return { [1]="local_item_stats_are_doubled_in_breach" } }, - [7769]={ + [7775]={ [1]={ [1]={ limit={ @@ -170177,7 +170273,7 @@ return { [1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing" } }, - [7770]={ + [7776]={ [1]={ [1]={ limit={ @@ -170193,7 +170289,7 @@ return { [1]="local_jewel_can_allocate_passives_from_dex_start" } }, - [7771]={ + [7777]={ [1]={ [1]={ limit={ @@ -170209,7 +170305,7 @@ return { [1]="local_jewel_can_allocate_passives_from_dexint_start" } }, - [7772]={ + [7778]={ [1]={ [1]={ limit={ @@ -170225,7 +170321,7 @@ return { [1]="local_jewel_can_allocate_passives_from_int_start" } }, - [7773]={ + [7779]={ [1]={ [1]={ limit={ @@ -170241,7 +170337,7 @@ return { [1]="local_jewel_can_allocate_passives_from_str_start" } }, - [7774]={ + [7780]={ [1]={ [1]={ limit={ @@ -170257,7 +170353,7 @@ return { [1]="local_jewel_can_allocate_passives_from_strdex_start" } }, - [7775]={ + [7781]={ [1]={ [1]={ limit={ @@ -170273,7 +170369,7 @@ return { [1]="local_jewel_can_allocate_passives_from_strint_start" } }, - [7776]={ + [7782]={ [1]={ [1]={ limit={ @@ -170289,7 +170385,7 @@ return { [1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius" } }, - [7777]={ + [7783]={ [1]={ [1]={ limit={ @@ -170305,7 +170401,7 @@ return { [1]="local_jewel_disable_combust_with_40_strength_in_radius" } }, - [7778]={ + [7784]={ [1]={ [1]={ limit={ @@ -170339,7 +170435,7 @@ return { [1]="local_jewel_display_radius_change" } }, - [7779]={ + [7785]={ [1]={ [1]={ limit={ @@ -170368,7 +170464,7 @@ return { [1]="local_jewel_expansion_jewels_count" } }, - [7780]={ + [7786]={ [1]={ [1]={ limit={ @@ -170397,7 +170493,7 @@ return { [1]="local_jewel_expansion_jewels_count_override" } }, - [7781]={ + [7787]={ [1]={ [1]={ limit={ @@ -170413,7 +170509,7 @@ return { [1]="local_jewel_expansion_keystone_disciple_of_kitava" } }, - [7782]={ + [7788]={ [1]={ [1]={ limit={ @@ -170429,7 +170525,7 @@ return { [1]="local_jewel_expansion_keystone_hollow_palm_technique" } }, - [7783]={ + [7789]={ [1]={ [1]={ limit={ @@ -170445,7 +170541,7 @@ return { [1]="local_jewel_expansion_keystone_kineticism" } }, - [7784]={ + [7790]={ [1]={ [1]={ limit={ @@ -170461,7 +170557,7 @@ return { [1]="local_jewel_expansion_keystone_lone_messenger" } }, - [7785]={ + [7791]={ [1]={ [1]={ limit={ @@ -170477,7 +170573,7 @@ return { [1]="local_jewel_expansion_keystone_natures_patience" } }, - [7786]={ + [7792]={ [1]={ [1]={ limit={ @@ -170493,7 +170589,7 @@ return { [1]="local_jewel_expansion_keystone_pitfighter" } }, - [7787]={ + [7793]={ [1]={ [1]={ limit={ @@ -170509,7 +170605,7 @@ return { [1]="local_jewel_expansion_keystone_secrets_of_suffering" } }, - [7788]={ + [7794]={ [1]={ [1]={ limit={ @@ -170525,7 +170621,7 @@ return { [1]="local_jewel_expansion_keystone_veterans_awareness" } }, - [7789]={ + [7795]={ [1]={ [1]={ [1]={ @@ -170545,7 +170641,7 @@ return { [1]="local_jewel_expansion_passive_node_index" } }, - [7790]={ + [7796]={ [1]={ [1]={ limit={ @@ -170561,7 +170657,7 @@ return { [1]="local_jewel_fireball_cannot_ignite" } }, - [7791]={ + [7797]={ [1]={ [1]={ limit={ @@ -170577,7 +170673,7 @@ return { [1]="local_jewel_fireball_chance_to_scorch_%" } }, - [7792]={ + [7798]={ [1]={ [1]={ limit={ @@ -170606,7 +170702,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius" } }, - [7793]={ + [7799]={ [1]={ [1]={ limit={ @@ -170635,7 +170731,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius" } }, - [7794]={ + [7800]={ [1]={ [1]={ limit={ @@ -170651,7 +170747,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius" } }, - [7795]={ + [7801]={ [1]={ [1]={ limit={ @@ -170676,7 +170772,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius" } }, - [7796]={ + [7802]={ [1]={ [1]={ limit={ @@ -170705,7 +170801,7 @@ return { [1]="local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius" } }, - [7797]={ + [7803]={ [1]={ [1]={ limit={ @@ -170734,7 +170830,7 @@ return { [1]="local_jewel_notable_passive_in_radius_effect_+%" } }, - [7798]={ + [7804]={ [1]={ [1]={ limit={ @@ -170763,7 +170859,7 @@ return { [1]="local_jewel_notables_in_radius_grant_base_projectile_speed_+%" } }, - [7799]={ + [7805]={ [1]={ [1]={ limit={ @@ -170792,7 +170888,7 @@ return { [1]="local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%" } }, - [7800]={ + [7806]={ [1]={ [1]={ limit={ @@ -170821,7 +170917,7 @@ return { [1]="local_jewel_notables_in_radius_grant_curse_effect_+%" } }, - [7801]={ + [7807]={ [1]={ [1]={ limit={ @@ -170850,7 +170946,7 @@ return { [1]="local_jewel_small_and_notable_passive_in_radius_effect_+%" } }, - [7802]={ + [7808]={ [1]={ [1]={ limit={ @@ -170879,7 +170975,7 @@ return { [1]="local_jewel_small_passive_in_radius_effect_+%" } }, - [7803]={ + [7809]={ [1]={ [1]={ limit={ @@ -170908,7 +171004,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_evasion_rating_+%" } }, - [7804]={ + [7810]={ [1]={ [1]={ limit={ @@ -170937,7 +171033,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%" } }, - [7805]={ + [7811]={ [1]={ [1]={ limit={ @@ -170966,7 +171062,7 @@ return { [1]="local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%" } }, - [7806]={ + [7812]={ [1]={ [1]={ limit={ @@ -170982,7 +171078,7 @@ return { [1]="local_jewel_transform_damage_increases_from_cold_fire_to_lightning" } }, - [7807]={ + [7813]={ [1]={ [1]={ limit={ @@ -170998,7 +171094,7 @@ return { [1]="local_jewel_transform_damage_increases_from_cold_lightning_to_fire" } }, - [7808]={ + [7814]={ [1]={ [1]={ limit={ @@ -171014,7 +171110,7 @@ return { [1]="local_jewel_transform_damage_increases_from_fire_lightning_to_cold" } }, - [7809]={ + [7815]={ [1]={ [1]={ limit={ @@ -171030,7 +171126,7 @@ return { [1]="local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant" } }, - [7810]={ + [7816]={ [1]={ [1]={ limit={ @@ -171046,7 +171142,7 @@ return { [1]="local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [7811]={ + [7817]={ [1]={ [1]={ limit={ @@ -171062,7 +171158,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_cannot_chain" } }, - [7812]={ + [7818]={ [1]={ [1]={ limit={ @@ -171078,7 +171174,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_fork" } }, - [7813]={ + [7819]={ [1]={ [1]={ limit={ @@ -171094,7 +171190,7 @@ return { [1]="local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura" } }, - [7814]={ + [7820]={ [1]={ [1]={ limit={ @@ -171123,7 +171219,7 @@ return { [1]="local_life_gain_per_target_vs_blinded_enemies" } }, - [7815]={ + [7821]={ [1]={ [1]={ limit={ @@ -171152,7 +171248,7 @@ return { [1]="local_life_gain_per_target_while_leeching" } }, - [7816]={ + [7822]={ [1]={ [1]={ limit={ @@ -171168,7 +171264,7 @@ return { [1]="local_lightning_resistance_%_per_2%_quality" } }, - [7817]={ + [7823]={ [1]={ [1]={ limit={ @@ -171193,7 +171289,7 @@ return { [1]="local_maim_on_hit_%" } }, - [7818]={ + [7824]={ [1]={ [1]={ limit={ @@ -171209,7 +171305,7 @@ return { [1]="local_maximum_added_cold_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X" } }, - [7819]={ + [7825]={ [1]={ [1]={ limit={ @@ -171225,7 +171321,7 @@ return { [1]="local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X" } }, - [7820]={ + [7826]={ [1]={ [1]={ limit={ @@ -171254,7 +171350,7 @@ return { [1]="local_maximum_energy_shield_+%_if_item_corrupted" } }, - [7821]={ + [7827]={ [1]={ [1]={ limit={ @@ -171270,7 +171366,7 @@ return { [1]="local_maximum_life_per_2%_quality" } }, - [7822]={ + [7828]={ [1]={ [1]={ limit={ @@ -171299,7 +171395,7 @@ return { [1]="local_maximum_life_+%_if_item_corrupted" } }, - [7823]={ + [7829]={ [1]={ [1]={ limit={ @@ -171328,7 +171424,7 @@ return { [1]="local_maximum_life_+%_per_rune_or_soul_core" } }, - [7824]={ + [7830]={ [1]={ [1]={ limit={ @@ -171344,7 +171440,7 @@ return { [1]="local_maximum_mana_per_2%_quality" } }, - [7825]={ + [7831]={ [1]={ [1]={ limit={ @@ -171373,7 +171469,7 @@ return { [1]="local_maximum_mana_+%_per_rune_or_soul_core" } }, - [7826]={ + [7832]={ [1]={ [1]={ limit={ @@ -171389,7 +171485,7 @@ return { [1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed" } }, - [7827]={ + [7833]={ [1]={ [1]={ limit={ @@ -171418,7 +171514,7 @@ return { [1]="local_movement_speed_+%_if_item_corrupted" } }, - [7828]={ + [7834]={ [1]={ [1]={ limit={ @@ -171447,7 +171543,7 @@ return { [1]="local_non_unique_item_explicit_prefix_mod_magnitudes_+%" } }, - [7829]={ + [7835]={ [1]={ [1]={ limit={ @@ -171476,7 +171572,7 @@ return { [1]="local_non_unique_item_explicit_suffix_mod_magnitudes_+%" } }, - [7830]={ + [7836]={ [1]={ [1]={ limit={ @@ -171492,7 +171588,7 @@ return { [1]="local_physical_damage_roll_always_min_or_max" } }, - [7831]={ + [7837]={ [1]={ [1]={ limit={ @@ -171517,7 +171613,7 @@ return { [1]="local_poison_on_critical_strike_chance_%" } }, - [7832]={ + [7838]={ [1]={ [1]={ limit={ @@ -171542,7 +171638,7 @@ return { [1]="local_poison_on_hit_%" } }, - [7833]={ + [7839]={ [1]={ [1]={ limit={ @@ -171571,7 +171667,7 @@ return { [1]="local_prefix_effect_+%" } }, - [7834]={ + [7840]={ [1]={ [1]={ limit={ @@ -171596,7 +171692,7 @@ return { [1]="local_projectile_speed_+%" } }, - [7835]={ + [7841]={ [1]={ [1]={ limit={ @@ -171612,7 +171708,7 @@ return { [1]="local_requirements_%_to_convert_to_dexterity" } }, - [7836]={ + [7842]={ [1]={ [1]={ limit={ @@ -171628,7 +171724,7 @@ return { [1]="local_requirements_%_to_convert_to_intelligence" } }, - [7837]={ + [7843]={ [1]={ [1]={ limit={ @@ -171644,7 +171740,7 @@ return { [1]="local_requirements_%_to_convert_to_strength" } }, - [7838]={ + [7844]={ [1]={ [1]={ limit={ @@ -171660,7 +171756,7 @@ return { [1]="local_resist_all_elements_%_if_item_corrupted" } }, - [7839]={ + [7845]={ [1]={ [1]={ limit={ @@ -171689,7 +171785,7 @@ return { [1]="local_resist_all_elements_+%_per_rune_or_soul_core" } }, - [7840]={ + [7846]={ [1]={ [1]={ limit={ @@ -171705,7 +171801,7 @@ return { [1]="local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [7841]={ + [7847]={ [1]={ [1]={ limit={ @@ -171721,7 +171817,7 @@ return { [1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles" } }, - [7842]={ + [7848]={ [1]={ [1]={ limit={ @@ -171737,7 +171833,7 @@ return { [1]="local_right_ring_slot_projectiles_from_spells_cannot_fork" } }, - [7843]={ + [7849]={ [1]={ [1]={ limit={ @@ -171753,7 +171849,7 @@ return { [1]="local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura" } }, - [7844]={ + [7850]={ [1]={ [1]={ limit={ @@ -171782,7 +171878,7 @@ return { [1]="local_ring_attack_speed_+%_final" } }, - [7845]={ + [7851]={ [1]={ [1]={ limit={ @@ -171811,7 +171907,7 @@ return { [1]="local_ring_burning_damage_+%_final" } }, - [7846]={ + [7852]={ [1]={ [1]={ limit={ @@ -171840,7 +171936,7 @@ return { [1]="local_ring_nova_spells_area_of_effect_+%_final" } }, - [7847]={ + [7853]={ [1]={ [1]={ limit={ @@ -171856,7 +171952,7 @@ return { [1]="local_shield_double_stun_threshold_while_active_blocking" } }, - [7848]={ + [7854]={ [1]={ [1]={ limit={ @@ -171872,7 +171968,7 @@ return { [1]="local_socketable_%_maximum_weapon_damage_to_gain_as_maximum_ward" } }, - [7849]={ + [7855]={ [1]={ [1]={ limit={ @@ -171901,7 +171997,7 @@ return { [1]="local_spell_damage_+%_if_item_corrupted" } }, - [7850]={ + [7856]={ [1]={ [1]={ limit={ @@ -171917,7 +172013,7 @@ return { [1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed" } }, - [7851]={ + [7857]={ [1]={ [1]={ limit={ @@ -171933,7 +172029,7 @@ return { [1]="local_spirit_+_per_rune_or_soul_core" } }, - [7852]={ + [7858]={ [1]={ [1]={ limit={ @@ -171949,7 +172045,7 @@ return { [1]="local_strength_per_2%_quality" } }, - [7853]={ + [7859]={ [1]={ [1]={ limit={ @@ -171965,7 +172061,7 @@ return { [1]="local_stun_threshold_+_per_rune_or_soul_core" } }, - [7854]={ + [7860]={ [1]={ [1]={ limit={ @@ -171994,7 +172090,7 @@ return { [1]="local_suffix_effect_+%" } }, - [7855]={ + [7861]={ [1]={ [1]={ limit={ @@ -172010,7 +172106,7 @@ return { [1]="local_tablet_make_maps_in_radius_available" } }, - [7856]={ + [7862]={ [1]={ [1]={ limit={ @@ -172026,7 +172122,7 @@ return { [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" } }, - [7857]={ + [7863]={ [1]={ [1]={ [1]={ @@ -172068,7 +172164,7 @@ return { [2]="local_unique_flask_ward_gained_as_guard_duration_ms_when_flask_effect_ends" } }, - [7858]={ + [7864]={ [1]={ [1]={ [1]={ @@ -172088,7 +172184,7 @@ return { [1]="local_unique_flask_life_loss_%_per_minute_while_you_have_no_runic_ward_during_flask_effect" } }, - [7859]={ + [7865]={ [1]={ [1]={ limit={ @@ -172104,7 +172200,7 @@ return { [1]="local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds" } }, - [7860]={ + [7866]={ [1]={ [1]={ limit={ @@ -172120,7 +172216,7 @@ return { [1]="local_unique_flask_mana_flask_recovery_can_overcap_mana_during_flask_effect" } }, - [7861]={ + [7867]={ [1]={ [1]={ limit={ @@ -172136,7 +172232,7 @@ return { [1]="local_unique_flask_maximum_rage_is_doubled_during_effect" } }, - [7862]={ + [7868]={ [1]={ [1]={ limit={ @@ -172152,7 +172248,7 @@ return { [1]="local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect" } }, - [7863]={ + [7869]={ [1]={ [1]={ limit={ @@ -172168,7 +172264,7 @@ return { [1]="local_unique_flask_recover_all_mana_on_use" } }, - [7864]={ + [7870]={ [1]={ [1]={ limit={ @@ -172184,7 +172280,7 @@ return { [1]="local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends" } }, - [7865]={ + [7871]={ [1]={ [1]={ limit={ @@ -172213,7 +172309,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius" } }, - [7866]={ + [7872]={ [1]={ [1]={ [1]={ @@ -172233,7 +172329,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius" } }, - [7867]={ + [7873]={ [1]={ [1]={ [1]={ @@ -172253,7 +172349,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius" } }, - [7868]={ + [7874]={ [1]={ [1]={ limit={ @@ -172282,7 +172378,7 @@ return { [1]="local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius" } }, - [7869]={ + [7875]={ [1]={ [1]={ limit={ @@ -172298,7 +172394,7 @@ return { [1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius" } }, - [7870]={ + [7876]={ [1]={ [1]={ limit={ @@ -172314,7 +172410,7 @@ return { [1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius" } }, - [7871]={ + [7877]={ [1]={ [1]={ limit={ @@ -172330,7 +172426,7 @@ return { [1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius" } }, - [7872]={ + [7878]={ [1]={ [1]={ limit={ @@ -172346,7 +172442,7 @@ return { [1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius" } }, - [7873]={ + [7879]={ [1]={ [1]={ limit={ @@ -172375,7 +172471,7 @@ return { [1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius" } }, - [7874]={ + [7880]={ [1]={ [1]={ limit={ @@ -172404,7 +172500,7 @@ return { [1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius" } }, - [7875]={ + [7881]={ [1]={ [1]={ limit={ @@ -172420,7 +172516,7 @@ return { [1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage" } }, - [7876]={ + [7882]={ [1]={ [1]={ limit={ @@ -172436,7 +172532,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance" } }, - [7877]={ + [7883]={ [1]={ [1]={ limit={ @@ -172452,7 +172548,7 @@ return { [1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius" } }, - [7878]={ + [7884]={ [1]={ [1]={ limit={ @@ -172481,7 +172577,7 @@ return { [1]="local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius" } }, - [7879]={ + [7885]={ [1]={ [1]={ limit={ @@ -172497,7 +172593,7 @@ return { [1]="local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius" } }, - [7880]={ + [7886]={ [1]={ [1]={ limit={ @@ -172526,7 +172622,7 @@ return { [1]="local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius" } }, - [7881]={ + [7887]={ [1]={ [1]={ [1]={ @@ -172546,7 +172642,7 @@ return { [1]="local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash" } }, - [7882]={ + [7888]={ [1]={ [1]={ limit={ @@ -172562,7 +172658,7 @@ return { [1]="local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius" } }, - [7883]={ + [7889]={ [1]={ [1]={ limit={ @@ -172591,7 +172687,7 @@ return { [1]="local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius" } }, - [7884]={ + [7890]={ [1]={ [1]={ limit={ @@ -172620,7 +172716,7 @@ return { [1]="local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius" } }, - [7885]={ + [7891]={ [1]={ [1]={ limit={ @@ -172636,7 +172732,7 @@ return { [1]="local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius" } }, - [7886]={ + [7892]={ [1]={ [1]={ limit={ @@ -172652,7 +172748,7 @@ return { [1]="local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius" } }, - [7887]={ + [7893]={ [1]={ [1]={ limit={ @@ -172677,7 +172773,7 @@ return { [1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius" } }, - [7888]={ + [7894]={ [1]={ [1]={ limit={ @@ -172693,7 +172789,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius" } }, - [7889]={ + [7895]={ [1]={ [1]={ limit={ @@ -172709,7 +172805,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius" } }, - [7890]={ + [7896]={ [1]={ [1]={ limit={ @@ -172725,7 +172821,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int" } }, - [7891]={ + [7897]={ [1]={ [1]={ limit={ @@ -172741,7 +172837,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex" } }, - [7892]={ + [7898]={ [1]={ [1]={ limit={ @@ -172757,7 +172853,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex" } }, - [7893]={ + [7899]={ [1]={ [1]={ limit={ @@ -172773,7 +172869,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius" } }, - [7894]={ + [7900]={ [1]={ [1]={ limit={ @@ -172789,7 +172885,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius" } }, - [7895]={ + [7901]={ [1]={ [1]={ limit={ @@ -172805,7 +172901,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius" } }, - [7896]={ + [7902]={ [1]={ [1]={ limit={ @@ -172821,7 +172917,7 @@ return { [1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage" } }, - [7897]={ + [7903]={ [1]={ [1]={ limit={ @@ -172837,7 +172933,7 @@ return { [1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage" } }, - [7898]={ + [7904]={ [1]={ [1]={ limit={ @@ -172853,7 +172949,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%" } }, - [7899]={ + [7905]={ [1]={ [1]={ limit={ @@ -172869,7 +172965,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance" } }, - [7900]={ + [7906]={ [1]={ [1]={ limit={ @@ -172894,7 +172990,7 @@ return { [1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius" } }, - [7901]={ + [7907]={ [1]={ [1]={ limit={ @@ -172910,7 +173006,7 @@ return { [1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius" } }, - [7902]={ + [7908]={ [1]={ [1]={ limit={ @@ -172939,7 +173035,7 @@ return { [1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius" } }, - [7903]={ + [7909]={ [1]={ [1]={ limit={ @@ -172964,7 +173060,7 @@ return { [1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius" } }, - [7904]={ + [7910]={ [1]={ [1]={ limit={ @@ -172993,7 +173089,7 @@ return { [1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius" } }, - [7905]={ + [7911]={ [1]={ [1]={ limit={ @@ -173018,7 +173114,7 @@ return { [1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius" } }, - [7906]={ + [7912]={ [1]={ [1]={ limit={ @@ -173047,7 +173143,7 @@ return { [1]="local_unique_jewel_grants_x_empty_passives" } }, - [7907]={ + [7913]={ [1]={ [1]={ limit={ @@ -173076,7 +173172,7 @@ return { [1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius" } }, - [7908]={ + [7914]={ [1]={ [1]={ limit={ @@ -173092,7 +173188,7 @@ return { [1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius" } }, - [7909]={ + [7915]={ [1]={ [1]={ limit={ @@ -173117,7 +173213,7 @@ return { [1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius" } }, - [7910]={ + [7916]={ [1]={ [1]={ limit={ @@ -173146,7 +173242,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius" } }, - [7911]={ + [7917]={ [1]={ [1]={ limit={ @@ -173175,7 +173271,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius" } }, - [7912]={ + [7918]={ [1]={ [1]={ limit={ @@ -173191,7 +173287,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance" } }, - [7913]={ + [7919]={ [1]={ [1]={ limit={ @@ -173207,7 +173303,7 @@ return { [1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius" } }, - [7914]={ + [7920]={ [1]={ [1]={ limit={ @@ -173232,7 +173328,7 @@ return { [1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius" } }, - [7915]={ + [7921]={ [1]={ [1]={ limit={ @@ -173261,7 +173357,7 @@ return { [1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius" } }, - [7916]={ + [7922]={ [1]={ [1]={ limit={ @@ -173290,7 +173386,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius" } }, - [7917]={ + [7923]={ [1]={ [1]={ limit={ @@ -173319,7 +173415,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius" } }, - [7918]={ + [7924]={ [1]={ [1]={ limit={ @@ -173344,7 +173440,7 @@ return { [1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius" } }, - [7919]={ + [7925]={ [1]={ [1]={ limit={ @@ -173360,7 +173456,7 @@ return { [1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius" } }, - [7920]={ + [7926]={ [1]={ [1]={ limit={ @@ -173389,7 +173485,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius" } }, - [7921]={ + [7927]={ [1]={ [1]={ limit={ @@ -173418,7 +173514,7 @@ return { [1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%" } }, - [7922]={ + [7928]={ [1]={ [1]={ limit={ @@ -173434,7 +173530,7 @@ return { [1]="local_unique_jewel_notable_passive_in_radius_does_nothing" } }, - [7923]={ + [7929]={ [1]={ [1]={ limit={ @@ -173463,7 +173559,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_rare_jewel_socketed" } }, - [7924]={ + [7930]={ [1]={ [1]={ limit={ @@ -173492,7 +173588,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed" } }, - [7925]={ + [7931]={ [1]={ [1]={ limit={ @@ -173521,7 +173617,7 @@ return { [1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius" } }, - [7926]={ + [7932]={ [1]={ [1]={ limit={ @@ -173546,7 +173642,7 @@ return { [1]="local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed" } }, - [7927]={ + [7933]={ [1]={ [1]={ limit={ @@ -173571,7 +173667,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius" } }, - [7928]={ + [7934]={ [1]={ [1]={ limit={ @@ -173587,7 +173683,7 @@ return { [1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius" } }, - [7929]={ + [7935]={ [1]={ [1]={ limit={ @@ -173603,7 +173699,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius" } }, - [7930]={ + [7936]={ [1]={ [1]={ limit={ @@ -173632,7 +173728,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius" } }, - [7931]={ + [7937]={ [1]={ [1]={ limit={ @@ -173648,7 +173744,7 @@ return { [1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius" } }, - [7932]={ + [7938]={ [1]={ [1]={ limit={ @@ -173664,7 +173760,7 @@ return { [1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius" } }, - [7933]={ + [7939]={ [1]={ [1]={ limit={ @@ -173680,7 +173776,7 @@ return { [1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius" } }, - [7934]={ + [7940]={ [1]={ [1]={ limit={ @@ -173696,7 +173792,7 @@ return { [1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius" } }, - [7935]={ + [7941]={ [1]={ [1]={ limit={ @@ -173712,7 +173808,7 @@ return { [1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius" } }, - [7936]={ + [7942]={ [1]={ [1]={ [1]={ @@ -173732,7 +173828,7 @@ return { [1]="local_unique_mages_legacy_1" } }, - [7937]={ + [7943]={ [1]={ [1]={ [1]={ @@ -173752,7 +173848,7 @@ return { [1]="local_unique_mages_legacy_2" } }, - [7938]={ + [7944]={ [1]={ [1]={ [1]={ @@ -173772,7 +173868,7 @@ return { [1]="local_unique_mages_legacy_3" } }, - [7939]={ + [7945]={ [1]={ [1]={ [1]={ @@ -173792,7 +173888,7 @@ return { [1]="local_unique_mages_legacy_4" } }, - [7940]={ + [7946]={ [1]={ [1]={ limit={ @@ -173808,7 +173904,7 @@ return { [1]="local_unique_mages_legacy_effect_+%_per_duplicate_mages_legacy" } }, - [7941]={ + [7947]={ [1]={ [1]={ limit={ @@ -173824,7 +173920,7 @@ return { [1]="local_weapon_accuracy_is_unaffected_by_distance" } }, - [7942]={ + [7948]={ [1]={ [1]={ limit={ @@ -173840,7 +173936,7 @@ return { [1]="local_weapon_damage_%_to_gain_as_daze_build_up" } }, - [7943]={ + [7949]={ [1]={ [1]={ limit={ @@ -173865,7 +173961,7 @@ return { [1]="local_weapon_daze_chance_%" } }, - [7944]={ + [7950]={ [1]={ [1]={ limit={ @@ -173881,7 +173977,7 @@ return { [1]="local_weapon_range_+_per_10%_quality" } }, - [7945]={ + [7951]={ [1]={ [1]={ limit={ @@ -173906,7 +174002,7 @@ return { [1]="lose_%_of_infernal_flame_on_reaching_max" } }, - [7946]={ + [7952]={ [1]={ [1]={ limit={ @@ -173922,7 +174018,7 @@ return { [1]="lose_%_of_life_loss_over_4_seconds_instead" } }, - [7947]={ + [7953]={ [1]={ [1]={ [1]={ @@ -173942,7 +174038,7 @@ return { [1]="lose_%_of_max_infernal_flame_per_minute" } }, - [7948]={ + [7954]={ [1]={ [1]={ limit={ @@ -173958,7 +174054,7 @@ return { [1]="lose_adrenaline_on_losing_flame_touched" } }, - [7949]={ + [7955]={ [1]={ [1]={ limit={ @@ -173974,7 +174070,7 @@ return { [1]="lose_all_charges_on_starting_movement" } }, - [7950]={ + [7956]={ [1]={ [1]={ limit={ @@ -173990,7 +174086,7 @@ return { [1]="lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges" } }, - [7951]={ + [7957]={ [1]={ [1]={ limit={ @@ -174006,7 +174102,7 @@ return { [1]="lose_all_power_charges_on_block" } }, - [7952]={ + [7958]={ [1]={ [1]={ limit={ @@ -174022,7 +174118,7 @@ return { [1]="lose_all_rage_on_reaching_maximum_rage" } }, - [7953]={ + [7959]={ [1]={ [1]={ limit={ @@ -174038,7 +174134,7 @@ return { [1]="lose_all_tailwind_when_hit" } }, - [7954]={ + [7960]={ [1]={ [1]={ limit={ @@ -174054,7 +174150,7 @@ return { [1]="lose_%_of_es_on_crit" } }, - [7955]={ + [7961]={ [1]={ [1]={ limit={ @@ -174070,7 +174166,7 @@ return { [1]="lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill" } }, - [7956]={ + [7962]={ [1]={ [1]={ limit={ @@ -174086,7 +174182,7 @@ return { [1]="lose_%_of_life_on_crit" } }, - [7957]={ + [7963]={ [1]={ [1]={ limit={ @@ -174102,7 +174198,7 @@ return { [1]="lose_%_of_mana_when_you_use_an_attack_skill" } }, - [7958]={ + [7964]={ [1]={ [1]={ limit={ @@ -174118,7 +174214,7 @@ return { [1]="lose_power_charge_each_second_if_not_detonated_mines_recently" } }, - [7959]={ + [7965]={ [1]={ [1]={ limit={ @@ -174134,7 +174230,7 @@ return { [1]="lose_x_life_when_you_use_skill" } }, - [7960]={ + [7966]={ [1]={ [1]={ limit={ @@ -174150,7 +174246,7 @@ return { [1]="lose_x_mana_when_you_use_skill" } }, - [7961]={ + [7967]={ [1]={ [1]={ limit={ @@ -174175,7 +174271,7 @@ return { [1]="local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence" } }, - [7962]={ + [7968]={ [1]={ [1]={ limit={ @@ -174191,7 +174287,7 @@ return { [1]="low_life_threshold_%_override" } }, - [7963]={ + [7969]={ [1]={ [1]={ limit={ @@ -174207,7 +174303,7 @@ return { [1]="low_mana_threshold_%_override" } }, - [7964]={ + [7970]={ [1]={ [1]={ limit={ @@ -174236,7 +174332,7 @@ return { [1]="mace_hit_damage_stun_multiplier_+%" } }, - [7965]={ + [7971]={ [1]={ [1]={ limit={ @@ -174252,7 +174348,7 @@ return { [1]="mace_skill_base_physical_damage_%_to_convert_to_cold" } }, - [7966]={ + [7972]={ [1]={ [1]={ limit={ @@ -174268,7 +174364,7 @@ return { [1]="mace_slam_aftershock_chance_%" } }, - [7967]={ + [7973]={ [1]={ [1]={ limit={ @@ -174284,7 +174380,7 @@ return { [1]="mace_strike_melee_splash_chance_%" } }, - [7968]={ + [7974]={ [1]={ [1]={ limit={ @@ -174313,7 +174409,7 @@ return { [1]="magic_monster_dropped_item_rarity_+%" } }, - [7969]={ + [7975]={ [1]={ [1]={ limit={ @@ -174338,7 +174434,7 @@ return { [1]="magma_orb_number_of_additional_projectiles" } }, - [7970]={ + [7976]={ [1]={ [1]={ limit={ @@ -174367,7 +174463,7 @@ return { [1]="magma_orb_skill_area_of_effect_+%_per_bounce" } }, - [7971]={ + [7977]={ [1]={ [1]={ limit={ @@ -174396,7 +174492,7 @@ return { [1]="maim_chance_+%" } }, - [7972]={ + [7978]={ [1]={ [1]={ limit={ @@ -174425,7 +174521,7 @@ return { [1]="maim_effect_+%" } }, - [7973]={ + [7979]={ [1]={ [1]={ limit={ @@ -174441,7 +174537,7 @@ return { [1]="maim_enemy_on_full_armour_break" } }, - [7974]={ + [7980]={ [1]={ [1]={ limit={ @@ -174457,7 +174553,7 @@ return { [1]="maim_on_crit_%_with_attacks" } }, - [7975]={ + [7981]={ [1]={ [1]={ limit={ @@ -174482,7 +174578,7 @@ return { [1]="maim_on_hit_%" } }, - [7976]={ + [7982]={ [1]={ [1]={ limit={ @@ -174511,7 +174607,7 @@ return { [1]="main_hand_attack_damage_+%_while_wielding_two_weapon_types" } }, - [7977]={ + [7983]={ [1]={ [1]={ limit={ @@ -174540,7 +174636,7 @@ return { [1]="main_hand_attack_speed_+%_final" } }, - [7978]={ + [7984]={ [1]={ [1]={ limit={ @@ -174569,7 +174665,7 @@ return { [1]="main_hand_claw_life_gain_on_hit" } }, - [7979]={ + [7985]={ [1]={ [1]={ limit={ @@ -174594,7 +174690,7 @@ return { [1]="main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%" } }, - [7980]={ + [7986]={ [1]={ [1]={ limit={ @@ -174623,7 +174719,7 @@ return { [1]="main_hand_damage_+%_while_dual_wielding" } }, - [7981]={ + [7987]={ [1]={ [1]={ limit={ @@ -174639,7 +174735,7 @@ return { [1]="malediction_on_hit" } }, - [7982]={ + [7988]={ [1]={ [1]={ [1]={ @@ -174676,7 +174772,7 @@ return { [1]="malevolence_mana_reservation_efficiency_-2%_per_1" } }, - [7983]={ + [7989]={ [1]={ [1]={ limit={ @@ -174705,7 +174801,7 @@ return { [1]="malevolence_mana_reservation_efficiency_+%" } }, - [7984]={ + [7990]={ [1]={ [1]={ limit={ @@ -174734,7 +174830,7 @@ return { [1]="mamba_strike_area_of_effect_+%" } }, - [7985]={ + [7991]={ [1]={ [1]={ limit={ @@ -174763,7 +174859,7 @@ return { [1]="mamba_strike_damage_+%" } }, - [7986]={ + [7992]={ [1]={ [1]={ limit={ @@ -174792,7 +174888,7 @@ return { [1]="mamba_strike_duration_+%" } }, - [7987]={ + [7993]={ [1]={ [1]={ limit={ @@ -174808,7 +174904,7 @@ return { [1]="mana_%_to_gain_as_armour" } }, - [7988]={ + [7994]={ [1]={ [1]={ limit={ @@ -174837,7 +174933,7 @@ return { [1]="mana_cost_efficiency_+%_if_dodge_rolled_recently" } }, - [7989]={ + [7995]={ [1]={ [1]={ limit={ @@ -174866,7 +174962,7 @@ return { [1]="mana_cost_efficiency_+%_if_not_dodge_rolled_recently" } }, - [7990]={ + [7996]={ [1]={ [1]={ limit={ @@ -174895,7 +174991,7 @@ return { [1]="mana_cost_+%_for_channelling_skills" } }, - [7991]={ + [7997]={ [1]={ [1]={ limit={ @@ -174924,7 +175020,7 @@ return { [1]="mana_cost_+%_for_trap_and_mine_skills" } }, - [7992]={ + [7998]={ [1]={ [1]={ limit={ @@ -174953,7 +175049,7 @@ return { [1]="mana_cost_+%_for_trap_skills" } }, - [7993]={ + [7999]={ [1]={ [1]={ limit={ @@ -174982,7 +175078,7 @@ return { [1]="mana_cost_+%_per_10_devotion" } }, - [7994]={ + [8000]={ [1]={ [1]={ [1]={ @@ -175002,7 +175098,7 @@ return { [1]="mana_degeneration_%_per_minute_not_in_grace" } }, - [7995]={ + [8001]={ [1]={ [1]={ [1]={ @@ -175022,7 +175118,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [7996]={ + [8002]={ [1]={ [1]={ [1]={ @@ -175042,7 +175138,7 @@ return { [1]="mana_degeneration_per_minute_%" } }, - [7997]={ + [8003]={ [1]={ [1]={ limit={ @@ -175071,7 +175167,7 @@ return { [1]="mana_flask_charges_gained_+%" } }, - [7998]={ + [8004]={ [1]={ [1]={ limit={ @@ -175087,7 +175183,7 @@ return { [1]="mana_flask_effects_not_removed_at_full_mana" } }, - [7999]={ + [8005]={ [1]={ [1]={ limit={ @@ -175103,7 +175199,7 @@ return { [1]="mana_flask_recovery_is_instant_while_on_low_mana" } }, - [8000]={ + [8006]={ [1]={ [1]={ limit={ @@ -175128,7 +175224,7 @@ return { [1]="mana_flasks_gain_X_charges_every_3_seconds" } }, - [8001]={ + [8007]={ [1]={ [1]={ limit={ @@ -175144,7 +175240,7 @@ return { [1]="mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds" } }, - [8002]={ + [8008]={ [1]={ [1]={ limit={ @@ -175173,7 +175269,7 @@ return { [1]="mana_gained_on_attack_hit_vs_cursed_enemies" } }, - [8003]={ + [8009]={ [1]={ [1]={ limit={ @@ -175189,7 +175285,7 @@ return { [1]="mana_gained_on_cull" } }, - [8004]={ + [8010]={ [1]={ [1]={ limit={ @@ -175218,7 +175314,7 @@ return { [1]="mana_gained_on_spell_hit" } }, - [8005]={ + [8011]={ [1]={ [1]={ limit={ @@ -175247,7 +175343,7 @@ return { [1]="mana_gained_on_spell_hit_vs_cursed_enemies" } }, - [8006]={ + [8012]={ [1]={ [1]={ limit={ @@ -175263,7 +175359,7 @@ return { [1]="mana_leech_also_recovers_based_on_other_damage_types" } }, - [8007]={ + [8013]={ [1]={ [1]={ limit={ @@ -175292,7 +175388,7 @@ return { [1]="mana_leech_amount_+%_if_crit_recently" } }, - [8008]={ + [8014]={ [1]={ [1]={ limit={ @@ -175308,7 +175404,7 @@ return { [1]="mana_leech_applies_recovery_to_energy_shield_also" } }, - [8009]={ + [8015]={ [1]={ [1]={ limit={ @@ -175324,7 +175420,7 @@ return { [1]="mana_per_level" } }, - [8010]={ + [8016]={ [1]={ [1]={ limit={ @@ -175353,7 +175449,7 @@ return { [1]="mana_%_gained_on_block" } }, - [8011]={ + [8017]={ [1]={ [1]={ [1]={ @@ -175373,7 +175469,7 @@ return { [1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [8012]={ + [8018]={ [1]={ [1]={ limit={ @@ -175389,7 +175485,7 @@ return { [1]="mana_recovery_from_regeneration_is_not_applied" } }, - [8013]={ + [8019]={ [1]={ [1]={ limit={ @@ -175418,7 +175514,7 @@ return { [1]="mana_recovery_rate_+%_per_10_tribute" } }, - [8014]={ + [8020]={ [1]={ [1]={ limit={ @@ -175447,7 +175543,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask" } }, - [8015]={ + [8021]={ [1]={ [1]={ limit={ @@ -175476,7 +175572,7 @@ return { [1]="mana_recovery_rate_+%_while_companion_in_presence" } }, - [8016]={ + [8022]={ [1]={ [1]={ limit={ @@ -175505,7 +175601,7 @@ return { [1]="mana_recovery_rate_+%_if_havent_killed_recently" } }, - [8017]={ + [8023]={ [1]={ [1]={ limit={ @@ -175534,7 +175630,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_clarity" } }, - [8018]={ + [8024]={ [1]={ [1]={ limit={ @@ -175567,7 +175663,7 @@ return { [1]="mana_regeneration_rate_+%_final_from_caster_weapon_runic_ward_socketable" } }, - [8019]={ + [8025]={ [1]={ [1]={ limit={ @@ -175596,7 +175692,7 @@ return { [1]="mana_regeneration_rate_+%_on_full_life" } }, - [8020]={ + [8026]={ [1]={ [1]={ limit={ @@ -175625,7 +175721,7 @@ return { [1]="mana_regeneration_rate_+%_while_not_on_low_mana" } }, - [8021]={ + [8027]={ [1]={ [1]={ limit={ @@ -175654,7 +175750,7 @@ return { [1]="mana_regeneration_rate_+%_while_shapeshifted" } }, - [8022]={ + [8028]={ [1]={ [1]={ limit={ @@ -175683,7 +175779,7 @@ return { [1]="mana_regeneration_rate_+%_while_surrounded" } }, - [8023]={ + [8029]={ [1]={ [1]={ [1]={ @@ -175703,7 +175799,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently" } }, - [8024]={ + [8030]={ [1]={ [1]={ [1]={ @@ -175723,7 +175819,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently" } }, - [8025]={ + [8031]={ [1]={ [1]={ [1]={ @@ -175743,7 +175839,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_10_devotion" } }, - [8026]={ + [8032]={ [1]={ [1]={ [1]={ @@ -175763,7 +175859,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_power_charge" } }, - [8027]={ + [8033]={ [1]={ [1]={ [1]={ @@ -175783,7 +175879,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently" } }, - [8028]={ + [8034]={ [1]={ [1]={ [1]={ @@ -175803,7 +175899,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently" } }, - [8029]={ + [8035]={ [1]={ [1]={ [1]={ @@ -175823,7 +175919,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_active_totem" } }, - [8030]={ + [8036]={ [1]={ [1]={ [1]={ @@ -175843,7 +175939,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_dual_wielding" } }, - [8031]={ + [8037]={ [1]={ [1]={ [1]={ @@ -175863,7 +175959,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_holding_shield" } }, - [8032]={ + [8038]={ [1]={ [1]={ [1]={ @@ -175883,7 +175979,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [8033]={ + [8039]={ [1]={ [1]={ [1]={ @@ -175903,7 +175999,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_wielding_staff" } }, - [8034]={ + [8040]={ [1]={ [1]={ [1]={ @@ -175923,7 +176019,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight" } }, - [8035]={ + [8041]={ [1]={ [1]={ limit={ @@ -175952,7 +176048,7 @@ return { [1]="mana_regeneration_rate_+%_if_crit_recently" } }, - [8036]={ + [8042]={ [1]={ [1]={ limit={ @@ -175981,7 +176077,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_frozen_recently" } }, - [8037]={ + [8043]={ [1]={ [1]={ limit={ @@ -176010,7 +176106,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_shocked_recently" } }, - [8038]={ + [8044]={ [1]={ [1]={ limit={ @@ -176039,7 +176135,7 @@ return { [1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently" } }, - [8039]={ + [8045]={ [1]={ [1]={ limit={ @@ -176068,7 +176164,7 @@ return { [1]="mana_regeneration_rate_+%_per_raised_spectre" } }, - [8040]={ + [8046]={ [1]={ [1]={ limit={ @@ -176097,7 +176193,7 @@ return { [1]="mana_regeneration_rate_+%_while_moving" } }, - [8041]={ + [8047]={ [1]={ [1]={ limit={ @@ -176126,7 +176222,7 @@ return { [1]="mana_reservation_+%_with_skills_that_throw_mines" } }, - [8042]={ + [8048]={ [1]={ [1]={ limit={ @@ -176155,7 +176251,7 @@ return { [1]="mana_reservation_efficiency_+%_for_skills_that_throw_mines" } }, - [8043]={ + [8049]={ [1]={ [1]={ [1]={ @@ -176192,7 +176288,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines" } }, - [8044]={ + [8050]={ [1]={ [1]={ [1]={ @@ -176229,7 +176325,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_250_total_attributes" } }, - [8045]={ + [8051]={ [1]={ [1]={ limit={ @@ -176258,7 +176354,7 @@ return { [1]="mana_reservation_efficiency_+%_per_250_total_attributes" } }, - [8046]={ + [8052]={ [1]={ [1]={ limit={ @@ -176287,7 +176383,7 @@ return { [1]="mana_reservation_+%_per_250_total_attributes" } }, - [8047]={ + [8053]={ [1]={ [1]={ limit={ @@ -176316,7 +176412,7 @@ return { [1]="mana_reservation_+%_with_curse_skills" } }, - [8048]={ + [8054]={ [1]={ [1]={ limit={ @@ -176332,7 +176428,7 @@ return { [1]="manabond_and_stormbind_freeze_as_though_dealt_damage_+%" } }, - [8049]={ + [8055]={ [1]={ [1]={ limit={ @@ -176361,7 +176457,7 @@ return { [1]="manabond_damage_+%" } }, - [8050]={ + [8056]={ [1]={ [1]={ limit={ @@ -176377,7 +176473,7 @@ return { [1]="manabond_lightning_penetration_%_while_on_low_mana" } }, - [8051]={ + [8057]={ [1]={ [1]={ limit={ @@ -176406,7 +176502,7 @@ return { [1]="manabond_skill_area_of_effect_+%" } }, - [8052]={ + [8058]={ [1]={ [1]={ limit={ @@ -176422,7 +176518,7 @@ return { [1]="manifest_a_fragment_of_divinity_in_your_presence_every_4_seconds" } }, - [8053]={ + [8059]={ [1]={ [1]={ limit={ @@ -176447,7 +176543,7 @@ return { [1]="manifest_dancing_dervish_number_of_additional_copies" } }, - [8054]={ + [8060]={ [1]={ [1]={ limit={ @@ -176472,7 +176568,7 @@ return { [1]="map_X_bestiary_packs_are_harvest_beasts" } }, - [8055]={ + [8061]={ [1]={ [1]={ limit={ @@ -176497,7 +176593,7 @@ return { [1]="map_abyss_%_chance_chasm_spawns_at_least_magic_monsters" } }, - [8056]={ + [8062]={ [1]={ [1]={ limit={ @@ -176522,7 +176618,7 @@ return { [1]="map_abyss_%_chance_path_spawns_at_least_magic_monsters" } }, - [8057]={ + [8063]={ [1]={ [1]={ limit={ @@ -176547,7 +176643,7 @@ return { [1]="map_abyss_depths_chance_+%" } }, - [8058]={ + [8064]={ [1]={ [1]={ limit={ @@ -176576,7 +176672,7 @@ return { [1]="map_abyss_exile_interaction_chance_+%" } }, - [8059]={ + [8065]={ [1]={ [1]={ limit={ @@ -176605,36 +176701,7 @@ return { [1]="map_abyss_monster_experience_+%" } }, - [8060]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% increased chance for Abyssal monsters to have Lichborn Modifiers" - }, - [2]={ - [1]={ - k="negate", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% reduced chance for Abyssal monsters to have Lichborn Modifiers" - } - }, - stats={ - [1]="map_abyss_monster_lichborn_modifier_chance_+%" - } - }, - [8061]={ + [8066]={ [1]={ [1]={ limit={ @@ -176663,7 +176730,7 @@ return { [1]="map_abyss_monster_potency_+%" } }, - [8062]={ + [8067]={ [1]={ [1]={ limit={ @@ -176692,7 +176759,7 @@ return { [1]="map_abyss_monster_spawn_amount_+%" } }, - [8063]={ + [8068]={ [1]={ [1]={ limit={ @@ -176708,7 +176775,7 @@ return { [1]="map_abyss_monsters_enhanced_per_chasm_closed" } }, - [8064]={ + [8069]={ [1]={ [1]={ limit={ @@ -176742,7 +176809,7 @@ return { [1]="map_abyss_no_reward_chance_+%" } }, - [8065]={ + [8070]={ [1]={ [1]={ limit={ @@ -176758,7 +176825,7 @@ return { [1]="map_abyss_num_additional_rare_monsters" } }, - [8066]={ + [8071]={ [1]={ [1]={ limit={ @@ -176787,7 +176854,7 @@ return { [1]="map_abyss_overrun_extra_pits" } }, - [8067]={ + [8072]={ [1]={ [1]={ limit={ @@ -176803,7 +176870,7 @@ return { [1]="map_abyss_overrun_no_monsters" } }, - [8068]={ + [8073]={ [1]={ [1]={ limit={ @@ -176819,7 +176886,7 @@ return { [1]="map_abyss_pits_spread_apart" } }, - [8069]={ + [8074]={ [1]={ [1]={ limit={ @@ -176835,7 +176902,7 @@ return { [1]="map_add_irradiation_instead_of_completing" } }, - [8070]={ + [8075]={ [1]={ [1]={ limit={ @@ -176851,7 +176918,7 @@ return { [1]="map_additional_rare_in_rare_pack_chance_+%" } }, - [8071]={ + [8076]={ [1]={ [1]={ limit={ @@ -176876,7 +176943,7 @@ return { [1]="map_additional_red_beasts" } }, - [8072]={ + [8077]={ [1]={ [1]={ limit={ @@ -176901,7 +176968,7 @@ return { [1]="map_adds_X_extra_synthesis_mods" } }, - [8073]={ + [8078]={ [1]={ [1]={ limit={ @@ -176926,7 +176993,7 @@ return { [1]="map_adds_X_extra_synthesis_special_mods" } }, - [8074]={ + [8079]={ [1]={ [1]={ limit={ @@ -176955,7 +177022,7 @@ return { [1]="map_affliction_encounter_boss_chance_+%" } }, - [8075]={ + [8080]={ [1]={ [1]={ limit={ @@ -176984,7 +177051,7 @@ return { [1]="map_affliction_encounter_monster_depth_+%" } }, - [8076]={ + [8081]={ [1]={ [1]={ limit={ @@ -177013,7 +177080,7 @@ return { [1]="map_affliction_pack_size_+%" } }, - [8077]={ + [8082]={ [1]={ [1]={ limit={ @@ -177042,7 +177109,7 @@ return { [1]="map_affliction_reward_kills_+%" } }, - [8078]={ + [8083]={ [1]={ [1]={ limit={ @@ -177058,7 +177125,7 @@ return { [1]="map_affliction_reward_progress_on_kill_+%" } }, - [8079]={ + [8084]={ [1]={ [1]={ limit={ @@ -177087,7 +177154,7 @@ return { [1]="map_affliction_secondary_wave_acceleration_+%" } }, - [8080]={ + [8085]={ [1]={ [1]={ [1]={ @@ -177107,7 +177174,7 @@ return { [1]="map_affliction_secondary_wave_delay_ms_+" } }, - [8081]={ + [8086]={ [1]={ [1]={ limit={ @@ -177123,7 +177190,7 @@ return { [1]="map_affliction_secondary_wave_delay_seconds_+" } }, - [8082]={ + [8087]={ [1]={ [1]={ limit={ @@ -177139,7 +177206,7 @@ return { [1]="map_also_count_as_desert_biome" } }, - [8083]={ + [8088]={ [1]={ [1]={ limit={ @@ -177155,7 +177222,7 @@ return { [1]="map_also_count_as_forest_biome" } }, - [8084]={ + [8089]={ [1]={ [1]={ limit={ @@ -177171,7 +177238,7 @@ return { [1]="map_also_count_as_grass_biome" } }, - [8085]={ + [8090]={ [1]={ [1]={ limit={ @@ -177187,7 +177254,7 @@ return { [1]="map_also_count_as_mountain_biome" } }, - [8086]={ + [8091]={ [1]={ [1]={ limit={ @@ -177203,7 +177270,7 @@ return { [1]="map_also_count_as_swamp_biome" } }, - [8087]={ + [8092]={ [1]={ [1]={ limit={ @@ -177219,7 +177286,7 @@ return { [1]="map_also_count_as_water_biome" } }, - [8088]={ + [8093]={ [1]={ [1]={ limit={ @@ -177244,7 +177311,7 @@ return { [1]="map_atlas_influence_type" } }, - [8089]={ + [8094]={ [1]={ [1]={ limit={ @@ -177260,7 +177327,7 @@ return { [1]="map_area_contains_arcanists_strongbox" } }, - [8090]={ + [8095]={ [1]={ [1]={ limit={ @@ -177276,7 +177343,7 @@ return { [1]="map_area_contains_avatar_of_ambush" } }, - [8091]={ + [8096]={ [1]={ [1]={ limit={ @@ -177292,7 +177359,7 @@ return { [1]="map_area_contains_avatar_of_anarchy" } }, - [8092]={ + [8097]={ [1]={ [1]={ limit={ @@ -177308,7 +177375,7 @@ return { [1]="map_area_contains_avatar_of_beyond" } }, - [8093]={ + [8098]={ [1]={ [1]={ limit={ @@ -177324,7 +177391,7 @@ return { [1]="map_area_contains_avatar_of_bloodlines" } }, - [8094]={ + [8099]={ [1]={ [1]={ limit={ @@ -177340,7 +177407,7 @@ return { [1]="map_area_contains_avatar_of_breach" } }, - [8095]={ + [8100]={ [1]={ [1]={ limit={ @@ -177356,7 +177423,7 @@ return { [1]="map_area_contains_avatar_of_domination" } }, - [8096]={ + [8101]={ [1]={ [1]={ limit={ @@ -177372,7 +177439,7 @@ return { [1]="map_area_contains_avatar_of_essence" } }, - [8097]={ + [8102]={ [1]={ [1]={ limit={ @@ -177388,7 +177455,7 @@ return { [1]="map_area_contains_avatar_of_invasion" } }, - [8098]={ + [8103]={ [1]={ [1]={ limit={ @@ -177404,7 +177471,7 @@ return { [1]="map_area_contains_avatar_of_nemesis" } }, - [8099]={ + [8104]={ [1]={ [1]={ limit={ @@ -177420,7 +177487,7 @@ return { [1]="map_area_contains_avatar_of_onslaught" } }, - [8100]={ + [8105]={ [1]={ [1]={ limit={ @@ -177436,7 +177503,7 @@ return { [1]="map_area_contains_avatar_of_perandus" } }, - [8101]={ + [8106]={ [1]={ [1]={ limit={ @@ -177452,7 +177519,7 @@ return { [1]="map_area_contains_avatar_of_prophecy" } }, - [8102]={ + [8107]={ [1]={ [1]={ limit={ @@ -177468,7 +177535,7 @@ return { [1]="map_area_contains_avatar_of_rampage" } }, - [8103]={ + [8108]={ [1]={ [1]={ limit={ @@ -177484,7 +177551,7 @@ return { [1]="map_area_contains_avatar_of_talisman" } }, - [8104]={ + [8109]={ [1]={ [1]={ limit={ @@ -177500,7 +177567,7 @@ return { [1]="map_area_contains_avatar_of_tempest" } }, - [8105]={ + [8110]={ [1]={ [1]={ limit={ @@ -177516,7 +177583,7 @@ return { [1]="map_area_contains_avatar_of_torment" } }, - [8106]={ + [8111]={ [1]={ [1]={ limit={ @@ -177532,7 +177599,7 @@ return { [1]="map_area_contains_avatar_of_warbands" } }, - [8107]={ + [8112]={ [1]={ [1]={ limit={ @@ -177548,7 +177615,7 @@ return { [1]="map_area_contains_cartographers_strongbox" } }, - [8108]={ + [8113]={ [1]={ [1]={ limit={ @@ -177564,7 +177631,7 @@ return { [1]="map_area_contains_currency_chest" } }, - [8109]={ + [8114]={ [1]={ [1]={ limit={ @@ -177580,7 +177647,7 @@ return { [1]="map_area_contains_gemcutters_strongbox" } }, - [8110]={ + [8115]={ [1]={ [1]={ limit={ @@ -177596,7 +177663,7 @@ return { [1]="map_area_contains_jewellery_chest" } }, - [8111]={ + [8116]={ [1]={ [1]={ limit={ @@ -177612,7 +177679,7 @@ return { [1]="map_area_contains_map_chest" } }, - [8112]={ + [8117]={ [1]={ [1]={ limit={ @@ -177628,7 +177695,7 @@ return { [1]="map_area_contains_metamorphs" } }, - [8113]={ + [8118]={ [1]={ [1]={ limit={ @@ -177644,7 +177711,7 @@ return { [1]="map_area_contains_perandus_coin_chest" } }, - [8114]={ + [8119]={ [1]={ [1]={ limit={ @@ -177660,7 +177727,7 @@ return { [1]="map_area_contains_rituals" } }, - [8115]={ + [8120]={ [1]={ [1]={ limit={ @@ -177676,7 +177743,7 @@ return { [1]="map_area_contains_tormented_embezzler" } }, - [8116]={ + [8121]={ [1]={ [1]={ limit={ @@ -177692,7 +177759,7 @@ return { [1]="map_area_contains_tormented_seditionist" } }, - [8117]={ + [8122]={ [1]={ [1]={ limit={ @@ -177708,7 +177775,7 @@ return { [1]="map_area_contains_tormented_vaal_cultist" } }, - [8118]={ + [8123]={ [1]={ [1]={ limit={ @@ -177724,7 +177791,7 @@ return { [1]="map_area_contains_unique_item_chest" } }, - [8119]={ + [8124]={ [1]={ [1]={ limit={ @@ -177740,7 +177807,7 @@ return { [1]="map_area_contains_unique_strongbox" } }, - [8120]={ + [8125]={ [1]={ [1]={ limit={ @@ -177756,7 +177823,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_beacon_barrels" } }, - [8121]={ + [8126]={ [1]={ [1]={ limit={ @@ -177772,7 +177839,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels" } }, - [8122]={ + [8127]={ [1]={ [1]={ limit={ @@ -177788,7 +177855,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_barrels" } }, - [8123]={ + [8128]={ [1]={ [1]={ limit={ @@ -177804,7 +177871,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_eggs" } }, - [8124]={ + [8129]={ [1]={ [1]={ limit={ @@ -177820,7 +177887,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_parasite_barrels" } }, - [8125]={ + [8130]={ [1]={ [1]={ limit={ @@ -177836,7 +177903,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_volatile_barrels" } }, - [8126]={ + [8131]={ [1]={ [1]={ limit={ @@ -177852,7 +177919,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_wealthy_barrels" } }, - [8127]={ + [8132]={ [1]={ [1]={ limit={ @@ -177877,7 +177944,7 @@ return { [1]="map_area_ritual_additional_chance_%" } }, - [8128]={ + [8133]={ [1]={ [1]={ limit={ @@ -177893,7 +177960,7 @@ return { [1]="map_atlas_node_has_abyss" } }, - [8129]={ + [8134]={ [1]={ [1]={ limit={ @@ -177909,7 +177976,7 @@ return { [1]="map_atlas_node_has_breach" } }, - [8130]={ + [8135]={ [1]={ [1]={ limit={ @@ -177925,7 +177992,7 @@ return { [1]="map_atlas_node_has_delirium" } }, - [8131]={ + [8136]={ [1]={ [1]={ limit={ @@ -177941,7 +178008,7 @@ return { [1]="map_atlas_node_has_incursion" } }, - [8132]={ + [8137]={ [1]={ [1]={ limit={ @@ -177957,7 +178024,7 @@ return { [1]="map_atlas_node_has_ritual" } }, - [8133]={ + [8138]={ [1]={ [1]={ limit={ @@ -177986,7 +178053,7 @@ return { [1]="map_bestiary_monster_damage_+%_final" } }, - [8134]={ + [8139]={ [1]={ [1]={ limit={ @@ -178015,7 +178082,7 @@ return { [1]="map_bestiary_monster_life_+%_final" } }, - [8135]={ + [8140]={ [1]={ [1]={ limit={ @@ -178044,7 +178111,7 @@ return { [1]="map_betrayal_intelligence_+%" } }, - [8136]={ + [8141]={ [1]={ [1]={ limit={ @@ -178060,7 +178127,7 @@ return { [1]="map_beyond_demon_always_elite" } }, - [8137]={ + [8142]={ [1]={ [1]={ limit={ @@ -178081,7 +178148,7 @@ return { [2]="map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge" } }, - [8138]={ + [8143]={ [1]={ [1]={ limit={ @@ -178110,7 +178177,7 @@ return { [1]="map_beyond_portal_chance_+%" } }, - [8139]={ + [8144]={ [1]={ [1]={ limit={ @@ -178135,7 +178202,7 @@ return { [1]="map_beyond_portal_spawn_additional_demon_%_chance" } }, - [8140]={ + [8145]={ [1]={ [1]={ limit={ @@ -178160,7 +178227,7 @@ return { [1]="map_blight_chest_%_chance_for_additional_drop" } }, - [8141]={ + [8146]={ [1]={ [1]={ limit={ @@ -178176,7 +178243,7 @@ return { [1]="map_blight_chests_repeat_drops_count" } }, - [8142]={ + [8147]={ [1]={ [1]={ limit={ @@ -178192,7 +178259,7 @@ return { [1]="map_blight_encounter_spawn_rate_+%" } }, - [8143]={ + [8148]={ [1]={ [1]={ limit={ @@ -178208,7 +178275,7 @@ return { [1]="map_blight_lane_additional_chest_chance_%" } }, - [8144]={ + [8149]={ [1]={ [1]={ limit={ @@ -178233,7 +178300,7 @@ return { [1]="map_blight_lane_additional_chests" } }, - [8145]={ + [8150]={ [1]={ [1]={ limit={ @@ -178258,7 +178325,7 @@ return { [1]="map_blight_oils_chance_to_drop_a_tier_higher_%" } }, - [8146]={ + [8151]={ [1]={ [1]={ limit={ @@ -178287,7 +178354,7 @@ return { [1]="map_blight_tower_cost_+%" } }, - [8147]={ + [8152]={ [1]={ [1]={ limit={ @@ -178303,7 +178370,7 @@ return { [1]="map_blight_tower_cost_doubled" } }, - [8148]={ + [8153]={ [1]={ [1]={ limit={ @@ -178328,7 +178395,7 @@ return { [1]="map_blight_up_to_X_additional_bosses" } }, - [8149]={ + [8154]={ [1]={ [1]={ limit={ @@ -178344,7 +178411,7 @@ return { [1]="map_blighted_map_encounter_duration_-_sec" } }, - [8150]={ + [8155]={ [1]={ [1]={ limit={ @@ -178369,7 +178436,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_currency_items" } }, - [8151]={ + [8156]={ [1]={ [1]={ limit={ @@ -178394,7 +178461,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_rare_items" } }, - [8152]={ + [8157]={ [1]={ [1]={ limit={ @@ -178410,7 +178477,7 @@ return { [1]="map_blueprint_drop_revealed_chance_%" } }, - [8153]={ + [8158]={ [1]={ [1]={ limit={ @@ -178426,7 +178493,7 @@ return { [1]="map_boss_accompanied_by_bodyguards" } }, - [8154]={ + [8159]={ [1]={ [1]={ limit={ @@ -178442,7 +178509,7 @@ return { [1]="map_boss_accompanied_by_harbinger" } }, - [8155]={ + [8160]={ [1]={ [1]={ limit={ @@ -178471,7 +178538,7 @@ return { [1]="map_boss_dropped_item_quantity_+%" } }, - [8156]={ + [8161]={ [1]={ [1]={ limit={ @@ -178496,7 +178563,7 @@ return { [1]="map_boss_dropped_unique_items_+" } }, - [8157]={ + [8162]={ [1]={ [1]={ limit={ @@ -178512,7 +178579,7 @@ return { [1]="map_boss_drops_additional_currency_shards" } }, - [8158]={ + [8163]={ [1]={ [1]={ limit={ @@ -178528,7 +178595,7 @@ return { [1]="map_boss_drops_corrupted_items" } }, - [8159]={ + [8164]={ [1]={ [1]={ limit={ @@ -178557,7 +178624,7 @@ return { [1]="map_boss_experience_+%_final" } }, - [8160]={ + [8165]={ [1]={ [1]={ limit={ @@ -178573,7 +178640,7 @@ return { [1]="map_boss_is_possessed" } }, - [8161]={ + [8166]={ [1]={ [1]={ limit={ @@ -178602,7 +178669,7 @@ return { [1]="map_boss_item_rarity_+%" } }, - [8162]={ + [8167]={ [1]={ [1]={ limit={ @@ -178618,7 +178685,7 @@ return { [1]="map_boss_surrounded_by_tormented_spirits" } }, - [8163]={ + [8168]={ [1]={ [1]={ limit={ @@ -178643,7 +178710,7 @@ return { [1]="map_boss_drops_x_additional_vaal_items" } }, - [8164]={ + [8169]={ [1]={ [1]={ limit={ @@ -178668,7 +178735,7 @@ return { [1]="map_breach_%_chance_for_1_additional_breach" } }, - [8165]={ + [8170]={ [1]={ [1]={ limit={ @@ -178693,7 +178760,7 @@ return { [1]="map_breach_%_chance_for_3_additional_breach" } }, - [8166]={ + [8171]={ [1]={ [1]={ limit={ @@ -178718,7 +178785,7 @@ return { [1]="map_breach_X_additional_rare_monsters" } }, - [8167]={ + [8172]={ [1]={ [1]={ limit={ @@ -178734,7 +178801,7 @@ return { [1]="map_breach_additional_monster_potency_skill" } }, - [8168]={ + [8173]={ [1]={ [1]={ limit={ @@ -178750,7 +178817,7 @@ return { [1]="map_breach_additional_rare_mod_skill" } }, - [8169]={ + [8174]={ [1]={ [1]={ limit={ @@ -178766,7 +178833,7 @@ return { [1]="map_breach_additional_rare_spawner_skill" } }, - [8170]={ + [8175]={ [1]={ [1]={ limit={ @@ -178782,7 +178849,7 @@ return { [1]="map_breach_additional_sacrifice_for_buff_skill" } }, - [8171]={ + [8176]={ [1]={ [1]={ limit={ @@ -178798,7 +178865,7 @@ return { [1]="map_breach_additional_sacrifice_for_rarity_skill" } }, - [8172]={ + [8177]={ [1]={ [1]={ limit={ @@ -178814,7 +178881,7 @@ return { [1]="map_breach_additional_upgrade_zone_skill" } }, - [8173]={ + [8178]={ [1]={ [1]={ limit={ @@ -178843,7 +178910,7 @@ return { [1]="map_breach_chance_to_be_esh_+%" } }, - [8174]={ + [8179]={ [1]={ [1]={ limit={ @@ -178872,7 +178939,7 @@ return { [1]="map_breach_chance_to_be_tul_+%" } }, - [8175]={ + [8180]={ [1]={ [1]={ limit={ @@ -178901,7 +178968,7 @@ return { [1]="map_breach_chance_to_be_uul_netol_+%" } }, - [8176]={ + [8181]={ [1]={ [1]={ limit={ @@ -178930,7 +178997,7 @@ return { [1]="map_breach_chance_to_be_xoph_+%" } }, - [8177]={ + [8182]={ [1]={ [1]={ limit={ @@ -178946,7 +179013,7 @@ return { [1]="map_breach_has_boss" } }, - [8178]={ + [8183]={ [1]={ [1]={ limit={ @@ -178962,7 +179029,7 @@ return { [1]="map_breach_has_large_chest" } }, - [8179]={ + [8184]={ [1]={ [1]={ [1]={ @@ -178995,7 +179062,7 @@ return { [1]="map_breach_minimum_radius" } }, - [8180]={ + [8185]={ [1]={ [1]={ limit={ @@ -179024,7 +179091,7 @@ return { [1]="map_breach_monster_potency_+%" } }, - [8181]={ + [8186]={ [1]={ [1]={ limit={ @@ -179053,7 +179120,7 @@ return { [1]="map_breach_monster_quantity_+%" } }, - [8182]={ + [8187]={ [1]={ [1]={ limit={ @@ -179082,7 +179149,7 @@ return { [1]="map_breach_monster_splinter_quantity_+%" } }, - [8183]={ + [8188]={ [1]={ [1]={ limit={ @@ -179111,7 +179178,7 @@ return { [1]="map_breach_number_of_magic_packs_+%" } }, - [8184]={ + [8189]={ [1]={ [1]={ limit={ @@ -179163,7 +179230,7 @@ return { [1]="map_breach_type_override" } }, - [8185]={ + [8190]={ [1]={ [1]={ limit={ @@ -179188,7 +179255,7 @@ return { [1]="map_breaches_num_additional_chests_to_spawn" } }, - [8186]={ + [8191]={ [1]={ [1]={ limit={ @@ -179213,7 +179280,7 @@ return { [1]="map_chance_for_4_additional_abysses_%" } }, - [8187]={ + [8192]={ [1]={ [1]={ limit={ @@ -179229,7 +179296,7 @@ return { [1]="map_chance_for_area_%_to_contain_harvest" } }, - [8188]={ + [8193]={ [1]={ [1]={ limit={ @@ -179245,7 +179312,7 @@ return { [1]="map_chance_to_not_consume_sextant_use_%" } }, - [8189]={ + [8194]={ [1]={ [1]={ limit={ @@ -179274,7 +179341,7 @@ return { [1]="map_chest_item_rarity_+%_final" } }, - [8190]={ + [8195]={ [1]={ [1]={ limit={ @@ -179290,7 +179357,7 @@ return { [1]="map_chests_all_magic_or_rare" } }, - [8191]={ + [8196]={ [1]={ [1]={ limit={ @@ -179319,7 +179386,7 @@ return { [1]="map_construct_monster_potency_+%" } }, - [8192]={ + [8197]={ [1]={ [1]={ limit={ @@ -179362,7 +179429,7 @@ return { [1]="map_contains_+_portals" } }, - [8193]={ + [8198]={ [1]={ [1]={ limit={ @@ -179378,7 +179445,7 @@ return { [1]="map_contains_abyss_boss" } }, - [8194]={ + [8199]={ [1]={ [1]={ limit={ @@ -179394,7 +179461,7 @@ return { [1]="map_contains_abyss_depths" } }, - [8195]={ + [8200]={ [1]={ [1]={ limit={ @@ -179410,7 +179477,7 @@ return { [1]="map_contains_abyss_depths_with_no_boss" } }, - [8196]={ + [8201]={ [1]={ [1]={ limit={ @@ -179435,7 +179502,7 @@ return { [1]="map_contains_additional_breaches" } }, - [8197]={ + [8202]={ [1]={ [1]={ limit={ @@ -179451,7 +179518,7 @@ return { [1]="map_contains_additional_chrysalis_talisman" } }, - [8198]={ + [8203]={ [1]={ [1]={ limit={ @@ -179467,7 +179534,7 @@ return { [1]="map_contains_additional_clutching_talisman" } }, - [8199]={ + [8204]={ [1]={ [1]={ limit={ @@ -179483,7 +179550,7 @@ return { [1]="map_contains_additional_fangjaw_talisman" } }, - [8200]={ + [8205]={ [1]={ [1]={ limit={ @@ -179499,7 +179566,7 @@ return { [1]="map_contains_additional_mandible_talisman" } }, - [8201]={ + [8206]={ [1]={ [1]={ limit={ @@ -179515,7 +179582,7 @@ return { [1]="map_contains_additional_packs_of_chaos_monsters" } }, - [8202]={ + [8207]={ [1]={ [1]={ limit={ @@ -179531,7 +179598,7 @@ return { [1]="map_contains_additional_packs_of_cold_monsters" } }, - [8203]={ + [8208]={ [1]={ [1]={ limit={ @@ -179547,7 +179614,7 @@ return { [1]="map_contains_additional_packs_of_fire_monsters" } }, - [8204]={ + [8209]={ [1]={ [1]={ limit={ @@ -179563,7 +179630,7 @@ return { [1]="map_contains_additional_packs_of_lightning_monsters" } }, - [8205]={ + [8210]={ [1]={ [1]={ limit={ @@ -179579,7 +179646,7 @@ return { [1]="map_contains_additional_packs_of_physical_monsters" } }, - [8206]={ + [8211]={ [1]={ [1]={ limit={ @@ -179604,7 +179671,7 @@ return { [1]="map_contains_additional_packs_of_vaal_monsters" } }, - [8207]={ + [8212]={ [1]={ [1]={ limit={ @@ -179620,7 +179687,7 @@ return { [1]="map_contains_additional_three_rat_talisman" } }, - [8208]={ + [8213]={ [1]={ [1]={ limit={ @@ -179645,7 +179712,7 @@ return { [1]="map_contains_additional_tormented_betrayers" } }, - [8209]={ + [8214]={ [1]={ [1]={ limit={ @@ -179670,7 +179737,7 @@ return { [1]="map_contains_additional_tormented_graverobbers" } }, - [8210]={ + [8215]={ [1]={ [1]={ limit={ @@ -179695,7 +179762,7 @@ return { [1]="map_contains_additional_tormented_heretics" } }, - [8211]={ + [8216]={ [1]={ [1]={ limit={ @@ -179711,7 +179778,7 @@ return { [1]="map_contains_additional_unique_talisman" } }, - [8212]={ + [8217]={ [1]={ [1]={ limit={ @@ -179727,7 +179794,7 @@ return { [1]="map_contains_additional_writhing_talisman" } }, - [8213]={ + [8218]={ [1]={ [1]={ limit={ @@ -179743,7 +179810,7 @@ return { [1]="map_contains_breach" } }, - [8214]={ + [8219]={ [1]={ [1]={ limit={ @@ -179759,7 +179826,7 @@ return { [1]="map_contains_chayula_breach" } }, - [8215]={ + [8220]={ [1]={ [1]={ limit={ @@ -179802,7 +179869,7 @@ return { [1]="map_contains_citadel" } }, - [8216]={ + [8221]={ [1]={ [1]={ limit={ @@ -179818,7 +179885,7 @@ return { [1]="map_contains_cleansed_boss" } }, - [8217]={ + [8222]={ [1]={ [1]={ limit={ @@ -179834,7 +179901,7 @@ return { [1]="map_contains_corrupted_strongbox" } }, - [8218]={ + [8223]={ [1]={ [1]={ limit={ @@ -179850,7 +179917,7 @@ return { [1]="map_contains_creeping_agony" } }, - [8219]={ + [8224]={ [1]={ [1]={ limit={ @@ -179866,7 +179933,7 @@ return { [1]="map_contains_keepers_of_the_trove_bloodline_pack" } }, - [8220]={ + [8225]={ [1]={ [1]={ limit={ @@ -179882,7 +179949,7 @@ return { [1]="map_contains_master" } }, - [8221]={ + [8226]={ [1]={ [1]={ limit={ @@ -179907,7 +179974,7 @@ return { [1]="map_contains_nevalis_monkey" } }, - [8222]={ + [8227]={ [1]={ [1]={ limit={ @@ -179923,7 +179990,7 @@ return { [1]="map_contains_perandus_boss" } }, - [8223]={ + [8228]={ [1]={ [1]={ limit={ @@ -179948,7 +180015,7 @@ return { [1]="map_contains_talisman_boss_with_higher_tier" } }, - [8224]={ + [8229]={ [1]={ [1]={ limit={ @@ -179990,7 +180057,7 @@ return { [2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final" } }, - [8225]={ + [8230]={ [1]={ [1]={ limit={ @@ -180006,7 +180073,7 @@ return { [1]="map_contains_uul_netol_breach" } }, - [8226]={ + [8231]={ [1]={ [1]={ limit={ @@ -180022,7 +180089,7 @@ return { [1]="map_contains_wealthy_pack" } }, - [8227]={ + [8232]={ [1]={ [1]={ limit={ @@ -180038,7 +180105,7 @@ return { [1]="map_contains_x_additional_animated_weapon_packs" } }, - [8228]={ + [8233]={ [1]={ [1]={ limit={ @@ -180054,7 +180121,7 @@ return { [1]="map_contains_x_additional_healing_packs" } }, - [8229]={ + [8234]={ [1]={ [1]={ limit={ @@ -180079,7 +180146,7 @@ return { [1]="map_contains_x_additional_magic_packs" } }, - [8230]={ + [8235]={ [1]={ [1]={ limit={ @@ -180095,7 +180162,7 @@ return { [1]="map_contains_x_additional_normal_packs" } }, - [8231]={ + [8236]={ [1]={ [1]={ limit={ @@ -180111,7 +180178,7 @@ return { [1]="map_contains_x_additional_packs_on_their_own_team" } }, - [8232]={ + [8237]={ [1]={ [1]={ limit={ @@ -180127,7 +180194,7 @@ return { [1]="map_contains_x_additional_packs_that_convert_on_death" } }, - [8233]={ + [8238]={ [1]={ [1]={ limit={ @@ -180143,7 +180210,7 @@ return { [1]="map_contains_x_additional_poison_packs" } }, - [8234]={ + [8239]={ [1]={ [1]={ limit={ @@ -180168,7 +180235,7 @@ return { [1]="map_contains_x_additional_rare_packs" } }, - [8235]={ + [8240]={ [1]={ [1]={ limit={ @@ -180193,7 +180260,7 @@ return { [1]="map_area_contains_x_rare_monsters_with_inner_treasure" } }, - [8236]={ + [8241]={ [1]={ [1]={ limit={ @@ -180218,7 +180285,7 @@ return { [1]="map_contracts_drop_with_additional_special_implicit_%_chance" } }, - [8237]={ + [8242]={ [1]={ [1]={ limit={ @@ -180234,7 +180301,7 @@ return { [1]="map_cowards_trial_extra_ghosts" } }, - [8238]={ + [8243]={ [1]={ [1]={ limit={ @@ -180250,7 +180317,7 @@ return { [1]="map_cowards_trial_extra_oriath_citizens" } }, - [8239]={ + [8244]={ [1]={ [1]={ limit={ @@ -180266,7 +180333,7 @@ return { [1]="map_cowards_trial_extra_phantasms" } }, - [8240]={ + [8245]={ [1]={ [1]={ limit={ @@ -180282,7 +180349,7 @@ return { [1]="map_cowards_trial_extra_raging_spirits" } }, - [8241]={ + [8246]={ [1]={ [1]={ limit={ @@ -180298,7 +180365,7 @@ return { [1]="map_cowards_trial_extra_rhoas" } }, - [8242]={ + [8247]={ [1]={ [1]={ limit={ @@ -180314,7 +180381,7 @@ return { [1]="map_cowards_trial_extra_skeleton_cannons" } }, - [8243]={ + [8248]={ [1]={ [1]={ limit={ @@ -180330,7 +180397,7 @@ return { [1]="map_cowards_trial_extra_zombies" } }, - [8244]={ + [8249]={ [1]={ [1]={ limit={ @@ -180359,7 +180426,7 @@ return { [1]="map_custom_league_damage_taken_+%_final" } }, - [8245]={ + [8250]={ [1]={ [1]={ limit={ @@ -180388,7 +180455,7 @@ return { [1]="map_damage_+%_per_poison_stack" } }, - [8246]={ + [8251]={ [1]={ [1]={ limit={ @@ -180404,7 +180471,7 @@ return { [1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on" } }, - [8247]={ + [8252]={ [1]={ [1]={ limit={ @@ -180437,7 +180504,7 @@ return { [1]="map_damage_taken_+%_from_beyond_monsters" } }, - [8248]={ + [8253]={ [1]={ [1]={ limit={ @@ -180466,7 +180533,7 @@ return { [1]="map_damage_taken_while_stationary_+%" } }, - [8249]={ + [8254]={ [1]={ [1]={ limit={ @@ -180495,7 +180562,7 @@ return { [1]="map_damage_while_stationary_+%" } }, - [8250]={ + [8255]={ [1]={ [1]={ limit={ @@ -180524,7 +180591,7 @@ return { [1]="map_death_and_taxes_boss_drops_additional_currency" } }, - [8251]={ + [8256]={ [1]={ [1]={ limit={ @@ -180540,7 +180607,7 @@ return { [1]="map_delirium_additional_reward_type_chance_%" } }, - [8252]={ + [8257]={ [1]={ [1]={ limit={ @@ -180569,7 +180636,7 @@ return { [1]="map_delirium_doodads_+%_final" } }, - [8253]={ + [8258]={ [1]={ [1]={ limit={ @@ -180585,7 +180652,7 @@ return { [1]="map_delirium_fog_never_dissipates" } }, - [8254]={ + [8259]={ [1]={ [1]={ limit={ @@ -180610,7 +180677,7 @@ return { [1]="map_delirium_splinter_stack_size_+%" } }, - [8255]={ + [8260]={ [1]={ [1]={ limit={ @@ -180626,7 +180693,7 @@ return { [1]="map_delve_rules" } }, - [8256]={ + [8261]={ [1]={ [1]={ limit={ @@ -181056,7 +181123,7 @@ return { [4]="map_fishy_effect_3" } }, - [8257]={ + [8262]={ [1]={ [1]={ limit={ @@ -181072,7 +181139,7 @@ return { [1]="map_display_strongbox_monsters_are_enraged" } }, - [8258]={ + [8263]={ [1]={ [1]={ limit={ @@ -181088,7 +181155,7 @@ return { [1]="map_divination_card_drop_chance_+%" } }, - [8259]={ + [8264]={ [1]={ [1]={ limit={ @@ -181104,7 +181171,7 @@ return { [1]="map_doesnt_consume_sextant_use" } }, - [8260]={ + [8265]={ [1]={ [1]={ limit={ @@ -181120,7 +181187,7 @@ return { [1]="map_downgrade_pack_to_magic_%_chance" } }, - [8261]={ + [8266]={ [1]={ [1]={ limit={ @@ -181136,7 +181203,7 @@ return { [1]="map_dropped_maps_are_corrupted_with_8_mods" } }, - [8262]={ + [8267]={ [1]={ [1]={ [1]={ @@ -181156,7 +181223,7 @@ return { [1]="map_dropped_maps_are_duplicated_chance_permillage" } }, - [8263]={ + [8268]={ [1]={ [1]={ limit={ @@ -181181,7 +181248,7 @@ return { [1]="map_duplicate_captured_beasts_chance_%" } }, - [8264]={ + [8269]={ [1]={ [1]={ limit={ @@ -181197,7 +181264,7 @@ return { [1]="map_duplicate_x_rare_monsters" } }, - [8265]={ + [8270]={ [1]={ [1]={ limit={ @@ -181213,7 +181280,7 @@ return { [1]="map_duplicate_x_synthesised_rare_monsters" } }, - [8266]={ + [8271]={ [1]={ [1]={ limit={ @@ -181256,7 +181323,7 @@ return { [1]="map_elder_boss_variation" } }, - [8267]={ + [8272]={ [1]={ [1]={ limit={ @@ -181272,7 +181339,7 @@ return { [1]="map_elder_rare_chance_+%" } }, - [8268]={ + [8273]={ [1]={ [1]={ [1]={ @@ -181292,7 +181359,7 @@ return { [1]="map_endgame_affliction_reward_1" } }, - [8269]={ + [8274]={ [1]={ [1]={ [1]={ @@ -181312,7 +181379,7 @@ return { [1]="map_endgame_affliction_reward_2" } }, - [8270]={ + [8275]={ [1]={ [1]={ [1]={ @@ -181332,7 +181399,7 @@ return { [1]="map_endgame_affliction_reward_3" } }, - [8271]={ + [8276]={ [1]={ [1]={ [1]={ @@ -181352,7 +181419,7 @@ return { [1]="map_endgame_affliction_reward_4" } }, - [8272]={ + [8277]={ [1]={ [1]={ [1]={ @@ -181372,7 +181439,7 @@ return { [1]="map_endgame_affliction_reward_5" } }, - [8273]={ + [8278]={ [1]={ [1]={ [1]={ @@ -181392,7 +181459,7 @@ return { [1]="map_endgame_affliction_reward_6" } }, - [8274]={ + [8279]={ [1]={ [1]={ [1]={ @@ -181412,7 +181479,7 @@ return { [1]="map_endgame_affliction_reward_7" } }, - [8275]={ + [8280]={ [1]={ [1]={ [1]={ @@ -181432,7 +181499,7 @@ return { [1]="map_endgame_affliction_reward_8" } }, - [8276]={ + [8281]={ [1]={ [1]={ [1]={ @@ -181452,7 +181519,7 @@ return { [1]="map_endgame_affliction_reward_9" } }, - [8277]={ + [8282]={ [1]={ [1]={ limit={ @@ -181468,7 +181535,7 @@ return { [1]="map_endgame_fog_depth" } }, - [8278]={ + [8283]={ [1]={ [1]={ limit={ @@ -181484,7 +181551,7 @@ return { [1]="map_equipment_drops_identified" } }, - [8279]={ + [8284]={ [1]={ [1]={ limit={ @@ -181513,7 +181580,7 @@ return { [1]="map_essence_abyss_chance_+%" } }, - [8280]={ + [8285]={ [1]={ [1]={ limit={ @@ -181529,7 +181596,7 @@ return { [1]="map_essence_monolith_contains_additional_essence_of_corruption" } }, - [8281]={ + [8286]={ [1]={ [1]={ limit={ @@ -181545,7 +181612,7 @@ return { [1]="map_essence_monolith_contains_essence_of_corruption_%" } }, - [8282]={ + [8287]={ [1]={ [1]={ limit={ @@ -181561,7 +181628,7 @@ return { [1]="map_essence_monsters_are_corrupted" } }, - [8283]={ + [8288]={ [1]={ [1]={ limit={ @@ -181586,7 +181653,7 @@ return { [1]="map_essence_monsters_have_additional_essences" } }, - [8284]={ + [8289]={ [1]={ [1]={ limit={ @@ -181602,7 +181669,7 @@ return { [1]="map_essence_monsters_higher_tier" } }, - [8285]={ + [8290]={ [1]={ [1]={ limit={ @@ -181627,7 +181694,7 @@ return { [1]="map_expedition2_remnant_generation_has_x_lucky_rolls" } }, - [8286]={ + [8291]={ [1]={ [1]={ limit={ @@ -181643,7 +181710,7 @@ return { [1]="map_expedition2_remnants_have_at_least_x_slots" } }, - [8287]={ + [8292]={ [1]={ [1]={ limit={ @@ -181668,7 +181735,7 @@ return { [1]="map_expedition_artifact_quantity_+%" } }, - [8288]={ + [8293]={ [1]={ [1]={ limit={ @@ -181684,7 +181751,7 @@ return { [1]="map_expedition_chest_double_drops_chance_%" } }, - [8289]={ + [8294]={ [1]={ [1]={ limit={ @@ -181709,7 +181776,7 @@ return { [1]="map_expedition_chest_marker_count_+" } }, - [8290]={ + [8295]={ [1]={ [1]={ limit={ @@ -181734,7 +181801,7 @@ return { [1]="map_expedition_common_chest_marker_count_+" } }, - [8291]={ + [8296]={ [1]={ [1]={ limit={ @@ -181759,7 +181826,7 @@ return { [1]="map_expedition_elite_marker_count_+%" } }, - [8292]={ + [8297]={ [1]={ [1]={ limit={ @@ -181788,7 +181855,7 @@ return { [1]="map_expedition_encounter_additional_chance_%" } }, - [8293]={ + [8298]={ [1]={ [1]={ limit={ @@ -181813,7 +181880,7 @@ return { [1]="map_expedition_epic_chest_marker_count_+" } }, - [8294]={ + [8299]={ [1]={ [1]={ limit={ @@ -181829,7 +181896,7 @@ return { [1]="map_expedition_explosion_radius_+%" } }, - [8295]={ + [8300]={ [1]={ [1]={ limit={ @@ -181845,7 +181912,7 @@ return { [1]="map_expedition_explosives_+%" } }, - [8296]={ + [8301]={ [1]={ [1]={ limit={ @@ -181861,7 +181928,7 @@ return { [1]="map_expedition_extra_relic_suffix_chance_%" } }, - [8297]={ + [8302]={ [1]={ [1]={ limit={ @@ -181877,7 +181944,7 @@ return { [1]="map_expedition_league" } }, - [8298]={ + [8303]={ [1]={ [1]={ limit={ @@ -181902,7 +181969,7 @@ return { [1]="map_expedition_maximum_placement_distance_+%" } }, - [8299]={ + [8304]={ [1]={ [1]={ limit={ @@ -181918,7 +181985,7 @@ return { [1]="map_expedition_monster_spawn_with_half_life" } }, - [8300]={ + [8305]={ [1]={ [1]={ limit={ @@ -181943,7 +182010,7 @@ return { [1]="map_expedition_number_of_monster_markers_+%" } }, - [8301]={ + [8306]={ [1]={ [1]={ limit={ @@ -181968,7 +182035,7 @@ return { [1]="map_expedition_rare_monsters_+%" } }, - [8302]={ + [8307]={ [1]={ [1]={ limit={ @@ -181993,7 +182060,7 @@ return { [1]="map_expedition_relic_mod_effect_+%" } }, - [8303]={ + [8308]={ [1]={ [1]={ limit={ @@ -182009,7 +182076,7 @@ return { [1]="map_expedition_relics_+" } }, - [8304]={ + [8309]={ [1]={ [1]={ limit={ @@ -182025,7 +182092,7 @@ return { [1]="map_expedition_relics_+%" } }, - [8305]={ + [8310]={ [1]={ [1]={ limit={ @@ -182068,7 +182135,7 @@ return { [1]="map_expedition_saga_contains_boss" } }, - [8306]={ + [8311]={ [1]={ [1]={ limit={ @@ -182084,7 +182151,7 @@ return { [1]="map_expedition_twinned_elites" } }, - [8307]={ + [8312]={ [1]={ [1]={ limit={ @@ -182109,7 +182176,7 @@ return { [1]="map_expedition_uncommon_chest_marker_count_+" } }, - [8308]={ + [8313]={ [1]={ [1]={ limit={ @@ -182134,7 +182201,7 @@ return { [1]="map_expedition_vendor_reroll_currency_quantity_+%" } }, - [8309]={ + [8314]={ [1]={ [1]={ limit={ @@ -182159,7 +182226,7 @@ return { [1]="map_expedition_x_extra_relic_suffixes" } }, - [8310]={ + [8315]={ [1]={ [1]={ limit={ @@ -182184,7 +182251,7 @@ return { [1]="map_extra_monoliths" } }, - [8311]={ + [8316]={ [1]={ [1]={ limit={ @@ -182200,7 +182267,7 @@ return { [1]="map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%" } }, - [8312]={ + [8317]={ [1]={ [1]={ limit={ @@ -182225,7 +182292,7 @@ return { [1]="map_first_invasion_boss_killed_drops_x_additional_currency" } }, - [8313]={ + [8318]={ [1]={ [1]={ limit={ @@ -182250,7 +182317,7 @@ return { [1]="map_first_strongbox_contains_x_additional_rare_monsters" } }, - [8314]={ + [8319]={ [1]={ [1]={ limit={ @@ -182275,7 +182342,7 @@ return { [1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques" } }, - [8315]={ + [8320]={ [1]={ [1]={ [1]={ @@ -182295,7 +182362,7 @@ return { [1]="map_flask_charges_recovered_per_3_seconds_%" } }, - [8316]={ + [8321]={ [1]={ [1]={ limit={ @@ -182311,7 +182378,7 @@ return { [1]="map_force_side_area" } }, - [8317]={ + [8322]={ [1]={ [1]={ [1]={ @@ -182331,7 +182398,7 @@ return { [1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster" } }, - [8318]={ + [8323]={ [1]={ [1]={ limit={ @@ -182360,7 +182427,7 @@ return { [1]="map_gauntlet_unique_monster_life_+%" } }, - [8319]={ + [8324]={ [1]={ [1]={ limit={ @@ -182376,7 +182443,7 @@ return { [1]="map_grants_players_level_20_dash_skill" } }, - [8320]={ + [8325]={ [1]={ [1]={ limit={ @@ -182392,7 +182459,7 @@ return { [1]="map_ground_consecrated_life_regeneration_rate_per_minute_%" } }, - [8321]={ + [8326]={ [1]={ [1]={ limit={ @@ -182408,7 +182475,7 @@ return { [1]="map_ground_haste_action_speed_+%" } }, - [8322]={ + [8327]={ [1]={ [1]={ limit={ @@ -182424,7 +182491,7 @@ return { [1]="map_harbinger_additional_currency_shard_stack_chance_%" } }, - [8323]={ + [8328]={ [1]={ [1]={ limit={ @@ -182440,7 +182507,7 @@ return { [1]="map_harbinger_portal_drops_additional_fragments" } }, - [8324]={ + [8329]={ [1]={ [1]={ limit={ @@ -182456,7 +182523,7 @@ return { [1]="map_harbingers_drops_additional_currency_shards" } }, - [8325]={ + [8330]={ [1]={ [1]={ limit={ @@ -182472,7 +182539,7 @@ return { [1]="map_harvest_crafting_outcomes_X_lucky_rolls" } }, - [8326]={ + [8331]={ [1]={ [1]={ limit={ @@ -182488,7 +182555,7 @@ return { [1]="map_harvest_double_lifeforce_dropped" } }, - [8327]={ + [8332]={ [1]={ [1]={ limit={ @@ -182517,7 +182584,7 @@ return { [1]="map_harvest_monster_life_+%_final_from_sextant" } }, - [8328]={ + [8333]={ [1]={ [1]={ limit={ @@ -182551,7 +182618,7 @@ return { [1]="map_harvest_seeds_1_of_every_2_plot_type_override" } }, - [8329]={ + [8334]={ [1]={ [1]={ limit={ @@ -182567,7 +182634,7 @@ return { [1]="map_has_monoliths" } }, - [8330]={ + [8335]={ [1]={ [1]={ limit={ @@ -182583,7 +182650,7 @@ return { [1]="map_has_x%_quality" } }, - [8331]={ + [8336]={ [1]={ [1]={ limit={ @@ -182608,7 +182675,7 @@ return { [1]="map_heist_contract_additional_reveals_granted" } }, - [8332]={ + [8337]={ [1]={ [1]={ limit={ @@ -182624,7 +182691,7 @@ return { [1]="map_heist_contract_chest_no_rewards_%_chance" } }, - [8333]={ + [8338]={ [1]={ [1]={ limit={ @@ -182640,7 +182707,7 @@ return { [1]="map_heist_contract_npc_items_cannot_drop" } }, - [8334]={ + [8339]={ [1]={ [1]={ limit={ @@ -182669,7 +182736,7 @@ return { [1]="map_heist_contract_primary_target_value_+%_final" } }, - [8335]={ + [8340]={ [1]={ [1]={ limit={ @@ -182698,7 +182765,7 @@ return { [1]="map_heist_monster_life_+%_final_from_sextant" } }, - [8336]={ + [8341]={ [1]={ [1]={ limit={ @@ -182723,7 +182790,7 @@ return { [1]="map_heist_npc_perks_effect_+%_final" } }, - [8337]={ + [8342]={ [1]={ [1]={ limit={ @@ -182752,7 +182819,7 @@ return { [1]="map_humanoid_monster_potency_+%" } }, - [8338]={ + [8343]={ [1]={ [1]={ limit={ @@ -182785,7 +182852,7 @@ return { [1]="map_imprisoned_monsters_action_speed_+%" } }, - [8339]={ + [8344]={ [1]={ [1]={ limit={ @@ -182814,7 +182881,7 @@ return { [1]="map_imprisoned_monsters_damage_+%" } }, - [8340]={ + [8345]={ [1]={ [1]={ limit={ @@ -182830,7 +182897,7 @@ return { [1]="map_imprisoned_monsters_damage_taken_+%" } }, - [8341]={ + [8346]={ [1]={ [1]={ limit={ @@ -182846,7 +182913,7 @@ return { [1]="map_invasion_bosses_are_twinned" } }, - [8342]={ + [8347]={ [1]={ [1]={ limit={ @@ -182871,7 +182938,7 @@ return { [1]="map_invasion_bosses_drop_x_additional_vaal_orbs" } }, - [8343]={ + [8348]={ [1]={ [1]={ limit={ @@ -182887,7 +182954,7 @@ return { [1]="map_invasion_bosses_dropped_items_are_fully_linked" } }, - [8344]={ + [8349]={ [1]={ [1]={ limit={ @@ -182912,7 +182979,7 @@ return { [1]="map_invasion_bosses_dropped_items_have_x_additional_sockets" } }, - [8345]={ + [8350]={ [1]={ [1]={ limit={ @@ -182937,7 +183004,7 @@ return { [1]="map_invasion_monsters_guarded_by_x_magic_packs" } }, - [8346]={ + [8351]={ [1]={ [1]={ limit={ @@ -182953,7 +183020,7 @@ return { [1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity" } }, - [8347]={ + [8352]={ [1]={ [1]={ limit={ @@ -182982,7 +183049,7 @@ return { [1]="map_item_found_rarity_+%_per_15_rampage_stacks" } }, - [8348]={ + [8353]={ [1]={ [1]={ limit={ @@ -182998,7 +183065,7 @@ return { [1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%" } }, - [8349]={ + [8354]={ [1]={ [1]={ limit={ @@ -183023,7 +183090,7 @@ return { [1]="map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds" } }, - [8350]={ + [8355]={ [1]={ [1]={ limit={ @@ -183052,7 +183119,7 @@ return { [1]="map_labyrinth_izaro_area_of_effect_+%" } }, - [8351]={ + [8356]={ [1]={ [1]={ limit={ @@ -183081,7 +183148,7 @@ return { [1]="map_labyrinth_izaro_attack_cast_move_speed_+%" } }, - [8352]={ + [8357]={ [1]={ [1]={ limit={ @@ -183110,7 +183177,7 @@ return { [1]="map_labyrinth_izaro_damage_+%" } }, - [8353]={ + [8358]={ [1]={ [1]={ limit={ @@ -183139,7 +183206,7 @@ return { [1]="map_labyrinth_izaro_life_+%" } }, - [8354]={ + [8359]={ [1]={ [1]={ limit={ @@ -183168,7 +183235,7 @@ return { [1]="map_labyrinth_monsters_attack_cast_and_movement_speed_+%" } }, - [8355]={ + [8360]={ [1]={ [1]={ limit={ @@ -183197,7 +183264,7 @@ return { [1]="map_labyrinth_monsters_damage_+%" } }, - [8356]={ + [8361]={ [1]={ [1]={ limit={ @@ -183226,7 +183293,7 @@ return { [1]="map_labyrinth_monsters_life_+%" } }, - [8357]={ + [8362]={ [1]={ [1]={ limit={ @@ -183251,7 +183318,7 @@ return { [1]="map_leaguestone_area_contains_x_additional_leaguestones" } }, - [8358]={ + [8363]={ [1]={ [1]={ limit={ @@ -183280,7 +183347,7 @@ return { [1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final" } }, - [8359]={ + [8364]={ [1]={ [1]={ limit={ @@ -183296,7 +183363,7 @@ return { [1]="map_leaguestone_contains_warband_leader" } }, - [8360]={ + [8365]={ [1]={ [1]={ limit={ @@ -183339,7 +183406,7 @@ return { [1]="map_leaguestone_explicit_warband_type_override" } }, - [8361]={ + [8366]={ [1]={ [1]={ limit={ @@ -183355,7 +183422,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final" } }, - [8362]={ + [8367]={ [1]={ [1]={ limit={ @@ -183371,7 +183438,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final" } }, - [8363]={ + [8368]={ [1]={ [1]={ limit={ @@ -183400,7 +183467,7 @@ return { [1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final" } }, - [8364]={ + [8369]={ [1]={ [1]={ limit={ @@ -183452,7 +183519,7 @@ return { [1]="map_leaguestone_monolith_contains_essence_type" } }, - [8365]={ + [8370]={ [1]={ [1]={ limit={ @@ -183477,7 +183544,7 @@ return { [1]="map_leaguestone_override_base_num_breaches" } }, - [8366]={ + [8371]={ [1]={ [1]={ limit={ @@ -183502,7 +183569,7 @@ return { [1]="map_leaguestone_override_base_num_invasion_bosses" } }, - [8367]={ + [8372]={ [1]={ [1]={ limit={ @@ -183527,7 +183594,7 @@ return { [1]="map_leaguestone_override_base_num_monoliths" } }, - [8368]={ + [8373]={ [1]={ [1]={ limit={ @@ -183552,7 +183619,7 @@ return { [1]="map_leaguestone_override_base_num_perandus_chests" } }, - [8369]={ + [8374]={ [1]={ [1]={ limit={ @@ -183577,7 +183644,7 @@ return { [1]="map_leaguestone_override_base_num_prophecy_coins" } }, - [8370]={ + [8375]={ [1]={ [1]={ limit={ @@ -183602,7 +183669,7 @@ return { [1]="map_leaguestone_override_base_num_rogue_exiles" } }, - [8371]={ + [8376]={ [1]={ [1]={ limit={ @@ -183627,7 +183694,7 @@ return { [1]="map_leaguestone_override_base_num_shrines" } }, - [8372]={ + [8377]={ [1]={ [1]={ limit={ @@ -183652,7 +183719,7 @@ return { [1]="map_leaguestone_override_base_num_strongboxes" } }, - [8373]={ + [8378]={ [1]={ [1]={ limit={ @@ -183677,7 +183744,7 @@ return { [1]="map_leaguestone_override_base_num_talismans" } }, - [8374]={ + [8379]={ [1]={ [1]={ limit={ @@ -183702,7 +183769,7 @@ return { [1]="map_leaguestone_override_base_num_tormented_spirits" } }, - [8375]={ + [8380]={ [1]={ [1]={ limit={ @@ -183727,7 +183794,7 @@ return { [1]="map_leaguestone_override_base_num_warband_packs" } }, - [8376]={ + [8381]={ [1]={ [1]={ limit={ @@ -183743,7 +183810,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final" } }, - [8377]={ + [8382]={ [1]={ [1]={ limit={ @@ -183759,7 +183826,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final" } }, - [8378]={ + [8383]={ [1]={ [1]={ limit={ @@ -183775,7 +183842,7 @@ return { [1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final" } }, - [8379]={ + [8384]={ [1]={ [1]={ limit={ @@ -183800,7 +183867,7 @@ return { [1]="map_leaguestone_shrine_monster_rarity_override" } }, - [8380]={ + [8385]={ [1]={ [1]={ limit={ @@ -183834,7 +183901,7 @@ return { [1]="map_leaguestone_shrine_override_type" } }, - [8381]={ + [8386]={ [1]={ [1]={ limit={ @@ -183859,7 +183926,7 @@ return { [1]="map_leaguestone_strongboxes_rarity_override" } }, - [8382]={ + [8387]={ [1]={ [1]={ limit={ @@ -183875,7 +183942,7 @@ return { [1]="map_strongboxes_vaal_orb_drop_chance_%" } }, - [8383]={ + [8388]={ [1]={ [1]={ limit={ @@ -183891,7 +183958,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final" } }, - [8384]={ + [8389]={ [1]={ [1]={ limit={ @@ -183907,7 +183974,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final" } }, - [8385]={ + [8390]={ [1]={ [1]={ limit={ @@ -183932,7 +183999,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_abaxoth" } }, - [8386]={ + [8391]={ [1]={ [1]={ limit={ @@ -183957,7 +184024,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_random_beyond_boss" } }, - [8387]={ + [8392]={ [1]={ [1]={ limit={ @@ -183973,7 +184040,7 @@ return { [1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks" } }, - [8388]={ + [8393]={ [1]={ [1]={ limit={ @@ -183989,7 +184056,7 @@ return { [1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks" } }, - [8389]={ + [8394]={ [1]={ [1]={ limit={ @@ -184014,7 +184081,7 @@ return { [1]="map_legion_league_extra_spawns" } }, - [8390]={ + [8395]={ [1]={ [1]={ limit={ @@ -184030,7 +184097,7 @@ return { [1]="map_legion_league_force_general" } }, - [8391]={ + [8396]={ [1]={ [1]={ limit={ @@ -184046,7 +184113,7 @@ return { [1]="map_legion_league_force_war_chest" } }, - [8392]={ + [8397]={ [1]={ [1]={ limit={ @@ -184075,7 +184142,7 @@ return { [1]="map_legion_monster_life_+%_final_from_sextant" } }, - [8393]={ + [8398]={ [1]={ [1]={ limit={ @@ -184091,7 +184158,7 @@ return { [1]="map_legion_monster_splinter_emblem_drops_duplicated" } }, - [8394]={ + [8399]={ [1]={ [1]={ limit={ @@ -184107,7 +184174,7 @@ return { [1]="map_level_+" } }, - [8395]={ + [8400]={ [1]={ [1]={ limit={ @@ -184132,7 +184199,7 @@ return { [1]="map_logbook_expedition_remnants_+" } }, - [8396]={ + [8401]={ [1]={ [1]={ limit={ @@ -184148,7 +184215,7 @@ return { [1]="map_logbook_expedition_remnants_+%" } }, - [8397]={ + [8402]={ [1]={ [1]={ limit={ @@ -184164,7 +184231,7 @@ return { [1]="map_logbook_has_at_least_1_expedition2_remnant_with_a_power_rune" } }, - [8398]={ + [8403]={ [1]={ [1]={ limit={ @@ -184180,7 +184247,7 @@ return { [1]="map_logbook_has_at_least_1_expedition2_remnant_with_at_least_x_slots" } }, - [8399]={ + [8404]={ [1]={ [1]={ limit={ @@ -184196,7 +184263,7 @@ return { [1]="map_magic_items_drop_as_normal" } }, - [8400]={ + [8405]={ [1]={ [1]={ limit={ @@ -184225,7 +184292,7 @@ return { [1]="map_magic_monster_potency_+%" } }, - [8401]={ + [8406]={ [1]={ [1]={ limit={ @@ -184241,7 +184308,7 @@ return { [1]="map_magic_monsters_are_maimed" } }, - [8402]={ + [8407]={ [1]={ [1]={ limit={ @@ -184270,7 +184337,7 @@ return { [1]="map_magic_monsters_damage_taken_+%" } }, - [8403]={ + [8408]={ [1]={ [1]={ limit={ @@ -184286,7 +184353,7 @@ return { [1]="map_metamorph_all_metamorphs_have_rewards" } }, - [8404]={ + [8409]={ [1]={ [1]={ limit={ @@ -184311,7 +184378,7 @@ return { [1]="map_metamorph_boss_drops_additional_itemised_organs" } }, - [8405]={ + [8410]={ [1]={ [1]={ limit={ @@ -184327,7 +184394,7 @@ return { [1]="map_metamorph_catalyst_drops_duplicated" } }, - [8406]={ + [8411]={ [1]={ [1]={ limit={ @@ -184352,7 +184419,7 @@ return { [1]="map_metamorph_itemised_boss_min_rewards" } }, - [8407]={ + [8412]={ [1]={ [1]={ limit={ @@ -184368,7 +184435,7 @@ return { [1]="map_metamorph_itemised_boss_more_difficult" } }, - [8408]={ + [8413]={ [1]={ [1]={ limit={ @@ -184397,7 +184464,7 @@ return { [1]="map_metamorph_life_+%_final_from_sextant" } }, - [8409]={ + [8414]={ [1]={ [1]={ limit={ @@ -184413,7 +184480,7 @@ return { [1]="map_metamorphosis_league" } }, - [8410]={ + [8415]={ [1]={ [1]={ limit={ @@ -184442,7 +184509,7 @@ return { [1]="map_monolith_chance_+%" } }, - [8411]={ + [8416]={ [1]={ [1]={ limit={ @@ -184458,7 +184525,7 @@ return { [1]="map_monolith_chance_%" } }, - [8412]={ + [8417]={ [1]={ [1]={ limit={ @@ -184483,7 +184550,7 @@ return { [1]="map_monster_additional_abyssal_monolithic_slug_packs" } }, - [8413]={ + [8418]={ [1]={ [1]={ limit={ @@ -184508,7 +184575,7 @@ return { [1]="map_monster_additional_incursion_ChainedBeastBoss_packs" } }, - [8414]={ + [8419]={ [1]={ [1]={ limit={ @@ -184533,7 +184600,7 @@ return { [1]="map_monster_additional_incursion_SoulCoreQuadrilla_packs" } }, - [8415]={ + [8420]={ [1]={ [1]={ limit={ @@ -184558,7 +184625,7 @@ return { [1]="map_monster_additional_incursion_SoulcoreFusedSkeleton_packs" } }, - [8416]={ + [8421]={ [1]={ [1]={ limit={ @@ -184583,7 +184650,7 @@ return { [1]="map_monster_additional_incursion_VaalColossusBoss_packs" } }, - [8417]={ + [8422]={ [1]={ [1]={ limit={ @@ -184608,7 +184675,7 @@ return { [1]="map_monster_additional_incursion_VaalSentinelBoss_packs" } }, - [8418]={ + [8423]={ [1]={ [1]={ limit={ @@ -184633,7 +184700,7 @@ return { [1]="map_monster_additional_incursion_VaalSunPriestBoss_packs" } }, - [8419]={ + [8424]={ [1]={ [1]={ limit={ @@ -184658,7 +184725,7 @@ return { [1]="map_monster_additional_sanctified_packs" } }, - [8420]={ + [8425]={ [1]={ [1]={ limit={ @@ -184687,7 +184754,7 @@ return { [1]="map_monster_and_player_onslaught_effect_+%" } }, - [8421]={ + [8426]={ [1]={ [1]={ limit={ @@ -184716,7 +184783,7 @@ return { [1]="map_monster_attack_cast_and_movement_speed_+%" } }, - [8422]={ + [8427]={ [1]={ [1]={ limit={ @@ -184745,7 +184812,7 @@ return { [1]="map_monster_beyond_portal_chance_+%" } }, - [8423]={ + [8428]={ [1]={ [1]={ limit={ @@ -184774,7 +184841,7 @@ return { [1]="map_monster_curse_effect_on_self_+%" } }, - [8424]={ + [8429]={ [1]={ [1]={ limit={ @@ -184803,7 +184870,7 @@ return { [1]="map_monster_damage_taken_+%_final_from_atlas_keystone" } }, - [8425]={ + [8430]={ [1]={ [1]={ limit={ @@ -184832,7 +184899,7 @@ return { [1]="map_monster_damage_taken_+%_while_possessed" } }, - [8426]={ + [8431]={ [1]={ [1]={ limit={ @@ -184857,7 +184924,7 @@ return { [1]="map_monster_add_x_grasping_vines_on_hit" } }, - [8427]={ + [8432]={ [1]={ [1]={ limit={ @@ -184873,7 +184940,7 @@ return { [1]="map_monster_item_rarity_+%_final" } }, - [8428]={ + [8433]={ [1]={ [1]={ limit={ @@ -184902,7 +184969,7 @@ return { [1]="map_monster_non_damaging_ailment_effect_+%_on_self" } }, - [8429]={ + [8434]={ [1]={ [1]={ limit={ @@ -184931,7 +184998,7 @@ return { [1]="map_monsters_skill_speed_+%" } }, - [8430]={ + [8435]={ [1]={ [1]={ limit={ @@ -184960,7 +185027,7 @@ return { [1]="map_monster_slain_experience_+%" } }, - [8431]={ + [8436]={ [1]={ [1]={ limit={ @@ -184989,7 +185056,7 @@ return { [1]="map_monsters_accuracy_rating_+%" } }, - [8432]={ + [8437]={ [1]={ [1]={ limit={ @@ -185022,7 +185089,7 @@ return { [1]="map_monsters_action_speed_-%" } }, - [8433]={ + [8438]={ [1]={ [1]={ limit={ @@ -185047,7 +185114,7 @@ return { [1]="map_monsters_add_endurance_charge_on_hit_%" } }, - [8434]={ + [8439]={ [1]={ [1]={ limit={ @@ -185072,7 +185139,7 @@ return { [1]="map_monsters_add_frenzy_charge_on_hit_%" } }, - [8435]={ + [8440]={ [1]={ [1]={ limit={ @@ -185097,7 +185164,7 @@ return { [1]="map_monsters_add_power_charge_on_hit_%" } }, - [8436]={ + [8441]={ [1]={ [1]={ limit={ @@ -185113,7 +185180,7 @@ return { [1]="map_monsters_additional_chaos_resistance" } }, - [8437]={ + [8442]={ [1]={ [1]={ limit={ @@ -185129,7 +185196,7 @@ return { [1]="map_monsters_additional_dexterity_ratio_%_for_evasion" } }, - [8438]={ + [8443]={ [1]={ [1]={ limit={ @@ -185145,7 +185212,7 @@ return { [1]="map_monsters_additional_elemental_resistance" } }, - [8439]={ + [8444]={ [1]={ [1]={ limit={ @@ -185161,7 +185228,7 @@ return { [1]="map_monsters_additional_maximum_all_elemental_resistances_%" } }, - [8440]={ + [8445]={ [1]={ [1]={ limit={ @@ -185177,7 +185244,7 @@ return { [1]="map_monsters_additional_strength_ratio_%_for_armour" } }, - [8441]={ + [8446]={ [1]={ [1]={ limit={ @@ -185193,7 +185260,7 @@ return { [1]="map_monsters_ailment_threshold_+%" } }, - [8442]={ + [8447]={ [1]={ [1]={ limit={ @@ -185209,7 +185276,7 @@ return { [1]="map_monsters_all_damage_can_chill" } }, - [8443]={ + [8448]={ [1]={ [1]={ limit={ @@ -185225,7 +185292,7 @@ return { [1]="map_monsters_all_damage_can_freeze" } }, - [8444]={ + [8449]={ [1]={ [1]={ limit={ @@ -185241,7 +185308,7 @@ return { [1]="map_monsters_all_damage_can_ignite" } }, - [8445]={ + [8450]={ [1]={ [1]={ limit={ @@ -185257,7 +185324,7 @@ return { [1]="map_monsters_all_damage_can_poison" } }, - [8446]={ + [8451]={ [1]={ [1]={ limit={ @@ -185273,7 +185340,7 @@ return { [1]="map_monsters_all_damage_can_shock" } }, - [8447]={ + [8452]={ [1]={ [1]={ limit={ @@ -185289,7 +185356,7 @@ return { [1]="map_monsters_always_crit" } }, - [8448]={ + [8453]={ [1]={ [1]={ limit={ @@ -185305,7 +185372,7 @@ return { [1]="map_monsters_always_hit" } }, - [8449]={ + [8454]={ [1]={ [1]={ limit={ @@ -185321,7 +185388,7 @@ return { [1]="map_monsters_always_ignite" } }, - [8450]={ + [8455]={ [1]={ [1]={ limit={ @@ -185337,7 +185404,7 @@ return { [1]="map_monsters_are_converted_on_kill" } }, - [8451]={ + [8456]={ [1]={ [1]={ limit={ @@ -185353,7 +185420,7 @@ return { [1]="map_monsters_armour_break_physical_damage_%_dealt_as_armour_break" } }, - [8452]={ + [8457]={ [1]={ [1]={ limit={ @@ -185369,7 +185436,7 @@ return { [1]="map_monsters_avoid_poison_bleed_impale_%" } }, - [8453]={ + [8458]={ [1]={ [1]={ limit={ @@ -185398,7 +185465,7 @@ return { [1]="map_monsters_base_bleed_duration_+%" } }, - [8454]={ + [8459]={ [1]={ [1]={ limit={ @@ -185414,7 +185481,7 @@ return { [1]="map_monsters_base_block_%" } }, - [8455]={ + [8460]={ [1]={ [1]={ limit={ @@ -185439,7 +185506,7 @@ return { [1]="map_monsters_base_chance_to_freeze_%" } }, - [8456]={ + [8461]={ [1]={ [1]={ limit={ @@ -185464,7 +185531,7 @@ return { [1]="map_monsters_base_chance_to_shock_%" } }, - [8457]={ + [8462]={ [1]={ [1]={ limit={ @@ -185493,7 +185560,7 @@ return { [1]="map_monsters_base_poison_duration_+%" } }, - [8458]={ + [8463]={ [1]={ [1]={ limit={ @@ -185509,7 +185576,7 @@ return { [1]="map_monsters_cannot_be_taunted" } }, - [8459]={ + [8464]={ [1]={ [1]={ limit={ @@ -185534,7 +185601,7 @@ return { [1]="map_monsters_chance_to_blind_on_hit_%" } }, - [8460]={ + [8465]={ [1]={ [1]={ limit={ @@ -185559,7 +185626,7 @@ return { [1]="map_monsters_chance_to_impale_%" } }, - [8461]={ + [8466]={ [1]={ [1]={ limit={ @@ -185575,7 +185642,7 @@ return { [1]="map_monsters_chance_to_inflict_bleeding_%" } }, - [8462]={ + [8467]={ [1]={ [1]={ limit={ @@ -185600,7 +185667,7 @@ return { [1]="map_monsters_chance_to_inflict_brittle_%" } }, - [8463]={ + [8468]={ [1]={ [1]={ limit={ @@ -185625,7 +185692,7 @@ return { [1]="map_monsters_chance_to_inflict_sapped_%" } }, - [8464]={ + [8469]={ [1]={ [1]={ limit={ @@ -185641,7 +185708,7 @@ return { [1]="map_monsters_chance_to_poison_on_hit_%" } }, - [8465]={ + [8470]={ [1]={ [1]={ limit={ @@ -185666,7 +185733,7 @@ return { [1]="map_monsters_chance_to_scorch_%" } }, - [8466]={ + [8471]={ [1]={ [1]={ limit={ @@ -185699,7 +185766,7 @@ return { [1]="map_monsters_curse_effect_on_self_+%_final" } }, - [8467]={ + [8472]={ [1]={ [1]={ limit={ @@ -185728,7 +185795,7 @@ return { [1]="map_monsters_damage_taken_+%" } }, - [8468]={ + [8473]={ [1]={ [1]={ limit={ @@ -185744,7 +185811,7 @@ return { [1]="map_monsters_drop_no_equipment" } }, - [8469]={ + [8474]={ [1]={ [1]={ limit={ @@ -185773,7 +185840,7 @@ return { [1]="map_monsters_elemental_ailment_chance_+%" } }, - [8470]={ + [8475]={ [1]={ [1]={ limit={ @@ -185789,7 +185856,7 @@ return { [1]="map_monsters_enemy_phys_reduction_%_penalty_vs_hit" } }, - [8471]={ + [8476]={ [1]={ [1]={ limit={ @@ -185818,7 +185885,7 @@ return { [1]="map_monsters_freeze_duration_+%" } }, - [8472]={ + [8477]={ [1]={ [1]={ limit={ @@ -185834,7 +185901,7 @@ return { [1]="map_monsters_attacks_inflict_bleeding_on_hit" } }, - [8473]={ + [8478]={ [1]={ [1]={ limit={ @@ -185850,7 +185917,7 @@ return { [1]="map_monsters_global_poison_on_hit" } }, - [8474]={ + [8479]={ [1]={ [1]={ limit={ @@ -185866,7 +185933,7 @@ return { [1]="map_monsters_hit_damage_freeze_multiplier_+%" } }, - [8475]={ + [8480]={ [1]={ [1]={ limit={ @@ -185882,7 +185949,7 @@ return { [1]="map_monsters_hit_damage_stun_multiplier_+%" } }, - [8476]={ + [8481]={ [1]={ [1]={ limit={ @@ -185898,7 +185965,7 @@ return { [1]="map_monsters_ignite_chance_+%" } }, - [8477]={ + [8482]={ [1]={ [1]={ limit={ @@ -185927,7 +185994,7 @@ return { [1]="map_monsters_ignite_duration_+%" } }, - [8478]={ + [8483]={ [1]={ [1]={ limit={ @@ -185952,7 +186019,7 @@ return { [1]="map_monsters_maim_on_hit_%_chance" } }, - [8479]={ + [8484]={ [1]={ [1]={ limit={ @@ -185968,7 +186035,7 @@ return { [1]="map_monsters_maximum_life_%_to_add_to_maximum_energy_shield" } }, - [8480]={ + [8485]={ [1]={ [1]={ limit={ @@ -185984,7 +186051,7 @@ return { [1]="map_monsters_movement_speed_cannot_be_reduced_below_base" } }, - [8481]={ + [8486]={ [1]={ [1]={ limit={ @@ -186000,7 +186067,7 @@ return { [1]="map_monsters_penetrate_elemental_resistances_%" } }, - [8482]={ + [8487]={ [1]={ [1]={ limit={ @@ -186016,7 +186083,7 @@ return { [1]="map_monsters_%_chance_to_inflict_status_ailments" } }, - [8483]={ + [8488]={ [1]={ [1]={ limit={ @@ -186032,7 +186099,7 @@ return { [1]="map_monsters_reduce_enemy_chaos_resistance_%" } }, - [8484]={ + [8489]={ [1]={ [1]={ limit={ @@ -186048,7 +186115,7 @@ return { [1]="map_monsters_reduce_enemy_cold_resistance_%" } }, - [8485]={ + [8490]={ [1]={ [1]={ limit={ @@ -186064,7 +186131,7 @@ return { [1]="map_monsters_reduce_enemy_fire_resistance_%" } }, - [8486]={ + [8491]={ [1]={ [1]={ limit={ @@ -186080,7 +186147,7 @@ return { [1]="map_monsters_reduce_enemy_lightning_resistance_%" } }, - [8487]={ + [8492]={ [1]={ [1]={ limit={ @@ -186105,7 +186172,7 @@ return { [1]="map_monsters_remove_charges_on_hit_%" } }, - [8488]={ + [8493]={ [1]={ [1]={ limit={ @@ -186121,7 +186188,7 @@ return { [1]="map_monsters_remove_enemy_flask_charge_on_hit_%_chance" } }, - [8489]={ + [8494]={ [1]={ [1]={ limit={ @@ -186137,7 +186204,7 @@ return { [1]="map_monsters_remove_%_of_mana_on_hit" } }, - [8490]={ + [8495]={ [1]={ [1]={ limit={ @@ -186153,7 +186220,7 @@ return { [1]="map_monsters_shock_chance_+%" } }, - [8491]={ + [8496]={ [1]={ [1]={ limit={ @@ -186182,7 +186249,7 @@ return { [1]="map_monsters_shock_effect_+%" } }, - [8492]={ + [8497]={ [1]={ [1]={ limit={ @@ -186207,7 +186274,7 @@ return { [1]="map_monsters_spawned_with_talisman_drop_additional_rare_items" } }, - [8493]={ + [8498]={ [1]={ [1]={ limit={ @@ -186232,7 +186299,7 @@ return { [1]="map_monsters_spells_chance_to_hinder_on_hit_%_chance" } }, - [8494]={ + [8499]={ [1]={ [1]={ limit={ @@ -186257,7 +186324,7 @@ return { [1]="map_monsters_steal_charges" } }, - [8495]={ + [8500]={ [1]={ [1]={ limit={ @@ -186273,7 +186340,7 @@ return { [1]="map_monsters_stun_threshold_+%" } }, - [8496]={ + [8501]={ [1]={ [1]={ limit={ @@ -186298,7 +186365,7 @@ return { [1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins" } }, - [8497]={ + [8502]={ [1]={ [1]={ limit={ @@ -186314,7 +186381,7 @@ return { [1]="map_monsters_unaffected_by_curses" } }, - [8498]={ + [8503]={ [1]={ [1]={ limit={ @@ -186339,7 +186406,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_currency_items" } }, - [8499]={ + [8504]={ [1]={ [1]={ limit={ @@ -186364,7 +186431,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_rare_items" } }, - [8500]={ + [8505]={ [1]={ [1]={ limit={ @@ -186389,7 +186456,7 @@ return { [1]="map_monsters_withered_on_hit_for_2_seconds_%_chance" } }, - [8501]={ + [8506]={ [1]={ [1]={ limit={ @@ -186405,7 +186472,7 @@ return { [1]="map_monstrous_treasure_no_monsters" } }, - [8502]={ + [8507]={ [1]={ [1]={ limit={ @@ -186434,7 +186501,7 @@ return { [1]="map_movement_velocity_+%_per_poison_stack" } }, - [8503]={ + [8508]={ [1]={ [1]={ limit={ @@ -186450,7 +186517,7 @@ return { [1]="map_natural_rare_monsters_have_soul_eater" } }, - [8504]={ + [8509]={ [1]={ [1]={ limit={ @@ -186475,7 +186542,7 @@ return { [1]="map_natural_rare_monsters_have_x_additional_abyssal_modifiers" } }, - [8505]={ + [8510]={ [1]={ [1]={ limit={ @@ -186500,7 +186567,7 @@ return { [1]="map_nemesis_dropped_items_+" } }, - [8506]={ + [8511]={ [1]={ [1]={ limit={ @@ -186525,7 +186592,7 @@ return { [1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs" } }, - [8507]={ + [8512]={ [1]={ [1]={ limit={ @@ -186550,7 +186617,7 @@ return { [1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs" } }, - [8508]={ + [8513]={ [1]={ [1]={ limit={ @@ -186566,7 +186633,7 @@ return { [1]="map_no_magic_items_drop" } }, - [8509]={ + [8514]={ [1]={ [1]={ limit={ @@ -186582,7 +186649,7 @@ return { [1]="map_no_rare_items_drop" } }, - [8510]={ + [8515]={ [1]={ [1]={ limit={ @@ -186598,7 +186665,7 @@ return { [1]="map_no_stashes" } }, - [8511]={ + [8516]={ [1]={ [1]={ limit={ @@ -186614,7 +186681,7 @@ return { [1]="map_no_uniques_drop_randomly" } }, - [8512]={ + [8517]={ [1]={ [1]={ limit={ @@ -186630,7 +186697,7 @@ return { [1]="map_no_vendors" } }, - [8513]={ + [8518]={ [1]={ [1]={ limit={ @@ -186646,7 +186713,7 @@ return { [1]="map_non_unique_items_drop_normal" } }, - [8514]={ + [8519]={ [1]={ [1]={ [1]={ @@ -186666,7 +186733,7 @@ return { [1]="map_non_unique_monster_life_regeneration_rate_per_minute_%" } }, - [8515]={ + [8520]={ [1]={ [1]={ limit={ @@ -186682,7 +186749,7 @@ return { [1]="map_normal_items_drop_as_magic" } }, - [8516]={ + [8521]={ [1]={ [1]={ limit={ @@ -186711,7 +186778,7 @@ return { [1]="map_normal_monster_potency_+%" } }, - [8517]={ + [8522]={ [1]={ [1]={ limit={ @@ -186727,7 +186794,7 @@ return { [1]="map_nuke_everything" } }, - [8518]={ + [8523]={ [1]={ [1]={ limit={ @@ -186752,7 +186819,7 @@ return { [1]="map_num_extra_abysses" } }, - [8519]={ + [8524]={ [1]={ [1]={ limit={ @@ -186768,7 +186835,7 @@ return { [1]="map_num_extra_blights_" } }, - [8520]={ + [8525]={ [1]={ [1]={ limit={ @@ -186793,7 +186860,7 @@ return { [1]="map_num_extra_gloom_shrines" } }, - [8521]={ + [8526]={ [1]={ [1]={ limit={ @@ -186818,7 +186885,7 @@ return { [1]="map_num_extra_harbingers" } }, - [8522]={ + [8527]={ [1]={ [1]={ limit={ @@ -186843,7 +186910,7 @@ return { [1]="map_num_extra_resonating_shrines" } }, - [8523]={ + [8528]={ [1]={ [1]={ limit={ @@ -186872,7 +186939,7 @@ return { [1]="map_num_extra_stone_circles" } }, - [8524]={ + [8529]={ [1]={ [1]={ limit={ @@ -186897,7 +186964,7 @@ return { [1]="map_number_of_additional_mods" } }, - [8525]={ + [8530]={ [1]={ [1]={ limit={ @@ -186922,7 +186989,7 @@ return { [1]="map_number_of_additional_prefixes" } }, - [8526]={ + [8531]={ [1]={ [1]={ limit={ @@ -186947,7 +187014,7 @@ return { [1]="map_number_of_additional_silver_coin_drops" } }, - [8527]={ + [8532]={ [1]={ [1]={ limit={ @@ -186972,7 +187039,7 @@ return { [1]="map_number_of_additional_suffixes" } }, - [8528]={ + [8533]={ [1]={ [1]={ limit={ @@ -186997,7 +187064,7 @@ return { [1]="map_on_complete_drop_x_additional_maps" } }, - [8529]={ + [8534]={ [1]={ [1]={ limit={ @@ -187013,7 +187080,7 @@ return { [1]="map_owner_sulphite_gained_+%" } }, - [8530]={ + [8535]={ [1]={ [1]={ limit={ @@ -187029,7 +187096,7 @@ return { [1]="map_packs_are_abomination_monsters" } }, - [8531]={ + [8536]={ [1]={ [1]={ limit={ @@ -187045,7 +187112,7 @@ return { [1]="map_packs_are_blackguards" } }, - [8532]={ + [8537]={ [1]={ [1]={ limit={ @@ -187061,7 +187128,7 @@ return { [1]="map_packs_are_ghosts" } }, - [8533]={ + [8538]={ [1]={ [1]={ limit={ @@ -187077,7 +187144,7 @@ return { [1]="map_packs_are_kitava" } }, - [8534]={ + [8539]={ [1]={ [1]={ limit={ @@ -187093,7 +187160,7 @@ return { [1]="map_packs_are_lunaris" } }, - [8535]={ + [8540]={ [1]={ [1]={ limit={ @@ -187109,7 +187176,7 @@ return { [1]="map_packs_are_solaris" } }, - [8536]={ + [8541]={ [1]={ [1]={ limit={ @@ -187125,7 +187192,7 @@ return { [1]="map_packs_are_spiders" } }, - [8537]={ + [8542]={ [1]={ [1]={ limit={ @@ -187141,7 +187208,7 @@ return { [1]="map_packs_are_vaal" } }, - [8538]={ + [8543]={ [1]={ [1]={ limit={ @@ -187157,7 +187224,7 @@ return { [1]="map_perandus_guards_are_rare" } }, - [8539]={ + [8544]={ [1]={ [1]={ limit={ @@ -187173,7 +187240,7 @@ return { [1]="map_perandus_monsters_drop_perandus_coin_stack_%" } }, - [8540]={ + [8545]={ [1]={ [1]={ limit={ @@ -187202,7 +187269,7 @@ return { [1]="map_player_accuracy_rating_+%_final" } }, - [8541]={ + [8546]={ [1]={ [1]={ limit={ @@ -187231,7 +187298,7 @@ return { [1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught" } }, - [8542]={ + [8547]={ [1]={ [1]={ limit={ @@ -187256,7 +187323,7 @@ return { [1]="map_player_buff_time_passed_+%_only_buff_category" } }, - [8543]={ + [8548]={ [1]={ [1]={ limit={ @@ -187272,7 +187339,7 @@ return { [1]="map_player_cannot_block_attacks" } }, - [8544]={ + [8549]={ [1]={ [1]={ limit={ @@ -187297,7 +187364,7 @@ return { [1]="map_player_chance_to_gain_vaal_soul_on_kill_%" } }, - [8545]={ + [8550]={ [1]={ [1]={ limit={ @@ -187330,7 +187397,7 @@ return { [1]="map_player_charges_gained_+%" } }, - [8546]={ + [8551]={ [1]={ [1]={ limit={ @@ -187359,7 +187426,7 @@ return { [1]="map_player_cooldown_speed_+%_final" } }, - [8547]={ + [8552]={ [1]={ [1]={ limit={ @@ -187384,7 +187451,7 @@ return { [1]="map_player_create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [8548]={ + [8553]={ [1]={ [1]={ limit={ @@ -187413,7 +187480,7 @@ return { [1]="map_player_curse_effect_on_self_+%" } }, - [8549]={ + [8554]={ [1]={ [1]={ limit={ @@ -187429,7 +187496,7 @@ return { [1]="map_player_damage_+%_vs_breach_monsters" } }, - [8550]={ + [8555]={ [1]={ [1]={ limit={ @@ -187462,7 +187529,7 @@ return { [1]="map_player_damage_taken_+%_vs_breach_monsters" } }, - [8551]={ + [8556]={ [1]={ [1]={ limit={ @@ -187495,7 +187562,7 @@ return { [1]="map_player_damage_taken_+%_while_rampaging" } }, - [8552]={ + [8557]={ [1]={ [1]={ [1]={ @@ -187541,7 +187608,7 @@ return { [1]="map_player_death_mark_on_rare_unique_kill_ms" } }, - [8553]={ + [8558]={ [1]={ [1]={ limit={ @@ -187557,7 +187624,7 @@ return { [1]="map_player_disable_soul_gain_prevention" } }, - [8554]={ + [8559]={ [1]={ [1]={ limit={ @@ -187573,7 +187640,7 @@ return { [1]="map_player_flask_recovery_is_instant" } }, - [8555]={ + [8560]={ [1]={ [1]={ limit={ @@ -187589,7 +187656,7 @@ return { [1]="map_player_has_random_level_X_curse_every_10_seconds" } }, - [8556]={ + [8561]={ [1]={ [1]={ limit={ @@ -187622,7 +187689,7 @@ return { [1]="map_player_life_and_es_recovery_speed_+%_final" } }, - [8557]={ + [8562]={ [1]={ [1]={ [1]={ @@ -187642,7 +187709,7 @@ return { [1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks" } }, - [8558]={ + [8563]={ [1]={ [1]={ limit={ @@ -187689,7 +187756,7 @@ return { [2]="map_no_experience" } }, - [8559]={ + [8564]={ [1]={ [1]={ limit={ @@ -187718,7 +187785,7 @@ return { [1]="map_player_maximum_life_and_es_+%_final_from_sanctum_curse" } }, - [8560]={ + [8565]={ [1]={ [1]={ limit={ @@ -187747,7 +187814,7 @@ return { [1]="map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse" } }, - [8561]={ + [8566]={ [1]={ [1]={ limit={ @@ -187763,7 +187830,7 @@ return { [1]="map_player_movement_velocity_+%" } }, - [8562]={ + [8567]={ [1]={ [1]={ limit={ @@ -187792,7 +187859,7 @@ return { [1]="map_player_non_curse_aura_effect_+%" } }, - [8563]={ + [8568]={ [1]={ [1]={ limit={ @@ -187817,7 +187884,7 @@ return { [1]="map_player_onslaught_on_kill_%" } }, - [8564]={ + [8569]={ [1]={ [1]={ limit={ @@ -187846,7 +187913,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [8565]={ + [8570]={ [1]={ [1]={ limit={ @@ -187862,7 +187929,7 @@ return { [1]="map_player_shrine_effect_duration_+%" } }, - [8566]={ + [8571]={ [1]={ [1]={ limit={ @@ -187878,7 +187945,7 @@ return { [1]="map_player_soul_eater_souls_stolen_on_rare_kill" } }, - [8567]={ + [8572]={ [1]={ [1]={ limit={ @@ -187907,7 +187974,7 @@ return { [1]="map_player_speed_+%_final_per_recent_skill_use" } }, - [8568]={ + [8573]={ [1]={ [1]={ limit={ @@ -187936,7 +188003,7 @@ return { [1]="map_players_and_monsters_chaos_damage_taken_+%" } }, - [8569]={ + [8574]={ [1]={ [1]={ limit={ @@ -187965,7 +188032,7 @@ return { [1]="map_players_and_monsters_cold_damage_taken_+%" } }, - [8570]={ + [8575]={ [1]={ [1]={ limit={ @@ -187994,7 +188061,7 @@ return { [1]="map_players_and_monsters_critical_strike_chance_+%" } }, - [8571]={ + [8576]={ [1]={ [1]={ limit={ @@ -188010,7 +188077,7 @@ return { [1]="map_players_and_monsters_curses_are_reflected" } }, - [8572]={ + [8577]={ [1]={ [1]={ limit={ @@ -188039,7 +188106,7 @@ return { [1]="map_players_and_monsters_damage_+%_per_curse" } }, - [8573]={ + [8578]={ [1]={ [1]={ limit={ @@ -188055,7 +188122,7 @@ return { [1]="map_players_and_monsters_damage_taken_+%_while_stationary" } }, - [8574]={ + [8579]={ [1]={ [1]={ limit={ @@ -188084,7 +188151,7 @@ return { [1]="map_players_and_monsters_fire_damage_taken_+%" } }, - [8575]={ + [8580]={ [1]={ [1]={ limit={ @@ -188100,7 +188167,7 @@ return { [1]="map_players_and_monsters_have_onslaught_if_hit_recently" } }, - [8576]={ + [8581]={ [1]={ [1]={ limit={ @@ -188116,7 +188183,7 @@ return { [1]="map_players_and_monsters_have_resolute_technique" } }, - [8577]={ + [8582]={ [1]={ [1]={ limit={ @@ -188145,7 +188212,7 @@ return { [1]="map_players_and_monsters_lightning_damage_taken_+%" } }, - [8578]={ + [8583]={ [1]={ [1]={ limit={ @@ -188161,7 +188228,7 @@ return { [1]="map_players_and_monsters_movement_speed_+%" } }, - [8579]={ + [8584]={ [1]={ [1]={ limit={ @@ -188190,7 +188257,7 @@ return { [1]="map_players_and_monsters_physical_damage_taken_+%" } }, - [8580]={ + [8585]={ [1]={ [1]={ limit={ @@ -188206,7 +188273,7 @@ return { [1]="map_players_are_poisoned_while_moving_chaos_damage_per_second" } }, - [8581]={ + [8586]={ [1]={ [1]={ limit={ @@ -188239,7 +188306,7 @@ return { [1]="map_players_armour_+%_final" } }, - [8582]={ + [8587]={ [1]={ [1]={ limit={ @@ -188272,7 +188339,7 @@ return { [1]="map_players_block_chance_+%" } }, - [8583]={ + [8588]={ [1]={ [1]={ limit={ @@ -188288,7 +188355,7 @@ return { [1]="map_players_cannot_gain_endurance_charges" } }, - [8584]={ + [8589]={ [1]={ [1]={ limit={ @@ -188304,7 +188371,7 @@ return { [1]="map_players_cannot_gain_flask_charges" } }, - [8585]={ + [8590]={ [1]={ [1]={ limit={ @@ -188320,7 +188387,7 @@ return { [1]="map_players_cannot_gain_frenzy_charges" } }, - [8586]={ + [8591]={ [1]={ [1]={ limit={ @@ -188336,7 +188403,7 @@ return { [1]="map_players_cannot_gain_power_charges" } }, - [8587]={ + [8592]={ [1]={ [1]={ limit={ @@ -188352,7 +188419,7 @@ return { [1]="map_players_cannot_take_reflected_damage" } }, - [8588]={ + [8593]={ [1]={ [1]={ [1]={ @@ -188372,7 +188439,7 @@ return { [1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms" } }, - [8589]={ + [8594]={ [1]={ [1]={ limit={ @@ -188397,7 +188464,7 @@ return { [1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [8590]={ + [8595]={ [1]={ [1]={ [1]={ @@ -188417,7 +188484,7 @@ return { [1]="map_players_gain_onslaught_after_opening_a_strongbox_ms" } }, - [8591]={ + [8596]={ [1]={ [1]={ limit={ @@ -188433,7 +188500,7 @@ return { [1]="map_players_gain_onslaught_during_flask_effect" } }, - [8592]={ + [8597]={ [1]={ [1]={ limit={ @@ -188449,7 +188516,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_%_chance" } }, - [8593]={ + [8598]={ [1]={ [1]={ limit={ @@ -188465,7 +188532,7 @@ return { [1]="map_players_have_decay_rarity_buff" } }, - [8594]={ + [8599]={ [1]={ [1]={ limit={ @@ -188481,7 +188548,7 @@ return { [1]="map_players_have_point_blank" } }, - [8595]={ + [8600]={ [1]={ [1]={ limit={ @@ -188497,7 +188564,7 @@ return { [1]="map_players_movement_skills_cooldown_speed_+%" } }, - [8596]={ + [8601]={ [1]={ [1]={ limit={ @@ -188526,7 +188593,7 @@ return { [1]="map_players_movement_speed_+%" } }, - [8597]={ + [8602]={ [1]={ [1]={ limit={ @@ -188542,7 +188609,7 @@ return { [1]="map_players_no_regeneration_including_es" } }, - [8598]={ + [8603]={ [1]={ [1]={ limit={ @@ -188558,7 +188625,7 @@ return { [1]="map_players_resist_all_%" } }, - [8599]={ + [8604]={ [1]={ [1]={ limit={ @@ -188591,7 +188658,7 @@ return { [1]="map_players_skill_area_of_effect_+%_final" } }, - [8600]={ + [8605]={ [1]={ [1]={ limit={ @@ -188607,7 +188674,7 @@ return { [1]="map_portals_do_not_expire" } }, - [8601]={ + [8606]={ [1]={ [1]={ limit={ @@ -188632,7 +188699,7 @@ return { [1]="map_possessed_monsters_drop_gilded_scarab_chance_%" } }, - [8602]={ + [8607]={ [1]={ [1]={ limit={ @@ -188657,7 +188724,7 @@ return { [1]="map_possessed_monsters_drop_map_chance_%" } }, - [8603]={ + [8608]={ [1]={ [1]={ limit={ @@ -188682,7 +188749,7 @@ return { [1]="map_possessed_monsters_drop_polished_scarab_chance_%" } }, - [8604]={ + [8609]={ [1]={ [1]={ limit={ @@ -188707,7 +188774,7 @@ return { [1]="map_possessed_monsters_drop_rusted_scarab_chance_%" } }, - [8605]={ + [8610]={ [1]={ [1]={ limit={ @@ -188732,7 +188799,7 @@ return { [1]="map_possessed_monsters_drop_unique_chance_%" } }, - [8606]={ + [8611]={ [1]={ [1]={ limit={ @@ -188757,7 +188824,7 @@ return { [1]="map_possessed_monsters_drop_winged_scarab_chance_%" } }, - [8607]={ + [8612]={ [1]={ [1]={ limit={ @@ -188786,7 +188853,7 @@ return { [1]="map_prefix_mod_effect_+%_final" } }, - [8608]={ + [8613]={ [1]={ [1]={ limit={ @@ -188815,7 +188882,7 @@ return { [1]="map_rampage_time_+%" } }, - [8609]={ + [8614]={ [1]={ [1]={ limit={ @@ -188831,7 +188898,7 @@ return { [1]="map_random_unique_monster_is_possessed" } }, - [8610]={ + [8615]={ [1]={ [1]={ limit={ @@ -188847,7 +188914,7 @@ return { [1]="map_random_zana_mod" } }, - [8611]={ + [8616]={ [1]={ [1]={ limit={ @@ -188863,7 +188930,7 @@ return { [1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%" } }, - [8612]={ + [8617]={ [1]={ [1]={ limit={ @@ -188888,7 +188955,7 @@ return { [1]="map_rare_breach_monsters_drop_additional_shards" } }, - [8613]={ + [8618]={ [1]={ [1]={ limit={ @@ -188904,7 +188971,7 @@ return { [1]="map_rare_monster_additional_modifier_chance_%_with_rollover" } }, - [8614]={ + [8619]={ [1]={ [1]={ limit={ @@ -188929,7 +188996,7 @@ return { [1]="map_rare_monster_num_additional_modifiers" } }, - [8615]={ + [8620]={ [1]={ [1]={ limit={ @@ -188958,7 +189025,7 @@ return { [1]="map_rare_monster_potency_+%" } }, - [8616]={ + [8621]={ [1]={ [1]={ limit={ @@ -188991,7 +189058,7 @@ return { [1]="map_rare_monsters_are_hindered" } }, - [8617]={ + [8622]={ [1]={ [1]={ limit={ @@ -189016,7 +189083,7 @@ return { [1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%" } }, - [8618]={ + [8623]={ [1]={ [1]={ limit={ @@ -189041,7 +189108,7 @@ return { [1]="map_rare_monsters_drop_x_additional_rare_items" } }, - [8619]={ + [8624]={ [1]={ [1]={ limit={ @@ -189057,7 +189124,7 @@ return { [1]="map_rare_monsters_have_inner_treasure" } }, - [8620]={ + [8625]={ [1]={ [1]={ limit={ @@ -189109,7 +189176,7 @@ return { [1]="map_reliquary_set" } }, - [8621]={ + [8626]={ [1]={ [1]={ limit={ @@ -189134,7 +189201,7 @@ return { [1]="map_ritual_additional_reward_rerolls" } }, - [8622]={ + [8627]={ [1]={ [1]={ limit={ @@ -189150,7 +189217,7 @@ return { [1]="map_ritual_contains_alphas_howl" } }, - [8623]={ + [8628]={ [1]={ [1]={ limit={ @@ -189166,7 +189233,7 @@ return { [1]="map_ritual_contains_astramentis" } }, - [8624]={ + [8629]={ [1]={ [1]={ limit={ @@ -189191,7 +189258,7 @@ return { [1]="map_ritual_contains_chaos_orbs" } }, - [8625]={ + [8630]={ [1]={ [1]={ limit={ @@ -189207,7 +189274,7 @@ return { [1]="map_ritual_contains_defiance_of_destiny" } }, - [8626]={ + [8631]={ [1]={ [1]={ limit={ @@ -189232,7 +189299,7 @@ return { [1]="map_ritual_contains_divine_orbs" } }, - [8627]={ + [8632]={ [1]={ [1]={ limit={ @@ -189248,7 +189315,7 @@ return { [1]="map_ritual_contains_dream_fragments" } }, - [8628]={ + [8633]={ [1]={ [1]={ limit={ @@ -189273,7 +189340,7 @@ return { [1]="map_ritual_contains_exalted_orbs" } }, - [8629]={ + [8634]={ [1]={ [1]={ limit={ @@ -189298,7 +189365,7 @@ return { [1]="map_ritual_contains_greater_augmentation" } }, - [8630]={ + [8635]={ [1]={ [1]={ limit={ @@ -189323,7 +189390,7 @@ return { [1]="map_ritual_contains_greater_chaos" } }, - [8631]={ + [8636]={ [1]={ [1]={ limit={ @@ -189348,7 +189415,7 @@ return { [1]="map_ritual_contains_greater_exalt" } }, - [8632]={ + [8637]={ [1]={ [1]={ limit={ @@ -189364,7 +189431,7 @@ return { [1]="map_ritual_contains_greater_omen_annulment" } }, - [8633]={ + [8638]={ [1]={ [1]={ limit={ @@ -189389,7 +189456,7 @@ return { [1]="map_ritual_contains_greater_regal" } }, - [8634]={ + [8639]={ [1]={ [1]={ limit={ @@ -189414,7 +189481,7 @@ return { [1]="map_ritual_contains_greater_transmutation" } }, - [8635]={ + [8640]={ [1]={ [1]={ limit={ @@ -189430,7 +189497,7 @@ return { [1]="map_ritual_contains_headhunter" } }, - [8636]={ + [8641]={ [1]={ [1]={ limit={ @@ -189446,7 +189513,7 @@ return { [1]="map_ritual_contains_kalandras_touch" } }, - [8637]={ + [8642]={ [1]={ [1]={ limit={ @@ -189462,7 +189529,7 @@ return { [1]="map_ritual_contains_mageblood" } }, - [8638]={ + [8643]={ [1]={ [1]={ limit={ @@ -189478,7 +189545,7 @@ return { [1]="map_ritual_contains_omen_amelioration" } }, - [8639]={ + [8644]={ [1]={ [1]={ limit={ @@ -189494,7 +189561,7 @@ return { [1]="map_ritual_contains_omen_blessed" } }, - [8640]={ + [8645]={ [1]={ [1]={ limit={ @@ -189510,7 +189577,7 @@ return { [1]="map_ritual_contains_omen_chance" } }, - [8641]={ + [8646]={ [1]={ [1]={ limit={ @@ -189526,7 +189593,7 @@ return { [1]="map_ritual_contains_omen_corruption" } }, - [8642]={ + [8647]={ [1]={ [1]={ limit={ @@ -189542,7 +189609,7 @@ return { [1]="map_ritual_contains_omen_dextral_annulment" } }, - [8643]={ + [8648]={ [1]={ [1]={ limit={ @@ -189558,7 +189625,7 @@ return { [1]="map_ritual_contains_omen_dextral_crystallisation" } }, - [8644]={ + [8649]={ [1]={ [1]={ limit={ @@ -189574,7 +189641,7 @@ return { [1]="map_ritual_contains_omen_dextral_erasure" } }, - [8645]={ + [8650]={ [1]={ [1]={ limit={ @@ -189590,7 +189657,7 @@ return { [1]="map_ritual_contains_omen_dextral_exaltation" } }, - [8646]={ + [8651]={ [1]={ [1]={ limit={ @@ -189606,7 +189673,7 @@ return { [1]="map_ritual_contains_omen_sanctification" } }, - [8647]={ + [8652]={ [1]={ [1]={ limit={ @@ -189622,7 +189689,7 @@ return { [1]="map_ritual_contains_omen_sinistral_annulment" } }, - [8648]={ + [8653]={ [1]={ [1]={ limit={ @@ -189638,7 +189705,7 @@ return { [1]="map_ritual_contains_omen_sinistral_crystallisation" } }, - [8649]={ + [8654]={ [1]={ [1]={ limit={ @@ -189654,7 +189721,7 @@ return { [1]="map_ritual_contains_omen_sinistral_erasure" } }, - [8650]={ + [8655]={ [1]={ [1]={ limit={ @@ -189670,7 +189737,7 @@ return { [1]="map_ritual_contains_omen_sinistral_exaltation" } }, - [8651]={ + [8656]={ [1]={ [1]={ limit={ @@ -189686,7 +189753,7 @@ return { [1]="map_ritual_contains_omen_whittling" } }, - [8652]={ + [8657]={ [1]={ [1]={ limit={ @@ -189711,7 +189778,7 @@ return { [1]="map_ritual_contains_orbs_of_annulment" } }, - [8653]={ + [8658]={ [1]={ [1]={ limit={ @@ -189736,7 +189803,7 @@ return { [1]="map_ritual_contains_orbs_of_chance" } }, - [8654]={ + [8659]={ [1]={ [1]={ limit={ @@ -189752,7 +189819,7 @@ return { [1]="map_ritual_contains_original_sin" } }, - [8655]={ + [8660]={ [1]={ [1]={ limit={ @@ -189777,7 +189844,7 @@ return { [1]="map_ritual_contains_perfect_augmentation" } }, - [8656]={ + [8661]={ [1]={ [1]={ limit={ @@ -189802,7 +189869,7 @@ return { [1]="map_ritual_contains_perfect_chaos" } }, - [8657]={ + [8662]={ [1]={ [1]={ limit={ @@ -189827,7 +189894,7 @@ return { [1]="map_ritual_contains_perfect_exalt" } }, - [8658]={ + [8663]={ [1]={ [1]={ limit={ @@ -189852,7 +189919,7 @@ return { [1]="map_ritual_contains_perfect_regal" } }, - [8659]={ + [8664]={ [1]={ [1]={ limit={ @@ -189877,7 +189944,7 @@ return { [1]="map_ritual_contains_perfect_transmutation" } }, - [8660]={ + [8665]={ [1]={ [1]={ limit={ @@ -189893,7 +189960,7 @@ return { [1]="map_ritual_contains_queen_of_the_forest" } }, - [8661]={ + [8666]={ [1]={ [1]={ limit={ @@ -189909,7 +189976,7 @@ return { [1]="map_ritual_contains_yoke_of_suffering" } }, - [8662]={ + [8667]={ [1]={ [1]={ limit={ @@ -189938,7 +190005,7 @@ return { [1]="map_ritual_defer_reward_tribute_cost_+%" } }, - [8663]={ + [8668]={ [1]={ [1]={ limit={ @@ -189954,7 +190021,7 @@ return { [1]="map_ritual_deferred_rewards_are_offered_again_+%_sooner" } }, - [8664]={ + [8669]={ [1]={ [1]={ limit={ @@ -189983,7 +190050,7 @@ return { [1]="map_ritual_magic_monsters_+%" } }, - [8665]={ + [8670]={ [1]={ [1]={ limit={ @@ -190008,7 +190075,7 @@ return { [1]="map_ritual_number_of_free_rerolls" } }, - [8666]={ + [8671]={ [1]={ [1]={ limit={ @@ -190037,7 +190104,7 @@ return { [1]="map_ritual_offered_and_defer_rewards_tribute_cost_+%" } }, - [8667]={ + [8672]={ [1]={ [1]={ [1]={ @@ -190057,7 +190124,7 @@ return { [1]="map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute" } }, - [8668]={ + [8673]={ [1]={ [1]={ limit={ @@ -190086,7 +190153,7 @@ return { [1]="map_ritual_omen_chance_+%" } }, - [8669]={ + [8674]={ [1]={ [1]={ limit={ @@ -190115,7 +190182,7 @@ return { [1]="map_ritual_rare_monsters_+%" } }, - [8670]={ + [8675]={ [1]={ [1]={ limit={ @@ -190144,7 +190211,7 @@ return { [1]="map_ritual_rewards_reroll_cost_+%_final" } }, - [8671]={ + [8676]={ [1]={ [1]={ limit={ @@ -190173,7 +190240,7 @@ return { [1]="map_ritual_tribute_+%" } }, - [8672]={ + [8677]={ [1]={ [1]={ limit={ @@ -190202,7 +190269,7 @@ return { [1]="map_ritual_uber_rune_type_weighting_+%" } }, - [8673]={ + [8678]={ [1]={ [1]={ limit={ @@ -190218,7 +190285,7 @@ return { [1]="map_ritual_unlimited_reward_rerolls" } }, - [8674]={ + [8679]={ [1]={ [1]={ limit={ @@ -190234,7 +190301,7 @@ return { [1]="map_rogue_exile_attack_cast_and_movement_speed_+%" } }, - [8675]={ + [8680]={ [1]={ [1]={ limit={ @@ -190263,7 +190330,7 @@ return { [1]="map_rogue_exile_chance_+%" } }, - [8676]={ + [8681]={ [1]={ [1]={ limit={ @@ -190279,7 +190346,7 @@ return { [1]="map_rogue_exile_chance_%" } }, - [8677]={ + [8682]={ [1]={ [1]={ limit={ @@ -190295,7 +190362,7 @@ return { [1]="map_rogue_exile_drop_skill_gem_with_quality" } }, - [8678]={ + [8683]={ [1]={ [1]={ limit={ @@ -190311,7 +190378,7 @@ return { [1]="map_rogue_exiles_are_doubled" } }, - [8679]={ + [8684]={ [1]={ [1]={ limit={ @@ -190340,7 +190407,7 @@ return { [1]="map_rogue_exiles_damage_+%" } }, - [8680]={ + [8685]={ [1]={ [1]={ limit={ @@ -190356,7 +190423,7 @@ return { [1]="map_rogue_exiles_drop_additional_currency_items_with_quality" } }, - [8681]={ + [8686]={ [1]={ [1]={ limit={ @@ -190381,7 +190448,7 @@ return { [1]="map_rogue_exiles_drop_x_additional_jewels" } }, - [8682]={ + [8687]={ [1]={ [1]={ limit={ @@ -190397,7 +190464,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_corrupted" } }, - [8683]={ + [8688]={ [1]={ [1]={ limit={ @@ -190413,7 +190480,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_duplicated" } }, - [8684]={ + [8689]={ [1]={ [1]={ limit={ @@ -190429,7 +190496,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fully_linked" } }, - [8685]={ + [8690]={ [1]={ [1]={ limit={ @@ -190458,7 +190525,7 @@ return { [1]="map_rogue_exiles_maximum_life_+%" } }, - [8686]={ + [8691]={ [1]={ [1]={ limit={ @@ -190474,7 +190541,7 @@ return { [1]="map_shaper_rare_chance_+%" } }, - [8687]={ + [8692]={ [1]={ [1]={ limit={ @@ -190503,7 +190570,7 @@ return { [1]="map_shrine_chance_+%" } }, - [8688]={ + [8693]={ [1]={ [1]={ limit={ @@ -190519,7 +190586,7 @@ return { [1]="map_shrine_chance_%" } }, - [8689]={ + [8694]={ [1]={ [1]={ limit={ @@ -190535,7 +190602,7 @@ return { [1]="map_shrine_monster_life_+%_final" } }, - [8690]={ + [8695]={ [1]={ [1]={ limit={ @@ -190560,7 +190627,7 @@ return { [1]="map_shrines_drop_x_currency_items_on_activation" } }, - [8691]={ + [8696]={ [1]={ [1]={ limit={ @@ -190576,7 +190643,7 @@ return { [1]="map_shrines_grant_a_random_additional_effect" } }, - [8692]={ + [8697]={ [1]={ [1]={ limit={ @@ -190592,7 +190659,7 @@ return { [1]="map_simulacrum_reward_level_+" } }, - [8693]={ + [8698]={ [1]={ [1]={ limit={ @@ -190608,7 +190675,7 @@ return { [1]="map_spawn_abysses" } }, - [8694]={ + [8699]={ [1]={ [1]={ limit={ @@ -190624,7 +190691,7 @@ return { [1]="map_spawn_affliction_mirror" } }, - [8695]={ + [8700]={ [1]={ [1]={ limit={ @@ -190640,7 +190707,7 @@ return { [1]="map_spawn_bestiary_encounters" } }, - [8696]={ + [8701]={ [1]={ [1]={ limit={ @@ -190665,7 +190732,7 @@ return { [1]="map_spawn_beyond_boss_when_beyond_boss_slain_%" } }, - [8697]={ + [8702]={ [1]={ [1]={ limit={ @@ -190690,7 +190757,7 @@ return { [1]="map_spawn_cadiro_%_chance" } }, - [8698]={ + [8703]={ [1]={ [1]={ limit={ @@ -190715,7 +190782,7 @@ return { [1]="map_spawn_extra_perandus_chests" } }, - [8699]={ + [8704]={ [1]={ [1]={ limit={ @@ -190731,7 +190798,7 @@ return { [1]="map_spawn_heist_smugglers_cache" } }, - [8700]={ + [8705]={ [1]={ [1]={ limit={ @@ -190747,7 +190814,7 @@ return { [1]="map_spawn_incursion_encounters" } }, - [8701]={ + [8706]={ [1]={ [1]={ limit={ @@ -190772,7 +190839,7 @@ return { [1]="map_spawn_x_additional_heist_smugglers_caches" } }, - [8702]={ + [8707]={ [1]={ [1]={ limit={ @@ -190797,7 +190864,7 @@ return { [1]="map_spawn_x_random_map_bosses" } }, - [8703]={ + [8708]={ [1]={ [1]={ limit={ @@ -190826,7 +190893,7 @@ return { [1]="map_stone_circle_chance_+%" } }, - [8704]={ + [8709]={ [1]={ [1]={ limit={ @@ -190855,7 +190922,7 @@ return { [1]="map_storm_area_of_effect_+%" } }, - [8705]={ + [8710]={ [1]={ [1]={ limit={ @@ -190871,7 +190938,7 @@ return { [1]="map_strongbox_chance_%" } }, - [8706]={ + [8711]={ [1]={ [1]={ limit={ @@ -190900,7 +190967,7 @@ return { [1]="map_strongbox_chance_+%" } }, - [8707]={ + [8712]={ [1]={ [1]={ limit={ @@ -190916,7 +190983,7 @@ return { [1]="map_strongbox_items_dropped_are_mirrored" } }, - [8708]={ + [8713]={ [1]={ [1]={ limit={ @@ -190932,7 +190999,7 @@ return { [1]="map_strongbox_monsters_attack_speed_+%" } }, - [8709]={ + [8714]={ [1]={ [1]={ limit={ @@ -190961,7 +191028,7 @@ return { [1]="map_strongbox_monsters_item_quantity_+%" } }, - [8710]={ + [8715]={ [1]={ [1]={ limit={ @@ -190977,7 +191044,7 @@ return { [1]="map_strongboxes_are_corrupted" } }, - [8711]={ + [8716]={ [1]={ [1]={ limit={ @@ -190993,7 +191060,7 @@ return { [1]="map_strongboxes_at_least_rare" } }, - [8712]={ + [8717]={ [1]={ [1]={ limit={ @@ -191018,7 +191085,7 @@ return { [1]="map_strongboxes_drop_x_additional_rare_items" } }, - [8713]={ + [8718]={ [1]={ [1]={ limit={ @@ -191052,7 +191119,7 @@ return { [1]="map_strongboxes_minimum_rarity" } }, - [8714]={ + [8719]={ [1]={ [1]={ limit={ @@ -191081,7 +191148,7 @@ return { [1]="map_suffix_mod_effect_+%_final" } }, - [8715]={ + [8720]={ [1]={ [1]={ limit={ @@ -191097,7 +191164,7 @@ return { [1]="map_synthesis_league" } }, - [8716]={ + [8721]={ [1]={ [1]={ limit={ @@ -191113,7 +191180,7 @@ return { [1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters" } }, - [8717]={ + [8722]={ [1]={ [1]={ limit={ @@ -191129,7 +191196,7 @@ return { [1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters" } }, - [8718]={ + [8723]={ [1]={ [1]={ limit={ @@ -191145,7 +191212,7 @@ return { [1]="map_synthesis_spawn_additional_fungal_chest_clusters" } }, - [8719]={ + [8724]={ [1]={ [1]={ limit={ @@ -191170,7 +191237,7 @@ return { [1]="map_synthesis_spawn_additional_magic_ambush_chest" } }, - [8720]={ + [8725]={ [1]={ [1]={ limit={ @@ -191195,7 +191262,7 @@ return { [1]="map_synthesis_spawn_additional_normal_ambush_chest" } }, - [8721]={ + [8726]={ [1]={ [1]={ limit={ @@ -191211,7 +191278,7 @@ return { [1]="map_synthesis_spawn_additional_parasite_barrel_clusters" } }, - [8722]={ + [8727]={ [1]={ [1]={ limit={ @@ -191236,7 +191303,7 @@ return { [1]="map_synthesis_spawn_additional_rare_ambush_chest" } }, - [8723]={ + [8728]={ [1]={ [1]={ limit={ @@ -191252,7 +191319,7 @@ return { [1]="map_synthesis_spawn_additional_volatile_barrel_clusters" } }, - [8724]={ + [8729]={ [1]={ [1]={ limit={ @@ -191268,7 +191335,7 @@ return { [1]="map_synthesis_spawn_additional_wealthy_barrel_clusters" } }, - [8725]={ + [8730]={ [1]={ [1]={ limit={ @@ -191293,7 +191360,7 @@ return { [1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%" } }, - [8726]={ + [8731]={ [1]={ [1]={ limit={ @@ -191318,7 +191385,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%" } }, - [8727]={ + [8732]={ [1]={ [1]={ limit={ @@ -191343,7 +191410,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%" } }, - [8728]={ + [8733]={ [1]={ [1]={ limit={ @@ -191368,7 +191435,7 @@ return { [1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%" } }, - [8729]={ + [8734]={ [1]={ [1]={ limit={ @@ -191393,7 +191460,7 @@ return { [1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%" } }, - [8730]={ + [8735]={ [1]={ [1]={ limit={ @@ -191418,7 +191485,7 @@ return { [1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%" } }, - [8731]={ + [8736]={ [1]={ [1]={ limit={ @@ -191443,7 +191510,7 @@ return { [1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%" } }, - [8732]={ + [8737]={ [1]={ [1]={ limit={ @@ -191468,7 +191535,7 @@ return { [1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%" } }, - [8733]={ + [8738]={ [1]={ [1]={ limit={ @@ -191493,7 +191560,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency" } }, - [8734]={ + [8739]={ [1]={ [1]={ limit={ @@ -191518,7 +191585,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency_shard" } }, - [8735]={ + [8740]={ [1]={ [1]={ limit={ @@ -191543,7 +191610,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_quality_currency" } }, - [8736]={ + [8741]={ [1]={ [1]={ limit={ @@ -191559,7 +191626,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_quantity_+%" } }, - [8737]={ + [8742]={ [1]={ [1]={ limit={ @@ -191575,7 +191642,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_rarity_+%" } }, - [8738]={ + [8743]={ [1]={ [1]={ limit={ @@ -191591,7 +191658,7 @@ return { [1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%" } }, - [8739]={ + [8744]={ [1]={ [1]={ limit={ @@ -191616,7 +191683,7 @@ return { [1]="map_synthesised_magic_monster_items_drop_corrupted_%" } }, - [8740]={ + [8745]={ [1]={ [1]={ limit={ @@ -191632,7 +191699,7 @@ return { [1]="map_synthesised_magic_monster_map_drop_chance_+%" } }, - [8741]={ + [8746]={ [1]={ [1]={ limit={ @@ -191648,7 +191715,7 @@ return { [1]="map_synthesised_magic_monster_slain_experience_+%" } }, - [8742]={ + [8747]={ [1]={ [1]={ limit={ @@ -191664,7 +191731,7 @@ return { [1]="map_synthesised_magic_monster_unique_item_drop_chance_+%" } }, - [8743]={ + [8748]={ [1]={ [1]={ limit={ @@ -191689,7 +191756,7 @@ return { [1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%" } }, - [8744]={ + [8749]={ [1]={ [1]={ limit={ @@ -191714,7 +191781,7 @@ return { [1]="map_synthesised_monster_additional_currency_item_drop_chance_%" } }, - [8745]={ + [8750]={ [1]={ [1]={ limit={ @@ -191739,7 +191806,7 @@ return { [1]="map_synthesised_monster_additional_currency_shard_drop_chance_%" } }, - [8746]={ + [8751]={ [1]={ [1]={ limit={ @@ -191764,7 +191831,7 @@ return { [1]="map_synthesised_monster_additional_divination_card_drop_chance_%" } }, - [8747]={ + [8752]={ [1]={ [1]={ limit={ @@ -191789,7 +191856,7 @@ return { [1]="map_synthesised_monster_additional_elder_item_drop_chance_%" } }, - [8748]={ + [8753]={ [1]={ [1]={ limit={ @@ -191814,7 +191881,7 @@ return { [1]="map_synthesised_monster_additional_fossil_drop_chance_%" } }, - [8749]={ + [8754]={ [1]={ [1]={ limit={ @@ -191839,7 +191906,7 @@ return { [1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%" } }, - [8750]={ + [8755]={ [1]={ [1]={ limit={ @@ -191864,7 +191931,7 @@ return { [1]="map_synthesised_monster_additional_shaper_item_drop_chance_%" } }, - [8751]={ + [8756]={ [1]={ [1]={ limit={ @@ -191880,7 +191947,7 @@ return { [1]="map_synthesised_monster_dropped_item_quantity_+%" } }, - [8752]={ + [8757]={ [1]={ [1]={ limit={ @@ -191896,7 +191963,7 @@ return { [1]="map_synthesised_monster_dropped_item_rarity_+%" } }, - [8753]={ + [8758]={ [1]={ [1]={ limit={ @@ -191912,7 +191979,7 @@ return { [1]="map_synthesised_monster_fractured_item_drop_chance_+%" } }, - [8754]={ + [8759]={ [1]={ [1]={ limit={ @@ -191937,7 +192004,7 @@ return { [1]="map_synthesised_monster_items_drop_corrupted_%" } }, - [8755]={ + [8760]={ [1]={ [1]={ limit={ @@ -191953,7 +192020,7 @@ return { [1]="map_synthesised_monster_map_drop_chance_+%" } }, - [8756]={ + [8761]={ [1]={ [1]={ limit={ @@ -191969,7 +192036,7 @@ return { [1]="map_synthesised_monster_pack_size_+%" } }, - [8757]={ + [8762]={ [1]={ [1]={ limit={ @@ -191985,7 +192052,7 @@ return { [1]="map_synthesised_monster_slain_experience_+%" } }, - [8758]={ + [8763]={ [1]={ [1]={ limit={ @@ -192001,7 +192068,7 @@ return { [1]="map_synthesised_monster_unique_item_drop_chance_+%" } }, - [8759]={ + [8764]={ [1]={ [1]={ limit={ @@ -192026,7 +192093,7 @@ return { [1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%" } }, - [8760]={ + [8765]={ [1]={ [1]={ limit={ @@ -192051,7 +192118,7 @@ return { [1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%" } }, - [8761]={ + [8766]={ [1]={ [1]={ limit={ @@ -192076,7 +192143,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%" } }, - [8762]={ + [8767]={ [1]={ [1]={ limit={ @@ -192101,7 +192168,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%" } }, - [8763]={ + [8768]={ [1]={ [1]={ limit={ @@ -192126,7 +192193,7 @@ return { [1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%" } }, - [8764]={ + [8769]={ [1]={ [1]={ limit={ @@ -192151,7 +192218,7 @@ return { [1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%" } }, - [8765]={ + [8770]={ [1]={ [1]={ limit={ @@ -192176,7 +192243,7 @@ return { [1]="map_synthesised_rare_monster_additional_essence_drop_chance_%" } }, - [8766]={ + [8771]={ [1]={ [1]={ limit={ @@ -192201,7 +192268,7 @@ return { [1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%" } }, - [8767]={ + [8772]={ [1]={ [1]={ limit={ @@ -192226,7 +192293,7 @@ return { [1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%" } }, - [8768]={ + [8773]={ [1]={ [1]={ limit={ @@ -192251,7 +192318,7 @@ return { [1]="map_synthesised_rare_monster_additional_map_drop_chance_%" } }, - [8769]={ + [8774]={ [1]={ [1]={ limit={ @@ -192276,7 +192343,7 @@ return { [1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%" } }, - [8770]={ + [8775]={ [1]={ [1]={ limit={ @@ -192301,7 +192368,7 @@ return { [1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%" } }, - [8771]={ + [8776]={ [1]={ [1]={ limit={ @@ -192326,7 +192393,7 @@ return { [1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%" } }, - [8772]={ + [8777]={ [1]={ [1]={ limit={ @@ -192351,7 +192418,7 @@ return { [1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%" } }, - [8773]={ + [8778]={ [1]={ [1]={ limit={ @@ -192376,7 +192443,7 @@ return { [1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%" } }, - [8774]={ + [8779]={ [1]={ [1]={ limit={ @@ -192401,7 +192468,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_breach_splinter" } }, - [8775]={ + [8780]={ [1]={ [1]={ limit={ @@ -192426,7 +192493,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency" } }, - [8776]={ + [8781]={ [1]={ [1]={ limit={ @@ -192451,7 +192518,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency_shard" } }, - [8777]={ + [8782]={ [1]={ [1]={ limit={ @@ -192476,7 +192543,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_quality_currency" } }, - [8778]={ + [8783]={ [1]={ [1]={ limit={ @@ -192492,7 +192559,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_quantity_+%" } }, - [8779]={ + [8784]={ [1]={ [1]={ limit={ @@ -192508,7 +192575,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_rarity_+%" } }, - [8780]={ + [8785]={ [1]={ [1]={ limit={ @@ -192524,7 +192591,7 @@ return { [1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%" } }, - [8781]={ + [8786]={ [1]={ [1]={ limit={ @@ -192549,7 +192616,7 @@ return { [1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%" } }, - [8782]={ + [8787]={ [1]={ [1]={ limit={ @@ -192574,7 +192641,7 @@ return { [1]="map_synthesised_rare_monster_items_drop_corrupted_%" } }, - [8783]={ + [8788]={ [1]={ [1]={ limit={ @@ -192590,7 +192657,7 @@ return { [1]="map_synthesised_rare_monster_map_drop_chance_+%" } }, - [8784]={ + [8789]={ [1]={ [1]={ limit={ @@ -192615,7 +192682,7 @@ return { [1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%" } }, - [8785]={ + [8790]={ [1]={ [1]={ limit={ @@ -192631,7 +192698,7 @@ return { [1]="map_synthesised_rare_monster_slain_experience_+%" } }, - [8786]={ + [8791]={ [1]={ [1]={ limit={ @@ -192647,7 +192714,7 @@ return { [1]="map_synthesised_rare_monster_unique_item_drop_chance_+%" } }, - [8787]={ + [8792]={ [1]={ [1]={ limit={ @@ -192663,7 +192730,7 @@ return { [1]="map_talismans_dropped_as_rare" } }, - [8788]={ + [8793]={ [1]={ [1]={ limit={ @@ -192688,7 +192755,7 @@ return { [1]="map_talismans_higher_tier" } }, - [8789]={ + [8794]={ [1]={ [1]={ limit={ @@ -192717,7 +192784,7 @@ return { [1]="map_tempest_area_of_effect_+%_visible" } }, - [8790]={ + [8795]={ [1]={ [1]={ limit={ @@ -192742,7 +192809,7 @@ return { [1]="map_tempest_corruption_weight" } }, - [8791]={ + [8796]={ [1]={ [1]={ limit={ @@ -192771,7 +192838,7 @@ return { [1]="map_tempest_frequency_+%" } }, - [8792]={ + [8797]={ [1]={ [1]={ limit={ @@ -192796,7 +192863,7 @@ return { [1]="map_tempest_radiant_weight" } }, - [8793]={ + [8798]={ [1]={ [1]={ limit={ @@ -192812,7 +192879,7 @@ return { [1]="map_tormented_spirit_chance_%" } }, - [8794]={ + [8799]={ [1]={ [1]={ limit={ @@ -192841,7 +192908,7 @@ return { [1]="map_tormented_spirit_chance_+%" } }, - [8795]={ + [8800]={ [1]={ [1]={ limit={ @@ -192866,7 +192933,7 @@ return { [1]="map_tormented_spirits_drop_x_additional_rare_items" } }, - [8796]={ + [8801]={ [1]={ [1]={ limit={ @@ -192895,7 +192962,7 @@ return { [1]="map_tormented_spirits_duration_+%" } }, - [8797]={ + [8802]={ [1]={ [1]={ limit={ @@ -192924,7 +192991,7 @@ return { [1]="map_tormented_spirits_movement_speed_+%" } }, - [8798]={ + [8803]={ [1]={ [1]={ limit={ @@ -192949,7 +193016,7 @@ return { [1]="map_tower_augment_quantity_+%" } }, - [8799]={ + [8804]={ [1]={ [1]={ limit={ @@ -192965,7 +193032,7 @@ return { [1]="map_uber_map_player_damage_cycle" } }, - [8800]={ + [8805]={ [1]={ [1]={ limit={ @@ -192981,7 +193048,7 @@ return { [1]="map_unique_boss_drops_divination_cards" } }, - [8801]={ + [8806]={ [1]={ [1]={ limit={ @@ -193006,7 +193073,7 @@ return { [1]="map_unique_boss_num_additional_modifiers" } }, - [8802]={ + [8807]={ [1]={ [1]={ limit={ @@ -193022,7 +193089,7 @@ return { [1]="map_unique_item_drop_chance_+%" } }, - [8803]={ + [8808]={ [1]={ [1]={ limit={ @@ -193047,7 +193114,7 @@ return { [1]="map_unique_monster_num_additional_modifiers" } }, - [8804]={ + [8809]={ [1]={ [1]={ limit={ @@ -193076,7 +193143,7 @@ return { [1]="map_unique_monster_potency_+%" } }, - [8805]={ + [8810]={ [1]={ [1]={ limit={ @@ -193092,7 +193159,7 @@ return { [1]="map_unique_monsters_drop_corrupted_items" } }, - [8806]={ + [8811]={ [1]={ [1]={ limit={ @@ -193108,7 +193175,7 @@ return { [1]="map_upgrade_pack_to_magic_%_chance" } }, - [8807]={ + [8812]={ [1]={ [1]={ limit={ @@ -193124,7 +193191,7 @@ return { [1]="map_upgrade_pack_to_rare_%_chance" } }, - [8808]={ + [8813]={ [1]={ [1]={ limit={ @@ -193140,7 +193207,7 @@ return { [1]="map_upgrade_synthesised_pack_to_magic_%_chance" } }, - [8809]={ + [8814]={ [1]={ [1]={ limit={ @@ -193156,7 +193223,7 @@ return { [1]="map_upgrade_synthesised_pack_to_rare_%_chance" } }, - [8810]={ + [8815]={ [1]={ [1]={ limit={ @@ -193181,7 +193248,7 @@ return { [1]="map_vaal_monster_items_drop_corrupted_%" } }, - [8811]={ + [8816]={ [1]={ [1]={ limit={ @@ -193197,7 +193264,7 @@ return { [1]="map_vaal_mortal_strongbox_chance_per_fragment_%" } }, - [8812]={ + [8817]={ [1]={ [1]={ limit={ @@ -193213,7 +193280,7 @@ return { [1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%" } }, - [8813]={ + [8818]={ [1]={ [1]={ limit={ @@ -193238,7 +193305,7 @@ return { [1]="map_vaal_temple_spawn_additional_vaal_vessels" } }, - [8814]={ + [8819]={ [1]={ [1]={ limit={ @@ -193263,7 +193330,7 @@ return { [1]="map_vaal_vessel_drop_X_divination_cards" } }, - [8815]={ + [8820]={ [1]={ [1]={ limit={ @@ -193288,7 +193355,7 @@ return { [1]="map_vaal_vessel_drop_X_fossils" } }, - [8816]={ + [8821]={ [1]={ [1]={ limit={ @@ -193313,7 +193380,7 @@ return { [1]="map_vaal_vessel_drop_X_levelled_vaal_gems" } }, - [8817]={ + [8822]={ [1]={ [1]={ limit={ @@ -193338,7 +193405,7 @@ return { [1]="map_vaal_vessel_drop_X_mortal_fragments" } }, - [8818]={ + [8823]={ [1]={ [1]={ limit={ @@ -193363,7 +193430,7 @@ return { [1]="map_vaal_vessel_drop_X_prophecies" } }, - [8819]={ + [8824]={ [1]={ [1]={ limit={ @@ -193388,7 +193455,7 @@ return { [1]="map_vaal_vessel_drop_X_rare_temple_items" } }, - [8820]={ + [8825]={ [1]={ [1]={ limit={ @@ -193413,7 +193480,7 @@ return { [1]="map_vaal_vessel_drop_X_sacrifice_fragments" } }, - [8821]={ + [8826]={ [1]={ [1]={ limit={ @@ -193438,7 +193505,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_orbs" } }, - [8822]={ + [8827]={ [1]={ [1]={ limit={ @@ -193463,7 +193530,7 @@ return { [1]="map_vaal_vessel_drop_x_double_implicit_corrupted_uniques" } }, - [8823]={ + [8828]={ [1]={ [1]={ limit={ @@ -193488,7 +193555,7 @@ return { [1]="map_vaal_vessel_drop_x_single_implicit_corrupted_uniques" } }, - [8824]={ + [8829]={ [1]={ [1]={ limit={ @@ -193517,7 +193584,7 @@ return { [1]="map_vaal_vessel_item_drop_quantity_+%" } }, - [8825]={ + [8830]={ [1]={ [1]={ limit={ @@ -193546,7 +193613,7 @@ return { [1]="map_vaal_vessel_item_drop_rarity_+%" } }, - [8826]={ + [8831]={ [1]={ [1]={ limit={ @@ -193572,10 +193639,10 @@ return { } }, stats={ - [1]="map_verisium_drop_chance_+%" + [1]="map_verisium_stack_size_+%" } }, - [8827]={ + [8832]={ [1]={ [1]={ limit={ @@ -193600,7 +193667,7 @@ return { [1]="map_warbands_packs_have_additional_elites" } }, - [8828]={ + [8833]={ [1]={ [1]={ limit={ @@ -193625,7 +193692,7 @@ return { [1]="map_warbands_packs_have_additional_grunts" } }, - [8829]={ + [8834]={ [1]={ [1]={ limit={ @@ -193650,7 +193717,7 @@ return { [1]="map_warbands_packs_have_additional_supports" } }, - [8830]={ + [8835]={ [1]={ [1]={ limit={ @@ -193666,7 +193733,7 @@ return { [1]="map_watchstone_additional_packs_of_elder_monsters" } }, - [8831]={ + [8836]={ [1]={ [1]={ limit={ @@ -193682,7 +193749,7 @@ return { [1]="map_watchstone_additional_packs_of_shaper_monsters" } }, - [8832]={ + [8837]={ [1]={ [1]={ limit={ @@ -193698,7 +193765,7 @@ return { [1]="map_watchstone_monsters_damage_+%_final" } }, - [8833]={ + [8838]={ [1]={ [1]={ limit={ @@ -193714,7 +193781,7 @@ return { [1]="map_watchstone_monsters_life_+%_final" } }, - [8834]={ + [8839]={ [1]={ [1]={ limit={ @@ -193739,7 +193806,7 @@ return { [1]="maps_with_powerful_bosses_additional_essence_+" } }, - [8835]={ + [8840]={ [1]={ [1]={ limit={ @@ -193764,7 +193831,7 @@ return { [1]="maps_with_powerful_bosses_additional_shrine_+" } }, - [8836]={ + [8841]={ [1]={ [1]={ limit={ @@ -193789,7 +193856,7 @@ return { [1]="maps_with_powerful_bosses_additional_spirit_+" } }, - [8837]={ + [8842]={ [1]={ [1]={ limit={ @@ -193814,7 +193881,7 @@ return { [1]="maps_with_powerful_bosses_additional_strongbox_+" } }, - [8838]={ + [8843]={ [1]={ [1]={ limit={ @@ -193843,7 +193910,7 @@ return { [1]="marauder_hidden_ascendancy_damage_+%_final" } }, - [8839]={ + [8844]={ [1]={ [1]={ limit={ @@ -193872,7 +193939,7 @@ return { [1]="marauder_hidden_ascendancy_damage_taken_+%_final" } }, - [8840]={ + [8845]={ [1]={ [1]={ limit={ @@ -193888,7 +193955,7 @@ return { [1]="mark_grants_%_max_glory_to_random_skill_on_activate" } }, - [8841]={ + [8846]={ [1]={ [1]={ limit={ @@ -193917,7 +193984,7 @@ return { [1]="mark_skill_duration_+%" } }, - [8842]={ + [8847]={ [1]={ [1]={ limit={ @@ -193933,7 +194000,7 @@ return { [1]="mark_skill_gem_level_+" } }, - [8843]={ + [8848]={ [1]={ [1]={ limit={ @@ -193966,7 +194033,7 @@ return { [1]="mark_skill_mana_cost_+%" } }, - [8844]={ + [8849]={ [1]={ [1]={ limit={ @@ -193982,7 +194049,7 @@ return { [1]="marked_enemies_cannot_deal_critical_strikes" } }, - [8845]={ + [8850]={ [1]={ [1]={ limit={ @@ -193998,7 +194065,7 @@ return { [1]="marked_enemies_cannot_regenerate_life" } }, - [8846]={ + [8851]={ [1]={ [1]={ limit={ @@ -194027,7 +194094,7 @@ return { [1]="marked_enemy_accuracy_rating_+%" } }, - [8847]={ + [8852]={ [1]={ [1]={ limit={ @@ -194056,7 +194123,7 @@ return { [1]="marked_enemy_damage_taken_+%" } }, - [8848]={ + [8853]={ [1]={ [1]={ limit={ @@ -194085,7 +194152,7 @@ return { [1]="marked_or_cursed_enemy_damage_taken_+%" } }, - [8849]={ + [8854]={ [1]={ [1]={ limit={ @@ -194101,7 +194168,7 @@ return { [1]="marks_avoid_consumption_when_first_activated" } }, - [8850]={ + [8855]={ [1]={ [1]={ limit={ @@ -194117,7 +194184,7 @@ return { [1]="marks_you_inflict_remain_after_death" } }, - [8851]={ + [8856]={ [1]={ [1]={ limit={ @@ -194146,7 +194213,7 @@ return { [1]="master_of_elements_evasion_rating_+%_final" } }, - [8852]={ + [8857]={ [1]={ [1]={ limit={ @@ -194162,7 +194229,7 @@ return { [1]="maven_fight_layout_override" } }, - [8853]={ + [8858]={ [1]={ [1]={ limit={ @@ -194178,7 +194245,7 @@ return { [1]="max_chance_to_block_attacks_if_not_blocked_recently" } }, - [8854]={ + [8859]={ [1]={ [1]={ [1]={ @@ -194198,7 +194265,7 @@ return { [1]="max_fortification_+1_per_5" } }, - [8855]={ + [8860]={ [1]={ [1]={ [1]={ @@ -194218,7 +194285,7 @@ return { [1]="max_fortification_while_focused_+1_per_5" } }, - [8856]={ + [8861]={ [1]={ [1]={ [1]={ @@ -194238,7 +194305,7 @@ return { [1]="max_fortification_while_stationary_+1_per_5" } }, - [8857]={ + [8862]={ [1]={ [1]={ limit={ @@ -194254,7 +194321,7 @@ return { [1]="max_mana_increases_apply_to_effect_of_arcane_surge_on_self" } }, - [8858]={ + [8863]={ [1]={ [1]={ limit={ @@ -194270,7 +194337,7 @@ return { [1]="max_puppet_master_stacks_+" } }, - [8859]={ + [8864]={ [1]={ [1]={ limit={ @@ -194286,7 +194353,7 @@ return { [1]="max_rage_+_if_glory_skill_used_in_last_20_seconds" } }, - [8860]={ + [8865]={ [1]={ [1]={ limit={ @@ -194302,7 +194369,7 @@ return { [1]="max_rage_+_per_glory_skill_used_in_last_6_seconds" } }, - [8861]={ + [8866]={ [1]={ [1]={ limit={ @@ -194318,7 +194385,7 @@ return { [1]="max_steel_ammo" } }, - [8862]={ + [8867]={ [1]={ [1]={ limit={ @@ -194334,7 +194401,7 @@ return { [1]="maximum_added_lightning_damage_per_10_int" } }, - [8863]={ + [8868]={ [1]={ [1]={ limit={ @@ -194350,7 +194417,7 @@ return { [1]="maximum_blitz_charges" } }, - [8864]={ + [8869]={ [1]={ [1]={ limit={ @@ -194366,7 +194433,7 @@ return { [1]="maximum_block_modifiers_apply_to_maximum_resistances_instead" } }, - [8865]={ + [8870]={ [1]={ [1]={ limit={ @@ -194382,7 +194449,7 @@ return { [1]="maximum_caltrops_allowed" } }, - [8866]={ + [8871]={ [1]={ [1]={ limit={ @@ -194398,7 +194465,7 @@ return { [1]="maximum_challenger_charges" } }, - [8867]={ + [8872]={ [1]={ [1]={ limit={ @@ -194414,7 +194481,7 @@ return { [1]="maximum_chance_to_evade_is_50%" } }, - [8868]={ + [8873]={ [1]={ [1]={ limit={ @@ -194430,7 +194497,7 @@ return { [1]="maximum_cold_damage_resistance_+%_while_shapeshifted" } }, - [8869]={ + [8874]={ [1]={ [1]={ limit={ @@ -194446,7 +194513,7 @@ return { [1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [8870]={ + [8875]={ [1]={ [1]={ limit={ @@ -194462,7 +194529,7 @@ return { [1]="maximum_cold_infusion_stacks" } }, - [8871]={ + [8876]={ [1]={ [1]={ limit={ @@ -194478,7 +194545,7 @@ return { [1]="maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed" } }, - [8872]={ + [8877]={ [1]={ [1]={ limit={ @@ -194503,7 +194570,7 @@ return { [1]="maximum_cold_resistance_+1_per_X_corresponding_support" } }, - [8873]={ + [8878]={ [1]={ [1]={ limit={ @@ -194519,7 +194586,7 @@ return { [1]="maximum_critical_strike_chance_is_%_from_support_garukhans_resolve" } }, - [8874]={ + [8879]={ [1]={ [1]={ limit={ @@ -194548,7 +194615,7 @@ return { [1]="maximum_darkness_+%" } }, - [8875]={ + [8880]={ [1]={ [1]={ limit={ @@ -194577,7 +194644,7 @@ return { [1]="maximum_divinity_+%" } }, - [8876]={ + [8881]={ [1]={ [1]={ limit={ @@ -194606,7 +194673,7 @@ return { [1]="maximum_divinity_+%_per_equipped_corrupted_item" } }, - [8877]={ + [8882]={ [1]={ [1]={ limit={ @@ -194622,7 +194689,7 @@ return { [1]="maximum_elemental_resistance_+%_of_each_elemental_damage_type_youve_been_hit_with_recently" } }, - [8878]={ + [8883]={ [1]={ [1]={ limit={ @@ -194638,7 +194705,7 @@ return { [1]="maximum_endurance_charges_+_if_you_have_at_least_100_tribute" } }, - [8879]={ + [8884]={ [1]={ [1]={ limit={ @@ -194654,7 +194721,7 @@ return { [1]="maximum_endurance_charges_+_while_affected_by_determination" } }, - [8880]={ + [8885]={ [1]={ [1]={ limit={ @@ -194683,7 +194750,7 @@ return { [1]="maximum_energy_shield_+%_per_10_tribute" } }, - [8881]={ + [8886]={ [1]={ [1]={ limit={ @@ -194699,7 +194766,7 @@ return { [1]="maximum_energy_shield_+1_per_x_body_armour_evasion_rating" } }, - [8882]={ + [8887]={ [1]={ [1]={ limit={ @@ -194715,7 +194782,7 @@ return { [1]="maximum_energy_shield_from_body_armour_+%" } }, - [8883]={ + [8888]={ [1]={ [1]={ limit={ @@ -194731,7 +194798,7 @@ return { [1]="maximum_fanaticism_charges" } }, - [8884]={ + [8889]={ [1]={ [1]={ limit={ @@ -194747,7 +194814,7 @@ return { [1]="maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance" } }, - [8885]={ + [8890]={ [1]={ [1]={ limit={ @@ -194763,7 +194830,7 @@ return { [1]="maximum_fire_damage_resistance_+%_while_shapeshifted" } }, - [8886]={ + [8891]={ [1]={ [1]={ limit={ @@ -194779,7 +194846,7 @@ return { [1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [8887]={ + [8892]={ [1]={ [1]={ limit={ @@ -194795,7 +194862,7 @@ return { [1]="maximum_fire_infusion_stacks" } }, - [8888]={ + [8893]={ [1]={ [1]={ limit={ @@ -194811,7 +194878,7 @@ return { [1]="maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed" } }, - [8889]={ + [8894]={ [1]={ [1]={ limit={ @@ -194836,7 +194903,7 @@ return { [1]="maximum_fire_resistance_+1_per_X_corresponding_support" } }, - [8890]={ + [8895]={ [1]={ [1]={ limit={ @@ -194852,7 +194919,7 @@ return { [1]="maximum_frenzy_charges_+_if_you_have_at_least_100_tribute" } }, - [8891]={ + [8896]={ [1]={ [1]={ limit={ @@ -194868,7 +194935,7 @@ return { [1]="maximum_frenzy_charges_+_while_affected_by_grace" } }, - [8892]={ + [8897]={ [1]={ [1]={ limit={ @@ -194884,7 +194951,7 @@ return { [1]="maximum_frenzy_power_endurance_charges" } }, - [8893]={ + [8898]={ [1]={ [1]={ limit={ @@ -194900,7 +194967,7 @@ return { [1]="maximum_guard_is_based_on_energy_shield" } }, - [8894]={ + [8899]={ [1]={ [1]={ limit={ @@ -194916,7 +194983,7 @@ return { [1]="additional_maximum_infusion_stacks" } }, - [8895]={ + [8900]={ [1]={ [1]={ limit={ @@ -194932,7 +194999,7 @@ return { [1]="maximum_intensify_stacks" } }, - [8896]={ + [8901]={ [1]={ [1]={ limit={ @@ -194948,7 +195015,7 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute" } }, - [8897]={ + [8902]={ [1]={ [1]={ [1]={ @@ -194977,7 +195044,7 @@ return { [1]="maximum_life_+%_final_from_caster_weapon_runic_ward_socketable" } }, - [8898]={ + [8903]={ [1]={ [1]={ limit={ @@ -194993,7 +195060,7 @@ return { [1]="maximum_life_+%_if_10_red_supports_socketed" } }, - [8899]={ + [8904]={ [1]={ [1]={ limit={ @@ -195022,7 +195089,7 @@ return { [1]="maximum_life_+%_if_you_have_at_least_100_tribute" } }, - [8900]={ + [8905]={ [1]={ [1]={ limit={ @@ -195038,7 +195105,7 @@ return { [1]="maximum_life_per_10_dexterity" } }, - [8901]={ + [8906]={ [1]={ [1]={ limit={ @@ -195054,7 +195121,7 @@ return { [1]="maximum_life_per_10_intelligence" } }, - [8902]={ + [8907]={ [1]={ [1]={ limit={ @@ -195070,7 +195137,7 @@ return { [1]="maximum_life_per_2%_increased_item_found_rarity" } }, - [8903]={ + [8908]={ [1]={ [1]={ limit={ @@ -195086,7 +195153,7 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield" } }, - [8904]={ + [8909]={ [1]={ [1]={ limit={ @@ -195102,7 +195169,7 @@ return { [1]="maximum_life_%_to_gain_as_armour" } }, - [8905]={ + [8910]={ [1]={ [1]={ limit={ @@ -195131,7 +195198,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [8906]={ + [8911]={ [1]={ [1]={ limit={ @@ -195147,7 +195214,7 @@ return { [1]="maximum_life_+%_if_no_life_tags_on_body_armour" } }, - [8907]={ + [8912]={ [1]={ [1]={ limit={ @@ -195176,7 +195243,7 @@ return { [1]="maximum_life_+%_per_abyssal_jewel_affecting_you" } }, - [8908]={ + [8913]={ [1]={ [1]={ limit={ @@ -195192,7 +195259,7 @@ return { [1]="maximum_lightning_damage_resistance_+%_while_shapeshifted" } }, - [8909]={ + [8914]={ [1]={ [1]={ limit={ @@ -195208,7 +195275,7 @@ return { [1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [8910]={ + [8915]={ [1]={ [1]={ limit={ @@ -195224,7 +195291,7 @@ return { [1]="maximum_lightning_infusion_stacks" } }, - [8911]={ + [8916]={ [1]={ [1]={ limit={ @@ -195240,7 +195307,7 @@ return { [1]="maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed" } }, - [8912]={ + [8917]={ [1]={ [1]={ limit={ @@ -195265,7 +195332,7 @@ return { [1]="maximum_lightning_resistance_+1_per_X_corresponding_support" } }, - [8913]={ + [8918]={ [1]={ [1]={ limit={ @@ -195281,7 +195348,7 @@ return { [1]="maximum_mana_+%_if_10_blue_supports_socketed" } }, - [8914]={ + [8919]={ [1]={ [1]={ limit={ @@ -195310,7 +195377,7 @@ return { [1]="maximum_mana_+%_if_you_have_at_least_100_tribute" } }, - [8915]={ + [8920]={ [1]={ [1]={ limit={ @@ -195339,7 +195406,7 @@ return { [1]="maximum_mana_+%_per_abyssal_jewel_affecting_you" } }, - [8916]={ + [8921]={ [1]={ [1]={ limit={ @@ -195355,7 +195422,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [8917]={ + [8922]={ [1]={ [1]={ limit={ @@ -195384,7 +195451,7 @@ return { [1]="maximum_physical_attack_damage_on_crit_+%_final" } }, - [8918]={ + [8923]={ [1]={ [1]={ limit={ @@ -195400,7 +195467,7 @@ return { [1]="maximum_physical_damage_reduction_is_50%" } }, - [8919]={ + [8924]={ [1]={ [1]={ limit={ @@ -195416,7 +195483,7 @@ return { [1]="maximum_power_and_endurance_charges_+" } }, - [8920]={ + [8925]={ [1]={ [1]={ limit={ @@ -195432,7 +195499,7 @@ return { [1]="maximum_power_charges_+_if_you_have_at_least_100_tribute" } }, - [8921]={ + [8926]={ [1]={ [1]={ limit={ @@ -195448,7 +195515,7 @@ return { [1]="maximum_power_charges_+_while_affected_by_discipline" } }, - [8922]={ + [8927]={ [1]={ [1]={ limit={ @@ -195464,7 +195531,7 @@ return { [1]="maximum_rage_+_while_shapeshifted" } }, - [8923]={ + [8928]={ [1]={ [1]={ limit={ @@ -195480,7 +195547,7 @@ return { [1]="maximum_rage_+_while_wielding_axe" } }, - [8924]={ + [8929]={ [1]={ [1]={ limit={ @@ -195496,7 +195563,7 @@ return { [1]="maximum_rage_per_50_tribute" } }, - [8925]={ + [8930]={ [1]={ [1]={ limit={ @@ -195512,7 +195579,7 @@ return { [1]="maximum_rage_per_equipped_one_handed_sword" } }, - [8926]={ + [8931]={ [1]={ [1]={ limit={ @@ -195528,7 +195595,7 @@ return { [1]="maximum_random_movement_velocity_+%_when_hit" } }, - [8927]={ + [8932]={ [1]={ [1]={ limit={ @@ -195544,7 +195611,7 @@ return { [1]="maximum_virulence_stacks" } }, - [8928]={ + [8933]={ [1]={ [1]={ limit={ @@ -195560,7 +195627,7 @@ return { [1]="maximum_volatility_allowed" } }, - [8929]={ + [8934]={ [1]={ [1]={ limit={ @@ -195585,7 +195652,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [8930]={ + [8935]={ [1]={ [1]={ limit={ @@ -195601,7 +195668,7 @@ return { [1]="melee_attack_skills_additional_totems_allowed" } }, - [8931]={ + [8936]={ [1]={ [1]={ limit={ @@ -195617,7 +195684,7 @@ return { [1]="melee_critical_strike_chance_+%_if_warcried_recently" } }, - [8932]={ + [8937]={ [1]={ [1]={ limit={ @@ -195633,7 +195700,7 @@ return { [1]="melee_critical_strike_multiplier_+%_if_warcried_recently" } }, - [8933]={ + [8938]={ [1]={ [1]={ limit={ @@ -195662,7 +195729,7 @@ return { [1]="melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently" } }, - [8934]={ + [8939]={ [1]={ [1]={ limit={ @@ -195691,7 +195758,7 @@ return { [1]="melee_damage_+%_vs_immobilised_enemies" } }, - [8935]={ + [8940]={ [1]={ [1]={ limit={ @@ -195720,7 +195787,7 @@ return { [1]="melee_damage_+%_with_spears_while_surrounded" } }, - [8936]={ + [8941]={ [1]={ [1]={ limit={ @@ -195749,7 +195816,7 @@ return { [1]="melee_damage_+%_at_close_range" } }, - [8937]={ + [8942]={ [1]={ [1]={ limit={ @@ -195778,7 +195845,7 @@ return { [1]="melee_damage_+%_during_flask_effect" } }, - [8938]={ + [8943]={ [1]={ [1]={ limit={ @@ -195794,7 +195861,7 @@ return { [1]="melee_damage_+%_per_second_of_warcry_affecting_you" } }, - [8939]={ + [8944]={ [1]={ [1]={ limit={ @@ -195823,7 +195890,7 @@ return { [1]="melee_damage_+%_vs_heavy_stunned_enemies" } }, - [8940]={ + [8945]={ [1]={ [1]={ limit={ @@ -195852,7 +195919,7 @@ return { [1]="melee_hit_damage_stun_multiplier_+%" } }, - [8941]={ + [8946]={ [1]={ [1]={ limit={ @@ -195881,7 +195948,7 @@ return { [1]="melee_hit_damage_stun_multiplier_+%_final_from_ot" } }, - [8942]={ + [8947]={ [1]={ [1]={ limit={ @@ -195897,7 +195964,7 @@ return { [1]="melee_movement_skill_chance_to_fortify_on_hit_%" } }, - [8943]={ + [8948]={ [1]={ [1]={ limit={ @@ -195913,7 +195980,7 @@ return { [1]="melee_physical_damage_+%_per_10_dexterity" } }, - [8944]={ + [8949]={ [1]={ [1]={ limit={ @@ -195942,7 +196009,7 @@ return { [1]="melee_physical_damage_+%_per_10_strength_while_fortified" } }, - [8945]={ + [8950]={ [1]={ [1]={ limit={ @@ -195958,7 +196025,7 @@ return { [1]="melee_range_+_while_at_least_5_enemies_nearby" } }, - [8946]={ + [8951]={ [1]={ [1]={ [1]={ @@ -195978,7 +196045,7 @@ return { [1]="melee_range_+_while_wielding_shield" } }, - [8947]={ + [8952]={ [1]={ [1]={ [1]={ @@ -195998,7 +196065,7 @@ return { [1]="melee_range_+_while_dual_wielding" } }, - [8948]={ + [8953]={ [1]={ [1]={ [1]={ @@ -196018,7 +196085,7 @@ return { [1]="melee_range_+_with_axe" } }, - [8949]={ + [8954]={ [1]={ [1]={ limit={ @@ -196034,7 +196101,7 @@ return { [1]="melee_range_+_with_claw" } }, - [8950]={ + [8955]={ [1]={ [1]={ [1]={ @@ -196054,7 +196121,7 @@ return { [1]="melee_range_+_with_dagger" } }, - [8951]={ + [8956]={ [1]={ [1]={ [1]={ @@ -196074,7 +196141,7 @@ return { [1]="melee_range_+_with_flail" } }, - [8952]={ + [8957]={ [1]={ [1]={ limit={ @@ -196090,7 +196157,7 @@ return { [1]="melee_range_+_with_mace" } }, - [8953]={ + [8958]={ [1]={ [1]={ [1]={ @@ -196110,7 +196177,7 @@ return { [1]="melee_range_+_with_one_handed" } }, - [8954]={ + [8959]={ [1]={ [1]={ [1]={ @@ -196130,7 +196197,7 @@ return { [1]="melee_range_+_with_spear" } }, - [8955]={ + [8960]={ [1]={ [1]={ limit={ @@ -196146,7 +196213,7 @@ return { [1]="melee_range_+_with_staff" } }, - [8956]={ + [8961]={ [1]={ [1]={ [1]={ @@ -196166,7 +196233,7 @@ return { [1]="melee_range_+_with_sword" } }, - [8957]={ + [8962]={ [1]={ [1]={ [1]={ @@ -196186,7 +196253,7 @@ return { [1]="melee_range_+_with_two_handed" } }, - [8958]={ + [8963]={ [1]={ [1]={ limit={ @@ -196215,7 +196282,7 @@ return { [1]="melee_skills_area_of_effect_+%" } }, - [8959]={ + [8964]={ [1]={ [1]={ [1]={ @@ -196235,7 +196302,7 @@ return { [1]="melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently" } }, - [8960]={ + [8965]={ [1]={ [1]={ limit={ @@ -196251,7 +196318,7 @@ return { [1]="melee_strike_skill_strike_previous_location" } }, - [8961]={ + [8966]={ [1]={ [1]={ [1]={ @@ -196271,7 +196338,7 @@ return { [1]="melee_weapon_range_+_if_you_have_killed_recently" } }, - [8962]={ + [8967]={ [1]={ [1]={ [1]={ @@ -196291,7 +196358,7 @@ return { [1]="melee_weapon_range_+_while_at_maximum_frenzy_charges" } }, - [8963]={ + [8968]={ [1]={ [1]={ limit={ @@ -196307,7 +196374,7 @@ return { [1]="melee_weapon_range_+_while_fortified" } }, - [8964]={ + [8969]={ [1]={ [1]={ limit={ @@ -196336,7 +196403,7 @@ return { [1]="mine_area_damage_+%_if_detonated_mine_recently" } }, - [8965]={ + [8970]={ [1]={ [1]={ limit={ @@ -196365,7 +196432,7 @@ return { [1]="mine_area_of_effect_+%" } }, - [8966]={ + [8971]={ [1]={ [1]={ limit={ @@ -196394,7 +196461,7 @@ return { [1]="mine_area_of_effect_+%_if_detonated_mine_recently" } }, - [8967]={ + [8972]={ [1]={ [1]={ limit={ @@ -196423,7 +196490,7 @@ return { [1]="mine_aura_effect_+%" } }, - [8968]={ + [8973]={ [1]={ [1]={ limit={ @@ -196452,7 +196519,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [8969]={ + [8974]={ [1]={ [1]={ limit={ @@ -196468,7 +196535,7 @@ return { [1]="mine_%_chance_to_detonate_twice" } }, - [8970]={ + [8975]={ [1]={ [1]={ [1]={ @@ -196501,7 +196568,7 @@ return { [1]="mines_hinder_nearby_enemies_for_x_ms_on_arming" } }, - [8971]={ + [8976]={ [1]={ [1]={ limit={ @@ -196517,7 +196584,7 @@ return { [1]="mines_invulnerable" } }, - [8972]={ + [8977]={ [1]={ [1]={ limit={ @@ -196538,7 +196605,7 @@ return { [2]="maximum_added_chaos_damage_if_have_crit_recently" } }, - [8973]={ + [8978]={ [1]={ [1]={ limit={ @@ -196559,7 +196626,7 @@ return { [2]="maximum_added_chaos_damage_per_curse_on_enemy" } }, - [8974]={ + [8979]={ [1]={ [1]={ limit={ @@ -196580,7 +196647,7 @@ return { [2]="maximum_added_chaos_damage_per_spiders_web_on_enemy" } }, - [8975]={ + [8980]={ [1]={ [1]={ limit={ @@ -196601,7 +196668,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength" } }, - [8976]={ + [8981]={ [1]={ [1]={ limit={ @@ -196622,7 +196689,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_per_50_strength" } }, - [8977]={ + [8982]={ [1]={ [1]={ limit={ @@ -196643,7 +196710,7 @@ return { [2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons" } }, - [8978]={ + [8983]={ [1]={ [1]={ limit={ @@ -196664,7 +196731,7 @@ return { [2]="maximum_added_cold_damage_if_have_crit_recently" } }, - [8979]={ + [8984]={ [1]={ [1]={ limit={ @@ -196685,7 +196752,7 @@ return { [2]="maximum_added_cold_damage_to_attacks_per_10_dexterity" } }, - [8980]={ + [8985]={ [1]={ [1]={ limit={ @@ -196706,7 +196773,7 @@ return { [2]="maximum_added_cold_damage_to_attacks_per_20_dexterity" } }, - [8981]={ + [8986]={ [1]={ [1]={ limit={ @@ -196727,7 +196794,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [8982]={ + [8987]={ [1]={ [1]={ limit={ @@ -196748,7 +196815,7 @@ return { [2]="maximum_added_cold_damage_while_affected_by_hatred" } }, - [8983]={ + [8988]={ [1]={ [1]={ limit={ @@ -196769,7 +196836,7 @@ return { [2]="maximum_added_cold_damage_while_you_have_avians_might" } }, - [8984]={ + [8989]={ [1]={ [1]={ limit={ @@ -196790,7 +196857,7 @@ return { [2]="maximum_added_fire_damage_if_have_crit_recently" } }, - [8985]={ + [8990]={ [1]={ [1]={ limit={ @@ -196811,7 +196878,7 @@ return { [2]="maximum_added_fire_damage_per_100_lowest_of_max_life_mana" } }, - [8986]={ + [8991]={ [1]={ [1]={ limit={ @@ -196832,7 +196899,7 @@ return { [2]="maximum_added_fire_damage_per_endurance_charge" } }, - [8987]={ + [8992]={ [1]={ [1]={ limit={ @@ -196853,7 +196920,7 @@ return { [2]="maximum_added_fire_damage_to_attacks_per_10_strength" } }, - [8988]={ + [8993]={ [1]={ [1]={ limit={ @@ -196874,7 +196941,7 @@ return { [2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies" } }, - [8989]={ + [8994]={ [1]={ [1]={ limit={ @@ -196895,7 +196962,7 @@ return { [2]="maximum_added_lightning_damage_if_have_crit_recently" } }, - [8990]={ + [8995]={ [1]={ [1]={ limit={ @@ -196916,7 +196983,7 @@ return { [2]="maximum_added_lightning_damage_per_power_charge" } }, - [8991]={ + [8996]={ [1]={ [1]={ limit={ @@ -196937,7 +197004,7 @@ return { [2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently" } }, - [8992]={ + [8997]={ [1]={ [1]={ limit={ @@ -196958,7 +197025,7 @@ return { [2]="maximum_added_lightning_damage_to_attacks_per_20_intelligence" } }, - [8993]={ + [8998]={ [1]={ [1]={ limit={ @@ -196979,7 +197046,7 @@ return { [2]="maximum_added_lightning_damage_to_spells_per_power_charge" } }, - [8994]={ + [8999]={ [1]={ [1]={ limit={ @@ -197000,7 +197067,7 @@ return { [2]="maximum_added_lightning_damage_while_you_have_avians_might" } }, - [8995]={ + [9000]={ [1]={ [1]={ limit={ @@ -197021,7 +197088,7 @@ return { [2]="maximum_added_physical_damage_if_have_crit_recently" } }, - [8996]={ + [9001]={ [1]={ [1]={ limit={ @@ -197042,7 +197109,7 @@ return { [2]="maximum_added_physical_damage_per_endurance_charge" } }, - [8997]={ + [9002]={ [1]={ [1]={ limit={ @@ -197063,7 +197130,7 @@ return { [2]="maximum_added_physical_damage_per_impaled_on_enemy" } }, - [8998]={ + [9003]={ [1]={ [1]={ limit={ @@ -197084,7 +197151,7 @@ return { [2]="maximum_added_physical_damage_vs_poisoned_enemies" } }, - [8999]={ + [9004]={ [1]={ [1]={ limit={ @@ -197105,7 +197172,7 @@ return { [2]="maximum_added_spell_cold_damage_while_no_life_is_reserved" } }, - [9000]={ + [9005]={ [1]={ [1]={ limit={ @@ -197126,7 +197193,7 @@ return { [2]="maximum_added_spell_fire_damage_while_no_life_is_reserved" } }, - [9001]={ + [9006]={ [1]={ [1]={ limit={ @@ -197147,7 +197214,7 @@ return { [2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved" } }, - [9002]={ + [9007]={ [1]={ [1]={ limit={ @@ -197163,7 +197230,7 @@ return { [1]="minimum_endurance_charges_at_devotion_threshold" } }, - [9003]={ + [9008]={ [1]={ [1]={ limit={ @@ -197179,7 +197246,7 @@ return { [1]="minimum_endurance_charges_while_on_low_life_+" } }, - [9004]={ + [9009]={ [1]={ [1]={ limit={ @@ -197195,7 +197262,7 @@ return { [1]="minimum_frenzy_charges_at_devotion_threshold" } }, - [9005]={ + [9010]={ [1]={ [1]={ limit={ @@ -197211,7 +197278,7 @@ return { [1]="minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary" } }, - [9006]={ + [9011]={ [1]={ [1]={ limit={ @@ -197227,7 +197294,7 @@ return { [1]="minimum_frenzy_power_endurance_charges" } }, - [9007]={ + [9012]={ [1]={ [1]={ limit={ @@ -197260,7 +197327,7 @@ return { [1]="minimum_physical_attack_damage_on_crit_+%_final" } }, - [9008]={ + [9013]={ [1]={ [1]={ limit={ @@ -197276,7 +197343,7 @@ return { [1]="minimum_power_charges_at_devotion_threshold" } }, - [9009]={ + [9014]={ [1]={ [1]={ limit={ @@ -197292,7 +197359,7 @@ return { [1]="minimum_power_charges_while_on_low_life_+" } }, - [9010]={ + [9015]={ [1]={ [1]={ limit={ @@ -197308,7 +197375,7 @@ return { [1]="minion_1%_accuracy_rating_+%_per_X_player_dexterity" } }, - [9011]={ + [9016]={ [1]={ [1]={ limit={ @@ -197324,7 +197391,7 @@ return { [1]="minion_1%_area_of_effect_+%_per_X_player_dexterity" } }, - [9012]={ + [9017]={ [1]={ [1]={ limit={ @@ -197340,7 +197407,7 @@ return { [1]="minion_1%_damage_+%_per_X_player_strength" } }, - [9013]={ + [9018]={ [1]={ [1]={ limit={ @@ -197356,7 +197423,7 @@ return { [1]="minion_accuracy_rating" } }, - [9014]={ + [9019]={ [1]={ [1]={ limit={ @@ -197372,7 +197439,7 @@ return { [1]="minion_accuracy_rating_per_10_devotion" } }, - [9015]={ + [9020]={ [1]={ [1]={ limit={ @@ -197401,7 +197468,7 @@ return { [1]="minion_accuracy_rating_+%" } }, - [9016]={ + [9021]={ [1]={ [1]={ limit={ @@ -197430,7 +197497,7 @@ return { [1]="minion_actor_scale_+%" } }, - [9017]={ + [9022]={ [1]={ [1]={ [1]={ @@ -197450,7 +197517,7 @@ return { [1]="minion_additional_base_critical_strike_chance" } }, - [9018]={ + [9023]={ [1]={ [1]={ limit={ @@ -197479,7 +197546,7 @@ return { [1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently" } }, - [9019]={ + [9024]={ [1]={ [1]={ limit={ @@ -197495,7 +197562,7 @@ return { [1]="minion_armour_break_physical_damage_%_dealt_as_armour_break" } }, - [9020]={ + [9025]={ [1]={ [1]={ limit={ @@ -197511,7 +197578,7 @@ return { [1]="minion_attack_added_cold_damage_as_%_parent_maximum_life" } }, - [9021]={ + [9026]={ [1]={ [1]={ limit={ @@ -197540,7 +197607,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_50_tribute" } }, - [9022]={ + [9027]={ [1]={ [1]={ limit={ @@ -197569,7 +197636,7 @@ return { [1]="minion_attack_and_cast_speed_+%" } }, - [9023]={ + [9028]={ [1]={ [1]={ limit={ @@ -197598,7 +197665,7 @@ return { [1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently" } }, - [9024]={ + [9029]={ [1]={ [1]={ limit={ @@ -197627,7 +197694,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_10_devotion" } }, - [9025]={ + [9030]={ [1]={ [1]={ limit={ @@ -197656,7 +197723,7 @@ return { [1]="minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [9026]={ + [9031]={ [1]={ [1]={ limit={ @@ -197672,7 +197739,7 @@ return { [1]="minion_attack_hits_knockback_chance_%" } }, - [9027]={ + [9032]={ [1]={ [1]={ limit={ @@ -197697,7 +197764,7 @@ return { [1]="minion_attack_speed_+%_per_five_rage" } }, - [9028]={ + [9033]={ [1]={ [1]={ limit={ @@ -197722,7 +197789,7 @@ return { [1]="minion_attack_speed_+%_per_rage" } }, - [9029]={ + [9034]={ [1]={ [1]={ limit={ @@ -197751,7 +197818,7 @@ return { [1]="minion_attack_speed_+%_per_50_dex" } }, - [9030]={ + [9035]={ [1]={ [1]={ limit={ @@ -197776,7 +197843,7 @@ return { [1]="minion_attacks_chance_to_blind_on_hit_%" } }, - [9031]={ + [9036]={ [1]={ [1]={ limit={ @@ -197805,7 +197872,7 @@ return { [1]="minion_base_damaging_ailment_effect_+%" } }, - [9032]={ + [9037]={ [1]={ [1]={ limit={ @@ -197821,7 +197888,7 @@ return { [1]="minion_base_maximum_cold_damage_resistance_%" } }, - [9033]={ + [9038]={ [1]={ [1]={ limit={ @@ -197837,7 +197904,7 @@ return { [1]="minion_base_maximum_fire_damage_resistance_%" } }, - [9034]={ + [9039]={ [1]={ [1]={ limit={ @@ -197853,7 +197920,7 @@ return { [1]="minion_base_maximum_lightning_damage_resistance_%" } }, - [9035]={ + [9040]={ [1]={ [1]={ limit={ @@ -197869,7 +197936,7 @@ return { [1]="minion_cannot_crit" } }, - [9036]={ + [9041]={ [1]={ [1]={ limit={ @@ -197885,7 +197952,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [9037]={ + [9042]={ [1]={ [1]={ limit={ @@ -197901,7 +197968,7 @@ return { [1]="minion_chance_to_deal_double_damage_while_on_full_life_%" } }, - [9038]={ + [9043]={ [1]={ [1]={ limit={ @@ -197917,7 +197984,7 @@ return { [1]="minion_chance_to_fire_1_additional_projectile_%_with_rollover" } }, - [9039]={ + [9044]={ [1]={ [1]={ limit={ @@ -197933,7 +198000,7 @@ return { [1]="minion_chance_to_freeze_%" } }, - [9040]={ + [9045]={ [1]={ [1]={ limit={ @@ -197949,7 +198016,7 @@ return { [1]="minion_chance_to_gain_power_charge_on_hit_%" } }, - [9041]={ + [9046]={ [1]={ [1]={ limit={ @@ -197965,7 +198032,7 @@ return { [1]="minion_chance_to_impale_on_attack_hit_%" } }, - [9042]={ + [9047]={ [1]={ [1]={ limit={ @@ -197981,7 +198048,7 @@ return { [1]="minion_chance_to_shock_%" } }, - [9043]={ + [9048]={ [1]={ [1]={ limit={ @@ -198010,7 +198077,7 @@ return { [1]="minion_command_skill_cooldown_speed_+%" } }, - [9044]={ + [9049]={ [1]={ [1]={ limit={ @@ -198039,7 +198106,7 @@ return { [1]="minion_command_skill_skill_speed_+%" } }, - [9045]={ + [9050]={ [1]={ [1]={ limit={ @@ -198068,7 +198135,7 @@ return { [1]="minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence" } }, - [9046]={ + [9051]={ [1]={ [1]={ limit={ @@ -198097,7 +198164,7 @@ return { [1]="minion_commanded_skill_damage_+%" } }, - [9047]={ + [9052]={ [1]={ [1]={ limit={ @@ -198126,7 +198193,7 @@ return { [1]="minion_cooldown_recovery_+%_per_10_tribute" } }, - [9048]={ + [9053]={ [1]={ [1]={ limit={ @@ -198155,7 +198222,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [9049]={ + [9054]={ [1]={ [1]={ limit={ @@ -198184,7 +198251,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [9050]={ + [9055]={ [1]={ [1]={ limit={ @@ -198213,7 +198280,7 @@ return { [1]="minion_critical_strike_chance_+%_per_maximum_power_charge" } }, - [9051]={ + [9056]={ [1]={ [1]={ limit={ @@ -198229,7 +198296,7 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [9052]={ + [9057]={ [1]={ [1]={ limit={ @@ -198258,7 +198325,7 @@ return { [1]="minion_damage_+%_per_10_tribute" } }, - [9053]={ + [9058]={ [1]={ [1]={ limit={ @@ -198287,7 +198354,7 @@ return { [1]="minion_damage_+%_per_different_command_skills_used_in_last_15_seconds" } }, - [9054]={ + [9059]={ [1]={ [1]={ limit={ @@ -198312,7 +198379,7 @@ return { [1]="minion_damage_+%_per_rage" } }, - [9055]={ + [9060]={ [1]={ [1]={ limit={ @@ -198341,7 +198408,7 @@ return { [1]="minion_damage_+%_while_you_have_at_least_two_different_active_offerings" } }, - [9056]={ + [9061]={ [1]={ [1]={ limit={ @@ -198370,7 +198437,7 @@ return { [1]="minion_damage_against_ignited_enemies_+%" } }, - [9057]={ + [9062]={ [1]={ [1]={ limit={ @@ -198386,7 +198453,7 @@ return { [1]="minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30" } }, - [9058]={ + [9063]={ [1]={ [1]={ limit={ @@ -198415,7 +198482,7 @@ return { [1]="minion_damage_+%_if_enemy_hit_recently" } }, - [9059]={ + [9064]={ [1]={ [1]={ limit={ @@ -198444,7 +198511,7 @@ return { [1]="minion_damage_+%_vs_abyssal_monsters" } }, - [9060]={ + [9065]={ [1]={ [1]={ limit={ @@ -198473,7 +198540,7 @@ return { [1]="minion_damage_+%_while_affected_by_a_herald" } }, - [9061]={ + [9066]={ [1]={ [1]={ limit={ @@ -198489,7 +198556,7 @@ return { [1]="minion_damage_taken_%_recouped_as_their_life" } }, - [9062]={ + [9067]={ [1]={ [1]={ limit={ @@ -198518,7 +198585,7 @@ return { [1]="minion_damage_taken_+%" } }, - [9063]={ + [9068]={ [1]={ [1]={ limit={ @@ -198534,7 +198601,7 @@ return { [1]="minion_deal_no_non_cold_damage" } }, - [9064]={ + [9069]={ [1]={ [1]={ limit={ @@ -198559,7 +198626,7 @@ return { [1]="minion_demon_add_fury_charge_on_hit_%" } }, - [9065]={ + [9070]={ [1]={ [1]={ limit={ @@ -198575,7 +198642,7 @@ return { [1]="minion_demon_attack_speed_+%_per_fury_charge" } }, - [9066]={ + [9071]={ [1]={ [1]={ limit={ @@ -198591,7 +198658,7 @@ return { [1]="minion_demon_damage_+%_final_per_fury_charge" } }, - [9067]={ + [9072]={ [1]={ [1]={ limit={ @@ -198607,7 +198674,7 @@ return { [1]="minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range" } }, - [9068]={ + [9073]={ [1]={ [1]={ [1]={ @@ -198627,7 +198694,7 @@ return { [1]="minion_demon_life_loss_%_per_minute_per_fury_charge" } }, - [9069]={ + [9074]={ [1]={ [1]={ limit={ @@ -198643,7 +198710,7 @@ return { [1]="minion_demon_maximum_fury_charges" } }, - [9070]={ + [9075]={ [1]={ [1]={ limit={ @@ -198659,7 +198726,7 @@ return { [1]="minion_elemental_resistance_30%" } }, - [9071]={ + [9076]={ [1]={ [1]={ limit={ @@ -198688,7 +198755,7 @@ return { [1]="minion_evasion_rating_+%" } }, - [9072]={ + [9077]={ [1]={ [1]={ [1]={ @@ -198708,14 +198775,14 @@ return { [1]="minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%" } }, - [9073]={ + [9078]={ [1]={ }, stats={ [1]="minion_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9074]={ + [9079]={ [1]={ [1]={ limit={ @@ -198731,7 +198798,7 @@ return { [1]="minion_fire_damage_resistance_%" } }, - [9075]={ + [9080]={ [1]={ [1]={ limit={ @@ -198747,7 +198814,7 @@ return { [1]="minion_global_always_hit" } }, - [9076]={ + [9081]={ [1]={ [1]={ limit={ @@ -198772,7 +198839,7 @@ return { [1]="minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%" } }, - [9077]={ + [9082]={ [1]={ [1]={ limit={ @@ -198801,7 +198868,7 @@ return { [1]="minion_hit_damage_immobilisation_multiplier_+%" } }, - [9078]={ + [9083]={ [1]={ [1]={ limit={ @@ -198817,7 +198884,7 @@ return { [1]="minion_hit_damage_stun_multiplier_+%" } }, - [9079]={ + [9084]={ [1]={ [1]={ limit={ @@ -198833,7 +198900,7 @@ return { [1]="minion_life_increased_by_overcapped_fire_resistance" } }, - [9080]={ + [9085]={ [1]={ [1]={ [1]={ @@ -198853,7 +198920,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [9081]={ + [9086]={ [1]={ [1]={ limit={ @@ -198869,7 +198936,7 @@ return { [1]="minion_life_regeneration_rate_per_second" } }, - [9082]={ + [9087]={ [1]={ [1]={ limit={ @@ -198894,7 +198961,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [9083]={ + [9088]={ [1]={ [1]={ limit={ @@ -198910,7 +198977,7 @@ return { [1]="minion_malediction_on_hit" } }, - [9084]={ + [9089]={ [1]={ [1]={ limit={ @@ -198926,7 +198993,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [9085]={ + [9090]={ [1]={ [1]={ limit={ @@ -198955,7 +199022,7 @@ return { [1]="minion_melee_damage_+%" } }, - [9086]={ + [9091]={ [1]={ [1]={ limit={ @@ -198971,7 +199038,7 @@ return { [1]="minion_melee_splash" } }, - [9087]={ + [9092]={ [1]={ [1]={ limit={ @@ -198987,7 +199054,7 @@ return { [1]="minion_minimum_power_charges" } }, - [9088]={ + [9093]={ [1]={ [1]={ limit={ @@ -199016,7 +199083,7 @@ return { [1]="minion_movement_speed_+%_per_50_dex" } }, - [9089]={ + [9094]={ [1]={ [1]={ limit={ @@ -199045,7 +199112,7 @@ return { [1]="minion_movement_velocity_+%_for_each_herald_affecting_you" } }, - [9090]={ + [9095]={ [1]={ [1]={ limit={ @@ -199061,7 +199128,7 @@ return { [1]="minion_no_critical_strike_multiplier" } }, - [9091]={ + [9096]={ [1]={ [1]={ limit={ @@ -199086,7 +199153,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [9092]={ + [9097]={ [1]={ [1]={ limit={ @@ -199102,7 +199169,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_fire" } }, - [9093]={ + [9098]={ [1]={ [1]={ limit={ @@ -199118,7 +199185,7 @@ return { [1]="minion_physical_damage_%_to_gain_as_lightning" } }, - [9094]={ + [9099]={ [1]={ [1]={ limit={ @@ -199134,7 +199201,7 @@ return { [1]="minion_physical_hit_and_dot_damage_%_taken_as_lightning" } }, - [9095]={ + [9100]={ [1]={ [1]={ limit={ @@ -199163,7 +199230,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [9096]={ + [9101]={ [1]={ [1]={ limit={ @@ -199192,7 +199259,7 @@ return { [1]="minion_raging_spirit_maximum_life_+%" } }, - [9097]={ + [9102]={ [1]={ [1]={ [1]={ @@ -199212,7 +199279,7 @@ return { [1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage" } }, - [9098]={ + [9103]={ [1]={ [1]={ limit={ @@ -199228,7 +199295,7 @@ return { [1]="minion_recover_%_maximum_life_on_minion_death" } }, - [9099]={ + [9104]={ [1]={ [1]={ limit={ @@ -199257,7 +199324,7 @@ return { [1]="reservation_efficiency_+%_of_minion_skills" } }, - [9100]={ + [9105]={ [1]={ [1]={ limit={ @@ -199290,7 +199357,7 @@ return { [1]="minion_reservation_+%" } }, - [9101]={ + [9106]={ [1]={ [1]={ limit={ @@ -199306,7 +199373,7 @@ return { [1]="minion_resistances_equal_yours" } }, - [9102]={ + [9107]={ [1]={ [1]={ limit={ @@ -199335,7 +199402,7 @@ return { [1]="minion_resummon_speed_+%_if_all_active_minions_are_companions" } }, - [9103]={ + [9108]={ [1]={ [1]={ limit={ @@ -199364,7 +199431,7 @@ return { [1]="minion_resummon_speed_+%_if_you_have_at_least_100_tribute" } }, - [9104]={ + [9109]={ [1]={ [1]={ limit={ @@ -199393,7 +199460,7 @@ return { [1]="minion_resummon_speed_+%" } }, - [9105]={ + [9110]={ [1]={ [1]={ limit={ @@ -199426,7 +199493,7 @@ return { [1]="minion_skill_mana_cost_+%" } }, - [9106]={ + [9111]={ [1]={ [1]={ limit={ @@ -199442,7 +199509,7 @@ return { [1]="minion_skill_physical_damage_%_to_convert_to_fire" } }, - [9107]={ + [9112]={ [1]={ [1]={ limit={ @@ -199467,7 +199534,7 @@ return { [1]="minion_spells_chance_to_hinder_on_hit_%" } }, - [9108]={ + [9113]={ [1]={ [1]={ limit={ @@ -199496,7 +199563,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [9109]={ + [9114]={ [1]={ [1]={ limit={ @@ -199525,7 +199592,7 @@ return { [1]="minion_summoned_recently_attack_and_cast_speed_+%" } }, - [9110]={ + [9115]={ [1]={ [1]={ limit={ @@ -199541,7 +199608,7 @@ return { [1]="minion_summoned_recently_cannot_be_damaged" } }, - [9111]={ + [9116]={ [1]={ [1]={ limit={ @@ -199570,7 +199637,7 @@ return { [1]="minion_summoned_recently_movement_speed_+%" } }, - [9112]={ + [9117]={ [1]={ [1]={ limit={ @@ -199586,7 +199653,7 @@ return { [1]="minion_undead_minions_are_demons_instead" } }, - [9113]={ + [9118]={ [1]={ [1]={ limit={ @@ -199602,7 +199669,7 @@ return { [1]="minions_accuracy_is_equal_to_yours" } }, - [9114]={ + [9119]={ [1]={ [1]={ limit={ @@ -199618,7 +199685,7 @@ return { [1]="minions_are_gigantic" } }, - [9115]={ + [9120]={ [1]={ [1]={ limit={ @@ -199634,7 +199701,7 @@ return { [1]="minions_are_gigantic_if_have_revived_recently" } }, - [9116]={ + [9121]={ [1]={ [1]={ limit={ @@ -199650,7 +199717,7 @@ return { [1]="minions_attacks_overwhelm_%_physical_damage_reduction" } }, - [9117]={ + [9122]={ [1]={ [1]={ [1]={ @@ -199683,7 +199750,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [9118]={ + [9123]={ [1]={ [1]={ limit={ @@ -199699,7 +199766,7 @@ return { [1]="minions_cannot_taunt_enemies" } }, - [9119]={ + [9124]={ [1]={ [1]={ limit={ @@ -199724,7 +199791,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [9120]={ + [9125]={ [1]={ [1]={ limit={ @@ -199740,7 +199807,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [9121]={ + [9126]={ [1]={ [1]={ limit={ @@ -199756,7 +199823,7 @@ return { [1]="minions_gain_your_dexterity" } }, - [9122]={ + [9127]={ [1]={ [1]={ limit={ @@ -199772,7 +199839,7 @@ return { [1]="minions_gain_your_strength" } }, - [9123]={ + [9128]={ [1]={ [1]={ [1]={ @@ -199792,7 +199859,7 @@ return { [1]="minions_go_crazy_on_crit_ms" } }, - [9124]={ + [9129]={ [1]={ [1]={ limit={ @@ -199808,7 +199875,7 @@ return { [1]="minions_have_%_chance_to_inflict_wither_on_hit" } }, - [9125]={ + [9130]={ [1]={ [1]={ limit={ @@ -199824,7 +199891,7 @@ return { [1]="minions_have_+%_critical_strike_multiplier_per_wither_on_enemies" } }, - [9126]={ + [9131]={ [1]={ [1]={ limit={ @@ -199840,7 +199907,7 @@ return { [1]="minions_have_unholy_might" } }, - [9127]={ + [9132]={ [1]={ [1]={ limit={ @@ -199856,7 +199923,7 @@ return { [1]="minions_hits_can_only_kill_ignited_enemies" } }, - [9128]={ + [9133]={ [1]={ [1]={ limit={ @@ -199872,7 +199939,7 @@ return { [1]="minions_in_presence_have_onslaught_while_you_are_on_low_ward" } }, - [9129]={ + [9134]={ [1]={ [1]={ limit={ @@ -199901,7 +199968,7 @@ return { [1]="minions_lose_%_life_when_following_commands_per_10_tribute" } }, - [9130]={ + [9135]={ [1]={ [1]={ limit={ @@ -199917,7 +199984,7 @@ return { [1]="minions_penetrate_elemental_resistances_%_vs_cursed_enemies" } }, - [9131]={ + [9136]={ [1]={ [1]={ limit={ @@ -199933,7 +200000,7 @@ return { [1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [9132]={ + [9137]={ [1]={ [1]={ limit={ @@ -199949,7 +200016,7 @@ return { [1]="minions_recover_%_maximum_life_when_you_focus" } }, - [9133]={ + [9138]={ [1]={ [1]={ limit={ @@ -199982,7 +200049,7 @@ return { [1]="minions_reflected_damage_taken_+%" } }, - [9134]={ + [9139]={ [1]={ [1]={ limit={ @@ -199998,7 +200065,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [9135]={ + [9140]={ [1]={ [1]={ limit={ @@ -200027,7 +200094,7 @@ return { [1]="mirage_archer_duration_+%" } }, - [9136]={ + [9141]={ [1]={ [1]={ limit={ @@ -200043,7 +200110,7 @@ return { [1]="missing_life_%_gained_as_life_before_hit" } }, - [9137]={ + [9142]={ [1]={ [1]={ [1]={ @@ -200063,7 +200130,7 @@ return { [1]="mod_granted_passive_hash" } }, - [9138]={ + [9143]={ [1]={ [1]={ [1]={ @@ -200083,7 +200150,7 @@ return { [1]="mod_granted_passive_hash_2" } }, - [9139]={ + [9144]={ [1]={ [1]={ [1]={ @@ -200103,7 +200170,7 @@ return { [1]="mod_granted_passive_hash_3" } }, - [9140]={ + [9145]={ [1]={ [1]={ [1]={ @@ -200123,7 +200190,7 @@ return { [1]="mod_granted_passive_hash_4" } }, - [9141]={ + [9146]={ [1]={ [1]={ [1]={ @@ -200143,7 +200210,7 @@ return { [1]="mod_granted_passive_hash_essence" } }, - [9142]={ + [9147]={ [1]={ [1]={ limit={ @@ -200159,7 +200226,7 @@ return { [1]="modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value" } }, - [9143]={ + [9148]={ [1]={ [1]={ limit={ @@ -200175,7 +200242,7 @@ return { [1]="modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance" } }, - [9144]={ + [9149]={ [1]={ [1]={ limit={ @@ -200191,7 +200258,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [9145]={ + [9150]={ [1]={ [1]={ limit={ @@ -200220,7 +200287,7 @@ return { [1]="molten_shell_duration_+%" } }, - [9146]={ + [9151]={ [1]={ [1]={ limit={ @@ -200236,7 +200303,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [9147]={ + [9152]={ [1]={ [1]={ limit={ @@ -200252,7 +200319,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [9148]={ + [9153]={ [1]={ [1]={ limit={ @@ -200277,7 +200344,7 @@ return { [1]="molten_strike_chain_count_+" } }, - [9149]={ + [9154]={ [1]={ [1]={ limit={ @@ -200302,7 +200369,7 @@ return { [1]="primordial_altar_burning_ground_on_death_%" } }, - [9150]={ + [9155]={ [1]={ [1]={ limit={ @@ -200327,7 +200394,7 @@ return { [1]="primordial_altar_chilled_ground_on_death_%" } }, - [9151]={ + [9156]={ [1]={ [1]={ limit={ @@ -200343,7 +200410,7 @@ return { [1]="monsters_in_your_presence_have_additional_power_equal_to_their_gruelling_madness_stacks" } }, - [9152]={ + [9157]={ [1]={ [1]={ limit={ @@ -200372,7 +200439,7 @@ return { [1]="mortar_barrage_mine_damage_+%" } }, - [9153]={ + [9158]={ [1]={ [1]={ limit={ @@ -200397,7 +200464,7 @@ return { [1]="mortar_barrage_mine_num_projectiles" } }, - [9154]={ + [9159]={ [1]={ [1]={ [1]={ @@ -200434,7 +200501,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_halved_+%" } }, - [9155]={ + [9160]={ [1]={ [1]={ limit={ @@ -200463,7 +200530,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_+%" } }, - [9156]={ + [9161]={ [1]={ [1]={ limit={ @@ -200492,7 +200559,7 @@ return { [1]="movement_attack_skills_attack_speed_+%" } }, - [9157]={ + [9162]={ [1]={ [1]={ limit={ @@ -200521,7 +200588,7 @@ return { [1]="movement_skills_cooldown_speed_+%" } }, - [9158]={ + [9163]={ [1]={ [1]={ limit={ @@ -200550,7 +200617,7 @@ return { [1]="movement_skills_cooldown_speed_+%_while_affected_by_haste" } }, - [9159]={ + [9164]={ [1]={ [1]={ limit={ @@ -200566,7 +200633,7 @@ return { [1]="movement_skills_deal_no_physical_damage" } }, - [9160]={ + [9165]={ [1]={ [1]={ limit={ @@ -200582,7 +200649,7 @@ return { [1]="movement_speed_+%_if_10_green_supports_socketed" } }, - [9161]={ + [9166]={ [1]={ [1]={ limit={ @@ -200611,7 +200678,7 @@ return { [1]="movement_speed_+%_if_below_100_dexterity" } }, - [9162]={ + [9167]={ [1]={ [1]={ limit={ @@ -200640,7 +200707,7 @@ return { [1]="movement_speed_+%_if_pinned_enemy_recently" } }, - [9163]={ + [9168]={ [1]={ [1]={ limit={ @@ -200669,7 +200736,7 @@ return { [1]="movement_speed_+%_if_placed_trap_or_mine_recently" } }, - [9164]={ + [9169]={ [1]={ [1]={ limit={ @@ -200694,7 +200761,7 @@ return { [1]="movement_speed_+%_per_5_rage" } }, - [9165]={ + [9170]={ [1]={ [1]={ limit={ @@ -200710,7 +200777,7 @@ return { [1]="movement_speed_+%_per_nearby_corpse" } }, - [9166]={ + [9171]={ [1]={ [1]={ limit={ @@ -200739,7 +200806,7 @@ return { [1]="movement_speed_+%_while_affected_by_ailment" } }, - [9167]={ + [9172]={ [1]={ [1]={ limit={ @@ -200764,7 +200831,7 @@ return { [1]="movement_speed_+%_while_surrounded" } }, - [9168]={ + [9173]={ [1]={ [1]={ limit={ @@ -200793,7 +200860,7 @@ return { [1]="movement_speed_+%_while_you_have_two_linked_targets" } }, - [9169]={ + [9174]={ [1]={ [1]={ limit={ @@ -200809,7 +200876,7 @@ return { [1]="movement_speed_is_equal_to_highest_linked_party_member" } }, - [9170]={ + [9175]={ [1]={ [1]={ limit={ @@ -200825,7 +200892,7 @@ return { [1]="movement_speed_is_only_base_+1%_per_x_evasion_rating" } }, - [9171]={ + [9176]={ [1]={ [1]={ limit={ @@ -200841,7 +200908,7 @@ return { [1]="abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%" } }, - [9172]={ + [9177]={ [1]={ [1]={ limit={ @@ -200870,7 +200937,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_action" } }, - [9173]={ + [9178]={ [1]={ [1]={ limit={ @@ -200899,7 +200966,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_attacks" } }, - [9174]={ + [9179]={ [1]={ [1]={ limit={ @@ -200928,7 +200995,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_chaos_skills" } }, - [9175]={ + [9180]={ [1]={ [1]={ limit={ @@ -200957,7 +201024,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_cold_skills" } }, - [9176]={ + [9181]={ [1]={ [1]={ limit={ @@ -200986,7 +201053,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_fire_skills" } }, - [9177]={ + [9182]={ [1]={ [1]={ limit={ @@ -201015,7 +201082,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_lightning_skills" } }, - [9178]={ + [9183]={ [1]={ [1]={ limit={ @@ -201044,7 +201111,7 @@ return { [1]="movement_speed_penalty_+%_while_performing_spells" } }, - [9179]={ + [9184]={ [1]={ [1]={ limit={ @@ -201073,7 +201140,7 @@ return { [1]="movement_speed_+%_if_crit_recently" } }, - [9180]={ + [9185]={ [1]={ [1]={ limit={ @@ -201102,7 +201169,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_recently" } }, - [9181]={ + [9186]={ [1]={ [1]={ limit={ @@ -201131,7 +201198,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently" } }, - [9182]={ + [9187]={ [1]={ [1]={ limit={ @@ -201160,7 +201227,7 @@ return { [1]="movement_speed_+%_if_have_not_taken_damage_recently" } }, - [9183]={ + [9188]={ [1]={ [1]={ limit={ @@ -201189,7 +201256,7 @@ return { [1]="movement_speed_+%_if_have_used_a_vaal_skill_recently" } }, - [9184]={ + [9189]={ [1]={ [1]={ limit={ @@ -201218,7 +201285,7 @@ return { [1]="movement_speed_+%_if_used_a_mark_recently" } }, - [9185]={ + [9190]={ [1]={ [1]={ limit={ @@ -201247,7 +201314,7 @@ return { [1]="movement_speed_+%_per_chest_opened_recently" } }, - [9186]={ + [9191]={ [1]={ [1]={ limit={ @@ -201276,7 +201343,7 @@ return { [1]="movement_speed_+%_per_endurance_charge" } }, - [9187]={ + [9192]={ [1]={ [1]={ limit={ @@ -201292,7 +201359,7 @@ return { [1]="movement_speed_+%_per_nearby_enemy" } }, - [9188]={ + [9193]={ [1]={ [1]={ limit={ @@ -201321,7 +201388,7 @@ return { [1]="movement_speed_+%_per_poison_up_to_50%" } }, - [9189]={ + [9194]={ [1]={ [1]={ limit={ @@ -201350,7 +201417,7 @@ return { [1]="movement_speed_+%_per_power_charge" } }, - [9190]={ + [9195]={ [1]={ [1]={ limit={ @@ -201379,7 +201446,7 @@ return { [1]="movement_speed_+%_while_affected_by_grace" } }, - [9191]={ + [9196]={ [1]={ [1]={ limit={ @@ -201408,7 +201475,7 @@ return { [1]="movement_speed_+%_while_bleeding" } }, - [9192]={ + [9197]={ [1]={ [1]={ limit={ @@ -201437,7 +201504,7 @@ return { [1]="movement_speed_+%_while_dual_wielding" } }, - [9193]={ + [9198]={ [1]={ [1]={ limit={ @@ -201466,7 +201533,7 @@ return { [1]="movement_speed_+%_while_holding_shield" } }, - [9194]={ + [9199]={ [1]={ [1]={ limit={ @@ -201495,7 +201562,7 @@ return { [1]="movement_speed_+%_while_not_using_flask" } }, - [9195]={ + [9200]={ [1]={ [1]={ limit={ @@ -201511,7 +201578,7 @@ return { [1]="movement_speed_+%_while_off_hand_is_empty" } }, - [9196]={ + [9201]={ [1]={ [1]={ limit={ @@ -201540,7 +201607,7 @@ return { [1]="movement_speed_+%_while_on_burning_chilled_shocked_ground" } }, - [9197]={ + [9202]={ [1]={ [1]={ limit={ @@ -201569,7 +201636,7 @@ return { [1]="movement_speed_+%_while_on_burning_ground" } }, - [9198]={ + [9203]={ [1]={ [1]={ limit={ @@ -201598,7 +201665,7 @@ return { [1]="movement_speed_+%_while_poisoned" } }, - [9199]={ + [9204]={ [1]={ [1]={ limit={ @@ -201627,7 +201694,7 @@ return { [1]="movement_speed_+%_while_using_charm" } }, - [9200]={ + [9205]={ [1]={ [1]={ limit={ @@ -201656,7 +201723,7 @@ return { [1]="movement_speed_+%_while_you_have_cats_stealth" } }, - [9201]={ + [9206]={ [1]={ [1]={ limit={ @@ -201685,7 +201752,7 @@ return { [1]="movement_speed_+%_while_you_have_energy_shield" } }, - [9202]={ + [9207]={ [1]={ [1]={ limit={ @@ -201714,7 +201781,7 @@ return { [1]="movement_speed_+%_while_you_have_storm_barrier_support" } }, - [9203]={ + [9208]={ [1]={ [1]={ limit={ @@ -201743,7 +201810,7 @@ return { [1]="movement_velocity_+%_per_poison_stack" } }, - [9204]={ + [9209]={ [1]={ [1]={ limit={ @@ -201772,7 +201839,7 @@ return { [1]="movement_velocity_+%_with_magic_abyss_jewel_socketed" } }, - [9205]={ + [9210]={ [1]={ [1]={ limit={ @@ -201801,7 +201868,7 @@ return { [1]="movement_velocity_+%_per_totem" } }, - [9206]={ + [9211]={ [1]={ [1]={ limit={ @@ -201830,7 +201897,7 @@ return { [1]="movement_velocity_+%_while_at_maximum_power_charges" } }, - [9207]={ + [9212]={ [1]={ [1]={ limit={ @@ -201859,7 +201926,7 @@ return { [1]="movement_velocity_+%_while_chilled" } }, - [9208]={ + [9213]={ [1]={ [1]={ [1]={ @@ -201892,7 +201959,7 @@ return { [1]="multishot_empowered_central_projectile_drops_feathered_ground_for_duration_ms" } }, - [9209]={ + [9214]={ [1]={ [1]={ limit={ @@ -201908,7 +201975,7 @@ return { [1]="nearby_allies_have_onslaught" } }, - [9210]={ + [9215]={ [1]={ [1]={ limit={ @@ -201933,7 +202000,7 @@ return { [1]="nearby_enemies_all_exposure_%_while_phasing" } }, - [9211]={ + [9216]={ [1]={ [1]={ limit={ @@ -201949,7 +202016,7 @@ return { [1]="nearby_enemies_are_blinded_while_you_have_active_physical_aegis" } }, - [9212]={ + [9217]={ [1]={ [1]={ limit={ @@ -201965,7 +202032,7 @@ return { [1]="nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse" } }, - [9213]={ + [9218]={ [1]={ [1]={ limit={ @@ -201981,7 +202048,7 @@ return { [1]="nearby_enemies_are_crushed_while_you_have_X_rage" } }, - [9214]={ + [9219]={ [1]={ [1]={ limit={ @@ -201997,7 +202064,7 @@ return { [1]="nearby_enemies_are_intimidated_while_you_have_rage" } }, - [9215]={ + [9220]={ [1]={ [1]={ limit={ @@ -202013,7 +202080,7 @@ return { [1]="close_range_enemies_avoid_your_projectiles" } }, - [9216]={ + [9221]={ [1]={ [1]={ limit={ @@ -202029,7 +202096,7 @@ return { [1]="nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice" } }, - [9217]={ + [9222]={ [1]={ [1]={ limit={ @@ -202045,7 +202112,7 @@ return { [1]="nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash" } }, - [9218]={ + [9223]={ [1]={ [1]={ limit={ @@ -202061,7 +202128,7 @@ return { [1]="nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder" } }, - [9219]={ + [9224]={ [1]={ [1]={ limit={ @@ -202077,7 +202144,7 @@ return { [1]="nearby_party_members_max_endurance_charges_is_equal_to_yours" } }, - [9220]={ + [9225]={ [1]={ [1]={ limit={ @@ -202106,7 +202173,7 @@ return { [1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse" } }, - [9221]={ + [9226]={ [1]={ [1]={ limit={ @@ -202135,7 +202202,7 @@ return { [1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse" } }, - [9222]={ + [9227]={ [1]={ [1]={ limit={ @@ -202164,7 +202231,7 @@ return { [1]="necromancer_defensive_notable_minion_maximum_life_+%_final" } }, - [9223]={ + [9228]={ [1]={ [1]={ [1]={ @@ -202184,7 +202251,7 @@ return { [1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse" } }, - [9224]={ + [9229]={ [1]={ [1]={ [1]={ @@ -202204,7 +202271,7 @@ return { [1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse" } }, - [9225]={ + [9230]={ [1]={ [1]={ limit={ @@ -202220,7 +202287,7 @@ return { [1]="necrotic_footprints_from_item" } }, - [9226]={ + [9231]={ [1]={ [1]={ limit={ @@ -202236,7 +202303,7 @@ return { [1]="never_ignite_chill_freeze_shock" } }, - [9227]={ + [9232]={ [1]={ [1]={ limit={ @@ -202252,7 +202319,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [9228]={ + [9233]={ [1]={ [1]={ limit={ @@ -202268,7 +202335,7 @@ return { [1]="no_inherent_chance_to_block_while_dual_wielding" } }, - [9229]={ + [9234]={ [1]={ [1]={ limit={ @@ -202284,7 +202351,7 @@ return { [1]="no_inherent_mana_regeneration" } }, - [9230]={ + [9235]={ [1]={ [1]={ limit={ @@ -202300,7 +202367,7 @@ return { [1]="no_inherent_rage_loss" } }, - [9231]={ + [9236]={ [1]={ [1]={ limit={ @@ -202316,7 +202383,7 @@ return { [1]="no_mana_regeneration_if_not_crit_recently" } }, - [9232]={ + [9237]={ [1]={ [1]={ limit={ @@ -202332,7 +202399,7 @@ return { [1]="no_movement_penalty_while_shield_is_raised" } }, - [9233]={ + [9238]={ [1]={ [1]={ limit={ @@ -202348,7 +202415,7 @@ return { [1]="non_aura_hexes_gain_20%_effect_per_second" } }, - [9234]={ + [9239]={ [1]={ [1]={ limit={ @@ -202364,7 +202431,7 @@ return { [1]="non_channelling_attack_added_lightning_damage_%_maximum_mana" } }, - [9235]={ + [9240]={ [1]={ [1]={ limit={ @@ -202380,7 +202447,7 @@ return { [1]="non_channelling_spells_cost_x%_of_your_energy_shield" } }, - [9236]={ + [9241]={ [1]={ [1]={ limit={ @@ -202409,7 +202476,7 @@ return { [1]="non_channelling_spells_deal_x%_more_damage" } }, - [9237]={ + [9242]={ [1]={ [1]={ limit={ @@ -202434,7 +202501,7 @@ return { [1]="non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit" } }, - [9238]={ + [9243]={ [1]={ [1]={ limit={ @@ -202450,7 +202517,7 @@ return { [1]="non_critical_strikes_deal_no_damage" } }, - [9239]={ + [9244]={ [1]={ [1]={ limit={ @@ -202479,7 +202546,7 @@ return { [1]="non_curse_aura_effect_+%_per_10_devotion" } }, - [9240]={ + [9245]={ [1]={ [1]={ limit={ @@ -202495,7 +202562,7 @@ return { [1]="non_cursed_enemies_you_curse_are_blinded_for_4_seconds" } }, - [9241]={ + [9246]={ [1]={ [1]={ limit={ @@ -202511,7 +202578,7 @@ return { [1]="non_cursed_enemies_you_curse_gain_x_withered_stacks" } }, - [9242]={ + [9247]={ [1]={ [1]={ limit={ @@ -202540,7 +202607,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [9243]={ + [9248]={ [1]={ [1]={ limit={ @@ -202569,7 +202636,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self" } }, - [9244]={ + [9249]={ [1]={ [1]={ limit={ @@ -202598,7 +202665,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask" } }, - [9245]={ + [9250]={ [1]={ [1]={ limit={ @@ -202627,7 +202694,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_10_devotion" } }, - [9246]={ + [9251]={ [1]={ [1]={ limit={ @@ -202656,7 +202723,7 @@ return { [1]="non_damaging_ailment_effect_+%_with_critical_strikes" } }, - [9247]={ + [9252]={ [1]={ [1]={ limit={ @@ -202685,7 +202752,7 @@ return { [1]="non_damaging_ailments_as_though_damage_+%_final" } }, - [9248]={ + [9253]={ [1]={ [1]={ limit={ @@ -202701,7 +202768,7 @@ return { [1]="non_damaging_ailments_reflected_to_self" } }, - [9249]={ + [9254]={ [1]={ [1]={ limit={ @@ -202730,7 +202797,7 @@ return { [1]="non_piercing_projectiles_critical_strike_chance_+%" } }, - [9250]={ + [9255]={ [1]={ [1]={ limit={ @@ -202746,7 +202813,7 @@ return { [1]="non_projectile_chaining_lightning_skill_additional_chains" } }, - [9251]={ + [9256]={ [1]={ [1]={ limit={ @@ -202762,7 +202829,7 @@ return { [1]="non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost" } }, - [9252]={ + [9257]={ [1]={ [1]={ limit={ @@ -202771,14 +202838,30 @@ return { [2]="#" } }, - text="Gain 1% of damage as Fire damage per {0}% Chance to Block" + text="Gain {0}% of damage as Fire damage per 1% Chance to Block" } }, stats={ - [1]="non_skill_all_damage_1%_to_gain_as_fire_+_per_%_attack_block_chance" + [1]="non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance" } }, - [9253]={ + [9258]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of damage as Fire damage per 2% Chance to Block" + } + }, + stats={ + [1]="non_skill_all_damage_%_to_gain_as_fire_+_per_2%_attack_block_chance" + } + }, + [9259]={ [1]={ [1]={ limit={ @@ -202794,7 +202877,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed" } }, - [9254]={ + [9260]={ [1]={ [1]={ limit={ @@ -202810,7 +202893,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed" } }, - [9255]={ + [9261]={ [1]={ [1]={ limit={ @@ -202826,7 +202909,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed" } }, - [9256]={ + [9262]={ [1]={ [1]={ limit={ @@ -202842,7 +202925,7 @@ return { [1]="non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed" } }, - [9257]={ + [9263]={ [1]={ [1]={ limit={ @@ -202858,7 +202941,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion" } }, - [9258]={ + [9264]={ [1]={ [1]={ limit={ @@ -202874,7 +202957,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_while_missing_ward" } }, - [9259]={ + [9265]={ [1]={ [1]={ limit={ @@ -202890,7 +202973,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks" } }, - [9260]={ + [9266]={ [1]={ [1]={ limit={ @@ -202906,7 +202989,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_chaos_with_spells" } }, - [9261]={ + [9267]={ [1]={ [1]={ limit={ @@ -202922,7 +203005,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_if_youve_reverted_recently" } }, - [9262]={ + [9268]={ [1]={ [1]={ limit={ @@ -202938,7 +203021,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_missing_ward" } }, - [9263]={ + [9269]={ [1]={ [1]={ limit={ @@ -202954,7 +203037,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill" } }, - [9264]={ + [9270]={ [1]={ [1]={ limit={ @@ -202970,7 +203053,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_while_shapeshifted" } }, - [9265]={ + [9271]={ [1]={ [1]={ limit={ @@ -202986,7 +203069,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_with_empowered_attacks" } }, - [9266]={ + [9272]={ [1]={ [1]={ limit={ @@ -203002,7 +203085,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_if_youve_reverted_recently" } }, - [9267]={ + [9273]={ [1]={ [1]={ limit={ @@ -203018,7 +203101,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds" } }, - [9268]={ + [9274]={ [1]={ [1]={ limit={ @@ -203034,7 +203117,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_per_endurance_charge_consumed_recently" } }, - [9269]={ + [9275]={ [1]={ [1]={ limit={ @@ -203050,7 +203133,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_missing_ward" } }, - [9270]={ + [9276]={ [1]={ [1]={ limit={ @@ -203066,7 +203149,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn" } }, - [9271]={ + [9277]={ [1]={ [1]={ limit={ @@ -203082,7 +203165,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_fire_while_shapeshifted" } }, - [9272]={ + [9278]={ [1]={ [1]={ limit={ @@ -203098,7 +203181,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_if_youve_reverted_recently" } }, - [9273]={ + [9279]={ [1]={ [1]={ limit={ @@ -203114,7 +203197,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_per_50_ward_cost" } }, - [9274]={ + [9280]={ [1]={ [1]={ limit={ @@ -203130,7 +203213,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_missing_ward" } }, - [9275]={ + [9281]={ [1]={ [1]={ limit={ @@ -203146,7 +203229,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock" } }, - [9276]={ + [9282]={ [1]={ [1]={ limit={ @@ -203162,7 +203245,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_while_shapeshifted" } }, - [9277]={ + [9283]={ [1]={ [1]={ [1]={ @@ -203182,7 +203265,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_physical_per_10%_missing_mana_permyriad" } }, - [9278]={ + [9284]={ [1]={ [1]={ limit={ @@ -203198,7 +203281,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_random_element" } }, - [9279]={ + [9285]={ [1]={ [1]={ limit={ @@ -203214,7 +203297,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_random_element_per_socketed_rune" } }, - [9280]={ + [9286]={ [1]={ [1]={ limit={ @@ -203230,7 +203313,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted" } }, - [9281]={ + [9287]={ [1]={ [1]={ limit={ @@ -203246,7 +203329,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_random_element_with_attacks" } }, - [9282]={ + [9288]={ [1]={ [1]={ limit={ @@ -203262,7 +203345,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning" } }, - [9283]={ + [9289]={ [1]={ [1]={ limit={ @@ -203278,7 +203361,7 @@ return { [1]="non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks" } }, - [9284]={ + [9290]={ [1]={ [1]={ limit={ @@ -203294,7 +203377,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_cold" } }, - [9285]={ + [9291]={ [1]={ [1]={ limit={ @@ -203310,7 +203393,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_cold_if_cold_infusion_collected_last_8_seconds" } }, - [9286]={ + [9292]={ [1]={ [1]={ limit={ @@ -203326,7 +203409,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_fire" } }, - [9287]={ + [9293]={ [1]={ [1]={ limit={ @@ -203342,7 +203425,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_fire_if_fire_infusion_collected_last_8_seconds" } }, - [9288]={ + [9294]={ [1]={ [1]={ limit={ @@ -203358,7 +203441,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_lightning" } }, - [9289]={ + [9295]={ [1]={ [1]={ limit={ @@ -203374,7 +203457,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_gain_as_lightning_if_lightning_infusion_collected_last_8_seconds" } }, - [9290]={ + [9296]={ [1]={ [1]={ limit={ @@ -203390,7 +203473,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_chaos" } }, - [9291]={ + [9297]={ [1]={ [1]={ limit={ @@ -203406,7 +203489,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_cold" } }, - [9292]={ + [9298]={ [1]={ [1]={ limit={ @@ -203422,7 +203505,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_fire" } }, - [9293]={ + [9299]={ [1]={ [1]={ limit={ @@ -203438,7 +203521,7 @@ return { [1]="non_skill_base_elemental_damage_%_to_convert_to_lightning" } }, - [9294]={ + [9300]={ [1]={ [1]={ limit={ @@ -203454,7 +203537,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_cold" } }, - [9295]={ + [9301]={ [1]={ [1]={ limit={ @@ -203470,7 +203553,7 @@ return { [1]="non_skill_base_fire_damage_%_to_convert_to_lightning" } }, - [9296]={ + [9302]={ [1]={ [1]={ limit={ @@ -203486,7 +203569,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies" } }, - [9297]={ + [9303]={ [1]={ [1]={ limit={ @@ -203502,7 +203585,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies" } }, - [9298]={ + [9304]={ [1]={ [1]={ limit={ @@ -203518,7 +203601,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies" } }, - [9299]={ + [9305]={ [1]={ [1]={ limit={ @@ -203534,7 +203617,7 @@ return { [1]="non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies" } }, - [9300]={ + [9306]={ [1]={ [1]={ limit={ @@ -203550,7 +203633,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_chaos_per_level" } }, - [9301]={ + [9307]={ [1]={ [1]={ limit={ @@ -203566,7 +203649,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy" } }, - [9302]={ + [9308]={ [1]={ [1]={ limit={ @@ -203582,7 +203665,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies" } }, - [9303]={ + [9309]={ [1]={ [1]={ limit={ @@ -203598,7 +203681,7 @@ return { [1]="non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge" } }, - [9304]={ + [9310]={ [1]={ [1]={ limit={ @@ -203614,7 +203697,7 @@ return { [1]="non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge" } }, - [9305]={ + [9311]={ [1]={ [1]={ limit={ @@ -203630,7 +203713,7 @@ return { [1]="non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [9306]={ + [9312]={ [1]={ [1]={ limit={ @@ -203646,7 +203729,7 @@ return { [1]="non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge" } }, - [9307]={ + [9313]={ [1]={ [1]={ limit={ @@ -203662,7 +203745,7 @@ return { [1]="non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies" } }, - [9308]={ + [9314]={ [1]={ [1]={ limit={ @@ -203678,7 +203761,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped" } }, - [9309]={ + [9315]={ [1]={ [1]={ limit={ @@ -203694,7 +203777,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold" } }, - [9310]={ + [9316]={ [1]={ [1]={ limit={ @@ -203710,7 +203793,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred" } }, - [9311]={ + [9317]={ [1]={ [1]={ limit={ @@ -203726,7 +203809,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold" } }, - [9312]={ + [9318]={ [1]={ [1]={ limit={ @@ -203742,7 +203825,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger" } }, - [9313]={ + [9319]={ [1]={ [1]={ limit={ @@ -203758,7 +203841,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold" } }, - [9314]={ + [9320]={ [1]={ [1]={ limit={ @@ -203774,7 +203857,7 @@ return { [1]="non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath" } }, - [9315]={ + [9321]={ [1]={ [1]={ limit={ @@ -203790,7 +203873,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies" } }, - [9316]={ + [9322]={ [1]={ [1]={ limit={ @@ -203806,7 +203889,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge" } }, - [9317]={ + [9323]={ [1]={ [1]={ limit={ @@ -203822,7 +203905,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger" } }, - [9318]={ + [9324]={ [1]={ [1]={ limit={ @@ -203838,7 +203921,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently" } }, - [9319]={ + [9325]={ [1]={ [1]={ limit={ @@ -203854,7 +203937,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_fire_per_rage" } }, - [9320]={ + [9326]={ [1]={ [1]={ limit={ @@ -203870,7 +203953,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath" } }, - [9321]={ + [9327]={ [1]={ [1]={ limit={ @@ -203886,7 +203969,7 @@ return { [1]="non_skill_physical_damage_%_to_gain_as_random_element_while_ignited" } }, - [9322]={ + [9328]={ [1]={ [1]={ limit={ @@ -203902,7 +203985,7 @@ return { [1]="non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained" } }, - [9323]={ + [9329]={ [1]={ [1]={ limit={ @@ -203918,7 +204001,7 @@ return { [1]="non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain" } }, - [9324]={ + [9330]={ [1]={ [1]={ limit={ @@ -203934,7 +204017,7 @@ return { [1]="spells_gain_%_of_damage_as_extra_chaos_per_curse_on_target" } }, - [9325]={ + [9331]={ [1]={ [1]={ limit={ @@ -203950,7 +204033,7 @@ return { [1]="spells_gain_%_of_damage_as_extra_phys_per_curse_on_target" } }, - [9326]={ + [9332]={ [1]={ [1]={ limit={ @@ -203966,7 +204049,7 @@ return { [1]="non_skill_unarmed_damage_to_gain_as_fire_1%_per_X_intelligence" } }, - [9327]={ + [9333]={ [1]={ [1]={ limit={ @@ -203991,7 +204074,7 @@ return { [1]="non_travel_attack_skill_repeat_count" } }, - [9328]={ + [9334]={ [1]={ [1]={ limit={ @@ -204007,7 +204090,7 @@ return { [1]="non_unique_life_flasks_always_applied_with_no_instant_recovery_only_to_you" } }, - [9329]={ + [9335]={ [1]={ [1]={ limit={ @@ -204036,7 +204119,7 @@ return { [1]="normal_monster_dropped_item_quantity_+%" } }, - [9330]={ + [9336]={ [1]={ [1]={ limit={ @@ -204069,7 +204152,23 @@ return { [1]="notable_knockback_distance_+%_final_for_blocked_hits" } }, - [9331]={ + [9337]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Nova Skill Gems" + } + }, + stats={ + [1]="nova_skill_gem_level_+" + } + }, + [9338]={ [1]={ [1]={ limit={ @@ -204085,7 +204184,7 @@ return { [1]="nova_spells_cast_at_target_location" } }, - [9332]={ + [9339]={ [1]={ [1]={ limit={ @@ -204110,7 +204209,7 @@ return { [1]="num_additional_skill_slots" } }, - [9333]={ + [9340]={ [1]={ [1]={ limit={ @@ -204135,7 +204234,7 @@ return { [1]="num_cascade_aftershocks_every_third_slam" } }, - [9334]={ + [9341]={ [1]={ [1]={ limit={ @@ -204160,7 +204259,7 @@ return { [1]="num_charm_slots" } }, - [9335]={ + [9342]={ [1]={ [1]={ limit={ @@ -204185,7 +204284,7 @@ return { [1]="num_charm_slots_+_if_you_have_at_least_100_tribute" } }, - [9336]={ + [9343]={ [1]={ [1]={ limit={ @@ -204210,7 +204309,7 @@ return { [1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more" } }, - [9337]={ + [9344]={ [1]={ [1]={ limit={ @@ -204226,7 +204325,7 @@ return { [1]="number_of_additional_banners_allowed" } }, - [9338]={ + [9345]={ [1]={ [1]={ limit={ @@ -204242,7 +204341,7 @@ return { [1]="number_of_additional_chains_for_projectiles_while_phasing" } }, - [9339]={ + [9346]={ [1]={ [1]={ limit={ @@ -204258,7 +204357,7 @@ return { [1]="number_of_additional_chains_for_spell_projectiles" } }, - [9340]={ + [9347]={ [1]={ [1]={ limit={ @@ -204283,7 +204382,7 @@ return { [1]="number_of_additional_curses_allowed_while_affected_by_malevolence" } }, - [9341]={ + [9348]={ [1]={ [1]={ limit={ @@ -204308,7 +204407,7 @@ return { [1]="number_of_additional_curses_allowed_while_at_maximum_power_charges" } }, - [9342]={ + [9349]={ [1]={ [1]={ limit={ @@ -204333,7 +204432,7 @@ return { [1]="number_of_additional_ignites_allowed" } }, - [9343]={ + [9350]={ [1]={ [1]={ limit={ @@ -204358,7 +204457,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_dex" } }, - [9344]={ + [9351]={ [1]={ [1]={ limit={ @@ -204383,7 +204482,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_int" } }, - [9345]={ + [9352]={ [1]={ [1]={ limit={ @@ -204399,7 +204498,7 @@ return { [1]="number_of_additional_poison_stacks" } }, - [9346]={ + [9353]={ [1]={ [1]={ limit={ @@ -204415,7 +204514,7 @@ return { [1]="number_of_additional_poison_stacks_if_you_have_at_least_100_tribute" } }, - [9347]={ + [9354]={ [1]={ [1]={ limit={ @@ -204440,7 +204539,7 @@ return { [1]="number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw" } }, - [9348]={ + [9355]={ [1]={ [1]={ limit={ @@ -204465,7 +204564,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_been_hit_recently" } }, - [9349]={ + [9356]={ [1]={ [1]={ limit={ @@ -204490,7 +204589,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently" } }, - [9350]={ + [9357]={ [1]={ [1]={ limit={ @@ -204515,7 +204614,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [9351]={ + [9358]={ [1]={ [1]={ limit={ @@ -204531,7 +204630,7 @@ return { [1]="number_of_animated_weapons_allowed" } }, - [9352]={ + [9359]={ [1]={ [1]={ limit={ @@ -204547,7 +204646,7 @@ return { [1]="base_number_of_arbalists" } }, - [9353]={ + [9360]={ [1]={ [1]={ limit={ @@ -204563,7 +204662,7 @@ return { [1]="number_of_broken_faces" } }, - [9354]={ + [9361]={ [1]={ [1]={ limit={ @@ -204588,7 +204687,7 @@ return { [1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary" } }, - [9355]={ + [9362]={ [1]={ [1]={ limit={ @@ -204604,7 +204703,7 @@ return { [1]="number_of_golems_allowed_with_3_primordial_jewels" } }, - [9356]={ + [9363]={ [1]={ [1]={ limit={ @@ -204629,7 +204728,7 @@ return { [1]="number_of_poison_cloud_allowed" } }, - [9357]={ + [9364]={ [1]={ [1]={ limit={ @@ -204654,7 +204753,7 @@ return { [1]="number_of_projectiles_+%_final_from_skill" } }, - [9358]={ + [9365]={ [1]={ [1]={ limit={ @@ -204670,7 +204769,7 @@ return { [1]="number_of_raging_spirits_is_limited_to_3" } }, - [9359]={ + [9366]={ [1]={ [1]={ [1]={ @@ -204690,7 +204789,7 @@ return { [1]="number_of_skeletons_allowed_per_2_old" } }, - [9360]={ + [9367]={ [1]={ [1]={ limit={ @@ -204706,7 +204805,7 @@ return { [1]="number_of_support_ghosts_is_limited_to_3" } }, - [9361]={ + [9368]={ [1]={ [1]={ limit={ @@ -204731,7 +204830,7 @@ return { [1]="number_of_vine_arrow_pod_allowed" } }, - [9362]={ + [9369]={ [1]={ [1]={ limit={ @@ -204747,7 +204846,7 @@ return { [1]="number_of_zombies_allowed_+1_per_X_strength" } }, - [9363]={ + [9370]={ [1]={ [1]={ limit={ @@ -204776,7 +204875,7 @@ return { [1]="occultist_chaos_damage_+%_final" } }, - [9364]={ + [9371]={ [1]={ [1]={ limit={ @@ -204805,7 +204904,7 @@ return { [1]="occultist_cold_damage_+%_final" } }, - [9365]={ + [9372]={ [1]={ [1]={ limit={ @@ -204821,7 +204920,7 @@ return { [1]="off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword" } }, - [9366]={ + [9373]={ [1]={ [1]={ limit={ @@ -204850,7 +204949,7 @@ return { [1]="off_hand_attack_speed_+%_while_dual_wielding" } }, - [9367]={ + [9374]={ [1]={ [1]={ limit={ @@ -204879,7 +204978,7 @@ return { [1]="off_hand_attack_speed_+%_while_wielding_two_weapon_types" } }, - [9368]={ + [9375]={ [1]={ [1]={ limit={ @@ -204908,7 +205007,7 @@ return { [1]="off_hand_claw_mana_gain_on_hit" } }, - [9369]={ + [9376]={ [1]={ [1]={ [1]={ @@ -204928,7 +205027,7 @@ return { [1]="off_hand_critical_strike_chance_+_per_10_es_on_shield" } }, - [9370]={ + [9377]={ [1]={ [1]={ limit={ @@ -204944,7 +205043,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_10_es_on_shield" } }, - [9371]={ + [9378]={ [1]={ [1]={ limit={ @@ -204960,7 +205059,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100" } }, - [9372]={ + [9379]={ [1]={ [1]={ limit={ @@ -204989,7 +205088,7 @@ return { [1]="offering_area_of_effect_+%" } }, - [9373]={ + [9380]={ [1]={ [1]={ limit={ @@ -205018,7 +205117,7 @@ return { [1]="offering_duration_+%" } }, - [9374]={ + [9381]={ [1]={ [1]={ limit={ @@ -205047,7 +205146,7 @@ return { [1]="offering_life_+%" } }, - [9375]={ + [9382]={ [1]={ [1]={ limit={ @@ -205063,7 +205162,7 @@ return { [1]="offerings_cannot_be_damaged_if_created_recently" } }, - [9376]={ + [9383]={ [1]={ [1]={ limit={ @@ -205079,7 +205178,7 @@ return { [1]="on_banner_expiry_recover_%_of_required_glory" } }, - [9377]={ + [9384]={ [1]={ [1]={ limit={ @@ -205095,7 +205194,7 @@ return { [1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds" } }, - [9378]={ + [9385]={ [1]={ [1]={ limit={ @@ -205111,7 +205210,7 @@ return { [1]="on_casting_banner_recover_%_of_planted_banner_stages" } }, - [9379]={ + [9386]={ [1]={ [1]={ limit={ @@ -205127,7 +205226,7 @@ return { [1]="on_kill_effects_occur_twice" } }, - [9380]={ + [9387]={ [1]={ [1]={ limit={ @@ -205156,7 +205255,7 @@ return { [1]="one_handed_attack_ailment_chance_+%" } }, - [9381]={ + [9388]={ [1]={ [1]={ limit={ @@ -205172,7 +205271,7 @@ return { [1]="open_nearby_chests_on_cast_chance_%" } }, - [9382]={ + [9389]={ [1]={ [1]={ limit={ @@ -205188,7 +205287,7 @@ return { [1]="orb_of_storm_strike_rate_while_channelling_+%" } }, - [9383]={ + [9390]={ [1]={ [1]={ limit={ @@ -205204,7 +205303,7 @@ return { [1]="orb_of_storms_cast_speed_+%" } }, - [9384]={ + [9391]={ [1]={ [1]={ limit={ @@ -205220,7 +205319,7 @@ return { [1]="orb_skill_limit_+" } }, - [9385]={ + [9392]={ [1]={ [1]={ limit={ @@ -205245,7 +205344,7 @@ return { [1]="other_rite_maps_gain_ritual_additional_reward_rerolls" } }, - [9386]={ + [9393]={ [1]={ [1]={ limit={ @@ -205270,7 +205369,7 @@ return { [1]="other_rite_maps_gain_ritual_additional_wildwood_packs" } }, - [9387]={ + [9394]={ [1]={ [1]={ limit={ @@ -205295,7 +205394,7 @@ return { [1]="other_rite_maps_gain_ritual_number_of_free_rerolls" } }, - [9388]={ + [9395]={ [1]={ [1]={ limit={ @@ -205324,7 +205423,7 @@ return { [1]="other_rite_maps_gain_ritual_offered_rewards_amount_+%" } }, - [9389]={ + [9396]={ [1]={ [1]={ limit={ @@ -205353,7 +205452,7 @@ return { [1]="other_rite_maps_gain_ritual_rewards_reroll_cost_+%_final" } }, - [9390]={ + [9397]={ [1]={ [1]={ limit={ @@ -205382,7 +205481,7 @@ return { [1]="other_rite_maps_gain_ritual_tribute_+%" } }, - [9391]={ + [9398]={ [1]={ [1]={ limit={ @@ -205398,7 +205497,7 @@ return { [1]="overencumbrance_on_dodge_roll" } }, - [9392]={ + [9399]={ [1]={ [1]={ limit={ @@ -205414,7 +205513,7 @@ return { [1]="overkill_damage_%_as_physical_to_nearby_enemies" } }, - [9393]={ + [9400]={ [1]={ [1]={ limit={ @@ -205430,7 +205529,7 @@ return { [1]="override_block_chance_for_allies_in_your_presence" } }, - [9394]={ + [9401]={ [1]={ [1]={ [1]={ @@ -205450,7 +205549,7 @@ return { [1]="override_weapon_base_critical_strike_chance" } }, - [9395]={ + [9402]={ [1]={ [1]={ limit={ @@ -205479,7 +205578,7 @@ return { [1]="pantheon_abberath_ignite_duration_on_self_+%_final" } }, - [9396]={ + [9403]={ [1]={ [1]={ limit={ @@ -205508,7 +205607,7 @@ return { [1]="pantheon_shakari_self_poison_duration_+%_final" } }, - [9397]={ + [9404]={ [1]={ [1]={ limit={ @@ -205537,7 +205636,7 @@ return { [1]="parried_magnitude_+%" } }, - [9398]={ + [9405]={ [1]={ [1]={ limit={ @@ -205553,7 +205652,7 @@ return { [1]="parry_applies_spell_damage_debuff_instead" } }, - [9399]={ + [9406]={ [1]={ [1]={ limit={ @@ -205582,7 +205681,7 @@ return { [1]="parry_area_of_effect_+%" } }, - [9400]={ + [9407]={ [1]={ [1]={ limit={ @@ -205611,7 +205710,7 @@ return { [1]="parry_attack_speed_+%_if_youve_parried_recently" } }, - [9401]={ + [9408]={ [1]={ [1]={ limit={ @@ -205627,7 +205726,7 @@ return { [1]="parry_cannot_be_critically_hit_during_parry" } }, - [9402]={ + [9409]={ [1]={ [1]={ limit={ @@ -205656,7 +205755,7 @@ return { [1]="parry_damage_+%" } }, - [9403]={ + [9410]={ [1]={ [1]={ limit={ @@ -205685,7 +205784,7 @@ return { [1]="parry_evasion_rating_+%_during_parry" } }, - [9404]={ + [9411]={ [1]={ [1]={ limit={ @@ -205714,7 +205813,7 @@ return { [1]="parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently" } }, - [9405]={ + [9412]={ [1]={ [1]={ limit={ @@ -205743,7 +205842,7 @@ return { [1]="parry_hit_damage_stun_multiplier_+%" } }, - [9406]={ + [9413]={ [1]={ [1]={ limit={ @@ -205759,7 +205858,7 @@ return { [1]="parry_modifiers_to_stun_buildup_instead_apply_to_freeze" } }, - [9407]={ + [9414]={ [1]={ [1]={ limit={ @@ -205788,7 +205887,7 @@ return { [1]="parry_movement_speed_+%_if_youve_parried_recently" } }, - [9408]={ + [9415]={ [1]={ [1]={ limit={ @@ -205804,7 +205903,7 @@ return { [1]="parry_physical_damage_%_to_convert_to_cold" } }, - [9409]={ + [9416]={ [1]={ [1]={ limit={ @@ -205833,7 +205932,7 @@ return { [1]="parry_skill_effect_duration_+%_per_10_tribute" } }, - [9410]={ + [9417]={ [1]={ [1]={ limit={ @@ -205862,7 +205961,7 @@ return { [1]="parry_skill_effect_duration_+%" } }, - [9411]={ + [9418]={ [1]={ [1]={ limit={ @@ -205891,7 +205990,7 @@ return { [1]="parry_stun_threshold_+%_during_parry" } }, - [9412]={ + [9419]={ [1]={ [1]={ limit={ @@ -205920,7 +206019,7 @@ return { [1]="parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack" } }, - [9413]={ + [9420]={ [1]={ [1]={ limit={ @@ -205949,7 +206048,7 @@ return { [1]="parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack" } }, - [9414]={ + [9421]={ [1]={ [1]={ limit={ @@ -205974,7 +206073,7 @@ return { [1]="passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value" } }, - [9415]={ + [9422]={ [1]={ [1]={ limit={ @@ -205999,7 +206098,7 @@ return { [1]="passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value" } }, - [9416]={ + [9423]={ [1]={ [1]={ limit={ @@ -206028,7 +206127,7 @@ return { [1]="passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield" } }, - [9417]={ + [9424]={ [1]={ [1]={ limit={ @@ -206057,7 +206156,7 @@ return { [1]="passive_mastery_damage_taken_over_time_+%_final" } }, - [9418]={ + [9425]={ [1]={ [1]={ limit={ @@ -206073,7 +206172,7 @@ return { [1]="passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%" } }, - [9419]={ + [9426]={ [1]={ [1]={ limit={ @@ -206102,7 +206201,7 @@ return { [1]="passive_mastery_less_projectile_speed_+%_final" } }, - [9420]={ + [9427]={ [1]={ [1]={ limit={ @@ -206131,7 +206230,7 @@ return { [1]="passive_mastery_less_skill_effect_duration_+%_final" } }, - [9421]={ + [9428]={ [1]={ [1]={ limit={ @@ -206160,7 +206259,7 @@ return { [1]="passive_mastery_more_projectile_speed_+%_final" } }, - [9422]={ + [9429]={ [1]={ [1]={ limit={ @@ -206189,7 +206288,7 @@ return { [1]="passive_mastery_more_skill_effect_duration_+%_final" } }, - [9423]={ + [9430]={ [1]={ [1]={ limit={ @@ -206218,7 +206317,7 @@ return { [1]="passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield" } }, - [9424]={ + [9431]={ [1]={ [1]={ limit={ @@ -206243,7 +206342,7 @@ return { [1]="passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits" } }, - [9425]={ + [9432]={ [1]={ [1]={ limit={ @@ -206276,7 +206375,7 @@ return { [1]="passive_tree_damage_taken_+%_final_from_hindered_enemies" } }, - [9426]={ + [9433]={ [1]={ [1]={ limit={ @@ -206305,7 +206404,7 @@ return { [1]="passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies" } }, - [9427]={ + [9434]={ [1]={ [1]={ [1]={ @@ -206325,7 +206424,7 @@ return { [1]="pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x" } }, - [9428]={ + [9435]={ [1]={ [1]={ limit={ @@ -206354,7 +206453,7 @@ return { [1]="pathfinder_flask_amount_to_recover_+%_final" } }, - [9429]={ + [9436]={ [1]={ [1]={ limit={ @@ -206383,7 +206482,7 @@ return { [1]="pathfinder_flask_life_to_recover_+%_final" } }, - [9430]={ + [9437]={ [1]={ [1]={ limit={ @@ -206416,7 +206515,7 @@ return { [1]="pathfinder_poison_duration_+%_final" } }, - [9431]={ + [9438]={ [1]={ [1]={ limit={ @@ -206445,7 +206544,7 @@ return { [1]="penance_brand_area_of_effect_+%" } }, - [9432]={ + [9439]={ [1]={ [1]={ limit={ @@ -206474,7 +206573,7 @@ return { [1]="penance_brand_cast_speed_+%" } }, - [9433]={ + [9440]={ [1]={ [1]={ limit={ @@ -206503,7 +206602,7 @@ return { [1]="penance_brand_damage_+%" } }, - [9434]={ + [9441]={ [1]={ [1]={ limit={ @@ -206519,7 +206618,7 @@ return { [1]="penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you" } }, - [9435]={ + [9442]={ [1]={ [1]={ limit={ @@ -206535,7 +206634,7 @@ return { [1]="penetrate_elemental_resistance_%_while_shapeshifted" } }, - [9436]={ + [9443]={ [1]={ [1]={ limit={ @@ -206551,7 +206650,7 @@ return { [1]="perandus_double_number_of_coins_found" } }, - [9437]={ + [9444]={ [1]={ [1]={ limit={ @@ -206567,7 +206666,7 @@ return { [1]="%_chance_to_deal_150%_area_damage_+%_final" } }, - [9438]={ + [9445]={ [1]={ [1]={ limit={ @@ -206592,7 +206691,7 @@ return { [1]="%_chance_to_gain_endurance_charge_each_second_while_channelling" } }, - [9439]={ + [9446]={ [1]={ [1]={ limit={ @@ -206608,7 +206707,7 @@ return { [1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy" } }, - [9440]={ + [9447]={ [1]={ [1]={ limit={ @@ -206641,7 +206740,7 @@ return { [1]="%_number_of_raging_spirits_allowed" } }, - [9441]={ + [9448]={ [1]={ [1]={ limit={ @@ -206657,7 +206756,7 @@ return { [1]="%_of_physical_hit_damage_you_deal_causes_additional_blood_loss" } }, - [9442]={ + [9449]={ [1]={ [1]={ limit={ @@ -206686,7 +206785,7 @@ return { [1]="perfect_timing_window_ms_+%" } }, - [9443]={ + [9450]={ [1]={ [1]={ limit={ @@ -206702,7 +206801,7 @@ return { [1]="permanent_damage_+%_per_second_of_chill" } }, - [9444]={ + [9451]={ [1]={ [1]={ limit={ @@ -206718,7 +206817,7 @@ return { [1]="permanent_damage_+%_per_second_of_freeze" } }, - [9445]={ + [9452]={ [1]={ [1]={ limit={ @@ -206734,7 +206833,7 @@ return { [1]="permanent_fire_damage_+%_per_second_of_ignite_up_to_10%" } }, - [9446]={ + [9453]={ [1]={ [1]={ limit={ @@ -206750,7 +206849,7 @@ return { [1]="permanently_intimidate_enemy_on_block" } }, - [9447]={ + [9454]={ [1]={ [1]={ [1]={ @@ -206787,7 +206886,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_-2%_per_1" } }, - [9448]={ + [9455]={ [1]={ [1]={ limit={ @@ -206816,7 +206915,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_+%" } }, - [9449]={ + [9456]={ [1]={ [1]={ limit={ @@ -206849,7 +206948,7 @@ return { [1]="petrified_blood_reservation_+%" } }, - [9450]={ + [9457]={ [1]={ [1]={ limit={ @@ -206874,7 +206973,7 @@ return { [1]="phantasm_refresh_duration_on_hit_vs_unique_%_chance" } }, - [9451]={ + [9458]={ [1]={ [1]={ limit={ @@ -206899,7 +206998,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [9452]={ + [9459]={ [1]={ [1]={ limit={ @@ -206915,7 +207014,7 @@ return { [1]="phasing_if_blocked_recently" } }, - [9453]={ + [9460]={ [1]={ [1]={ limit={ @@ -206944,7 +207043,7 @@ return { [1]="phys_cascade_trap_cooldown_speed_+%" } }, - [9454]={ + [9461]={ [1]={ [1]={ limit={ @@ -206973,7 +207072,7 @@ return { [1]="phys_cascade_trap_damage_+%" } }, - [9455]={ + [9462]={ [1]={ [1]={ limit={ @@ -207002,7 +207101,7 @@ return { [1]="phys_cascade_trap_duration_+%" } }, - [9456]={ + [9463]={ [1]={ [1]={ limit={ @@ -207027,7 +207126,7 @@ return { [1]="phys_cascade_trap_number_of_additional_cascades" } }, - [9457]={ + [9464]={ [1]={ [1]={ limit={ @@ -207056,7 +207155,7 @@ return { [1]="physical_and_chaos_damage_taken_+%_final_while_not_unhinged" } }, - [9458]={ + [9465]={ [1]={ [1]={ limit={ @@ -207072,7 +207171,7 @@ return { [1]="physical_damage_%_to_gain_as_fire_vs_heavy_stunned" } }, - [9459]={ + [9466]={ [1]={ [1]={ limit={ @@ -207088,7 +207187,7 @@ return { [1]="physical_damage_%_to_gain_as_lightning_vs_electrocuted" } }, - [9460]={ + [9467]={ [1]={ [1]={ limit={ @@ -207104,7 +207203,7 @@ return { [1]="physical_damage_+%_per_explicit_map_mod_affecting_area" } }, - [9461]={ + [9468]={ [1]={ [1]={ limit={ @@ -207133,7 +207232,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_blood" } }, - [9462]={ + [9469]={ [1]={ [1]={ limit={ @@ -207162,7 +207261,7 @@ return { [1]="physical_damage_+%_while_shapeshifted" } }, - [9463]={ + [9470]={ [1]={ [1]={ limit={ @@ -207191,7 +207290,7 @@ return { [1]="physical_damage_over_time_taken_+%_while_moving" } }, - [9464]={ + [9471]={ [1]={ [1]={ limit={ @@ -207220,7 +207319,7 @@ return { [1]="physical_damage_+%_if_skill_costs_life" } }, - [9465]={ + [9472]={ [1]={ [1]={ limit={ @@ -207249,7 +207348,7 @@ return { [1]="physical_damage_+%_per_10_rage" } }, - [9466]={ + [9473]={ [1]={ [1]={ limit={ @@ -207278,7 +207377,7 @@ return { [1]="physical_damage_+%_vs_ignited_enemies" } }, - [9467]={ + [9474]={ [1]={ [1]={ limit={ @@ -207307,7 +207406,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_purity" } }, - [9468]={ + [9475]={ [1]={ [1]={ limit={ @@ -207336,7 +207435,7 @@ return { [1]="physical_damage_+%_with_axes_swords" } }, - [9469]={ + [9476]={ [1]={ [1]={ limit={ @@ -207352,7 +207451,7 @@ return { [1]="physical_damage_prevented_recouped_as_life_%" } }, - [9470]={ + [9477]={ [1]={ [1]={ limit={ @@ -207368,7 +207467,7 @@ return { [1]="physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute" } }, - [9471]={ + [9478]={ [1]={ [1]={ limit={ @@ -207384,7 +207483,7 @@ return { [1]="physical_damage_reduction_%_at_devotion_threshold" } }, - [9472]={ + [9479]={ [1]={ [1]={ limit={ @@ -207400,7 +207499,7 @@ return { [1]="physical_damage_reduction_percent_per_frenzy_charge" } }, - [9473]={ + [9480]={ [1]={ [1]={ limit={ @@ -207416,7 +207515,7 @@ return { [1]="physical_damage_reduction_%_per_hit_you_have_taken_recently" } }, - [9474]={ + [9481]={ [1]={ [1]={ limit={ @@ -207432,7 +207531,7 @@ return { [1]="physical_damage_reduction_percent_per_power_charge" } }, - [9475]={ + [9482]={ [1]={ [1]={ limit={ @@ -207448,7 +207547,7 @@ return { [1]="physical_damage_reduction_%_while_affected_by_herald_of_purity" } }, - [9476]={ + [9483]={ [1]={ [1]={ limit={ @@ -207477,7 +207576,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_10_tribute" } }, - [9477]={ + [9484]={ [1]={ [1]={ limit={ @@ -207493,7 +207592,7 @@ return { [1]="physical_damage_reduction_rating_during_soul_gain_prevention" } }, - [9478]={ + [9485]={ [1]={ [1]={ limit={ @@ -207509,7 +207608,7 @@ return { [1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently" } }, - [9479]={ + [9486]={ [1]={ [1]={ limit={ @@ -207525,7 +207624,7 @@ return { [1]="physical_damage_reduction_rating_per_endurance_charge" } }, - [9480]={ + [9487]={ [1]={ [1]={ limit={ @@ -207541,7 +207640,7 @@ return { [1]="physical_damage_reduction_%_if_only_one_enemy_nearby" } }, - [9481]={ + [9488]={ [1]={ [1]={ limit={ @@ -207557,7 +207656,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_endurance_charge" } }, - [9482]={ + [9489]={ [1]={ [1]={ limit={ @@ -207573,7 +207672,7 @@ return { [1]="physical_damage_reduction_%_per_nearby_enemy" } }, - [9483]={ + [9490]={ [1]={ [1]={ limit={ @@ -207602,7 +207701,7 @@ return { [1]="physical_damage_taken_+%_from_hits" } }, - [9484]={ + [9491]={ [1]={ [1]={ limit={ @@ -207618,7 +207717,7 @@ return { [1]="physical_damage_taken_recouped_as_life_%" } }, - [9485]={ + [9492]={ [1]={ [1]={ limit={ @@ -207647,7 +207746,7 @@ return { [1]="physical_damage_with_attack_skills_+%" } }, - [9486]={ + [9493]={ [1]={ [1]={ limit={ @@ -207676,7 +207775,7 @@ return { [1]="physical_damage_with_spell_skills_+%" } }, - [9487]={ + [9494]={ [1]={ [1]={ limit={ @@ -207692,7 +207791,7 @@ return { [1]="physical_dot_multiplier_+_if_crit_recently" } }, - [9488]={ + [9495]={ [1]={ [1]={ limit={ @@ -207708,7 +207807,7 @@ return { [1]="physical_dot_multiplier_+_if_spent_life_recently" } }, - [9489]={ + [9496]={ [1]={ [1]={ limit={ @@ -207737,7 +207836,7 @@ return { [1]="physical_dot_multiplier_+_while_wielding_axes_swords" } }, - [9490]={ + [9497]={ [1]={ [1]={ limit={ @@ -207770,7 +207869,7 @@ return { [1]="physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%" } }, - [9491]={ + [9498]={ [1]={ [1]={ limit={ @@ -207786,7 +207885,7 @@ return { [1]="physical_spell_damage_can_pin_on_critical_hit" } }, - [9492]={ + [9499]={ [1]={ [1]={ limit={ @@ -207815,7 +207914,7 @@ return { [1]="piercing_projectiles_critical_strike_chance_+%" } }, - [9493]={ + [9500]={ [1]={ [1]={ limit={ @@ -207831,7 +207930,7 @@ return { [1]="pin_almost_pinned_enemies" } }, - [9494]={ + [9501]={ [1]={ [1]={ limit={ @@ -207860,7 +207959,7 @@ return { [1]="pin_duration_+%" } }, - [9495]={ + [9502]={ [1]={ [1]={ limit={ @@ -207876,7 +207975,7 @@ return { [1]="pin_stops_enemies" } }, - [9496]={ + [9503]={ [1]={ [1]={ limit={ @@ -207892,7 +207991,7 @@ return { [1]="pinned_enemies_cannot_crit" } }, - [9497]={ + [9504]={ [1]={ [1]={ limit={ @@ -207908,7 +208007,7 @@ return { [1]="pinned_enemies_cannot_evade_your_attacks" } }, - [9498]={ + [9505]={ [1]={ [1]={ limit={ @@ -207937,7 +208036,7 @@ return { [1]="placed_banner_attack_damage_+%" } }, - [9499]={ + [9506]={ [1]={ [1]={ limit={ @@ -207966,7 +208065,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [9500]={ + [9507]={ [1]={ [1]={ limit={ @@ -207995,7 +208094,7 @@ return { [1]="plague_bearer_maximum_stored_poison_damage_+%" } }, - [9501]={ + [9508]={ [1]={ [1]={ limit={ @@ -208024,7 +208123,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [9502]={ + [9509]={ [1]={ [1]={ limit={ @@ -208053,7 +208152,7 @@ return { [1]="plague_bearer_poison_effect_+%_while_infecting" } }, - [9503]={ + [9510]={ [1]={ [1]={ limit={ @@ -208082,7 +208181,7 @@ return { [1]="plant_skill_armour_break_amount_+%_when_wet" } }, - [9504]={ + [9511]={ [1]={ [1]={ limit={ @@ -208111,7 +208210,7 @@ return { [1]="plant_skill_damage_+%" } }, - [9505]={ + [9512]={ [1]={ [1]={ limit={ @@ -208140,7 +208239,23 @@ return { [1]="plant_skill_effect_duration_+%" } }, - [9506]={ + [9513]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Plant Skill Gems" + } + }, + stats={ + [1]="plant_skill_gem_level_+" + } + }, + [9514]={ [1]={ [1]={ limit={ @@ -208156,7 +208271,7 @@ return { [1]="player_can_be_touched_by_tormented_spirits" } }, - [9507]={ + [9515]={ [1]={ [1]={ limit={ @@ -208172,7 +208287,7 @@ return { [1]="poison_as_though_dealing_X_damage_on_block" } }, - [9508]={ + [9516]={ [1]={ [1]={ limit={ @@ -208201,7 +208316,7 @@ return { [1]="poison_chance_+%" } }, - [9509]={ + [9517]={ [1]={ [1]={ limit={ @@ -208230,7 +208345,7 @@ return { [1]="poison_duration_+%_against_slowed_enemies" } }, - [9510]={ + [9518]={ [1]={ [1]={ limit={ @@ -208259,7 +208374,7 @@ return { [1]="poison_duration_+%_if_consumed_frenzy_charge_recently" } }, - [9511]={ + [9519]={ [1]={ [1]={ limit={ @@ -208288,7 +208403,7 @@ return { [1]="poison_duration_+%_per_poison_applied_recently" } }, - [9512]={ + [9520]={ [1]={ [1]={ limit={ @@ -208317,7 +208432,7 @@ return { [1]="poison_duration_+%_per_power_charge" } }, - [9513]={ + [9521]={ [1]={ [1]={ limit={ @@ -208346,7 +208461,7 @@ return { [1]="poison_duration_+%_with_over_150_intelligence" } }, - [9514]={ + [9522]={ [1]={ [1]={ limit={ @@ -208375,7 +208490,7 @@ return { [1]="poison_effect_+%_vs_non_poisoned_enemies" } }, - [9515]={ + [9523]={ [1]={ [1]={ limit={ @@ -208391,7 +208506,7 @@ return { [1]="poison_effect_+100%_final_chance_during_flask_effect" } }, - [9516]={ + [9524]={ [1]={ [1]={ limit={ @@ -208420,7 +208535,7 @@ return { [1]="base_poison_effect_+%" } }, - [9517]={ + [9525]={ [1]={ [1]={ limit={ @@ -208449,7 +208564,7 @@ return { [1]="poison_effect_+%_per_frenzy_charge" } }, - [9518]={ + [9526]={ [1]={ [1]={ limit={ @@ -208478,7 +208593,7 @@ return { [1]="poison_effect_+%_vs_bleeding_enemies" } }, - [9519]={ + [9527]={ [1]={ [1]={ limit={ @@ -208507,7 +208622,7 @@ return { [1]="poison_effect_+%_with_spells" } }, - [9520]={ + [9528]={ [1]={ [1]={ limit={ @@ -208523,7 +208638,7 @@ return { [1]="poison_on_critical_strike" } }, - [9521]={ + [9529]={ [1]={ [1]={ limit={ @@ -208539,7 +208654,7 @@ return { [1]="poison_reflected_to_self" } }, - [9522]={ + [9530]={ [1]={ [1]={ limit={ @@ -208572,7 +208687,7 @@ return { [1]="poison_time_passed_+%" } }, - [9523]={ + [9531]={ [1]={ [1]={ limit={ @@ -208601,7 +208716,7 @@ return { [1]="poisonous_concoction_damage_+%" } }, - [9524]={ + [9532]={ [1]={ [1]={ limit={ @@ -208630,7 +208745,7 @@ return { [1]="poisonous_concoction_flask_charges_consumed_+%" } }, - [9525]={ + [9533]={ [1]={ [1]={ limit={ @@ -208659,7 +208774,7 @@ return { [1]="poisonous_concoction_skill_area_of_effect_+%" } }, - [9526]={ + [9534]={ [1]={ [1]={ limit={ @@ -208675,7 +208790,7 @@ return { [1]="poisons_you_inflict_can_stack_infintely" } }, - [9527]={ + [9535]={ [1]={ [1]={ [1]={ @@ -208695,7 +208810,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [9528]={ + [9536]={ [1]={ [1]={ limit={ @@ -208724,7 +208839,7 @@ return { [1]="power_charge_duration_+%_final" } }, - [9529]={ + [9537]={ [1]={ [1]={ limit={ @@ -208740,7 +208855,7 @@ return { [1]="power_charge_on_kill_percent_chance_while_holding_shield" } }, - [9530]={ + [9538]={ [1]={ [1]={ limit={ @@ -208756,7 +208871,7 @@ return { [1]="power_charge_on_non_critical_strike_%_chance_with_claws_daggers" } }, - [9531]={ + [9539]={ [1]={ [1]={ limit={ @@ -208781,7 +208896,7 @@ return { [1]="power_siphon_number_of_additional_projectiles" } }, - [9532]={ + [9540]={ [1]={ [1]={ [1]={ @@ -208818,7 +208933,7 @@ return { [1]="precision_mana_reservation_efficiency_-2%_per_1" } }, - [9533]={ + [9541]={ [1]={ [1]={ limit={ @@ -208834,7 +208949,7 @@ return { [1]="precision_mana_reservation_efficiency_+100%" } }, - [9534]={ + [9542]={ [1]={ [1]={ limit={ @@ -208863,7 +208978,7 @@ return { [1]="precision_mana_reservation_efficiency_+%" } }, - [9535]={ + [9543]={ [1]={ [1]={ limit={ @@ -208879,7 +208994,7 @@ return { [1]="precision_mana_reservation_-50%_final" } }, - [9536]={ + [9544]={ [1]={ [1]={ limit={ @@ -208908,7 +209023,7 @@ return { [1]="precision_mana_reservation_+%" } }, - [9537]={ + [9545]={ [1]={ [1]={ limit={ @@ -208924,7 +209039,7 @@ return { [1]="precision_reserves_no_mana" } }, - [9538]={ + [9546]={ [1]={ [1]={ limit={ @@ -208953,7 +209068,7 @@ return { [1]="presence_area_+%_per_10_tribute" } }, - [9539]={ + [9547]={ [1]={ [1]={ limit={ @@ -208978,7 +209093,7 @@ return { [1]="prevent_projectile_chaining_%_chance" } }, - [9540]={ + [9548]={ [1]={ [1]={ limit={ @@ -209007,7 +209122,7 @@ return { [1]="pride_aura_effect_+%" } }, - [9541]={ + [9549]={ [1]={ [1]={ limit={ @@ -209023,7 +209138,7 @@ return { [1]="pride_chance_to_deal_double_damage_%" } }, - [9542]={ + [9550]={ [1]={ [1]={ limit={ @@ -209048,7 +209163,7 @@ return { [1]="pride_chance_to_impale_with_attacks_%" } }, - [9543]={ + [9551]={ [1]={ [1]={ limit={ @@ -209064,7 +209179,7 @@ return { [1]="pride_intimidate_enemy_for_4_seconds_on_hit" } }, - [9544]={ + [9552]={ [1]={ [1]={ [1]={ @@ -209101,7 +209216,7 @@ return { [1]="pride_mana_reservation_efficiency_-2%_per_1" } }, - [9545]={ + [9553]={ [1]={ [1]={ limit={ @@ -209130,7 +209245,7 @@ return { [1]="pride_mana_reservation_efficiency_+%" } }, - [9546]={ + [9554]={ [1]={ [1]={ limit={ @@ -209163,7 +209278,7 @@ return { [1]="pride_mana_reservation_+%" } }, - [9547]={ + [9555]={ [1]={ [1]={ limit={ @@ -209192,7 +209307,7 @@ return { [1]="pride_physical_damage_+%" } }, - [9548]={ + [9556]={ [1]={ [1]={ limit={ @@ -209208,7 +209323,7 @@ return { [1]="pride_reserves_no_mana" } }, - [9549]={ + [9557]={ [1]={ [1]={ limit={ @@ -209224,7 +209339,7 @@ return { [1]="pride_your_impaled_debuff_lasts_+_additional_hits" } }, - [9550]={ + [9558]={ [1]={ [1]={ limit={ @@ -209253,7 +209368,7 @@ return { [1]="primalist_charm_charges_gained_+%_final" } }, - [9551]={ + [9559]={ [1]={ [1]={ limit={ @@ -209282,7 +209397,7 @@ return { [1]="prismatic_rain_beam_frequency_+%" } }, - [9552]={ + [9560]={ [1]={ [1]={ limit={ @@ -209298,7 +209413,7 @@ return { [1]="profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence" } }, - [9553]={ + [9561]={ [1]={ [1]={ limit={ @@ -209327,7 +209442,7 @@ return { [1]="projectile_ailment_chance_+%" } }, - [9554]={ + [9562]={ [1]={ [1]={ limit={ @@ -209343,7 +209458,7 @@ return { [1]="projectile_all_damage_%_to_gain_as_instilling_type" } }, - [9555]={ + [9563]={ [1]={ [1]={ limit={ @@ -209372,7 +209487,7 @@ return { [1]="projectile_attack_damage_+%_during_flask_effect" } }, - [9556]={ + [9564]={ [1]={ [1]={ limit={ @@ -209401,7 +209516,7 @@ return { [1]="projectile_attack_damage_+%_with_claw_or_dagger" } }, - [9557]={ + [9565]={ [1]={ [1]={ limit={ @@ -209430,7 +209545,7 @@ return { [1]="projectile_attack_range_+%" } }, - [9558]={ + [9566]={ [1]={ [1]={ limit={ @@ -209446,7 +209561,7 @@ return { [1]="projectile_attack_skill_critical_strike_multiplier_+" } }, - [9559]={ + [9567]={ [1]={ [1]={ limit={ @@ -209471,7 +209586,7 @@ return { [1]="projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving" } }, - [9560]={ + [9568]={ [1]={ [1]={ limit={ @@ -209487,7 +209602,7 @@ return { [1]="projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%" } }, - [9561]={ + [9569]={ [1]={ [1]={ limit={ @@ -209503,7 +209618,7 @@ return { [1]="projectile_chance_to_chain_1_extra_time_from_terrain_%" } }, - [9562]={ + [9570]={ [1]={ [1]={ limit={ @@ -209528,7 +209643,7 @@ return { [1]="projectile_chance_to_fork_%" } }, - [9563]={ + [9571]={ [1]={ [1]={ limit={ @@ -209544,7 +209659,7 @@ return { [1]="projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player" } }, - [9564]={ + [9572]={ [1]={ [1]={ limit={ @@ -209573,7 +209688,7 @@ return { [1]="projectile_damage_+%_against_heavy_stunned_enemies" } }, - [9565]={ + [9573]={ [1]={ [1]={ limit={ @@ -209602,7 +209717,7 @@ return { [1]="projectile_damage_+%_if_youve_dealt_melee_hit_recently" } }, - [9566]={ + [9574]={ [1]={ [1]={ limit={ @@ -209631,7 +209746,7 @@ return { [1]="projectile_damage_+%_vs_enemies_further_than_6m_distance" } }, - [9567]={ + [9575]={ [1]={ [1]={ limit={ @@ -209660,7 +209775,7 @@ return { [1]="projectile_damage_+%_vs_enemies_within_2m_distance" } }, - [9568]={ + [9576]={ [1]={ [1]={ limit={ @@ -209689,7 +209804,7 @@ return { [1]="projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you" } }, - [9569]={ + [9577]={ [1]={ [1]={ limit={ @@ -209718,7 +209833,7 @@ return { [1]="projectile_damage_+%_max_before_distance_increase" } }, - [9570]={ + [9578]={ [1]={ [1]={ limit={ @@ -209734,7 +209849,7 @@ return { [1]="projectile_damage_+%_per_16_dexterity" } }, - [9571]={ + [9579]={ [1]={ [1]={ limit={ @@ -209750,7 +209865,7 @@ return { [1]="projectile_damage_+%_per_chain" } }, - [9572]={ + [9580]={ [1]={ [1]={ limit={ @@ -209766,7 +209881,7 @@ return { [1]="projectile_damage_+%_per_pierced_enemy" } }, - [9573]={ + [9581]={ [1]={ [1]={ limit={ @@ -209795,7 +209910,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [9574]={ + [9582]={ [1]={ [1]={ limit={ @@ -209824,7 +209939,7 @@ return { [1]="projectile_damage_+%_vs_chained_enemy" } }, - [9575]={ + [9583]={ [1]={ [1]={ limit={ @@ -209853,7 +209968,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [9576]={ + [9584]={ [1]={ [1]={ limit={ @@ -209869,7 +209984,7 @@ return { [1]="projectile_daze_chance_%_vs_enemies_further_than_6m" } }, - [9577]={ + [9585]={ [1]={ [1]={ limit={ @@ -209898,7 +210013,7 @@ return { [1]="projectile_hit_damage_stun_multiplier_+%" } }, - [9578]={ + [9586]={ [1]={ [1]={ limit={ @@ -209914,7 +210029,7 @@ return { [1]="projectile_number_to_split" } }, - [9579]={ + [9587]={ [1]={ [1]={ limit={ @@ -209943,7 +210058,7 @@ return { [1]="projectile_speed_+%_with_daggers" } }, - [9580]={ + [9588]={ [1]={ [1]={ [1]={ @@ -209963,7 +210078,7 @@ return { [1]="projectile_spell_cooldown_modifier_ms" } }, - [9581]={ + [9589]={ [1]={ [1]={ limit={ @@ -209979,7 +210094,7 @@ return { [1]="projectiles_always_pierce_you" } }, - [9582]={ + [9590]={ [1]={ [1]={ limit={ @@ -209995,7 +210110,7 @@ return { [1]="projectiles_crit_chance_+%_for_each_time_they_have_pierced" } }, - [9583]={ + [9591]={ [1]={ [1]={ limit={ @@ -210020,7 +210135,7 @@ return { [1]="projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently" } }, - [9584]={ + [9592]={ [1]={ [1]={ limit={ @@ -210036,7 +210151,7 @@ return { [1]="projectiles_from_spells_cannot_pierce" } }, - [9585]={ + [9593]={ [1]={ [1]={ limit={ @@ -210052,7 +210167,7 @@ return { [1]="projectiles_from_spells_fork" } }, - [9586]={ + [9594]={ [1]={ [1]={ limit={ @@ -210081,7 +210196,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_10_stat_value" } }, - [9587]={ + [9595]={ [1]={ [1]={ limit={ @@ -210110,7 +210225,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_15_stat_value" } }, - [9588]={ + [9596]={ [1]={ [1]={ limit={ @@ -210126,7 +210241,7 @@ return { [1]="projectiles_pierce_all_nearby_targets" } }, - [9589]={ + [9597]={ [1]={ [1]={ limit={ @@ -210151,7 +210266,7 @@ return { [1]="projectiles_pierce_enemies_with_fully_broken_armour" } }, - [9590]={ + [9598]={ [1]={ [1]={ limit={ @@ -210167,7 +210282,7 @@ return { [1]="projectiles_pierce_while_phasing" } }, - [9591]={ + [9599]={ [1]={ [1]={ limit={ @@ -210192,7 +210307,7 @@ return { [1]="projectiles_pierce_x_additional_targets_while_you_have_phasing" } }, - [9592]={ + [9600]={ [1]={ [1]={ limit={ @@ -210221,7 +210336,7 @@ return { [1]="protective_link_duration_+%" } }, - [9593]={ + [9601]={ [1]={ [1]={ limit={ @@ -210237,7 +210352,7 @@ return { [1]="puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%" } }, - [9594]={ + [9602]={ [1]={ [1]={ limit={ @@ -210253,7 +210368,7 @@ return { [1]="punishment_no_reservation" } }, - [9595]={ + [9603]={ [1]={ [1]={ limit={ @@ -210269,7 +210384,7 @@ return { [1]="puppet_master_does_not_expire_while_you_have_archon_of_undeath" } }, - [9596]={ + [9604]={ [1]={ [1]={ limit={ @@ -210298,7 +210413,7 @@ return { [1]="puppet_master_duration_+%" } }, - [9597]={ + [9605]={ [1]={ [1]={ limit={ @@ -210327,7 +210442,7 @@ return { [1]="puppet_master_effect_+%" } }, - [9598]={ + [9606]={ [1]={ [1]={ limit={ @@ -210356,7 +210471,7 @@ return { [1]="purge_damage_+%" } }, - [9599]={ + [9607]={ [1]={ [1]={ limit={ @@ -210385,7 +210500,7 @@ return { [1]="purge_duration_+%" } }, - [9600]={ + [9608]={ [1]={ [1]={ limit={ @@ -210401,7 +210516,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [9601]={ + [9609]={ [1]={ [1]={ limit={ @@ -210426,7 +210541,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [9602]={ + [9610]={ [1]={ [1]={ [1]={ @@ -210463,7 +210578,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_-2%_per_1" } }, - [9603]={ + [9611]={ [1]={ [1]={ limit={ @@ -210492,7 +210607,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_+%" } }, - [9604]={ + [9612]={ [1]={ [1]={ limit={ @@ -210508,7 +210623,7 @@ return { [1]="purity_of_elements_reserves_no_mana" } }, - [9605]={ + [9613]={ [1]={ [1]={ [1]={ @@ -210545,7 +210660,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_-2%_per_1" } }, - [9606]={ + [9614]={ [1]={ [1]={ limit={ @@ -210574,7 +210689,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_+%" } }, - [9607]={ + [9615]={ [1]={ [1]={ limit={ @@ -210590,7 +210705,7 @@ return { [1]="purity_of_fire_reserves_no_mana" } }, - [9608]={ + [9616]={ [1]={ [1]={ [1]={ @@ -210627,7 +210742,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [9609]={ + [9617]={ [1]={ [1]={ limit={ @@ -210656,7 +210771,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_+%" } }, - [9610]={ + [9618]={ [1]={ [1]={ limit={ @@ -210672,7 +210787,7 @@ return { [1]="purity_of_ice_reserves_no_mana" } }, - [9611]={ + [9619]={ [1]={ [1]={ [1]={ @@ -210709,7 +210824,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_-2%_per_1" } }, - [9612]={ + [9620]={ [1]={ [1]={ limit={ @@ -210738,7 +210853,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_+%" } }, - [9613]={ + [9621]={ [1]={ [1]={ limit={ @@ -210754,7 +210869,7 @@ return { [1]="purity_of_lightning_reserves_no_mana" } }, - [9614]={ + [9622]={ [1]={ [1]={ limit={ @@ -210783,7 +210898,7 @@ return { [1]="quarterstaff_daze_build_up_+%" } }, - [9615]={ + [9623]={ [1]={ [1]={ limit={ @@ -210812,7 +210927,7 @@ return { [1]="quarterstaff_hit_damage_freeze_multiplier_+%" } }, - [9616]={ + [9624]={ [1]={ [1]={ limit={ @@ -210841,7 +210956,7 @@ return { [1]="quarterstaff_hit_damage_stun_multiplier_+%" } }, - [9617]={ + [9625]={ [1]={ [1]={ limit={ @@ -210870,7 +210985,7 @@ return { [1]="quarterstaff_shock_chance_+%" } }, - [9618]={ + [9626]={ [1]={ [1]={ limit={ @@ -210895,7 +211010,7 @@ return { [1]="quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges" } }, - [9619]={ + [9627]={ [1]={ [1]={ limit={ @@ -210920,7 +211035,7 @@ return { [1]="quick_dodge_added_cooldown_count" } }, - [9620]={ + [9628]={ [1]={ [1]={ limit={ @@ -210949,7 +211064,7 @@ return { [1]="quick_dodge_travel_distance_+%" } }, - [9621]={ + [9629]={ [1]={ [1]={ limit={ @@ -210965,7 +211080,7 @@ return { [1]="quick_guard_additional_physical_damage_reduction_%" } }, - [9622]={ + [9630]={ [1]={ [1]={ limit={ @@ -210981,7 +211096,7 @@ return { [1]="quicksilver_flasks_apply_to_nearby_allies" } }, - [9623]={ + [9631]={ [1]={ [1]={ limit={ @@ -211010,7 +211125,7 @@ return { [1]="quiver_mod_effect_+%" } }, - [9624]={ + [9632]={ [1]={ [1]={ limit={ @@ -211026,7 +211141,7 @@ return { [1]="quiver_projectiles_pierce_1_additional_target" } }, - [9625]={ + [9633]={ [1]={ [1]={ limit={ @@ -211042,7 +211157,7 @@ return { [1]="quiver_projectiles_pierce_2_additional_targets" } }, - [9626]={ + [9634]={ [1]={ [1]={ limit={ @@ -211058,7 +211173,7 @@ return { [1]="quiver_projectiles_pierce_3_additional_targets" } }, - [9627]={ + [9635]={ [1]={ [1]={ limit={ @@ -211074,7 +211189,7 @@ return { [1]="maximum_rage" } }, - [9628]={ + [9636]={ [1]={ [1]={ limit={ @@ -211090,7 +211205,7 @@ return { [1]="rage_effects_tripled" } }, - [9629]={ + [9637]={ [1]={ [1]={ limit={ @@ -211106,7 +211221,7 @@ return { [1]="rage_effects_doubled" } }, - [9630]={ + [9638]={ [1]={ [1]={ limit={ @@ -211122,7 +211237,7 @@ return { [1]="gain_rage_on_kill" } }, - [9631]={ + [9639]={ [1]={ [1]={ limit={ @@ -211147,7 +211262,7 @@ return { [1]="gain_rage_on_hitting_rare_unique_enemy_%" } }, - [9632]={ + [9640]={ [1]={ [1]={ limit={ @@ -211163,7 +211278,7 @@ return { [1]="gain_rage_when_you_use_a_warcry" } }, - [9633]={ + [9641]={ [1]={ [1]={ limit={ @@ -211179,7 +211294,7 @@ return { [1]="cannot_be_stunned_with_25_rage" } }, - [9634]={ + [9642]={ [1]={ [1]={ limit={ @@ -211195,7 +211310,7 @@ return { [1]="gain_x_rage_on_hit" } }, - [9635]={ + [9643]={ [1]={ [1]={ limit={ @@ -211224,7 +211339,7 @@ return { [1]="rage_decay_speed_+%" } }, - [9636]={ + [9644]={ [1]={ [1]={ limit={ @@ -211253,7 +211368,7 @@ return { [1]="rage_decay_speed_+%_per_10_tribute" } }, - [9637]={ + [9645]={ [1]={ [1]={ limit={ @@ -211269,7 +211384,7 @@ return { [1]="rage_gained_on_life_flask_use" } }, - [9638]={ + [9646]={ [1]={ [1]={ limit={ @@ -211285,7 +211400,7 @@ return { [1]="rage_generated_also_granted_to_allies_in_presence" } }, - [9639]={ + [9647]={ [1]={ [1]={ limit={ @@ -211301,7 +211416,7 @@ return { [1]="rage_grants_spell_damage_instead" } }, - [9640]={ + [9648]={ [1]={ [1]={ limit={ @@ -211330,7 +211445,7 @@ return { [1]="rage_loss_delay_ms_+" } }, - [9641]={ + [9649]={ [1]={ [1]={ limit={ @@ -211359,7 +211474,7 @@ return { [1]="rage_loss_delay_recovery_rate_+%" } }, - [9642]={ + [9650]={ [1]={ [1]={ limit={ @@ -211375,7 +211490,7 @@ return { [1]="rage_slash_sacrifice_rage_%" } }, - [9643]={ + [9651]={ [1]={ [1]={ limit={ @@ -211404,7 +211519,7 @@ return { [1]="rage_vortex_area_of_effect_+%" } }, - [9644]={ + [9652]={ [1]={ [1]={ limit={ @@ -211433,7 +211548,7 @@ return { [1]="rage_vortex_damage_+%" } }, - [9645]={ + [9653]={ [1]={ [1]={ limit={ @@ -211449,7 +211564,7 @@ return { [1]="raging_spirits_always_ignite" } }, - [9646]={ + [9654]={ [1]={ [1]={ limit={ @@ -211474,7 +211589,7 @@ return { [1]="raging_spirits_refresh_duration_on_hit_vs_unique_%_chance" } }, - [9647]={ + [9655]={ [1]={ [1]={ limit={ @@ -211490,7 +211605,7 @@ return { [1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy" } }, - [9648]={ + [9656]={ [1]={ [1]={ limit={ @@ -211519,7 +211634,7 @@ return { [1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing" } }, - [9649]={ + [9657]={ [1]={ [1]={ limit={ @@ -211535,7 +211650,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [9650]={ + [9658]={ [1]={ [1]={ limit={ @@ -211551,7 +211666,7 @@ return { [1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%" } }, - [9651]={ + [9659]={ [1]={ [1]={ [1]={ @@ -211584,7 +211699,7 @@ return { [1]="raise_shield_skill_inflicts_parry_for_duration_ms" } }, - [9652]={ + [9660]={ [1]={ [1]={ limit={ @@ -211617,7 +211732,7 @@ return { [1]="raise_spectre_mana_cost_+%" } }, - [9653]={ + [9661]={ [1]={ [1]={ limit={ @@ -211633,7 +211748,7 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [9654]={ + [9662]={ [1]={ [1]={ limit={ @@ -211649,7 +211764,7 @@ return { [1]="raised_zombie_%_chance_to_taunt" } }, - [9655]={ + [9663]={ [1]={ [1]={ limit={ @@ -211665,7 +211780,7 @@ return { [1]="raised_zombies_are_usable_as_corpses_when_alive" } }, - [9656]={ + [9664]={ [1]={ [1]={ limit={ @@ -211690,7 +211805,7 @@ return { [1]="raised_zombies_cover_in_ash_on_hit_%" } }, - [9657]={ + [9665]={ [1]={ [1]={ [1]={ @@ -211710,7 +211825,7 @@ return { [1]="raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9658]={ + [9666]={ [1]={ [1]={ limit={ @@ -211726,7 +211841,7 @@ return { [1]="raised_zombies_have_avatar_of_fire" } }, - [9659]={ + [9667]={ [1]={ [1]={ [1]={ @@ -211746,7 +211861,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_3_stat_value" } }, - [9660]={ + [9668]={ [1]={ [1]={ [1]={ @@ -211766,7 +211881,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_5_stat_value" } }, - [9661]={ + [9669]={ [1]={ [1]={ limit={ @@ -211791,7 +211906,7 @@ return { [1]="rallying_cry_exerts_x_additional_attacks" } }, - [9662]={ + [9670]={ [1]={ [1]={ limit={ @@ -211807,7 +211922,7 @@ return { [1]="random_curse_on_hit_%_against_uncursed_enemies" } }, - [9663]={ + [9671]={ [1]={ [1]={ limit={ @@ -211832,7 +211947,7 @@ return { [1]="random_curse_when_hit_%_ignoring_curse_limit" } }, - [9664]={ + [9672]={ [1]={ [1]={ limit={ @@ -211848,7 +211963,7 @@ return { [1]="random_projectile_direction" } }, - [9665]={ + [9673]={ [1]={ [1]={ limit={ @@ -211877,7 +211992,7 @@ return { [1]="ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final" } }, - [9666]={ + [9674]={ [1]={ [1]={ limit={ @@ -211902,7 +212017,7 @@ return { [1]="rapid_assault_attached_spear_limit" } }, - [9667]={ + [9675]={ [1]={ [1]={ limit={ @@ -211931,7 +212046,7 @@ return { [1]="rare_or_unique_monster_dropped_item_rarity_+%" } }, - [9668]={ + [9676]={ [1]={ [1]={ limit={ @@ -211947,7 +212062,7 @@ return { [1]="real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy" } }, - [9669]={ + [9677]={ [1]={ [1]={ limit={ @@ -211963,7 +212078,7 @@ return { [1]="reap_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [9670]={ + [9678]={ [1]={ [1]={ limit={ @@ -211979,7 +212094,7 @@ return { [1]="reapply_enemy_shock_on_consuming_enemy_shock_chance_%" } }, - [9671]={ + [9679]={ [1]={ [1]={ limit={ @@ -212008,7 +212123,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [9672]={ + [9680]={ [1]={ [1]={ limit={ @@ -212024,7 +212139,7 @@ return { [1]="receive_bleeding_chance_%_when_hit" } }, - [9673]={ + [9681]={ [1]={ [1]={ limit={ @@ -212040,7 +212155,7 @@ return { [1]="receive_bleeding_chance_%_when_hit_by_attack" } }, - [9674]={ + [9682]={ [1]={ [1]={ limit={ @@ -212056,7 +212171,7 @@ return { [1]="received_attack_hits_have_impale_chance_%" } }, - [9675]={ + [9683]={ [1]={ [1]={ limit={ @@ -212072,7 +212187,7 @@ return { [1]="recharge_flasks_on_crit_while_affected_by_precision" } }, - [9676]={ + [9684]={ [1]={ [1]={ limit={ @@ -212088,7 +212203,7 @@ return { [1]="recoup_%_elemental_damage_as_energy_shield" } }, - [9677]={ + [9685]={ [1]={ [1]={ limit={ @@ -212104,7 +212219,7 @@ return { [1]="recoup_%_of_damage_taken_by_your_totems_as_life" } }, - [9678]={ + [9686]={ [1]={ [1]={ limit={ @@ -212120,7 +212235,7 @@ return { [1]="recoup_effects_apply_over_4_seconds_instead" } }, - [9679]={ + [9687]={ [1]={ [1]={ limit={ @@ -212136,7 +212251,7 @@ return { [1]="recoup_life_effects_apply_over_3_seconds_instead" } }, - [9680]={ + [9688]={ [1]={ [1]={ limit={ @@ -212152,7 +212267,7 @@ return { [1]="recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings" } }, - [9681]={ + [9689]={ [1]={ [1]={ limit={ @@ -212181,7 +212296,7 @@ return { [1]="recoup_speed_+%" } }, - [9682]={ + [9690]={ [1]={ [1]={ limit={ @@ -212197,7 +212312,7 @@ return { [1]="recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits" } }, - [9683]={ + [9691]={ [1]={ [1]={ limit={ @@ -212213,7 +212328,7 @@ return { [1]="recover_%_life_on_heavy_stunning_rare_or_unique_enemy" } }, - [9684]={ + [9692]={ [1]={ [1]={ limit={ @@ -212229,7 +212344,7 @@ return { [1]="recover_%_life_per_endurance_charge_consumed" } }, - [9685]={ + [9693]={ [1]={ [1]={ limit={ @@ -212245,7 +212360,7 @@ return { [1]="recover_%_life_when_you_create_an_offering" } }, - [9686]={ + [9694]={ [1]={ [1]={ limit={ @@ -212261,7 +212376,7 @@ return { [1]="recover_%_mana_when_you_invoke_a_spell" } }, - [9687]={ + [9695]={ [1]={ [1]={ limit={ @@ -212277,7 +212392,7 @@ return { [1]="recover_%_maximum_energy_shield_on_killing_cursed_enemy" } }, - [9688]={ + [9696]={ [1]={ [1]={ limit={ @@ -212306,7 +212421,7 @@ return { [1]="recover_%_maximum_life_on_kill_per_50_tribute" } }, - [9689]={ + [9697]={ [1]={ [1]={ limit={ @@ -212322,7 +212437,7 @@ return { [1]="recover_%_maximum_life_on_killing_cursed_enemy" } }, - [9690]={ + [9698]={ [1]={ [1]={ limit={ @@ -212338,7 +212453,7 @@ return { [1]="recover_%_maximum_life_per_glory_consumed" } }, - [9691]={ + [9699]={ [1]={ [1]={ limit={ @@ -212354,7 +212469,7 @@ return { [1]="recover_%_maximum_life_when_cursing_non_cursed_enemy" } }, - [9692]={ + [9700]={ [1]={ [1]={ limit={ @@ -212383,7 +212498,7 @@ return { [1]="recover_%_maximum_mana_on_kill_per_50_tribute" } }, - [9693]={ + [9701]={ [1]={ [1]={ limit={ @@ -212399,7 +212514,7 @@ return { [1]="recover_%_maximum_mana_when_cursing_non_cursed_enemy" } }, - [9694]={ + [9702]={ [1]={ [1]={ limit={ @@ -212415,7 +212530,7 @@ return { [1]="recover_%_of_life_over_2_seconds_when_you_use_a_command_skill" } }, - [9695]={ + [9703]={ [1]={ [1]={ limit={ @@ -212431,7 +212546,7 @@ return { [1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity" } }, - [9696]={ + [9704]={ [1]={ [1]={ [1]={ @@ -212451,7 +212566,7 @@ return { [1]="recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds" } }, - [9697]={ + [9705]={ [1]={ [1]={ limit={ @@ -212467,7 +212582,7 @@ return { [1]="recover_X_life_on_enemy_ignited" } }, - [9698]={ + [9706]={ [1]={ [1]={ limit={ @@ -212483,7 +212598,7 @@ return { [1]="recover_X_life_when_fortification_expires_per_fortification_lost" } }, - [9699]={ + [9707]={ [1]={ [1]={ limit={ @@ -212499,7 +212614,7 @@ return { [1]="recover_X_mana_on_killing_frozen_enemy" } }, - [9700]={ + [9708]={ [1]={ [1]={ limit={ @@ -212528,7 +212643,7 @@ return { [1]="recover_X_ward_on_block" } }, - [9701]={ + [9709]={ [1]={ [1]={ limit={ @@ -212557,7 +212672,7 @@ return { [1]="recover_X_ward_on_charm_use" } }, - [9702]={ + [9710]={ [1]={ [1]={ limit={ @@ -212573,7 +212688,7 @@ return { [1]="recover_energy_shield_%_on_consuming_steel_shard" } }, - [9703]={ + [9711]={ [1]={ [1]={ limit={ @@ -212589,7 +212704,7 @@ return { [1]="recover_es_as_well_as_life_from_life_regeneration" } }, - [9704]={ + [9712]={ [1]={ [1]={ limit={ @@ -212605,7 +212720,7 @@ return { [1]="recover_life_%_on_enemy_death_in_presence" } }, - [9705]={ + [9713]={ [1]={ [1]={ limit={ @@ -212621,7 +212736,7 @@ return { [1]="recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings" } }, - [9706]={ + [9714]={ [1]={ [1]={ limit={ @@ -212637,7 +212752,7 @@ return { [1]="recover_mana_%_on_enemy_death_in_presence" } }, - [9707]={ + [9715]={ [1]={ [1]={ limit={ @@ -212653,7 +212768,7 @@ return { [1]="recover_maximum_life_on_enemy_killed_chance_%" } }, - [9708]={ + [9716]={ [1]={ [1]={ limit={ @@ -212669,7 +212784,7 @@ return { [1]="recover_%_life_when_gaining_adrenaline" } }, - [9709]={ + [9717]={ [1]={ [1]={ limit={ @@ -212685,7 +212800,7 @@ return { [1]="recover_%_life_when_you_block_attack_damage_while_wielding_a_staff" } }, - [9710]={ + [9718]={ [1]={ [1]={ limit={ @@ -212701,7 +212816,7 @@ return { [1]="recover_%_life_when_you_ignite_a_non_ignited_enemy" } }, - [9711]={ + [9719]={ [1]={ [1]={ limit={ @@ -212717,7 +212832,7 @@ return { [1]="recover_%_life_when_you_use_a_life_flask_while_on_low_life" } }, - [9712]={ + [9720]={ [1]={ [1]={ limit={ @@ -212733,7 +212848,7 @@ return { [1]="recover_%_mana_when_attached_brand_expires" } }, - [9713]={ + [9721]={ [1]={ [1]={ limit={ @@ -212749,7 +212864,7 @@ return { [1]="recover_%_maximum_life_on_killing_chilled_enemy" } }, - [9714]={ + [9722]={ [1]={ [1]={ limit={ @@ -212765,7 +212880,7 @@ return { [1]="recover_%_maximum_life_on_killing_enemy_while_you_have_rage" } }, - [9715]={ + [9723]={ [1]={ [1]={ limit={ @@ -212781,7 +212896,7 @@ return { [1]="recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [9716]={ + [9724]={ [1]={ [1]={ limit={ @@ -212797,7 +212912,7 @@ return { [1]="recover_%_maximum_life_when_spending_at_least_10_combo" } }, - [9717]={ + [9725]={ [1]={ [1]={ limit={ @@ -212813,7 +212928,7 @@ return { [1]="recover_%_maximum_mana_on_charm_use" } }, - [9718]={ + [9726]={ [1]={ [1]={ [1]={ @@ -212833,7 +212948,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_frozen_permyriad" } }, - [9719]={ + [9727]={ [1]={ [1]={ limit={ @@ -212849,7 +212964,7 @@ return { [1]="recover_%_maximum_mana_when_spending_at_least_10_combo" } }, - [9720]={ + [9728]={ [1]={ [1]={ limit={ @@ -212865,7 +212980,7 @@ return { [1]="recover_%_of_maximum_mana_over_1_second_on_guard_skill_use" } }, - [9721]={ + [9729]={ [1]={ [1]={ [1]={ @@ -212885,7 +213000,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [9722]={ + [9730]={ [1]={ [1]={ [1]={ @@ -212905,7 +213020,7 @@ return { [1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill" } }, - [9723]={ + [9731]={ [1]={ [1]={ limit={ @@ -212921,7 +213036,7 @@ return { [1]="recover_ward_as_well_as_mana_from_mana_regeneration" } }, - [9724]={ + [9732]={ [1]={ [1]={ limit={ @@ -212937,7 +213052,7 @@ return { [1]="recover_x%_of_maximum_mana_when_you_consume_a_power_charge" } }, - [9725]={ + [9733]={ [1]={ [1]={ limit={ @@ -212953,7 +213068,7 @@ return { [1]="recover_x%_of_maximum_ward_on_persistent_minion_death" } }, - [9726]={ + [9734]={ [1]={ [1]={ limit={ @@ -212982,7 +213097,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [9727]={ + [9735]={ [1]={ [1]={ limit={ @@ -212998,7 +213113,7 @@ return { [1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred" } }, - [9728]={ + [9736]={ [1]={ [1]={ limit={ @@ -213014,7 +213129,7 @@ return { [1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies" } }, - [9729]={ + [9737]={ [1]={ [1]={ limit={ @@ -213030,7 +213145,7 @@ return { [1]="reduce_enemy_fire_resistance_%_while_affected_by_anger" } }, - [9730]={ + [9738]={ [1]={ [1]={ limit={ @@ -213046,7 +213161,7 @@ return { [1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath" } }, - [9731]={ + [9739]={ [1]={ [1]={ limit={ @@ -213062,7 +213177,7 @@ return { [1]="reflect_%_of_physical_damage_prevented" } }, - [9732]={ + [9740]={ [1]={ [1]={ limit={ @@ -213095,7 +213210,7 @@ return { [1]="reflect_damage_taken_and_minion_reflect_damage_taken_+%" } }, - [9733]={ + [9741]={ [1]={ [1]={ limit={ @@ -213111,7 +213226,7 @@ return { [1]="reflect_shocks" } }, - [9734]={ + [9742]={ [1]={ [1]={ limit={ @@ -213144,7 +213259,7 @@ return { [1]="reflected_physical_damage_taken_+%_while_affected_by_determination" } }, - [9735]={ + [9743]={ [1]={ [1]={ limit={ @@ -213160,7 +213275,7 @@ return { [1]="refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy" } }, - [9736]={ + [9744]={ [1]={ [1]={ limit={ @@ -213176,7 +213291,7 @@ return { [1]="refresh_endurance_charges_duration_when_hit_chance_%" } }, - [9737]={ + [9745]={ [1]={ [1]={ limit={ @@ -213192,7 +213307,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [9738]={ + [9746]={ [1]={ [1]={ limit={ @@ -213208,7 +213323,7 @@ return { [1]="regenerate_%_energy_shield_over_1_second_when_stunned" } }, - [9739]={ + [9747]={ [1]={ [1]={ limit={ @@ -213224,7 +213339,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality" } }, - [9740]={ + [9748]={ [1]={ [1]={ limit={ @@ -213240,7 +213355,7 @@ return { [1]="regenerate_%_life_over_1_second_when_stunned" } }, - [9741]={ + [9749]={ [1]={ [1]={ limit={ @@ -213256,7 +213371,7 @@ return { [1]="regenerate_%_of_curse_mana_cost_per_second_while_in_delay" } }, - [9742]={ + [9750]={ [1]={ [1]={ limit={ @@ -213272,7 +213387,7 @@ return { [1]="regenerate_1_rage_per_x_life_regeneration" } }, - [9743]={ + [9751]={ [1]={ [1]={ limit={ @@ -213288,7 +213403,7 @@ return { [1]="regenerate_1_rage_per_x_mana_regeneration" } }, - [9744]={ + [9752]={ [1]={ [1]={ limit={ @@ -213304,7 +213419,7 @@ return { [1]="regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds" } }, - [9745]={ + [9753]={ [1]={ [1]={ limit={ @@ -213320,7 +213435,7 @@ return { [1]="regenerate_energy_shield_instead_of_life" } }, - [9746]={ + [9754]={ [1]={ [1]={ [1]={ @@ -213340,7 +213455,7 @@ return { [1]="regenerate_mana_equal_to_x%_of_life_per_minute" } }, - [9747]={ + [9755]={ [1]={ [1]={ limit={ @@ -213356,7 +213471,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_not_unhinged" } }, - [9748]={ + [9756]={ [1]={ [1]={ limit={ @@ -213372,7 +213487,7 @@ return { [1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse" } }, - [9749]={ + [9757]={ [1]={ [1]={ limit={ @@ -213388,7 +213503,7 @@ return { [1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse" } }, - [9750]={ + [9758]={ [1]={ [1]={ limit={ @@ -213404,7 +213519,7 @@ return { [1]="regenerate_ward_instead_of_life" } }, - [9751]={ + [9759]={ [1]={ [1]={ [1]={ @@ -213424,7 +213539,7 @@ return { [1]="regenerate_x_mana_per_minute_while_you_have_arcane_surge" } }, - [9752]={ + [9760]={ [1]={ [1]={ limit={ @@ -213453,7 +213568,7 @@ return { [1]="reload_speed_+%" } }, - [9753]={ + [9761]={ [1]={ [1]={ limit={ @@ -213482,7 +213597,7 @@ return { [1]="remnant_effect_+%_per_10_tribute" } }, - [9754]={ + [9762]={ [1]={ [1]={ limit={ @@ -213511,7 +213626,7 @@ return { [1]="remnant_effect_+%" } }, - [9755]={ + [9763]={ [1]={ [1]={ limit={ @@ -213540,7 +213655,7 @@ return { [1]="remnant_pickup_range_+%_if_you_have_at_least_100_tribute" } }, - [9756]={ + [9764]={ [1]={ [1]={ limit={ @@ -213556,7 +213671,7 @@ return { [1]="remnant_pickup_range_+%" } }, - [9757]={ + [9765]={ [1]={ [1]={ limit={ @@ -213572,7 +213687,7 @@ return { [1]="remnant_recover_%_life_on_pickup" } }, - [9758]={ + [9766]={ [1]={ [1]={ limit={ @@ -213588,7 +213703,7 @@ return { [1]="remnant_recover_%_mana_on_pickup" } }, - [9759]={ + [9767]={ [1]={ [1]={ limit={ @@ -213604,7 +213719,7 @@ return { [1]="remnants_affect_allies_in_presence" } }, - [9760]={ + [9768]={ [1]={ [1]={ limit={ @@ -213620,7 +213735,7 @@ return { [1]="remove_ailments_and_burning_on_gaining_adrenaline" } }, - [9761]={ + [9769]={ [1]={ [1]={ limit={ @@ -213636,7 +213751,7 @@ return { [1]="remove_all_damaging_ailments_on_warcry" } }, - [9762]={ + [9770]={ [1]={ [1]={ limit={ @@ -213652,7 +213767,7 @@ return { [1]="remove_bleed_on_life_flask_use" } }, - [9763]={ + [9771]={ [1]={ [1]={ limit={ @@ -213668,7 +213783,7 @@ return { [1]="remove_bleeding_on_warcry" } }, - [9764]={ + [9772]={ [1]={ [1]={ limit={ @@ -213684,7 +213799,7 @@ return { [1]="remove_chill_and_freeze_on_flask_use" } }, - [9765]={ + [9773]={ [1]={ [1]={ limit={ @@ -213700,7 +213815,7 @@ return { [1]="remove_curse_on_mana_flask_use" } }, - [9766]={ + [9774]={ [1]={ [1]={ limit={ @@ -213716,7 +213831,7 @@ return { [1]="remove_damaging_ailment_on_using_command_skill" } }, - [9767]={ + [9775]={ [1]={ [1]={ limit={ @@ -213732,7 +213847,7 @@ return { [1]="remove_damaging_ailments_on_swapping_stance" } }, - [9768]={ + [9776]={ [1]={ [1]={ limit={ @@ -213757,7 +213872,7 @@ return { [1]="remove_elemental_ailments_on_curse_cast_%" } }, - [9769]={ + [9777]={ [1]={ [1]={ limit={ @@ -213773,7 +213888,7 @@ return { [1]="remove_ignite_and_burning_on_flask_use" } }, - [9770]={ + [9778]={ [1]={ [1]={ limit={ @@ -213789,7 +213904,7 @@ return { [1]="remove_ignite_on_warcry" } }, - [9771]={ + [9779]={ [1]={ [1]={ limit={ @@ -213805,7 +213920,7 @@ return { [1]="remove_maim_and_hinder_on_flask_use" } }, - [9772]={ + [9780]={ [1]={ [1]={ limit={ @@ -213821,7 +213936,7 @@ return { [1]="remove_%_of_mana_on_hit" } }, - [9773]={ + [9781]={ [1]={ [1]={ limit={ @@ -213837,7 +213952,7 @@ return { [1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder" } }, - [9774]={ + [9782]={ [1]={ [1]={ limit={ @@ -213853,7 +213968,7 @@ return { [1]="remove_random_ailment_when_you_warcry" } }, - [9775]={ + [9783]={ [1]={ [1]={ limit={ @@ -213869,7 +213984,7 @@ return { [1]="remove_random_charge_on_hit_%" } }, - [9776]={ + [9784]={ [1]={ [1]={ limit={ @@ -213885,7 +214000,7 @@ return { [1]="remove_random_elemental_ailment_on_mana_flask_use" } }, - [9777]={ + [9785]={ [1]={ [1]={ limit={ @@ -213901,7 +214016,7 @@ return { [1]="remove_random_non_elemental_ailment_on_life_flask_use" } }, - [9778]={ + [9786]={ [1]={ [1]={ limit={ @@ -213917,7 +214032,7 @@ return { [1]="remove_shock_on_flask_use" } }, - [9779]={ + [9787]={ [1]={ [1]={ limit={ @@ -213942,7 +214057,7 @@ return { [1]="remove_x_curses_after_channelling_for_2_seconds" } }, - [9780]={ + [9788]={ [1]={ [1]={ limit={ @@ -213971,7 +214086,7 @@ return { [1]="replica_unique_hyrris_truth_hatred_mana_reservation_+%_final" } }, - [9781]={ + [9789]={ [1]={ [1]={ limit={ @@ -214000,7 +214115,7 @@ return { [1]="required_enemies_to_be_considered_surrounded_offset" } }, - [9782]={ + [9790]={ [1]={ [1]={ limit={ @@ -214029,7 +214144,7 @@ return { [1]="reservation_efficiency_+%_of_companion_skills" } }, - [9783]={ + [9791]={ [1]={ [1]={ limit={ @@ -214058,7 +214173,7 @@ return { [1]="reservation_efficiency_+%_of_herald_skills" } }, - [9784]={ + [9792]={ [1]={ [1]={ limit={ @@ -214087,7 +214202,7 @@ return { [1]="reservation_efficiency_+%_of_meta_skills" } }, - [9785]={ + [9793]={ [1]={ [1]={ limit={ @@ -214116,7 +214231,7 @@ return { [1]="reservation_efficiency_+%_of_minion_skills" } }, - [9786]={ + [9794]={ [1]={ [1]={ limit={ @@ -214145,7 +214260,7 @@ return { [1]="reservation_efficiency_+%_of_non_minion_skills" } }, - [9787]={ + [9795]={ [1]={ [1]={ limit={ @@ -214174,7 +214289,7 @@ return { [1]="reservation_efficiency_+%_of_remnant_skills" } }, - [9788]={ + [9796]={ [1]={ [1]={ limit={ @@ -214203,7 +214318,7 @@ return { [1]="reservation_efficiency_+%_with_unique_abyss_jewel_socketed" } }, - [9789]={ + [9797]={ [1]={ [1]={ limit={ @@ -214232,7 +214347,7 @@ return { [1]="reservation_efficiency_+%_of_skills_per_socketed_idol" } }, - [9790]={ + [9798]={ [1]={ [1]={ [1]={ @@ -214265,7 +214380,7 @@ return { [1]="reserve_life_instead_of_loss_from_damage_for_x_ms" } }, - [9791]={ + [9799]={ [1]={ [1]={ limit={ @@ -214281,7 +214396,7 @@ return { [1]="resist_all_elements_%_per_socketed_non_idol_augment" } }, - [9792]={ + [9800]={ [1]={ [1]={ limit={ @@ -214297,7 +214412,7 @@ return { [1]="resist_all_elements_%_per_socketed_rune" } }, - [9793]={ + [9801]={ [1]={ [1]={ limit={ @@ -214313,7 +214428,7 @@ return { [1]="resist_all_%" } }, - [9794]={ + [9802]={ [1]={ [1]={ limit={ @@ -214329,7 +214444,7 @@ return { [1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon" } }, - [9795]={ + [9803]={ [1]={ [1]={ limit={ @@ -214345,7 +214460,7 @@ return { [1]="restore_energy_shield_and_mana_when_you_focus_%" } }, - [9796]={ + [9804]={ [1]={ [1]={ limit={ @@ -214361,7 +214476,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [9797]={ + [9805]={ [1]={ [1]={ [1]={ @@ -214394,7 +214509,7 @@ return { [1]="revive_golems_if_killed_by_enemies_ms" } }, - [9798]={ + [9806]={ [1]={ [1]={ limit={ @@ -214410,7 +214525,7 @@ return { [1]="revive_persistent_minion_%_chance_when_you_use_a_command_skill" } }, - [9799]={ + [9807]={ [1]={ [1]={ limit={ @@ -214426,7 +214541,7 @@ return { [1]="revive_random_persistent_minion_on_offering_expiration" } }, - [9800]={ + [9808]={ [1]={ [1]={ limit={ @@ -214442,7 +214557,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [9801]={ + [9809]={ [1]={ [1]={ limit={ @@ -214471,7 +214586,7 @@ return { [1]="rogue_trader_map_rogue_exile_maximum_life_+%_final" } }, - [9802]={ + [9810]={ [1]={ [1]={ limit={ @@ -214487,7 +214602,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown" } }, - [9803]={ + [9811]={ [1]={ [1]={ limit={ @@ -214503,7 +214618,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown" } }, - [9804]={ + [9812]={ [1]={ [1]={ limit={ @@ -214532,7 +214647,7 @@ return { [1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%" } }, - [9805]={ + [9813]={ [1]={ [1]={ limit={ @@ -214561,7 +214676,7 @@ return { [1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%" } }, - [9806]={ + [9814]={ [1]={ [1]={ limit={ @@ -214577,7 +214692,7 @@ return { [1]="sacrifice_%_life_to_gain_as_guard_on_dodge_roll" } }, - [9807]={ + [9815]={ [1]={ [1]={ limit={ @@ -214593,7 +214708,7 @@ return { [1]="sacrifice_%_maximum_life_to_gain_half_as_much_ward_on_attack" } }, - [9808]={ + [9816]={ [1]={ [1]={ limit={ @@ -214609,7 +214724,7 @@ return { [1]="sacrifice_%_life_on_spell_skill" } }, - [9809]={ + [9817]={ [1]={ [1]={ limit={ @@ -214625,7 +214740,7 @@ return { [1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast" } }, - [9810]={ + [9818]={ [1]={ [1]={ limit={ @@ -214654,7 +214769,7 @@ return { [1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground" } }, - [9811]={ + [9819]={ [1]={ [1]={ limit={ @@ -214683,7 +214798,7 @@ return { [1]="sanctify_consecrated_ground_enemy_damage_taken_+%" } }, - [9812]={ + [9820]={ [1]={ [1]={ limit={ @@ -214712,7 +214827,7 @@ return { [1]="sanctify_damage_+%" } }, - [9813]={ + [9821]={ [1]={ [1]={ limit={ @@ -214728,7 +214843,7 @@ return { [1]="sap_on_critical_strike_with_lightning_skills" } }, - [9814]={ + [9822]={ [1]={ [1]={ limit={ @@ -214757,7 +214872,7 @@ return { [1]="scorch_effect_+%" } }, - [9815]={ + [9823]={ [1]={ [1]={ limit={ @@ -214773,7 +214888,7 @@ return { [1]="scorch_enemies_in_close_range_on_block" } }, - [9816]={ + [9824]={ [1]={ [1]={ limit={ @@ -214789,7 +214904,7 @@ return { [1]="scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance" } }, - [9817]={ + [9825]={ [1]={ [1]={ limit={ @@ -214818,7 +214933,7 @@ return { [1]="scourge_arrow_damage_+%" } }, - [9818]={ + [9826]={ [1]={ [1]={ limit={ @@ -214847,7 +214962,7 @@ return { [1]="seal_gain_frequency_+%" } }, - [9819]={ + [9827]={ [1]={ [1]={ limit={ @@ -214876,7 +214991,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [9820]={ + [9828]={ [1]={ [1]={ limit={ @@ -214892,7 +215007,7 @@ return { [1]="seismic_cry_exerted_attack_damage_+%" } }, - [9821]={ + [9829]={ [1]={ [1]={ limit={ @@ -214908,7 +215023,7 @@ return { [1]="seismic_cry_minimum_power" } }, - [9822]={ + [9830]={ [1]={ [1]={ limit={ @@ -214937,7 +215052,7 @@ return { [1]="self_bleed_duration_+%" } }, - [9823]={ + [9831]={ [1]={ [1]={ [1]={ @@ -214957,7 +215072,7 @@ return { [1]="self_chaos_damage_taken_per_minute_per_endurance_charge" } }, - [9824]={ + [9832]={ [1]={ [1]={ [1]={ @@ -214977,7 +215092,7 @@ return { [1]="self_chaos_damage_taken_per_minute_while_affected_by_flask" } }, - [9825]={ + [9833]={ [1]={ [1]={ limit={ @@ -214993,7 +215108,7 @@ return { [1]="self_cold_damage_on_reaching_maximum_power_charges" } }, - [9826]={ + [9834]={ [1]={ [1]={ limit={ @@ -215022,7 +215137,7 @@ return { [1]="self_critical_strike_multiplier_+%_while_ignited" } }, - [9827]={ + [9835]={ [1]={ [1]={ limit={ @@ -215051,7 +215166,7 @@ return { [1]="self_curse_duration_+%_per_10_devotion" } }, - [9828]={ + [9836]={ [1]={ [1]={ limit={ @@ -215080,7 +215195,7 @@ return { [1]="self_elemental_status_duration_-%_per_10_devotion" } }, - [9829]={ + [9837]={ [1]={ [1]={ limit={ @@ -215096,7 +215211,7 @@ return { [1]="self_physical_damage_on_movement_skill_use" } }, - [9830]={ + [9838]={ [1]={ [1]={ limit={ @@ -215112,7 +215227,7 @@ return { [1]="self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action" } }, - [9831]={ + [9839]={ [1]={ [1]={ limit={ @@ -215128,7 +215243,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently" } }, - [9832]={ + [9840]={ [1]={ [1]={ limit={ @@ -215144,7 +215259,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item" } }, - [9833]={ + [9841]={ [1]={ [1]={ limit={ @@ -215160,7 +215275,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy" } }, - [9834]={ + [9842]={ [1]={ [1]={ limit={ @@ -215176,7 +215291,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [9835]={ + [9843]={ [1]={ [1]={ limit={ @@ -215192,7 +215307,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive" } }, - [9836]={ + [9844]={ [1]={ [1]={ limit={ @@ -215208,7 +215323,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_on_consecrated_ground" } }, - [9837]={ + [9845]={ [1]={ [1]={ limit={ @@ -215237,7 +215352,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [9838]={ + [9846]={ [1]={ [1]={ limit={ @@ -215266,7 +215381,7 @@ return { [1]="sentinel_of_purity_damage_+%" } }, - [9839]={ + [9847]={ [1]={ [1]={ limit={ @@ -215291,7 +215406,7 @@ return { [1]="serpent_strike_maximum_snakes" } }, - [9840]={ + [9848]={ [1]={ [1]={ limit={ @@ -215316,7 +215431,7 @@ return { [1]="shapeshift_slam_skill_aftershock_chance_%" } }, - [9841]={ + [9849]={ [1]={ [1]={ limit={ @@ -215332,7 +215447,7 @@ return { [1]="share_charges_with_allies_in_your_presence" } }, - [9842]={ + [9850]={ [1]={ [1]={ limit={ @@ -215348,7 +215463,7 @@ return { [1]="share_combo_across_weapon_sets_and_weapon_types" } }, - [9843]={ + [9851]={ [1]={ [1]={ limit={ @@ -215364,7 +215479,7 @@ return { [1]="shatter_has_%_chance_to_cover_in_frost" } }, - [9844]={ + [9852]={ [1]={ [1]={ limit={ @@ -215380,7 +215495,7 @@ return { [1]="shatter_on_kill_if_fully_broken_armour" } }, - [9845]={ + [9853]={ [1]={ [1]={ limit={ @@ -215396,7 +215511,7 @@ return { [1]="shatter_on_kill_vs_bleeding_enemies" } }, - [9846]={ + [9854]={ [1]={ [1]={ limit={ @@ -215412,7 +215527,7 @@ return { [1]="shatter_on_kill_vs_poisoned_enemies" } }, - [9847]={ + [9855]={ [1]={ [1]={ limit={ @@ -215441,7 +215556,7 @@ return { [1]="shattering_steel_damage_+%" } }, - [9848]={ + [9856]={ [1]={ [1]={ limit={ @@ -215457,7 +215572,7 @@ return { [1]="shattering_steel_fortify_on_hit_close_range" } }, - [9849]={ + [9857]={ [1]={ [1]={ limit={ @@ -215482,7 +215597,7 @@ return { [1]="shattering_steel_number_of_additional_projectiles" } }, - [9850]={ + [9858]={ [1]={ [1]={ limit={ @@ -215498,7 +215613,7 @@ return { [1]="shattering_steel_%_chance_to_not_consume_ammo" } }, - [9851]={ + [9859]={ [1]={ [1]={ limit={ @@ -215514,7 +215629,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating" } }, - [9852]={ + [9860]={ [1]={ [1]={ limit={ @@ -215535,7 +215650,7 @@ return { [2]="shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield" } }, - [9853]={ + [9861]={ [1]={ [1]={ limit={ @@ -215564,7 +215679,7 @@ return { [1]="shield_crush_attack_speed_+%" } }, - [9854]={ + [9862]={ [1]={ [1]={ limit={ @@ -215593,7 +215708,7 @@ return { [1]="shield_crush_damage_+%" } }, - [9855]={ + [9863]={ [1]={ [1]={ limit={ @@ -215622,7 +215737,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [9856]={ + [9864]={ [1]={ [1]={ limit={ @@ -215651,7 +215766,7 @@ return { [1]="shield_armour_evasion_energy_shield_+%" } }, - [9857]={ + [9865]={ [1]={ [1]={ limit={ @@ -215680,7 +215795,7 @@ return { [1]="shield_armour_evasion_energy_shield_+%_per_25_tribute" } }, - [9858]={ + [9866]={ [1]={ [1]={ limit={ @@ -215709,7 +215824,7 @@ return { [1]="shield_armour_evasion_energy_shield_+%_per_10_devotion" } }, - [9859]={ + [9867]={ [1]={ [1]={ limit={ @@ -215738,7 +215853,7 @@ return { [1]="shock_and_freeze_apply_elemental_damage_taken_+%" } }, - [9860]={ + [9868]={ [1]={ [1]={ limit={ @@ -215763,7 +215878,7 @@ return { [1]="shock_attackers_for_4_seconds_on_block_%_chance" } }, - [9861]={ + [9869]={ [1]={ [1]={ limit={ @@ -215792,7 +215907,7 @@ return { [1]="shock_chance_+%_vs_electrocuted_enemies" } }, - [9862]={ + [9870]={ [1]={ [1]={ limit={ @@ -215821,7 +215936,7 @@ return { [1]="shock_effect_against_cursed_enemies_+%" } }, - [9863]={ + [9871]={ [1]={ [1]={ limit={ @@ -215850,7 +215965,7 @@ return { [1]="shock_effect_+%" } }, - [9864]={ + [9872]={ [1]={ [1]={ limit={ @@ -215879,7 +215994,7 @@ return { [1]="shock_effect_+%_if_consumed_frenzy_charge_recently" } }, - [9865]={ + [9873]={ [1]={ [1]={ limit={ @@ -215908,7 +216023,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [9866]={ + [9874]={ [1]={ [1]={ limit={ @@ -215924,7 +216039,7 @@ return { [1]="shock_enemies_in_150cm_radius_on_shock_chance_%" } }, - [9867]={ + [9875]={ [1]={ [1]={ limit={ @@ -215940,7 +216055,7 @@ return { [1]="shock_ground_on_using_a_wind_skill" } }, - [9868]={ + [9876]={ [1]={ [1]={ limit={ @@ -215956,7 +216071,7 @@ return { [1]="shock_magnitude_calculated_from_damage" } }, - [9869]={ + [9877]={ [1]={ [1]={ limit={ @@ -215972,7 +216087,7 @@ return { [1]="shock_maximum_magnitude_is_60%" } }, - [9870]={ + [9878]={ [1]={ [1]={ limit={ @@ -215988,7 +216103,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [9871]={ + [9879]={ [1]={ [1]={ [1]={ @@ -216008,7 +216123,7 @@ return { [1]="shock_self_for_x_ms_when_you_focus" } }, - [9872]={ + [9880]={ [1]={ [1]={ [1]={ @@ -216028,7 +216143,7 @@ return { [1]="shock_nearby_enemies_for_x_ms_when_you_focus" } }, - [9873]={ + [9881]={ [1]={ [1]={ limit={ @@ -216044,7 +216159,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [9874]={ + [9882]={ [1]={ [1]={ limit={ @@ -216073,7 +216188,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [9875]={ + [9883]={ [1]={ [1]={ limit={ @@ -216102,7 +216217,7 @@ return { [1]="shocked_chilled_effect_on_self_+%" } }, - [9876]={ + [9884]={ [1]={ [1]={ limit={ @@ -216131,7 +216246,7 @@ return { [1]="shocked_effect_on_self_+%_while_shapeshifted" } }, - [9877]={ + [9885]={ [1]={ [1]={ limit={ @@ -216164,7 +216279,7 @@ return { [1]="shocked_effect_on_self_+%" } }, - [9878]={ + [9886]={ [1]={ [1]={ limit={ @@ -216180,7 +216295,7 @@ return { [1]="shocked_enemies_explode_for_%_life_as_lightning_damage" } }, - [9879]={ + [9887]={ [1]={ [1]={ limit={ @@ -216209,7 +216324,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [9880]={ + [9888]={ [1]={ [1]={ limit={ @@ -216234,7 +216349,7 @@ return { [1]="shocked_ground_on_death_%" } }, - [9881]={ + [9889]={ [1]={ [1]={ limit={ @@ -216259,7 +216374,7 @@ return { [1]="shrapnel_ballista_num_additional_arrows" } }, - [9882]={ + [9890]={ [1]={ [1]={ limit={ @@ -216284,7 +216399,7 @@ return { [1]="shrapnel_ballista_num_pierce" } }, - [9883]={ + [9891]={ [1]={ [1]={ limit={ @@ -216313,7 +216428,7 @@ return { [1]="shrapnel_ballista_projectile_speed_+%" } }, - [9884]={ + [9892]={ [1]={ [1]={ limit={ @@ -216342,7 +216457,7 @@ return { [1]="shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%" } }, - [9885]={ + [9893]={ [1]={ [1]={ limit={ @@ -216371,7 +216486,7 @@ return { [1]="galvanic_arrow_area_damage_+%" } }, - [9886]={ + [9894]={ [1]={ [1]={ limit={ @@ -216400,7 +216515,7 @@ return { [1]="shrapnel_trap_area_of_effect_+%" } }, - [9887]={ + [9895]={ [1]={ [1]={ limit={ @@ -216429,7 +216544,7 @@ return { [1]="shrapnel_trap_damage_+%" } }, - [9888]={ + [9896]={ [1]={ [1]={ limit={ @@ -216454,7 +216569,7 @@ return { [1]="shrapnel_trap_number_of_additional_secondary_explosions" } }, - [9889]={ + [9897]={ [1]={ [1]={ limit={ @@ -216483,7 +216598,7 @@ return { [1]="siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%" } }, - [9890]={ + [9898]={ [1]={ [1]={ limit={ @@ -216512,7 +216627,7 @@ return { [1]="sigil_attached_target_damage_+%" } }, - [9891]={ + [9899]={ [1]={ [1]={ limit={ @@ -216541,7 +216656,7 @@ return { [1]="sigil_attached_target_damage_taken_+%" } }, - [9892]={ + [9900]={ [1]={ [1]={ limit={ @@ -216570,7 +216685,7 @@ return { [1]="sigil_critical_strike_chance_+%" } }, - [9893]={ + [9901]={ [1]={ [1]={ limit={ @@ -216586,7 +216701,7 @@ return { [1]="sigil_critical_strike_multiplier_+" } }, - [9894]={ + [9902]={ [1]={ [1]={ limit={ @@ -216615,7 +216730,7 @@ return { [1]="sigil_damage_+%" } }, - [9895]={ + [9903]={ [1]={ [1]={ limit={ @@ -216644,7 +216759,7 @@ return { [1]="sigil_damage_+%_per_10_devotion" } }, - [9896]={ + [9904]={ [1]={ [1]={ limit={ @@ -216673,7 +216788,7 @@ return { [1]="sigil_duration_+%" } }, - [9897]={ + [9905]={ [1]={ [1]={ limit={ @@ -216702,7 +216817,7 @@ return { [1]="sigil_recall_cooldown_speed_+%" } }, - [9898]={ + [9906]={ [1]={ [1]={ limit={ @@ -216731,7 +216846,7 @@ return { [1]="sigil_recall_cooldown_speed_+%_per_brand_up_to_40%" } }, - [9899]={ + [9907]={ [1]={ [1]={ limit={ @@ -216760,7 +216875,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [9900]={ + [9908]={ [1]={ [1]={ limit={ @@ -216789,7 +216904,7 @@ return { [1]="sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently" } }, - [9901]={ + [9909]={ [1]={ [1]={ limit={ @@ -216818,7 +216933,7 @@ return { [1]="sigil_target_search_range_+%" } }, - [9902]={ + [9910]={ [1]={ [1]={ limit={ @@ -216847,7 +216962,7 @@ return { [1]="skeletal_chains_area_of_effect_+%" } }, - [9903]={ + [9911]={ [1]={ [1]={ limit={ @@ -216876,7 +216991,7 @@ return { [1]="skeletal_chains_cast_speed_+%" } }, - [9904]={ + [9912]={ [1]={ [1]={ limit={ @@ -216905,7 +217020,7 @@ return { [1]="skeleton_attack_speed_+%" } }, - [9905]={ + [9913]={ [1]={ [1]={ limit={ @@ -216934,7 +217049,7 @@ return { [1]="skeleton_cast_speed_+%" } }, - [9906]={ + [9914]={ [1]={ [1]={ limit={ @@ -216963,7 +217078,7 @@ return { [1]="reservation_efficiency_+%_of_skeleton_minion_skills" } }, - [9907]={ + [9915]={ [1]={ [1]={ limit={ @@ -216996,7 +217111,7 @@ return { [1]="skeleton_minion_reservation_+%" } }, - [9908]={ + [9916]={ [1]={ [1]={ limit={ @@ -217025,7 +217140,7 @@ return { [1]="skeleton_movement_speed_+%" } }, - [9909]={ + [9917]={ [1]={ [1]={ limit={ @@ -217041,7 +217156,7 @@ return { [1]="skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element" } }, - [9910]={ + [9918]={ [1]={ [1]={ limit={ @@ -217057,7 +217172,7 @@ return { [1]="skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments" } }, - [9911]={ + [9919]={ [1]={ [1]={ limit={ @@ -217073,7 +217188,7 @@ return { [1]="skeletons_are_permanent_minions" } }, - [9912]={ + [9920]={ [1]={ [1]={ limit={ @@ -217089,7 +217204,7 @@ return { [1]="skill_additional_fissure_chance_%" } }, - [9913]={ + [9921]={ [1]={ [1]={ limit={ @@ -217105,7 +217220,7 @@ return { [1]="skill_can_see_monster_categories" } }, - [9914]={ + [9922]={ [1]={ [1]={ limit={ @@ -217121,7 +217236,7 @@ return { [1]="skill_cost_base_life_equal_to_base_mana" } }, - [9915]={ + [9923]={ [1]={ [1]={ limit={ @@ -217150,7 +217265,7 @@ return { [1]="skill_cost_efficiency_+%_if_consumed_power_charge_recently" } }, - [9916]={ + [9924]={ [1]={ [1]={ limit={ @@ -217179,7 +217294,7 @@ return { [1]="skill_detonation_time_+%" } }, - [9917]={ + [9925]={ [1]={ [1]={ limit={ @@ -217208,7 +217323,7 @@ return { [1]="skill_effect_duration_+%_per_enemy_frozen_last_8_seconds" } }, - [9918]={ + [9926]={ [1]={ [1]={ limit={ @@ -217237,7 +217352,7 @@ return { [1]="skill_effect_duration_+%_when_using_shapeshift_skills" } }, - [9919]={ + [9927]={ [1]={ [1]={ limit={ @@ -217266,7 +217381,7 @@ return { [1]="skill_effect_duration_+%_while_affected_by_malevolence" } }, - [9920]={ + [9928]={ [1]={ [1]={ limit={ @@ -217295,7 +217410,7 @@ return { [1]="skill_effect_duration_+%_with_bow_skills" } }, - [9921]={ + [9929]={ [1]={ [1]={ limit={ @@ -217324,7 +217439,7 @@ return { [1]="skill_effect_duration_+%_with_non_curse_aura_skills" } }, - [9922]={ + [9930]={ [1]={ [1]={ limit={ @@ -217340,7 +217455,7 @@ return { [1]="skill_life_cost_+_with_channelling_skills" } }, - [9923]={ + [9931]={ [1]={ [1]={ limit={ @@ -217356,7 +217471,7 @@ return { [1]="skill_life_cost_+_with_non_channelling_skills" } }, - [9924]={ + [9932]={ [1]={ [1]={ limit={ @@ -217372,7 +217487,7 @@ return { [1]="skill_mana_cost_+_while_affected_by_clarity" } }, - [9925]={ + [9933]={ [1]={ [1]={ limit={ @@ -217388,7 +217503,7 @@ return { [1]="skill_mana_cost_+_with_channelling_skills" } }, - [9926]={ + [9934]={ [1]={ [1]={ limit={ @@ -217404,7 +217519,7 @@ return { [1]="base_mana_cost_+_with_channelling_skills" } }, - [9927]={ + [9935]={ [1]={ [1]={ limit={ @@ -217420,7 +217535,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills" } }, - [9928]={ + [9936]={ [1]={ [1]={ limit={ @@ -217436,7 +217551,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_skills" } }, - [9929]={ + [9937]={ [1]={ [1]={ limit={ @@ -217452,7 +217567,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity" } }, - [9930]={ + [9938]={ [1]={ [1]={ limit={ @@ -217468,7 +217583,7 @@ return { [1]="skill_mana_costs_converted_to_life_costs_%_during_life_flask" } }, - [9931]={ + [9939]={ [1]={ [1]={ limit={ @@ -217497,7 +217612,36 @@ return { [1]="skill_speed_+%_if_consumed_frenzy_charge_recently" } }, - [9932]={ + [9940]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Skill Speed for each Corrupted Item Equipped" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Skill Speed for each Corrupted Item Equipped" + } + }, + stats={ + [1]="skill_speed_+%_per_equipped_corrupted_item" + } + }, + [9941]={ [1]={ [1]={ limit={ @@ -217526,7 +217670,7 @@ return { [1]="skill_speed_+%_while_on_low_mana" } }, - [9933]={ + [9942]={ [1]={ [1]={ limit={ @@ -217555,7 +217699,7 @@ return { [1]="skill_speed_+%_while_shapeshifted" } }, - [9934]={ + [9943]={ [1]={ [1]={ limit={ @@ -217580,7 +217724,7 @@ return { [1]="skill_speed_+%_with_channelling_skills" } }, - [9935]={ + [9944]={ [1]={ [1]={ limit={ @@ -217596,7 +217740,7 @@ return { [1]="skills_cost_divinity_instead_of_mana_or_life" } }, - [9936]={ + [9945]={ [1]={ [1]={ limit={ @@ -217612,7 +217756,7 @@ return { [1]="skills_cost_no_mana_while_focused" } }, - [9937]={ + [9946]={ [1]={ [1]={ limit={ @@ -217628,7 +217772,7 @@ return { [1]="skills_deal_you_x%_of_mana_cost_as_physical_damage" } }, - [9938]={ + [9947]={ [1]={ [1]={ limit={ @@ -217653,7 +217797,7 @@ return { [1]="skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo" } }, - [9939]={ + [9948]={ [1]={ [1]={ limit={ @@ -217678,7 +217822,7 @@ return { [1]="skills_from_corrupted_gems_cost_life_instead_of_%_mana_cost" } }, - [9940]={ + [9949]={ [1]={ [1]={ [1]={ @@ -217698,7 +217842,7 @@ return { [1]="skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [9941]={ + [9950]={ [1]={ [1]={ [1]={ @@ -217718,7 +217862,7 @@ return { [1]="skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [9942]={ + [9951]={ [1]={ [1]={ limit={ @@ -217747,7 +217891,7 @@ return { [1]="skills_supported_by_nightblade_have_elusive_effect_+%" } }, - [9943]={ + [9952]={ [1]={ [1]={ [1]={ @@ -217784,7 +217928,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_-2%_per_1" } }, - [9944]={ + [9953]={ [1]={ [1]={ limit={ @@ -217813,7 +217957,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_+%" } }, - [9945]={ + [9954]={ [1]={ [1]={ limit={ @@ -217838,7 +217982,7 @@ return { [1]="slam_aftershock_chance_%" } }, - [9946]={ + [9955]={ [1]={ [1]={ limit={ @@ -217867,7 +218011,23 @@ return { [1]="slam_skill_area_of_effect_+%" } }, - [9947]={ + [9956]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Slam Skill Gems" + } + }, + stats={ + [1]="slam_skill_gem_level_+" + } + }, + [9957]={ [1]={ [1]={ limit={ @@ -217896,7 +218056,7 @@ return { [1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%" } }, - [9948]={ + [9958]={ [1]={ [1]={ limit={ @@ -217912,7 +218072,7 @@ return { [1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100" } }, - [9949]={ + [9959]={ [1]={ [1]={ limit={ @@ -217941,7 +218101,7 @@ return { [1]="slayer_damage_+%_final_against_unique_enemies" } }, - [9950]={ + [9960]={ [1]={ [1]={ limit={ @@ -217970,7 +218130,7 @@ return { [1]="slayer_damage_+%_final_from_distance" } }, - [9951]={ + [9961]={ [1]={ [1]={ limit={ @@ -217999,7 +218159,7 @@ return { [1]="slither_elusive_effect_+%" } }, - [9952]={ + [9962]={ [1]={ [1]={ limit={ @@ -218015,7 +218175,7 @@ return { [1]="slither_wither_stacks" } }, - [9953]={ + [9963]={ [1]={ [1]={ limit={ @@ -218048,7 +218208,7 @@ return { [1]="slow_potency_+%_if_you_have_used_a_charm_recently" } }, - [9954]={ + [9964]={ [1]={ [1]={ limit={ @@ -218064,7 +218224,7 @@ return { [1]="slows_have_no_potency_on_you" } }, - [9955]={ + [9965]={ [1]={ [1]={ limit={ @@ -218080,7 +218240,7 @@ return { [1]="slows_have_no_potency_on_you_while_missing_ward" } }, - [9956]={ + [9966]={ [1]={ [1]={ limit={ @@ -218096,7 +218256,7 @@ return { [1]="slows_have_no_potency_on_you_while_sprinting" } }, - [9957]={ + [9967]={ [1]={ [1]={ limit={ @@ -218125,7 +218285,7 @@ return { [1]="small_passives_effect_+%" } }, - [9958]={ + [9968]={ [1]={ [1]={ limit={ @@ -218141,7 +218301,7 @@ return { [1]="smite_aura_effect_+%" } }, - [9959]={ + [9969]={ [1]={ [1]={ limit={ @@ -218157,7 +218317,7 @@ return { [1]="smite_chance_for_lighting_to_strike_extra_target_%" } }, - [9960]={ + [9970]={ [1]={ [1]={ limit={ @@ -218186,7 +218346,7 @@ return { [1]="smite_damage_+%" } }, - [9961]={ + [9971]={ [1]={ [1]={ limit={ @@ -218202,7 +218362,7 @@ return { [1]="smite_static_strike_killing_blow_consumes_corpse_restore_%_life" } }, - [9962]={ + [9972]={ [1]={ [1]={ limit={ @@ -218218,7 +218378,7 @@ return { [1]="smoke_cloud_while_stationary_radius" } }, - [9963]={ + [9973]={ [1]={ [1]={ limit={ @@ -218247,7 +218407,7 @@ return { [1]="snap_damage_+%_final_if_created_from_unique" } }, - [9964]={ + [9974]={ [1]={ [1]={ limit={ @@ -218276,7 +218436,7 @@ return { [1]="snapping_adder_damage_+%" } }, - [9965]={ + [9975]={ [1]={ [1]={ limit={ @@ -218292,7 +218452,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [9966]={ + [9976]={ [1]={ [1]={ limit={ @@ -218317,7 +218477,7 @@ return { [1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance" } }, - [9967]={ + [9977]={ [1]={ [1]={ limit={ @@ -218346,7 +218506,7 @@ return { [1]="snipe_attack_speed_+%" } }, - [9968]={ + [9978]={ [1]={ [1]={ limit={ @@ -218375,7 +218535,7 @@ return { [1]="snipe_damage_+%_final_if_created_from_unique" } }, - [9969]={ + [9979]={ [1]={ [1]={ [1]={ @@ -218417,7 +218577,7 @@ return { [2]="solaris_spear_number_of_pulses" } }, - [9970]={ + [9980]={ [1]={ [1]={ limit={ @@ -218446,7 +218606,7 @@ return { [1]="sorcery_ward_+%_strength" } }, - [9971]={ + [9981]={ [1]={ [1]={ limit={ @@ -218462,7 +218622,7 @@ return { [1]="sorcery_ward_applies_to_physical_chaos" } }, - [9972]={ + [9982]={ [1]={ [1]={ limit={ @@ -218487,7 +218647,7 @@ return { [1]="soul_eater_maximum_stacks" } }, - [9973]={ + [9983]={ [1]={ [1]={ limit={ @@ -218516,7 +218676,7 @@ return { [1]="soul_link_duration_+%" } }, - [9974]={ + [9984]={ [1]={ [1]={ limit={ @@ -218532,7 +218692,7 @@ return { [1]="soulfeast_number_of_secondary_projectiles" } }, - [9975]={ + [9985]={ [1]={ [1]={ limit={ @@ -218565,7 +218725,7 @@ return { [1]="soulrend_applies_hinder_movement_speed_+%" } }, - [9976]={ + [9986]={ [1]={ [1]={ limit={ @@ -218594,7 +218754,7 @@ return { [1]="soulrend_damage_+%" } }, - [9977]={ + [9987]={ [1]={ [1]={ limit={ @@ -218619,7 +218779,7 @@ return { [1]="soulrend_number_of_additional_projectiles" } }, - [9978]={ + [9988]={ [1]={ [1]={ limit={ @@ -218644,7 +218804,7 @@ return { [1]="spark_number_of_additional_projectiles" } }, - [9979]={ + [9989]={ [1]={ [1]={ limit={ @@ -218660,7 +218820,7 @@ return { [1]="spark_projectiles_nova" } }, - [9980]={ + [9990]={ [1]={ [1]={ limit={ @@ -218693,7 +218853,7 @@ return { [1]="spark_skill_effect_duration_+%" } }, - [9981]={ + [9991]={ [1]={ [1]={ limit={ @@ -218718,7 +218878,7 @@ return { [1]="spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent" } }, - [9982]={ + [9992]={ [1]={ [1]={ limit={ @@ -218734,7 +218894,7 @@ return { [1]="spawn_defender_with_totem" } }, - [9983]={ + [9993]={ [1]={ [1]={ limit={ @@ -218750,7 +218910,7 @@ return { [1]="spear_skills_inflict_bloodstone_lance_on_hit" } }, - [9984]={ + [9994]={ [1]={ [1]={ limit={ @@ -218775,7 +218935,7 @@ return { [1]="spear_throws_consume_frenzy_charge_to_fire_additional_projectiles" } }, - [9985]={ + [9995]={ [1]={ [1]={ limit={ @@ -218804,7 +218964,7 @@ return { [1]="spectral_helix_damage_+%" } }, - [9986]={ + [9996]={ [1]={ [1]={ limit={ @@ -218833,7 +218993,7 @@ return { [1]="spectral_helix_projectile_speed_+%" } }, - [9987]={ + [9997]={ [1]={ [1]={ [1]={ @@ -218853,7 +219013,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [9988]={ + [9998]={ [1]={ [1]={ limit={ @@ -218878,7 +219038,7 @@ return { [1]="spectral_shield_throw_additional_chains" } }, - [9989]={ + [9999]={ [1]={ [1]={ limit={ @@ -218907,7 +219067,7 @@ return { [1]="spectral_shield_throw_damage_+%" } }, - [9990]={ + [10000]={ [1]={ [1]={ limit={ @@ -218932,7 +219092,7 @@ return { [1]="spectral_shield_throw_num_of_additional_projectiles" } }, - [9991]={ + [10001]={ [1]={ [1]={ limit={ @@ -218961,7 +219121,7 @@ return { [1]="spectral_shield_throw_projectile_speed_+%" } }, - [9992]={ + [10002]={ [1]={ [1]={ limit={ @@ -218977,7 +219137,7 @@ return { [1]="spectral_shield_throw_secondary_projectiles_pierce" } }, - [9993]={ + [10003]={ [1]={ [1]={ [1]={ @@ -219006,7 +219166,7 @@ return { [1]="spectral_shield_throw_shard_projectiles_+%_final" } }, - [9994]={ + [10004]={ [1]={ [1]={ limit={ @@ -219031,7 +219191,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [9995]={ + [10005]={ [1]={ [1]={ [1]={ @@ -219051,7 +219211,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [9996]={ + [10006]={ [1]={ [1]={ limit={ @@ -219067,7 +219227,7 @@ return { [1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%" } }, - [9997]={ + [10007]={ [1]={ [1]={ limit={ @@ -219083,7 +219243,7 @@ return { [1]="spectre_maximum_life_+" } }, - [9998]={ + [10008]={ [1]={ [1]={ limit={ @@ -219116,7 +219276,7 @@ return { [1]="demon_minion_reservation_+%" } }, - [9999]={ + [10009]={ [1]={ [1]={ limit={ @@ -219145,7 +219305,7 @@ return { [1]="spectre_zombie_skeleton_critical_strike_multiplier_+" } }, - [10000]={ + [10010]={ [1]={ [1]={ limit={ @@ -219161,7 +219321,7 @@ return { [1]="spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised" } }, - [10001]={ + [10011]={ [1]={ [1]={ limit={ @@ -219177,7 +219337,7 @@ return { [1]="spectres_critical_strike_chance_+%" } }, - [10002]={ + [10012]={ [1]={ [1]={ limit={ @@ -219193,7 +219353,7 @@ return { [1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance" } }, - [10003]={ + [10013]={ [1]={ [1]={ [1]={ @@ -219213,7 +219373,7 @@ return { [1]="spectres_have_base_duration_ms" } }, - [10004]={ + [10014]={ [1]={ [1]={ [1]={ @@ -219233,7 +219393,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad" } }, - [10005]={ + [10015]={ [1]={ [1]={ limit={ @@ -219262,7 +219422,7 @@ return { [1]="spell_ailment_magnitude_+%_per_100_max_life_with_non_channelling_skills" } }, - [10006]={ + [10016]={ [1]={ [1]={ limit={ @@ -219283,7 +219443,7 @@ return { [2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect" } }, - [10007]={ + [10017]={ [1]={ [1]={ limit={ @@ -219312,7 +219472,7 @@ return { [1]="spell_area_damage_+%" } }, - [10008]={ + [10018]={ [1]={ [1]={ limit={ @@ -219341,7 +219501,7 @@ return { [1]="spell_area_of_effect_+%" } }, - [10009]={ + [10019]={ [1]={ [1]={ limit={ @@ -219366,7 +219526,7 @@ return { [1]="spell_chance_to_deal_double_damage_%" } }, - [10010]={ + [10020]={ [1]={ [1]={ limit={ @@ -219382,7 +219542,7 @@ return { [1]="spell_critical_hit_chance_%_for_lucky_damage" } }, - [10011]={ + [10021]={ [1]={ [1]={ limit={ @@ -219391,7 +219551,7 @@ return { [2]="#" } }, - text="Non-Channelling Spells have {0}% increased Critical Hit Chance per 100 maximum Mana" + text="Non-Channelling Skills have {0}% increased Spell Critical Hit Chance per 100 maximum Mana" }, [2]={ limit={ @@ -219400,14 +219560,14 @@ return { [2]=-1 } }, - text="Non-Channelling Spells have {0}% reduced Critical Hit Chance per 100 maximum Mana" + text="Non-Channelling Skills have {0}% reduced Spell Critical Hit Chance per 100 maximum Mana" } }, stats={ [1]="spell_critical_strike_chance_+%_per_100_max_mana_with_non_channelling_skills" } }, - [10012]={ + [10022]={ [1]={ [1]={ limit={ @@ -219436,7 +219596,7 @@ return { [1]="spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals" } }, - [10013]={ + [10023]={ [1]={ [1]={ limit={ @@ -219461,7 +219621,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills" } }, - [10014]={ + [10024]={ [1]={ [1]={ limit={ @@ -219490,7 +219650,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_life" } }, - [10015]={ + [10025]={ [1]={ [1]={ limit={ @@ -219519,7 +219679,7 @@ return { [1]="spell_critical_strike_chance_+%_per_raised_spectre" } }, - [10016]={ + [10026]={ [1]={ [1]={ limit={ @@ -219535,7 +219695,7 @@ return { [1]="spell_damage_+%_during_mana_flask_effect" } }, - [10017]={ + [10027]={ [1]={ [1]={ limit={ @@ -219564,7 +219724,7 @@ return { [1]="spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently" } }, - [10018]={ + [10028]={ [1]={ [1]={ limit={ @@ -219580,7 +219740,7 @@ return { [1]="spell_damage_+%_for_each_different_non_instant_attack_youve_used_in_the_past_8_seconds" } }, - [10019]={ + [10029]={ [1]={ [1]={ limit={ @@ -219609,7 +219769,7 @@ return { [1]="spell_damage_+%_if_have_consumed_infusion_recently" } }, - [10020]={ + [10030]={ [1]={ [1]={ limit={ @@ -219638,7 +219798,7 @@ return { [1]="spell_damage_+%_if_have_crit_recently" } }, - [10021]={ + [10031]={ [1]={ [1]={ limit={ @@ -219667,7 +219827,7 @@ return { [1]="spell_damage_+%_if_minion_died_recently" } }, - [10022]={ + [10032]={ [1]={ [1]={ limit={ @@ -219692,7 +219852,7 @@ return { [1]="spell_damage_+%_if_youve_reverted_recently" } }, - [10023]={ + [10033]={ [1]={ [1]={ limit={ @@ -219717,7 +219877,7 @@ return { [1]="spell_damage_+%_per_100_max_mana_with_non_channelling_skills" } }, - [10024]={ + [10034]={ [1]={ [1]={ limit={ @@ -219746,7 +219906,7 @@ return { [1]="spell_damage_+%_per_500_maximum_mana" } }, - [10025]={ + [10035]={ [1]={ [1]={ limit={ @@ -219771,7 +219931,7 @@ return { [1]="spell_damage_+%_per_rage" } }, - [10026]={ + [10036]={ [1]={ [1]={ limit={ @@ -219800,7 +219960,7 @@ return { [1]="spell_damage_+%_while_companion_in_presence" } }, - [10027]={ + [10037]={ [1]={ [1]={ limit={ @@ -219829,7 +219989,7 @@ return { [1]="spell_damage_+%_while_wielding_melee_weapon" } }, - [10028]={ + [10038]={ [1]={ [1]={ limit={ @@ -219858,7 +220018,7 @@ return { [1]="spell_damage_+%_with_spells_that_cost_life" } }, - [10029]={ + [10039]={ [1]={ [1]={ limit={ @@ -219887,7 +220047,7 @@ return { [1]="spell_damage_+%_during_flask_effect" } }, - [10030]={ + [10040]={ [1]={ [1]={ limit={ @@ -219916,7 +220076,7 @@ return { [1]="spell_damage_+%_if_have_crit_in_past_8_seconds" } }, - [10031]={ + [10041]={ [1]={ [1]={ limit={ @@ -219945,7 +220105,7 @@ return { [1]="spell_damage_+%_if_you_have_blocked_recently" } }, - [10032]={ + [10042]={ [1]={ [1]={ limit={ @@ -219974,7 +220134,7 @@ return { [1]="spell_damage_+%_per_100_max_life" } }, - [10033]={ + [10043]={ [1]={ [1]={ limit={ @@ -219999,7 +220159,7 @@ return { [1]="spell_damage_+%_per_100_max_life_with_non_channelling_skills" } }, - [10034]={ + [10044]={ [1]={ [1]={ limit={ @@ -220028,7 +220188,7 @@ return { [1]="spell_damage_+%_per_100_maximum_mana" } }, - [10035]={ + [10045]={ [1]={ [1]={ limit={ @@ -220044,7 +220204,7 @@ return { [1]="spell_damage_+%_per_10_spirit" } }, - [10036]={ + [10046]={ [1]={ [1]={ limit={ @@ -220073,7 +220233,7 @@ return { [1]="spell_damage_+%_per_10_strength" } }, - [10037]={ + [10047]={ [1]={ [1]={ limit={ @@ -220102,7 +220262,7 @@ return { [1]="spell_damage_+%_per_16_dex" } }, - [10038]={ + [10048]={ [1]={ [1]={ limit={ @@ -220131,7 +220291,7 @@ return { [1]="spell_damage_+%_per_16_int" } }, - [10039]={ + [10049]={ [1]={ [1]={ limit={ @@ -220160,7 +220320,7 @@ return { [1]="spell_damage_+%_per_16_strength" } }, - [10040]={ + [10050]={ [1]={ [1]={ limit={ @@ -220189,7 +220349,7 @@ return { [1]="spell_damage_+%_while_shocked" } }, - [10041]={ + [10051]={ [1]={ [1]={ limit={ @@ -220218,7 +220378,7 @@ return { [1]="spell_damage_+%_while_you_have_arcane_surge" } }, - [10042]={ + [10052]={ [1]={ [1]={ limit={ @@ -220247,7 +220407,7 @@ return { [1]="spell_elemental_ailment_magnitude_+%" } }, - [10043]={ + [10053]={ [1]={ [1]={ limit={ @@ -220272,7 +220432,7 @@ return { [1]="spell_hits_against_you_inflict_poison_%" } }, - [10044]={ + [10054]={ [1]={ [1]={ limit={ @@ -220301,7 +220461,7 @@ return { [1]="spell_impale_magnitude_+%" } }, - [10045]={ + [10055]={ [1]={ [1]={ limit={ @@ -220326,7 +220486,7 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [10046]={ + [10056]={ [1]={ [1]={ limit={ @@ -220342,7 +220502,7 @@ return { [1]="spell_projectile_skills_fire_X_additional_projectiles_in_a_circle" } }, - [10047]={ + [10057]={ [1]={ [1]={ limit={ @@ -220358,7 +220518,7 @@ return { [1]="spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova" } }, - [10048]={ + [10058]={ [1]={ [1]={ limit={ @@ -220387,7 +220547,7 @@ return { [1]="spell_skill_projectile_speed_+%" } }, - [10049]={ + [10059]={ [1]={ [1]={ limit={ @@ -220403,7 +220563,7 @@ return { [1]="spell_skills_additional_totems_allowed" } }, - [10050]={ + [10060]={ [1]={ [1]={ limit={ @@ -220419,7 +220579,7 @@ return { [1]="spell_skills_deal_no_damage" } }, - [10051]={ + [10061]={ [1]={ [1]={ limit={ @@ -220435,7 +220595,7 @@ return { [1]="spell_skills_fire_2_additional_projectiles_final_chance_%" } }, - [10052]={ + [10062]={ [1]={ [1]={ limit={ @@ -220460,7 +220620,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [10053]={ + [10063]={ [1]={ [1]={ limit={ @@ -220476,7 +220636,7 @@ return { [1]="spells_chance_to_knockback_on_hit_%" } }, - [10054]={ + [10064]={ [1]={ [1]={ limit={ @@ -220492,7 +220652,7 @@ return { [1]="spells_chance_to_poison_on_hit_%" } }, - [10055]={ + [10065]={ [1]={ [1]={ limit={ @@ -220508,7 +220668,7 @@ return { [1]="spells_cost_life_instead_of_mana_%" } }, - [10056]={ + [10066]={ [1]={ [1]={ limit={ @@ -220524,7 +220684,7 @@ return { [1]="spells_gain_%_physical_damage_if_they_cost_life" } }, - [10057]={ + [10067]={ [1]={ [1]={ limit={ @@ -220549,7 +220709,7 @@ return { [1]="spells_have_x%_chance_inflict_withered_on_hit" } }, - [10058]={ + [10068]={ [1]={ [1]={ limit={ @@ -220574,7 +220734,7 @@ return { [1]="spells_impale_on_hit_%_chance" } }, - [10059]={ + [10069]={ [1]={ [1]={ limit={ @@ -220590,7 +220750,7 @@ return { [1]="spells_penetrates_elemental_resist_%_while_on_low_ward" } }, - [10060]={ + [10070]={ [1]={ [1]={ limit={ @@ -220606,7 +220766,7 @@ return { [1]="spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage" } }, - [10061]={ + [10071]={ [1]={ [1]={ limit={ @@ -220622,7 +220782,7 @@ return { [1]="spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage" } }, - [10062]={ + [10072]={ [1]={ [1]={ limit={ @@ -220651,7 +220811,7 @@ return { [1]="spellslinger_cooldown_duration_+%" } }, - [10063]={ + [10073]={ [1]={ [1]={ [1]={ @@ -220688,7 +220848,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_-2%_per_1" } }, - [10064]={ + [10074]={ [1]={ [1]={ limit={ @@ -220717,7 +220877,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_+%" } }, - [10065]={ + [10075]={ [1]={ [1]={ limit={ @@ -220750,7 +220910,7 @@ return { [1]="spellslinger_mana_reservation_+%" } }, - [10066]={ + [10076]={ [1]={ [1]={ limit={ @@ -220766,7 +220926,7 @@ return { [1]="spending_energy_shield_does_not_interrupt_recharge" } }, - [10067]={ + [10077]={ [1]={ [1]={ limit={ @@ -220795,7 +220955,7 @@ return { [1]="spider_aspect_debuff_duration_+%" } }, - [10068]={ + [10078]={ [1]={ [1]={ limit={ @@ -220824,7 +220984,7 @@ return { [1]="spider_aspect_skill_area_of_effect_+%" } }, - [10069]={ + [10079]={ [1]={ [1]={ [1]={ @@ -220844,7 +221004,7 @@ return { [1]="spider_aspect_web_interval_ms_override" } }, - [10070]={ + [10080]={ [1]={ [1]={ limit={ @@ -220869,7 +221029,7 @@ return { [1]="spike_slam_num_spikes" } }, - [10071]={ + [10081]={ [1]={ [1]={ limit={ @@ -220898,7 +221058,36 @@ return { [1]="spirit_+%_if_you_have_at_least_100_tribute" } }, - [10072]={ + [10082]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spirit for each Corrupted Item Equipped" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spirit for each Corrupted Item Equipped" + } + }, + stats={ + [1]="spirit_+%_per_equipped_corrupted_item" + } + }, + [10083]={ [1]={ [1]={ limit={ @@ -220914,7 +221103,7 @@ return { [1]="spirit_+_if_at_least_200_dexterity" } }, - [10073]={ + [10084]={ [1]={ [1]={ limit={ @@ -220930,7 +221119,7 @@ return { [1]="spirit_+_if_at_least_200_intelligence" } }, - [10074]={ + [10085]={ [1]={ [1]={ limit={ @@ -220946,7 +221135,7 @@ return { [1]="spirit_+_if_at_least_200_strength" } }, - [10075]={ + [10086]={ [1]={ [1]={ limit={ @@ -220962,7 +221151,7 @@ return { [1]="spirit_+_per_2_levels" } }, - [10076]={ + [10087]={ [1]={ [1]={ limit={ @@ -220978,7 +221167,7 @@ return { [1]="spirit_+_per_empty_charm_slot" } }, - [10077]={ + [10088]={ [1]={ [1]={ limit={ @@ -220994,7 +221183,7 @@ return { [1]="spirit_does_not_exist" } }, - [10078]={ + [10089]={ [1]={ [1]={ limit={ @@ -221023,7 +221212,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [10079]={ + [10090]={ [1]={ [1]={ limit={ @@ -221039,7 +221228,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [10080]={ + [10091]={ [1]={ [1]={ limit={ @@ -221055,7 +221244,7 @@ return { [1]="spirit_+%_per_stackable_unique_jewel" } }, - [10081]={ + [10092]={ [1]={ [1]={ limit={ @@ -221071,7 +221260,7 @@ return { [1]="split_arrow_projectiles_fire_in_parallel_x_dist" } }, - [10082]={ + [10093]={ [1]={ [1]={ limit={ @@ -221100,7 +221289,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [10083]={ + [10094]={ [1]={ [1]={ limit={ @@ -221129,7 +221318,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [10084]={ + [10095]={ [1]={ [1]={ limit={ @@ -221158,7 +221347,7 @@ return { [1]="splitting_steel_damage_+%" } }, - [10085]={ + [10096]={ [1]={ [1]={ [1]={ @@ -221178,7 +221367,7 @@ return { [1]="spread_ignite_from_killed_enemies_range" } }, - [10086]={ + [10097]={ [1]={ [1]={ limit={ @@ -221207,7 +221396,7 @@ return { [1]="sprint_movement_speed_+%" } }, - [10087]={ + [10098]={ [1]={ [1]={ limit={ @@ -221236,7 +221425,7 @@ return { [1]="sprint_movement_speed_+%_per_active_persistent_minion" } }, - [10088]={ + [10099]={ [1]={ [1]={ [1]={ @@ -221256,7 +221445,7 @@ return { [1]="life_regeneration_per_minute_in_blood_stance" } }, - [10089]={ + [10100]={ [1]={ [1]={ limit={ @@ -221285,7 +221474,7 @@ return { [1]="projectile_damage_+%_in_blood_stance" } }, - [10090]={ + [10101]={ [1]={ [1]={ limit={ @@ -221314,7 +221503,7 @@ return { [1]="evasion_rating_plus_in_sand_stance" } }, - [10091]={ + [10102]={ [1]={ [1]={ limit={ @@ -221343,7 +221532,7 @@ return { [1]="stance_skill_cooldown_speed_+%" } }, - [10092]={ + [10103]={ [1]={ [1]={ limit={ @@ -221372,7 +221561,7 @@ return { [1]="stance_skills_mana_reservation_efficiency_+%" } }, - [10093]={ + [10104]={ [1]={ [1]={ limit={ @@ -221401,7 +221590,7 @@ return { [1]="stance_skill_reservation_+%" } }, - [10094]={ + [10105]={ [1]={ [1]={ limit={ @@ -221430,7 +221619,7 @@ return { [1]="skill_area_of_effect_+%_in_sand_stance" } }, - [10095]={ + [10106]={ [1]={ [1]={ [1]={ @@ -221450,7 +221639,7 @@ return { [1]="stance_swap_cooldown_modifier_ms" } }, - [10096]={ + [10107]={ [1]={ [1]={ limit={ @@ -221479,7 +221668,7 @@ return { [1]="attack_speed_+%_if_changed_stance_recently" } }, - [10097]={ + [10108]={ [1]={ [1]={ limit={ @@ -221495,7 +221684,7 @@ return { [1]="start_at_zero_energy_shield" } }, - [10098]={ + [10109]={ [1]={ [1]={ limit={ @@ -221511,7 +221700,7 @@ return { [1]="start_energy_shield_recharge_when_you_use_a_mana_flask" } }, - [10099]={ + [10110]={ [1]={ [1]={ limit={ @@ -221527,7 +221716,7 @@ return { [1]="static_strike_additional_number_of_beam_targets" } }, - [10100]={ + [10111]={ [1]={ [1]={ limit={ @@ -221556,7 +221745,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_while_focused" } }, - [10101]={ + [10112]={ [1]={ [1]={ limit={ @@ -221585,7 +221774,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_with_bows" } }, - [10102]={ + [10113]={ [1]={ [1]={ limit={ @@ -221614,7 +221803,7 @@ return { [1]="stealth_+%" } }, - [10103]={ + [10114]={ [1]={ [1]={ limit={ @@ -221643,7 +221832,7 @@ return { [1]="stealth_+%_if_have_hit_with_claw_recently" } }, - [10104]={ + [10115]={ [1]={ [1]={ limit={ @@ -221672,7 +221861,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [10105]={ + [10116]={ [1]={ [1]={ limit={ @@ -221701,7 +221890,7 @@ return { [1]="steel_steal_cast_speed_+%" } }, - [10106]={ + [10117]={ [1]={ [1]={ limit={ @@ -221730,7 +221919,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [10107]={ + [10118]={ [1]={ [1]={ limit={ @@ -221759,7 +221948,7 @@ return { [1]="steelskin_damage_limit_+%" } }, - [10108]={ + [10119]={ [1]={ [1]={ limit={ @@ -221788,7 +221977,7 @@ return { [1]="stibnite_flask_evasion_rating_+%_final" } }, - [10109]={ + [10120]={ [1]={ [1]={ limit={ @@ -221804,7 +221993,7 @@ return { [1]="stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems" } }, - [10110]={ + [10121]={ [1]={ [1]={ limit={ @@ -221820,7 +222009,7 @@ return { [1]="storm_armageddon_sigils_can_target_reaper_minions" } }, - [10111]={ + [10122]={ [1]={ [1]={ limit={ @@ -221849,7 +222038,7 @@ return { [1]="storm_barrier_effect_+%" } }, - [10112]={ + [10123]={ [1]={ [1]={ limit={ @@ -221878,7 +222067,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [10113]={ + [10124]={ [1]={ [1]={ limit={ @@ -221894,7 +222083,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [10114]={ + [10125]={ [1]={ [1]={ limit={ @@ -221910,7 +222099,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [10115]={ + [10126]={ [1]={ [1]={ limit={ @@ -221939,7 +222128,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [10116]={ + [10127]={ [1]={ [1]={ limit={ @@ -221955,7 +222144,7 @@ return { [1]="storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks" } }, - [10117]={ + [10128]={ [1]={ [1]={ limit={ @@ -221971,7 +222160,7 @@ return { [1]="storm_brand_additional_chain_chance_%" } }, - [10118]={ + [10129]={ [1]={ [1]={ limit={ @@ -221987,7 +222176,7 @@ return { [1]="storm_brand_attached_target_lightning_penetration_%" } }, - [10119]={ + [10130]={ [1]={ [1]={ limit={ @@ -222016,7 +222205,7 @@ return { [1]="storm_brand_damage_+%" } }, - [10120]={ + [10131]={ [1]={ [1]={ limit={ @@ -222032,7 +222221,7 @@ return { [1]="storm_burst_15_%_chance_to_create_additional_orb" } }, - [10121]={ + [10132]={ [1]={ [1]={ limit={ @@ -222048,7 +222237,7 @@ return { [1]="storm_burst_additional_object_chance_%" } }, - [10122]={ + [10133]={ [1]={ [1]={ limit={ @@ -222077,7 +222266,7 @@ return { [1]="storm_burst_area_of_effect_+%" } }, - [10123]={ + [10134]={ [1]={ [1]={ limit={ @@ -222093,7 +222282,7 @@ return { [1]="storm_burst_avoid_interruption_while_casting_%" } }, - [10124]={ + [10135]={ [1]={ [1]={ limit={ @@ -222118,7 +222307,7 @@ return { [1]="storm_burst_number_of_additional_projectiles" } }, - [10125]={ + [10136]={ [1]={ [1]={ limit={ @@ -222147,7 +222336,7 @@ return { [1]="storm_rain_damage_+%" } }, - [10126]={ + [10137]={ [1]={ [1]={ limit={ @@ -222172,7 +222361,23 @@ return { [1]="storm_rain_num_additional_arrows" } }, - [10127]={ + [10138]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Storm Skill Gems" + } + }, + stats={ + [1]="storm_skill_gem_level_+" + } + }, + [10139]={ [1]={ [1]={ limit={ @@ -222188,7 +222393,7 @@ return { [1]="storm_skill_limit_+" } }, - [10128]={ + [10140]={ [1]={ [1]={ limit={ @@ -222217,7 +222422,7 @@ return { [1]="stormbind_skill_area_of_effect_+%" } }, - [10129]={ + [10141]={ [1]={ [1]={ limit={ @@ -222246,7 +222451,7 @@ return { [1]="stormbind_skill_damage_+%" } }, - [10130]={ + [10142]={ [1]={ [1]={ limit={ @@ -222275,7 +222480,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_aura_effect_+%" } }, - [10131]={ + [10143]={ [1]={ [1]={ limit={ @@ -222291,7 +222496,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_base_deal_no_damage" } }, - [10132]={ + [10144]={ [1]={ [1]={ limit={ @@ -222320,7 +222525,7 @@ return { [1]="stormweaver_chill_effect_+%_final" } }, - [10133]={ + [10145]={ [1]={ [1]={ limit={ @@ -222349,7 +222554,7 @@ return { [1]="stormweaver_shock_effect_+%_final" } }, - [10134]={ + [10146]={ [1]={ [1]={ limit={ @@ -222365,7 +222570,23 @@ return { [1]="strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills" } }, - [10135]={ + [10147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Strike Skill Gems" + } + }, + stats={ + [1]="strike_skill_gem_level_+" + } + }, + [10148]={ [1]={ [1]={ limit={ @@ -222381,7 +222602,7 @@ return { [1]="strike_skills_knockback_on_melee_hit" } }, - [10136]={ + [10149]={ [1]={ [1]={ limit={ @@ -222397,7 +222618,7 @@ return { [1]="strike_skills_used_with_finality_perform_a_final_strike_if_they_have_one" } }, - [10137]={ + [10150]={ [1]={ [1]={ limit={ @@ -222422,7 +222643,7 @@ return { [1]="stun_and_ailment_threshold_+%_while_surrounded" } }, - [10138]={ + [10151]={ [1]={ [1]={ limit={ @@ -222438,7 +222659,7 @@ return { [1]="stun_duration_on_critical_strike_+%" } }, - [10139]={ + [10152]={ [1]={ [1]={ limit={ @@ -222467,7 +222688,7 @@ return { [1]="stun_duration_+%_per_15_strength" } }, - [10140]={ + [10153]={ [1]={ [1]={ limit={ @@ -222496,7 +222717,7 @@ return { [1]="stun_duration_+%_per_endurance_charge" } }, - [10141]={ + [10154]={ [1]={ [1]={ limit={ @@ -222512,7 +222733,7 @@ return { [1]="stun_nearby_enemies_when_stunned_chance_%" } }, - [10142]={ + [10155]={ [1]={ [1]={ limit={ @@ -222541,7 +222762,7 @@ return { [1]="stun_threshold_+%_during_empowered_attacks" } }, - [10143]={ + [10156]={ [1]={ [1]={ limit={ @@ -222557,7 +222778,7 @@ return { [1]="stun_threshold_+%_for_each_time_hit_recently_up_to_100%" } }, - [10144]={ + [10157]={ [1]={ [1]={ limit={ @@ -222586,7 +222807,7 @@ return { [1]="stun_threshold_+%_if_youve_shapeshifted_to_animal_recently" } }, - [10145]={ + [10158]={ [1]={ [1]={ limit={ @@ -222615,7 +222836,7 @@ return { [1]="stun_threshold_+%_per_25_tribute" } }, - [10146]={ + [10159]={ [1]={ [1]={ limit={ @@ -222644,7 +222865,7 @@ return { [1]="stun_threshold_+%_per_number_of_times_stunned_recently" } }, - [10147]={ + [10160]={ [1]={ [1]={ limit={ @@ -222669,7 +222890,7 @@ return { [1]="stun_threshold_+%_while_channelling" } }, - [10148]={ + [10161]={ [1]={ [1]={ limit={ @@ -222698,7 +222919,7 @@ return { [1]="stun_threshold_+%_while_shapeshifted" } }, - [10149]={ + [10162]={ [1]={ [1]={ limit={ @@ -222727,7 +222948,7 @@ return { [1]="stun_threshold_+%_if_stunned_recently" } }, - [10150]={ + [10163]={ [1]={ [1]={ limit={ @@ -222743,7 +222964,7 @@ return { [1]="stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour" } }, - [10151]={ + [10164]={ [1]={ [1]={ limit={ @@ -222768,7 +222989,7 @@ return { [1]="stun_threshold_+_per_10_maximum_ward" } }, - [10152]={ + [10165]={ [1]={ [1]={ limit={ @@ -222784,7 +223005,7 @@ return { [1]="stun_threshold_+_per_dexterity" } }, - [10153]={ + [10166]={ [1]={ [1]={ limit={ @@ -222800,7 +223021,7 @@ return { [1]="stun_threshold_+_per_strength" } }, - [10154]={ + [10167]={ [1]={ [1]={ limit={ @@ -222816,7 +223037,7 @@ return { [1]="stun_threshold_based_on_%_energy_shield_instead_of_life" } }, - [10155]={ + [10168]={ [1]={ [1]={ limit={ @@ -222832,7 +223053,7 @@ return { [1]="stun_threshold_+_from_%_maximum_energy_shield" } }, - [10156]={ + [10169]={ [1]={ [1]={ limit={ @@ -222848,7 +223069,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [10157]={ + [10170]={ [1]={ [1]={ limit={ @@ -222877,7 +223098,7 @@ return { [1]="stun_threshold_+%_when_not_stunned_recently" } }, - [10158]={ + [10171]={ [1]={ [1]={ limit={ @@ -222906,7 +223127,7 @@ return { [1]="stun_threshold_+%_when_on_full_life" } }, - [10159]={ + [10172]={ [1]={ [1]={ limit={ @@ -222922,7 +223143,7 @@ return { [1]="stun_threshold_reduction_+%_with_500_or_more_strength" } }, - [10160]={ + [10173]={ [1]={ [1]={ limit={ @@ -222938,7 +223159,7 @@ return { [1]="summon_2_totems" } }, - [10161]={ + [10174]={ [1]={ [1]={ limit={ @@ -222967,7 +223188,7 @@ return { [1]="summon_arbalist_attack_speed_+%" } }, - [10162]={ + [10175]={ [1]={ [1]={ limit={ @@ -222983,7 +223204,7 @@ return { [1]="summon_arbalist_chains_+" } }, - [10163]={ + [10176]={ [1]={ [1]={ limit={ @@ -222999,7 +223220,7 @@ return { [1]="summon_arbalist_chance_to_bleed_%" } }, - [10164]={ + [10177]={ [1]={ [1]={ limit={ @@ -223015,7 +223236,7 @@ return { [1]="summon_arbalist_chance_to_crush_on_hit_%" } }, - [10165]={ + [10178]={ [1]={ [1]={ limit={ @@ -223031,7 +223252,7 @@ return { [1]="summon_arbalist_chance_to_deal_double_damage_%" } }, - [10166]={ + [10179]={ [1]={ [1]={ limit={ @@ -223047,7 +223268,7 @@ return { [1]="summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%" } }, - [10167]={ + [10180]={ [1]={ [1]={ limit={ @@ -223063,7 +223284,7 @@ return { [1]="summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%" } }, - [10168]={ + [10181]={ [1]={ [1]={ limit={ @@ -223079,7 +223300,7 @@ return { [1]="summon_arbalist_chance_to_poison_%" } }, - [10169]={ + [10182]={ [1]={ [1]={ limit={ @@ -223095,7 +223316,7 @@ return { [1]="summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%" } }, - [10170]={ + [10183]={ [1]={ [1]={ limit={ @@ -223111,7 +223332,7 @@ return { [1]="summon_arbalist_number_of_additional_projectiles" } }, - [10171]={ + [10184]={ [1]={ [1]={ limit={ @@ -223127,7 +223348,7 @@ return { [1]="summon_arbalist_number_of_splits" } }, - [10172]={ + [10185]={ [1]={ [1]={ limit={ @@ -223143,7 +223364,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_cold" } }, - [10173]={ + [10186]={ [1]={ [1]={ limit={ @@ -223159,7 +223380,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_fire" } }, - [10174]={ + [10187]={ [1]={ [1]={ limit={ @@ -223175,7 +223396,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_convert_to_lightning" } }, - [10175]={ + [10188]={ [1]={ [1]={ limit={ @@ -223191,7 +223412,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_cold" } }, - [10176]={ + [10189]={ [1]={ [1]={ limit={ @@ -223207,7 +223428,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_fire" } }, - [10177]={ + [10190]={ [1]={ [1]={ limit={ @@ -223223,7 +223444,7 @@ return { [1]="summoned_arbalist_physical_damage_%_to_gain_as_lightning" } }, - [10178]={ + [10191]={ [1]={ [1]={ limit={ @@ -223239,7 +223460,7 @@ return { [1]="summon_arbalist_projectiles_fork" } }, - [10179]={ + [10192]={ [1]={ [1]={ limit={ @@ -223255,7 +223476,7 @@ return { [1]="summon_arbalist_targets_to_pierce" } }, - [10180]={ + [10193]={ [1]={ [1]={ limit={ @@ -223271,7 +223492,7 @@ return { [1]="summon_arbalist_chance_to_freeze_%" } }, - [10181]={ + [10194]={ [1]={ [1]={ limit={ @@ -223287,7 +223508,7 @@ return { [1]="summon_arbalist_chance_to_shock_%" } }, - [10182]={ + [10195]={ [1]={ [1]={ limit={ @@ -223303,7 +223524,7 @@ return { [1]="summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%" } }, - [10183]={ + [10196]={ [1]={ [1]={ limit={ @@ -223319,7 +223540,7 @@ return { [1]="summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%" } }, - [10184]={ + [10197]={ [1]={ [1]={ limit={ @@ -223335,7 +223556,7 @@ return { [1]="summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%" } }, - [10185]={ + [10198]={ [1]={ [1]={ limit={ @@ -223351,7 +223572,7 @@ return { [1]="summon_raging_spirit_melee_splash_fire_damage_only" } }, - [10186]={ + [10199]={ [1]={ [1]={ limit={ @@ -223380,7 +223601,7 @@ return { [1]="summon_reaper_cooldown_speed_+%" } }, - [10187]={ + [10200]={ [1]={ [1]={ limit={ @@ -223432,7 +223653,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance" } }, - [10188]={ + [10201]={ [1]={ [1]={ limit={ @@ -223448,7 +223669,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_%_chance" } }, - [10189]={ + [10202]={ [1]={ [1]={ [1]={ @@ -223481,7 +223702,7 @@ return { [1]="summon_skeletons_cooldown_modifier_ms" } }, - [10190]={ + [10203]={ [1]={ [1]={ limit={ @@ -223510,7 +223731,7 @@ return { [1]="summon_skitterbots_area_of_effect_+%" } }, - [10191]={ + [10204]={ [1]={ [1]={ limit={ @@ -223543,7 +223764,7 @@ return { [1]="summon_skitterbots_mana_reservation_+%" } }, - [10192]={ + [10205]={ [1]={ [1]={ limit={ @@ -223559,7 +223780,7 @@ return { [1]="summoned_phantasms_grant_buff" } }, - [10193]={ + [10206]={ [1]={ [1]={ limit={ @@ -223575,7 +223796,7 @@ return { [1]="summoned_phantasms_have_no_duration" } }, - [10194]={ + [10207]={ [1]={ [1]={ limit={ @@ -223591,7 +223812,7 @@ return { [1]="summoned_raging_spirits_have_diamond_and_massive_shrine_buff" } }, - [10195]={ + [10208]={ [1]={ [1]={ limit={ @@ -223620,7 +223841,7 @@ return { [1]="summoned_reaper_damage_+%" } }, - [10196]={ + [10209]={ [1]={ [1]={ limit={ @@ -223636,7 +223857,7 @@ return { [1]="summoned_reaper_physical_dot_multiplier_+" } }, - [10197]={ + [10210]={ [1]={ [1]={ limit={ @@ -223652,7 +223873,7 @@ return { [1]="summoned_skeleton_%_chance_to_wither_for_2_seconds" } }, - [10198]={ + [10211]={ [1]={ [1]={ limit={ @@ -223668,7 +223889,7 @@ return { [1]="summoned_skeleton_%_physical_to_chaos" } }, - [10199]={ + [10212]={ [1]={ [1]={ limit={ @@ -223693,7 +223914,7 @@ return { [1]="summoned_skeletons_cover_in_ash_on_hit_%" } }, - [10200]={ + [10213]={ [1]={ [1]={ [1]={ @@ -223713,7 +223934,7 @@ return { [1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [10201]={ + [10214]={ [1]={ [1]={ limit={ @@ -223729,7 +223950,7 @@ return { [1]="summoned_skeletons_hits_cant_be_evaded" } }, - [10202]={ + [10215]={ [1]={ [1]={ limit={ @@ -223758,7 +223979,7 @@ return { [1]="summoned_skitterbots_cooldown_recovery_+%" } }, - [10203]={ + [10216]={ [1]={ [1]={ limit={ @@ -223774,7 +223995,7 @@ return { [1]="summoned_support_ghosts_have_diamond_and_massive_shrine_buff" } }, - [10204]={ + [10217]={ [1]={ [1]={ limit={ @@ -223790,7 +224011,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [10205]={ + [10218]={ [1]={ [1]={ [1]={ @@ -223819,7 +224040,7 @@ return { [1]="support_approaching_storms_area_of_effect_+%_final" } }, - [10206]={ + [10219]={ [1]={ [1]={ [1]={ @@ -223848,7 +224069,7 @@ return { [1]="support_approaching_storms_damage_+%_final" } }, - [10207]={ + [10220]={ [1]={ [1]={ [1]={ @@ -223877,7 +224098,7 @@ return { [1]="support_approaching_storms_movement_speed_+%_final" } }, - [10208]={ + [10221]={ [1]={ [1]={ limit={ @@ -223906,7 +224127,7 @@ return { [1]="support_buffed_heralds_buff_effect_+%_final" } }, - [10209]={ + [10222]={ [1]={ [1]={ limit={ @@ -223944,7 +224165,7 @@ return { [1]="support_deadly_heralds_buff_effect_+%_final" } }, - [10210]={ + [10223]={ [1]={ [1]={ limit={ @@ -223973,7 +224194,7 @@ return { [1]="support_deadly_heralds_damage_+%_final" } }, - [10211]={ + [10224]={ [1]={ [1]={ limit={ @@ -224002,7 +224223,7 @@ return { [1]="support_fast_forward_detonation_time_+%_final" } }, - [10212]={ + [10225]={ [1]={ [1]={ limit={ @@ -224027,7 +224248,7 @@ return { [1]="support_hourglass_damage_+%_final" } }, - [10213]={ + [10226]={ [1]={ [1]={ limit={ @@ -224043,14 +224264,14 @@ return { [1]="support_jagged_ground_chance_%" } }, - [10214]={ + [10227]={ [1]={ }, stats={ [1]="support_last_gasp_duration_ms" } }, - [10215]={ + [10228]={ [1]={ [1]={ limit={ @@ -224079,7 +224300,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [10216]={ + [10229]={ [1]={ [1]={ limit={ @@ -224100,7 +224321,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [10217]={ + [10230]={ [1]={ [1]={ [1]={ @@ -224120,7 +224341,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [10218]={ + [10231]={ [1]={ [1]={ limit={ @@ -224149,7 +224370,14 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [10219]={ + [10232]={ + [1]={ + }, + stats={ + [1]="support_trigger_mana_flare_on_crit" + } + }, + [10233]={ [1]={ [1]={ limit={ @@ -224165,7 +224393,7 @@ return { [1]="surpassing_chance_%_to_gain_1_puppeteer_stack_on_using_command_skill" } }, - [10220]={ + [10234]={ [1]={ [1]={ limit={ @@ -224190,7 +224418,7 @@ return { [1]="surrounded_area_of_effect_+%" } }, - [10221]={ + [10235]={ [1]={ [1]={ limit={ @@ -224206,7 +224434,7 @@ return { [1]="synthesis_map_adjacent_nodes_global_mod_values_doubled" } }, - [10222]={ + [10236]={ [1]={ [1]={ limit={ @@ -224222,7 +224450,7 @@ return { [1]="synthesis_map_global_mod_values_doubled_on_this_node" } }, - [10223]={ + [10237]={ [1]={ [1]={ limit={ @@ -224238,7 +224466,7 @@ return { [1]="synthesis_map_global_mod_values_tripled_on_this_node" } }, - [10224]={ + [10238]={ [1]={ [1]={ limit={ @@ -224254,7 +224482,7 @@ return { [1]="synthesis_map_memories_do_not_collapse_on_this_node" } }, - [10225]={ + [10239]={ [1]={ [1]={ limit={ @@ -224283,7 +224511,7 @@ return { [1]="synthesis_map_monster_slain_experience_+%_on_this_node" } }, - [10226]={ + [10240]={ [1]={ [1]={ limit={ @@ -224299,7 +224527,7 @@ return { [1]="synthesis_map_nearby_memories_have_bonus" } }, - [10227]={ + [10241]={ [1]={ [1]={ limit={ @@ -224324,7 +224552,7 @@ return { [1]="synthesis_map_node_additional_uses_+" } }, - [10228]={ + [10242]={ [1]={ [1]={ limit={ @@ -224340,7 +224568,7 @@ return { [1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories" } }, - [10229]={ + [10243]={ [1]={ [1]={ limit={ @@ -224365,7 +224593,7 @@ return { [1]="synthesis_map_node_grants_additional_global_mod" } }, - [10230]={ + [10244]={ [1]={ [1]={ limit={ @@ -224381,7 +224609,7 @@ return { [1]="synthesis_map_node_grants_no_global_mod" } }, - [10231]={ + [10245]={ [1]={ [1]={ limit={ @@ -224397,7 +224625,7 @@ return { [1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters" } }, - [10232]={ + [10246]={ [1]={ [1]={ limit={ @@ -224413,7 +224641,7 @@ return { [1]="synthesis_map_node_item_quantity_increases_doubled" } }, - [10233]={ + [10247]={ [1]={ [1]={ limit={ @@ -224429,7 +224657,7 @@ return { [1]="synthesis_map_node_item_rarity_increases_doubled" } }, - [10234]={ + [10248]={ [1]={ [1]={ limit={ @@ -224454,7 +224682,7 @@ return { [1]="synthesis_map_node_level_+" } }, - [10235]={ + [10249]={ [1]={ [1]={ limit={ @@ -224470,7 +224698,7 @@ return { [1]="synthesis_map_node_monsters_drop_no_items" } }, - [10236]={ + [10250]={ [1]={ [1]={ limit={ @@ -224486,7 +224714,7 @@ return { [1]="synthesis_map_node_pack_size_increases_doubled" } }, - [10237]={ + [10251]={ [1]={ [1]={ limit={ @@ -224515,7 +224743,7 @@ return { [1]="tactician_spirit_reservation_+%_final_for_permanent_buffs" } }, - [10238]={ + [10252]={ [1]={ [1]={ limit={ @@ -224544,7 +224772,7 @@ return { [1]="tailwind_effect_on_self_+%" } }, - [10239]={ + [10253]={ [1]={ [1]={ limit={ @@ -224573,7 +224801,7 @@ return { [1]="tailwind_effect_on_self_+%_per_gale_force" } }, - [10240]={ + [10254]={ [1]={ [1]={ limit={ @@ -224589,7 +224817,7 @@ return { [1]="tailwind_if_have_crit_recently" } }, - [10241]={ + [10255]={ [1]={ [1]={ limit={ @@ -224605,7 +224833,7 @@ return { [1]="take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy" } }, - [10242]={ + [10256]={ [1]={ [1]={ limit={ @@ -224621,7 +224849,7 @@ return { [1]="take_half_area_damage_from_hit_%_chance" } }, - [10243]={ + [10257]={ [1]={ [1]={ limit={ @@ -224637,7 +224865,7 @@ return { [1]="take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds" } }, - [10244]={ + [10258]={ [1]={ [1]={ limit={ @@ -224662,7 +224890,7 @@ return { [1]="take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack" } }, - [10245]={ + [10259]={ [1]={ [1]={ [1]={ @@ -224695,7 +224923,7 @@ return { [1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10" } }, - [10246]={ + [10260]={ [1]={ [1]={ limit={ @@ -224711,7 +224939,7 @@ return { [1]="tame_beast_can_target_unique_beasts" } }, - [10247]={ + [10261]={ [1]={ [1]={ limit={ @@ -224740,7 +224968,7 @@ return { [1]="tame_beasts_unique_damage_+%_final" } }, - [10248]={ + [10262]={ [1]={ [1]={ limit={ @@ -224769,7 +224997,7 @@ return { [1]="tame_beasts_unique_movement_velocity_+%" } }, - [10249]={ + [10263]={ [1]={ [1]={ limit={ @@ -224798,7 +225026,7 @@ return { [1]="tame_beasts_unique_skill_speed_+%" } }, - [10250]={ + [10264]={ [1]={ [1]={ limit={ @@ -224827,7 +225055,7 @@ return { [1]="tamed_beasts_randomly_possessed_every_x_ms" } }, - [10251]={ + [10265]={ [1]={ [1]={ limit={ @@ -224843,7 +225071,7 @@ return { [1]="taunt_on_projectile_hit_chance_%" } }, - [10252]={ + [10266]={ [1]={ [1]={ limit={ @@ -224872,7 +225100,7 @@ return { [1]="taunted_enemies_by_warcry_damage_taken_+%" } }, - [10253]={ + [10267]={ [1]={ [1]={ [1]={ @@ -224892,7 +225120,7 @@ return { [1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value" } }, - [10254]={ + [10268]={ [1]={ [1]={ limit={ @@ -224908,7 +225136,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [10255]={ + [10269]={ [1]={ [1]={ limit={ @@ -224924,7 +225152,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating" } }, - [10256]={ + [10270]={ [1]={ [1]={ limit={ @@ -224953,7 +225181,7 @@ return { [1]="tectonic_slam_area_of_effect_+%" } }, - [10257]={ + [10271]={ [1]={ [1]={ limit={ @@ -224982,7 +225210,7 @@ return { [1]="tectonic_slam_damage_+%" } }, - [10258]={ + [10272]={ [1]={ [1]={ limit={ @@ -224998,7 +225226,7 @@ return { [1]="tectonic_slam_%_chance_to_do_charged_slam" } }, - [10259]={ + [10273]={ [1]={ [1]={ [1]={ @@ -225018,7 +225246,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [10260]={ + [10274]={ [1]={ [1]={ limit={ @@ -225034,7 +225262,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%" } }, - [10261]={ + [10275]={ [1]={ [1]={ limit={ @@ -225063,7 +225291,7 @@ return { [1]="tempest_shield_buff_effect_+%" } }, - [10262]={ + [10276]={ [1]={ [1]={ limit={ @@ -225079,7 +225307,7 @@ return { [1]="temporal_chains_no_reservation" } }, - [10263]={ + [10277]={ [1]={ [1]={ limit={ @@ -225095,7 +225323,7 @@ return { [1]="temporal_rift_cooldown_speed_+%" } }, - [10264]={ + [10278]={ [1]={ [1]={ limit={ @@ -225111,7 +225339,7 @@ return { [1]="temporary_minion_limit_+" } }, - [10265]={ + [10279]={ [1]={ [1]={ limit={ @@ -225127,7 +225355,7 @@ return { [1]="thaumaturgy_rotation_active" } }, - [10266]={ + [10280]={ [1]={ [1]={ limit={ @@ -225156,7 +225384,7 @@ return { [1]="thorns_critical_strike_chance_+%" } }, - [10267]={ + [10281]={ [1]={ [1]={ limit={ @@ -225185,7 +225413,7 @@ return { [1]="thorns_damage_+%_if_consumed_endurance_charge_recently" } }, - [10268]={ + [10282]={ [1]={ [1]={ limit={ @@ -225214,7 +225442,7 @@ return { [1]="thorns_damage_+%_per_10_tribute" } }, - [10269]={ + [10283]={ [1]={ [1]={ limit={ @@ -225230,7 +225458,7 @@ return { [1]="thorns_damage_has_%_chance_to_ignore_armour" } }, - [10270]={ + [10284]={ [1]={ [1]={ limit={ @@ -225246,7 +225474,7 @@ return { [1]="thorns_damage_is_lucky_against_enemies_with_fully_broken_armour" } }, - [10271]={ + [10285]={ [1]={ [1]={ limit={ @@ -225275,7 +225503,7 @@ return { [1]="thorns_damage_+%" } }, - [10272]={ + [10286]={ [1]={ [1]={ limit={ @@ -225304,7 +225532,7 @@ return { [1]="thorns_damage_+%_if_blocked_recently" } }, - [10273]={ + [10287]={ [1]={ [1]={ limit={ @@ -225325,7 +225553,7 @@ return { [2]="thorns_minimum_fire_damage_per_100_life" } }, - [10274]={ + [10288]={ [1]={ [1]={ limit={ @@ -225346,7 +225574,7 @@ return { [2]="thorns_maximum_base_chaos_damage" } }, - [10275]={ + [10289]={ [1]={ [1]={ limit={ @@ -225367,7 +225595,7 @@ return { [2]="thorns_maximum_base_cold_damage" } }, - [10276]={ + [10290]={ [1]={ [1]={ limit={ @@ -225388,7 +225616,7 @@ return { [2]="thorns_maximum_base_fire_damage" } }, - [10277]={ + [10291]={ [1]={ [1]={ limit={ @@ -225409,7 +225637,7 @@ return { [2]="thorns_maximum_base_lightning_damage" } }, - [10278]={ + [10292]={ [1]={ [1]={ limit={ @@ -225430,7 +225658,7 @@ return { [2]="thorns_maximum_base_physical_damage" } }, - [10279]={ + [10293]={ [1]={ [1]={ limit={ @@ -225459,7 +225687,7 @@ return { [1]="thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute" } }, - [10280]={ + [10294]={ [1]={ [1]={ limit={ @@ -225475,7 +225703,7 @@ return { [1]="thorns_proc_off_any_hit" } }, - [10281]={ + [10295]={ [1]={ [1]={ limit={ @@ -225491,7 +225719,7 @@ return { [1]="base_deal_thorns_damage_chance_%_on_hit" } }, - [10282]={ + [10296]={ [1]={ [1]={ limit={ @@ -225507,7 +225735,7 @@ return { [1]="melee_attack_deal_thorns_damage_chance_%_on_hit" } }, - [10283]={ + [10297]={ [1]={ [1]={ limit={ @@ -225523,7 +225751,7 @@ return { [1]="parry_deal_thorns_damage_chance_%_on_hit" } }, - [10284]={ + [10298]={ [1]={ [1]={ limit={ @@ -225552,7 +225780,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final" } }, - [10285]={ + [10299]={ [1]={ [1]={ limit={ @@ -225581,7 +225809,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final_per_chain" } }, - [10286]={ + [10300]={ [1]={ [1]={ limit={ @@ -225610,7 +225838,7 @@ return { [1]="threshold_jewel_molten_strike_damage_projectile_count_+%_final" } }, - [10287]={ + [10301]={ [1]={ [1]={ limit={ @@ -225639,7 +225867,7 @@ return { [1]="thrown_shield_secondary_projectile_damage_+%_final" } }, - [10288]={ + [10302]={ [1]={ [1]={ limit={ @@ -225655,7 +225883,7 @@ return { [1]="titan_additional_inventory" } }, - [10289]={ + [10303]={ [1]={ [1]={ limit={ @@ -225684,7 +225912,7 @@ return { [1]="titan_damage_+%_final_against_heavy_stunned_enemies" } }, - [10290]={ + [10304]={ [1]={ [1]={ limit={ @@ -225700,7 +225928,7 @@ return { [1]="titan_expanded_main_inventory" } }, - [10291]={ + [10305]={ [1]={ [1]={ limit={ @@ -225729,7 +225957,7 @@ return { [1]="titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies" } }, - [10292]={ + [10306]={ [1]={ [1]={ limit={ @@ -225758,7 +225986,7 @@ return { [1]="titan_maximum_life_+%_final" } }, - [10293]={ + [10307]={ [1]={ [1]={ limit={ @@ -225787,7 +226015,7 @@ return { [1]="tornado_damage_frequency_+%" } }, - [10294]={ + [10308]={ [1]={ [1]={ limit={ @@ -225816,7 +226044,7 @@ return { [1]="tornado_damage_+%" } }, - [10295]={ + [10309]={ [1]={ [1]={ limit={ @@ -225845,7 +226073,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [10296]={ + [10310]={ [1]={ [1]={ limit={ @@ -225874,7 +226102,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [10297]={ + [10311]={ [1]={ [1]={ limit={ @@ -225903,7 +226131,7 @@ return { [1]="tornado_skill_area_of_effect_+%" } }, - [10298]={ + [10312]={ [1]={ [1]={ limit={ @@ -225919,7 +226147,7 @@ return { [1]="totems_action_speed_cannot_be_modified_below_base" } }, - [10299]={ + [10313]={ [1]={ [1]={ limit={ @@ -225935,7 +226163,7 @@ return { [1]="totem_chaos_immunity" } }, - [10300]={ + [10314]={ [1]={ [1]={ limit={ @@ -225964,7 +226192,7 @@ return { [1]="totem_chaos_resistance_%" } }, - [10301]={ + [10315]={ [1]={ [1]={ limit={ @@ -225993,7 +226221,7 @@ return { [1]="totem_damage_+%_per_active_curse_on_self" } }, - [10302]={ + [10316]={ [1]={ [1]={ limit={ @@ -226022,7 +226250,7 @@ return { [1]="totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds" } }, - [10303]={ + [10317]={ [1]={ [1]={ limit={ @@ -226051,7 +226279,7 @@ return { [1]="totem_damage_+%_per_10_devotion" } }, - [10304]={ + [10318]={ [1]={ [1]={ limit={ @@ -226067,7 +226295,7 @@ return { [1]="totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed" } }, - [10305]={ + [10319]={ [1]={ [1]={ limit={ @@ -226083,7 +226311,7 @@ return { [1]="totem_maximum_energy_shield" } }, - [10306]={ + [10320]={ [1]={ [1]={ limit={ @@ -226099,7 +226327,7 @@ return { [1]="totem_only_uses_skill_when_owner_attacks" } }, - [10307]={ + [10321]={ [1]={ [1]={ limit={ @@ -226128,7 +226356,7 @@ return { [1]="totem_placement_range_+%" } }, - [10308]={ + [10322]={ [1]={ [1]={ limit={ @@ -226157,7 +226385,7 @@ return { [1]="totem_spells_damage_+%" } }, - [10309]={ + [10323]={ [1]={ [1]={ limit={ @@ -226173,7 +226401,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [10310]={ + [10324]={ [1]={ [1]={ limit={ @@ -226202,7 +226430,7 @@ return { [1]="totems_nearby_enemies_damage_taken_+%" } }, - [10311]={ + [10325]={ [1]={ [1]={ [1]={ @@ -226222,7 +226450,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [10312]={ + [10326]={ [1]={ [1]={ limit={ @@ -226247,7 +226475,7 @@ return { [1]="totems_taunt_enemies_around_them_for_x_seconds_when_summoned" } }, - [10313]={ + [10327]={ [1]={ [1]={ limit={ @@ -226272,7 +226500,7 @@ return { [1]="tower_add_abyss_to_X_maps" } }, - [10314]={ + [10328]={ [1]={ [1]={ limit={ @@ -226297,7 +226525,7 @@ return { [1]="tower_add_breach_to_X_maps" } }, - [10315]={ + [10329]={ [1]={ [1]={ limit={ @@ -226322,7 +226550,7 @@ return { [1]="tower_add_delirium_to_X_maps" } }, - [10316]={ + [10330]={ [1]={ [1]={ limit={ @@ -226347,7 +226575,7 @@ return { [1]="tower_add_expedition_to_X_maps" } }, - [10317]={ + [10331]={ [1]={ [1]={ limit={ @@ -226372,7 +226600,7 @@ return { [1]="tower_add_incursion_to_X_maps" } }, - [10318]={ + [10332]={ [1]={ [1]={ limit={ @@ -226397,7 +226625,7 @@ return { [1]="tower_add_irradiated_to_X_maps" } }, - [10319]={ + [10333]={ [1]={ [1]={ limit={ @@ -226422,7 +226650,7 @@ return { [1]="tower_add_map_bosses_to_X_maps" } }, - [10320]={ + [10334]={ [1]={ [1]={ limit={ @@ -226447,7 +226675,7 @@ return { [1]="tower_add_ritual_to_X_maps" } }, - [10321]={ + [10335]={ [1]={ [1]={ limit={ @@ -226476,7 +226704,7 @@ return { [1]="toxic_rain_damage_+%" } }, - [10322]={ + [10336]={ [1]={ [1]={ limit={ @@ -226501,7 +226729,7 @@ return { [1]="toxic_rain_num_of_additional_projectiles" } }, - [10323]={ + [10337]={ [1]={ [1]={ limit={ @@ -226517,7 +226745,7 @@ return { [1]="toxic_rain_physical_damage_%_to_gain_as_chaos" } }, - [10324]={ + [10338]={ [1]={ [1]={ limit={ @@ -226546,7 +226774,7 @@ return { [1]="trap_and_mine_damage_+%_if_armed_for_4_seconds" } }, - [10325]={ + [10339]={ [1]={ [1]={ limit={ @@ -226575,7 +226803,7 @@ return { [1]="trap_and_mine_throwing_speed_+%" } }, - [10326]={ + [10340]={ [1]={ [1]={ limit={ @@ -226600,7 +226828,7 @@ return { [1]="trap_skill_added_cooldown_count" } }, - [10327]={ + [10341]={ [1]={ [1]={ limit={ @@ -226629,7 +226857,7 @@ return { [1]="trap_spread_+%" } }, - [10328]={ + [10342]={ [1]={ [1]={ limit={ @@ -226658,7 +226886,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [10329]={ + [10343]={ [1]={ [1]={ limit={ @@ -226674,7 +226902,7 @@ return { [1]="traps_cannot_be_triggered_by_enemies" } }, - [10330]={ + [10344]={ [1]={ [1]={ limit={ @@ -226690,7 +226918,7 @@ return { [1]="traps_invulnerable" } }, - [10331]={ + [10345]={ [1]={ [1]={ limit={ @@ -226706,7 +226934,7 @@ return { [1]="travel_skills_cannot_be_exerted" } }, - [10332]={ + [10346]={ [1]={ [1]={ limit={ @@ -226722,7 +226950,7 @@ return { [1]="travel_skills_poison_reflected_to_self_up_to_5_poisons" } }, - [10333]={ + [10347]={ [1]={ [1]={ limit={ @@ -226747,7 +226975,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [10334]={ + [10348]={ [1]={ [1]={ [1]={ @@ -226780,7 +227008,7 @@ return { [1]="trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds" } }, - [10335]={ + [10349]={ [1]={ [1]={ limit={ @@ -226809,7 +227037,7 @@ return { [1]="trickster_damage_over_time_+%_final" } }, - [10336]={ + [10350]={ [1]={ [1]={ limit={ @@ -226825,7 +227053,7 @@ return { [1]="trigger_elemental_storm_on_crit" } }, - [10337]={ + [10351]={ [1]={ [1]={ limit={ @@ -226850,7 +227078,7 @@ return { [1]="trigger_skills_refund_half_energy_spent_chance_%" } }, - [10338]={ + [10352]={ [1]={ [1]={ limit={ @@ -226866,7 +227094,7 @@ return { [1]="trigger_wild_strike_on_attack_crit" } }, - [10339]={ + [10353]={ [1]={ [1]={ limit={ @@ -226895,7 +227123,7 @@ return { [1]="triggerbots_damage_+%_final_with_triggered_spells" } }, - [10340]={ + [10354]={ [1]={ [1]={ limit={ @@ -226924,7 +227152,7 @@ return { [1]="triggered_spell_spell_damage_+%" } }, - [10341]={ + [10355]={ [1]={ [1]={ limit={ @@ -226940,7 +227168,7 @@ return { [1]="triggers_burning_runes_on_placing_ground_rune" } }, - [10342]={ + [10356]={ [1]={ [1]={ limit={ @@ -226956,7 +227184,7 @@ return { [1]="triggers_soulbreaker_on_breaking_enemy_energy_shield" } }, - [10343]={ + [10357]={ [1]={ [1]={ limit={ @@ -227007,7 +227235,7 @@ return { [2]="quality_display_trinity_is_gem" } }, - [10344]={ + [10358]={ [1]={ [1]={ limit={ @@ -227028,7 +227256,7 @@ return { [2]="trinity_loss_per_hit" } }, - [10345]={ + [10359]={ [1]={ [1]={ limit={ @@ -227057,7 +227285,7 @@ return { [1]="two_handed_melee_area_damage_+%" } }, - [10346]={ + [10360]={ [1]={ [1]={ limit={ @@ -227086,7 +227314,7 @@ return { [1]="two_handed_melee_area_of_effect_+%" } }, - [10347]={ + [10361]={ [1]={ [1]={ limit={ @@ -227102,7 +227330,7 @@ return { [1]="uber_domain_monster_additional_physical_damage_reduction_%_per_revival" } }, - [10348]={ + [10362]={ [1]={ [1]={ limit={ @@ -227118,7 +227346,7 @@ return { [1]="uber_domain_monster_all_resistances_+%_per_revival" } }, - [10349]={ + [10363]={ [1]={ [1]={ limit={ @@ -227147,7 +227375,7 @@ return { [1]="uber_domain_monster_attack_and_cast_speed_+%_per_revival" } }, - [10350]={ + [10364]={ [1]={ [1]={ limit={ @@ -227163,7 +227391,7 @@ return { [1]="uber_domain_monster_avoid_stun_%_per_revival" } }, - [10351]={ + [10365]={ [1]={ [1]={ limit={ @@ -227192,7 +227420,7 @@ return { [1]="uber_domain_monster_critical_strike_chance_+%_per_revival" } }, - [10352]={ + [10366]={ [1]={ [1]={ limit={ @@ -227208,7 +227436,7 @@ return { [1]="uber_domain_monster_critical_strike_multiplier_+%_per_revival" } }, - [10353]={ + [10367]={ [1]={ [1]={ limit={ @@ -227224,7 +227452,7 @@ return { [1]="uber_domain_monster_deal_double_damage_chance_%_per_revival" } }, - [10354]={ + [10368]={ [1]={ [1]={ [1]={ @@ -227244,7 +227472,7 @@ return { [1]="uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival" } }, - [10355]={ + [10369]={ [1]={ [1]={ limit={ @@ -227273,7 +227501,7 @@ return { [1]="uber_domain_monster_maximum_life_+%_per_revival" } }, - [10356]={ + [10370]={ [1]={ [1]={ limit={ @@ -227302,7 +227530,7 @@ return { [1]="uber_domain_monster_movement_speed_+%_per_revival" } }, - [10357]={ + [10371]={ [1]={ [1]={ limit={ @@ -227318,7 +227546,7 @@ return { [1]="uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival" } }, - [10358]={ + [10372]={ [1]={ [1]={ limit={ @@ -227334,7 +227562,7 @@ return { [1]="uber_domain_monster_penetrate_all_resistances_%_per_revival" } }, - [10359]={ + [10373]={ [1]={ [1]={ limit={ @@ -227363,7 +227591,7 @@ return { [1]="uber_domain_monster_physical_damage_reduction_rating_+%_per_revival" } }, - [10360]={ + [10374]={ [1]={ [1]={ limit={ @@ -227388,7 +227616,7 @@ return { [1]="uber_domain_monster_reward_chance_+%" } }, - [10361]={ + [10375]={ [1]={ [1]={ limit={ @@ -227404,7 +227632,7 @@ return { [1]="unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds" } }, - [10362]={ + [10376]={ [1]={ [1]={ limit={ @@ -227420,7 +227648,7 @@ return { [1]="unaffected_by_bleeding_while_affected_by_malevolence" } }, - [10363]={ + [10377]={ [1]={ [1]={ limit={ @@ -227436,7 +227664,7 @@ return { [1]="unaffected_by_bleeding_while_leeching" } }, - [10364]={ + [10378]={ [1]={ [1]={ limit={ @@ -227452,7 +227680,7 @@ return { [1]="unaffected_by_blind" } }, - [10365]={ + [10379]={ [1]={ [1]={ limit={ @@ -227468,7 +227696,7 @@ return { [1]="unaffected_by_burning_ground" } }, - [10366]={ + [10380]={ [1]={ [1]={ limit={ @@ -227484,7 +227712,7 @@ return { [1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire" } }, - [10367]={ + [10381]={ [1]={ [1]={ limit={ @@ -227500,7 +227728,7 @@ return { [1]="unaffected_by_chill" } }, - [10368]={ + [10382]={ [1]={ [1]={ limit={ @@ -227516,7 +227744,7 @@ return { [1]="unaffected_by_chill_during_dodge_roll" } }, - [10369]={ + [10383]={ [1]={ [1]={ limit={ @@ -227532,7 +227760,7 @@ return { [1]="unaffected_by_chill_while_channelling" } }, - [10370]={ + [10384]={ [1]={ [1]={ limit={ @@ -227548,7 +227776,7 @@ return { [1]="unaffected_by_chill_while_mana_leeching" } }, - [10371]={ + [10385]={ [1]={ [1]={ limit={ @@ -227564,7 +227792,7 @@ return { [1]="unaffected_by_chilled_ground" } }, - [10372]={ + [10386]={ [1]={ [1]={ limit={ @@ -227580,7 +227808,7 @@ return { [1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice" } }, - [10373]={ + [10387]={ [1]={ [1]={ limit={ @@ -227596,7 +227824,7 @@ return { [1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning" } }, - [10374]={ + [10388]={ [1]={ [1]={ limit={ @@ -227612,7 +227840,7 @@ return { [1]="unaffected_by_corrupted_blood_while_leeching" } }, - [10375]={ + [10389]={ [1]={ [1]={ limit={ @@ -227628,7 +227856,7 @@ return { [1]="unaffected_by_curses_while_affected_by_zealotry" } }, - [10376]={ + [10390]={ [1]={ [1]={ limit={ @@ -227644,7 +227872,7 @@ return { [1]="unaffected_by_damaging_ailments" } }, - [10377]={ + [10391]={ [1]={ [1]={ limit={ @@ -227660,7 +227888,7 @@ return { [1]="unaffected_by_desecrated_ground" } }, - [10378]={ + [10392]={ [1]={ [1]={ limit={ @@ -227676,7 +227904,7 @@ return { [1]="unaffected_by_elemental_weakness" } }, - [10379]={ + [10393]={ [1]={ [1]={ limit={ @@ -227692,7 +227920,7 @@ return { [1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements" } }, - [10380]={ + [10394]={ [1]={ [1]={ limit={ @@ -227708,7 +227936,7 @@ return { [1]="unaffected_by_enfeeble_while_affected_by_grace" } }, - [10381]={ + [10395]={ [1]={ [1]={ limit={ @@ -227724,7 +227952,7 @@ return { [1]="unaffected_by_flammability_while_affected_by_purity_of_fire" } }, - [10382]={ + [10396]={ [1]={ [1]={ limit={ @@ -227740,7 +227968,7 @@ return { [1]="unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds" } }, - [10383]={ + [10397]={ [1]={ [1]={ limit={ @@ -227756,7 +227984,7 @@ return { [1]="unaffected_by_frostbite_while_affected_by_purity_of_ice" } }, - [10384]={ + [10398]={ [1]={ [1]={ limit={ @@ -227772,7 +228000,7 @@ return { [1]="unaffected_by_ignite" } }, - [10385]={ + [10399]={ [1]={ [1]={ limit={ @@ -227788,7 +228016,7 @@ return { [1]="unaffected_by_ignite_and_shock_while_max_life_mana_within_500" } }, - [10386]={ + [10400]={ [1]={ [1]={ limit={ @@ -227804,7 +228032,7 @@ return { [1]="unaffected_by_ignite_if_cast_flammability_in_past_10_seconds" } }, - [10387]={ + [10401]={ [1]={ [1]={ limit={ @@ -227820,7 +228048,7 @@ return { [1]="unaffected_by_poison_while_affected_by_malevolence" } }, - [10388]={ + [10402]={ [1]={ [1]={ limit={ @@ -227836,7 +228064,7 @@ return { [1]="unaffected_by_shock" } }, - [10389]={ + [10403]={ [1]={ [1]={ limit={ @@ -227852,7 +228080,7 @@ return { [1]="unaffected_by_shock_if_cast_conductivity_in_past_10_seconds" } }, - [10390]={ + [10404]={ [1]={ [1]={ limit={ @@ -227868,7 +228096,7 @@ return { [1]="unaffected_by_shock_while_channelling" } }, - [10391]={ + [10405]={ [1]={ [1]={ limit={ @@ -227884,7 +228112,7 @@ return { [1]="unaffected_by_shocked_ground" } }, - [10392]={ + [10406]={ [1]={ [1]={ limit={ @@ -227900,7 +228128,7 @@ return { [1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning" } }, - [10393]={ + [10407]={ [1]={ [1]={ limit={ @@ -227916,7 +228144,7 @@ return { [1]="unaffected_by_temporal_chains" } }, - [10394]={ + [10408]={ [1]={ [1]={ limit={ @@ -227932,7 +228160,7 @@ return { [1]="unaffected_by_temporal_chains_while_affected_by_haste" } }, - [10395]={ + [10409]={ [1]={ [1]={ limit={ @@ -227948,7 +228176,7 @@ return { [1]="unaffected_by_vulnerability_while_affected_by_determination" } }, - [10396]={ + [10410]={ [1]={ [1]={ limit={ @@ -227964,7 +228192,7 @@ return { [1]="unarmed_attack_area_of_effect_+1%_per_X_intelligence" } }, - [10397]={ + [10411]={ [1]={ [1]={ limit={ @@ -227993,7 +228221,7 @@ return { [1]="unarmed_attack_skill_melee_dash_range_+%" } }, - [10398]={ + [10412]={ [1]={ [1]={ limit={ @@ -228022,7 +228250,7 @@ return { [1]="unarmed_attack_speed_+%" } }, - [10399]={ + [10413]={ [1]={ [1]={ limit={ @@ -228051,7 +228279,7 @@ return { [1]="unattached_sigil_attachment_range_+%_per_second" } }, - [10400]={ + [10414]={ [1]={ [1]={ limit={ @@ -228080,7 +228308,7 @@ return { [1]="unbound_ailment_elemental_ailment_chance_+%_final" } }, - [10401]={ + [10415]={ [1]={ [1]={ limit={ @@ -228109,7 +228337,7 @@ return { [1]="unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final" } }, - [10402]={ + [10416]={ [1]={ [1]={ limit={ @@ -228138,7 +228366,7 @@ return { [1]="reservation_efficiency_+%_of_undead_minion_skills" } }, - [10403]={ + [10417]={ [1]={ [1]={ limit={ @@ -228171,7 +228399,7 @@ return { [1]="undead_minion_reservation_+%" } }, - [10404]={ + [10418]={ [1]={ [1]={ limit={ @@ -228187,7 +228415,7 @@ return { [1]="unearth_additional_corpse_level" } }, - [10405]={ + [10419]={ [1]={ [1]={ limit={ @@ -228216,7 +228444,7 @@ return { [1]="unholy_might_granted_magnitude_+%_per_100_maximum_mana" } }, - [10406]={ + [10420]={ [1]={ [1]={ limit={ @@ -228232,7 +228460,7 @@ return { [1]="unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell" } }, - [10407]={ + [10421]={ [1]={ [1]={ [1]={ @@ -228341,7 +228569,7 @@ return { [3]="unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life" } }, - [10408]={ + [10422]={ [1]={ [1]={ limit={ @@ -228357,7 +228585,7 @@ return { [1]="unique_blood_price_enemies_in_presence_have_at_least_%_life_reserved" } }, - [10409]={ + [10423]={ [1]={ [1]={ limit={ @@ -228386,7 +228614,7 @@ return { [1]="unique_body_armour_life_flask_life_recovery_+%_final" } }, - [10410]={ + [10424]={ [1]={ [1]={ limit={ @@ -228402,7 +228630,7 @@ return { [1]="unique_body_armour_unfaltering_faith_damage_over_time_does_not_bypass_energy_shield" } }, - [10411]={ + [10425]={ [1]={ [1]={ [1]={ @@ -228422,7 +228650,7 @@ return { [1]="unique_cooldown_modifier_ms" } }, - [10412]={ + [10426]={ [1]={ [1]={ limit={ @@ -228451,7 +228679,7 @@ return { [1]="unique_crowd_controlled_enemy_damage_taken_-%_final" } }, - [10413]={ + [10427]={ [1]={ [1]={ limit={ @@ -228467,7 +228695,7 @@ return { [1]="unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max" } }, - [10414]={ + [10428]={ [1]={ [1]={ limit={ @@ -228483,7 +228711,7 @@ return { [1]="unique_double_presence_radius" } }, - [10415]={ + [10429]={ [1]={ [1]={ limit={ @@ -228499,7 +228727,7 @@ return { [1]="unique_facebreaker_can_use_mace_attacks_with_both_hands_empty_using_facebreaker_base_damage" } }, - [10416]={ + [10430]={ [1]={ [1]={ limit={ @@ -228515,7 +228743,7 @@ return { [1]="unique_gain_soul_eater" } }, - [10417]={ + [10431]={ [1]={ [1]={ limit={ @@ -228531,7 +228759,7 @@ return { [1]="unique_gain_x_guard_for_500_ms_per_combo_lost_using_skills" } }, - [10418]={ + [10432]={ [1]={ [1]={ limit={ @@ -228556,7 +228784,7 @@ return { [1]="unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [10419]={ + [10433]={ [1]={ [1]={ limit={ @@ -228585,7 +228813,7 @@ return { [1]="unique_helmet_damage_+%_final_per_warcry_exerting_action" } }, - [10420]={ + [10434]={ [1]={ [1]={ limit={ @@ -228614,7 +228842,7 @@ return { [1]="unique_jewel_flask_charges_gained_+%_final_from_kills" } }, - [10421]={ + [10435]={ [1]={ [1]={ limit={ @@ -228643,7 +228871,7 @@ return { [1]="unique_jewel_flask_duration_+%_final" } }, - [10422]={ + [10436]={ [1]={ [1]={ [1]={ @@ -228663,7 +228891,7 @@ return { [1]="unique_jewel_grants_notable_hash_1" } }, - [10423]={ + [10437]={ [1]={ [1]={ [1]={ @@ -228683,7 +228911,7 @@ return { [1]="unique_jewel_grants_notable_hash_2" } }, - [10424]={ + [10438]={ [1]={ [1]={ [1]={ @@ -228703,7 +228931,7 @@ return { [1]="unique_jewel_grants_notable_hash_3" } }, - [10425]={ + [10439]={ [1]={ [1]={ [1]={ @@ -228723,7 +228951,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_1" } }, - [10426]={ + [10440]={ [1]={ [1]={ [1]={ @@ -228743,7 +228971,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_2" } }, - [10427]={ + [10441]={ [1]={ [1]={ limit={ @@ -228768,7 +228996,7 @@ return { [1]="unique_jewel_grants_x_voices_jewel_sockets" } }, - [10428]={ + [10442]={ [1]={ [1]={ limit={ @@ -228797,7 +229025,7 @@ return { [1]="unique_jewel_reserved_blood_maximum_life_+%_final" } }, - [10429]={ + [10443]={ [1]={ [1]={ [1]={ @@ -228839,7 +229067,7 @@ return { [2]="unique_jewel_specific_skill_level_+_skill" } }, - [10430]={ + [10444]={ [1]={ [1]={ limit={ @@ -228855,7 +229083,7 @@ return { [1]="local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time" } }, - [10431]={ + [10445]={ [1]={ [1]={ limit={ @@ -228871,7 +229099,7 @@ return { [1]="unique_lose_a_power_charge_when_hit" } }, - [10432]={ + [10446]={ [1]={ [1]={ limit={ @@ -228887,7 +229115,7 @@ return { [1]="unique_mace_fire_damage_with_mace_skills_%_to_convert_to_cold" } }, - [10433]={ + [10447]={ [1]={ [1]={ limit={ @@ -228903,7 +229131,7 @@ return { [1]="unique_minions_explode_on_death_for_%_max_life_as_physical_damage_in_2m_radius" } }, - [10434]={ + [10448]={ [1]={ [1]={ limit={ @@ -228919,7 +229147,7 @@ return { [1]="unique_minions_in_presence_gain_and_lose_life_when_you_do" } }, - [10435]={ + [10449]={ [1]={ [1]={ limit={ @@ -228948,7 +229176,7 @@ return { [1]="unique_monster_dropped_item_rarity_+%" } }, - [10436]={ + [10450]={ [1]={ [1]={ limit={ @@ -228977,7 +229205,7 @@ return { [1]="unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds" } }, - [10437]={ + [10451]={ [1]={ [1]={ limit={ @@ -228993,7 +229221,7 @@ return { [1]="unique_no_curse_delay" } }, - [10438]={ + [10452]={ [1]={ [1]={ limit={ @@ -229009,7 +229237,7 @@ return { [1]="unique_prism_guardian_spirit_+_per_X_maximum_life" } }, - [10439]={ + [10453]={ [1]={ [1]={ limit={ @@ -229025,7 +229253,7 @@ return { [1]="unique_recover_%_maximum_life_on_x_altenator" } }, - [10440]={ + [10454]={ [1]={ [1]={ limit={ @@ -229063,7 +229291,7 @@ return { [1]="unique_redblade_banner_enemies_in_presence_monster_power_+%_final" } }, - [10441]={ + [10455]={ [1]={ [1]={ limit={ @@ -229092,7 +229320,7 @@ return { [1]="unique_replica_volkuurs_guidance_ignite_duration_+%_final" } }, - [10442]={ + [10456]={ [1]={ [1]={ limit={ @@ -229108,7 +229336,7 @@ return { [1]="unique_revive_permanent_minions_on_mana_flask_use" } }, - [10443]={ + [10457]={ [1]={ [1]={ limit={ @@ -229124,7 +229352,7 @@ return { [1]="unique_shield_window_of_paradise_apply_elemental_exposure_while_raised" } }, - [10444]={ + [10458]={ [1]={ [1]={ limit={ @@ -229153,7 +229381,7 @@ return { [1]="unique_soulless_elegance_energy_shield_recharge_rate_+%_final" } }, - [10445]={ + [10459]={ [1]={ [1]={ limit={ @@ -229169,7 +229397,7 @@ return { [1]="unique_spirit_reservations_are_halved" } }, - [10446]={ + [10460]={ [1]={ [1]={ limit={ @@ -229185,7 +229413,7 @@ return { [1]="unique_sunblast_throw_traps_in_circle_radius" } }, - [10447]={ + [10461]={ [1]={ [1]={ limit={ @@ -229210,7 +229438,7 @@ return { [1]="unique_two_handed_weapon_lightning_stun_multiplier_+%_final" } }, - [10448]={ + [10462]={ [1]={ [1]={ limit={ @@ -229226,7 +229454,7 @@ return { [1]="unique_voltaxic_rift_shock_maximum_magnitude_override" } }, - [10449]={ + [10463]={ [1]={ [1]={ limit={ @@ -229242,7 +229470,7 @@ return { [1]="unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below" } }, - [10450]={ + [10464]={ [1]={ [1]={ limit={ @@ -229258,7 +229486,7 @@ return { [1]="unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below" } }, - [10451]={ + [10465]={ [1]={ [1]={ limit={ @@ -229274,7 +229502,7 @@ return { [1]="unnerve_for_4_seconds_on_hit_with_wands" } }, - [10452]={ + [10466]={ [1]={ [1]={ [1]={ @@ -229294,7 +229522,7 @@ return { [1]="unnerve_nearby_enemies_on_use_for_ms" } }, - [10453]={ + [10467]={ [1]={ [1]={ limit={ @@ -229310,7 +229538,7 @@ return { [1]="using_mana_flask_grants_%_recovery_amount_as_guard_for_4s" } }, - [10454]={ + [10468]={ [1]={ [1]={ limit={ @@ -229335,7 +229563,7 @@ return { [1]="utility_flask_charges_recovered_per_3_seconds" } }, - [10455]={ + [10469]={ [1]={ [1]={ limit={ @@ -229364,7 +229592,7 @@ return { [1]="utility_flask_cold_damage_taken_+%_final" } }, - [10456]={ + [10470]={ [1]={ [1]={ limit={ @@ -229393,7 +229621,7 @@ return { [1]="utility_flask_fire_damage_taken_+%_final" } }, - [10457]={ + [10471]={ [1]={ [1]={ limit={ @@ -229422,7 +229650,7 @@ return { [1]="utility_flask_lightning_damage_taken_+%_final" } }, - [10458]={ + [10472]={ [1]={ [1]={ limit={ @@ -229438,7 +229666,7 @@ return { [1]="vaal_skill_gem_level_+" } }, - [10459]={ + [10473]={ [1]={ [1]={ limit={ @@ -229471,7 +229699,7 @@ return { [1]="vaal_skill_soul_cost_+%" } }, - [10460]={ + [10474]={ [1]={ [1]={ limit={ @@ -229487,7 +229715,7 @@ return { [1]="vaal_skill_soul_refund_chance_%" } }, - [10461]={ + [10475]={ [1]={ [1]={ limit={ @@ -229516,7 +229744,7 @@ return { [1]="vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%" } }, - [10462]={ + [10476]={ [1]={ [1]={ limit={ @@ -229545,7 +229773,7 @@ return { [1]="vampiric_link_duration_+%" } }, - [10463]={ + [10477]={ [1]={ [1]={ limit={ @@ -229561,7 +229789,7 @@ return { [1]="vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [10464]={ + [10478]={ [1]={ [1]={ limit={ @@ -229590,7 +229818,7 @@ return { [1]="viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge" } }, - [10465]={ + [10479]={ [1]={ [1]={ limit={ @@ -229619,7 +229847,7 @@ return { [1]="viper_strike_dual_wield_damage_+%_final" } }, - [10466]={ + [10480]={ [1]={ [1]={ limit={ @@ -229644,84 +229872,84 @@ return { [1]="virtual_block_%_damage_taken" } }, - [10467]={ + [10481]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_endurance_charge_%" } }, - [10468]={ + [10482]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_frenzy_charge_%" } }, - [10469]={ + [10483]={ [1]={ }, stats={ [1]="virtual_chance_to_gain_1_more_power_charge_%" } }, - [10470]={ + [10484]={ [1]={ }, stats={ [1]="virtual_glory_generation_+%" } }, - [10471]={ + [10485]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break" } }, - [10472]={ + [10486]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit" } }, - [10473]={ + [10487]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_chaos_hit" } }, - [10474]={ + [10488]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun" } }, - [10475]={ + [10489]={ [1]={ }, stats={ [1]="virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite" } }, - [10476]={ + [10490]={ [1]={ }, stats={ [1]="virtual_maximum_curse_zones_allowed" } }, - [10477]={ + [10491]={ [1]={ }, stats={ [1]="virtual_number_of_banners_allowed" } }, - [10478]={ + [10492]={ [1]={ [1]={ limit={ @@ -229746,7 +229974,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [10479]={ + [10493]={ [1]={ [1]={ limit={ @@ -229762,7 +229990,7 @@ return { [1]="virulent_arrow_chance_to_poison_%_per_stage" } }, - [10480]={ + [10494]={ [1]={ [1]={ [1]={ @@ -229799,7 +230027,7 @@ return { [1]="vitality_mana_reservation_efficiency_-2%_per_1" } }, - [10481]={ + [10495]={ [1]={ [1]={ limit={ @@ -229828,7 +230056,7 @@ return { [1]="vitality_mana_reservation_efficiency_+%" } }, - [10482]={ + [10496]={ [1]={ [1]={ limit={ @@ -229844,7 +230072,7 @@ return { [1]="vitality_reserves_no_mana" } }, - [10483]={ + [10497]={ [1]={ [1]={ limit={ @@ -229873,7 +230101,7 @@ return { [1]="vivid_stag_damage_%_final_per_cascade" } }, - [10484]={ + [10498]={ [1]={ [1]={ limit={ @@ -229907,7 +230135,7 @@ return { [2]="vivid_stag_maximum_stag_wisps_allowed" } }, - [10485]={ + [10499]={ [1]={ [1]={ limit={ @@ -229936,7 +230164,7 @@ return { [1]="vivid_stag_shock_effect_%_final_per_cascade" } }, - [10486]={ + [10500]={ [1]={ [1]={ [1]={ @@ -229965,7 +230193,7 @@ return { [1]="vivisection_damage_+%_final" } }, - [10487]={ + [10501]={ [1]={ [1]={ [1]={ @@ -229994,7 +230222,7 @@ return { [1]="vivisection_armour_evasion_energy_shield_+%_final" } }, - [10488]={ + [10502]={ [1]={ [1]={ [1]={ @@ -230023,7 +230251,7 @@ return { [1]="vivisection_maximum_life_+%_final" } }, - [10489]={ + [10503]={ [1]={ [1]={ [1]={ @@ -230052,7 +230280,7 @@ return { [1]="vivisection_maximum_mana_+%_final" } }, - [10490]={ + [10504]={ [1]={ [1]={ [1]={ @@ -230081,7 +230309,7 @@ return { [1]="vivisection_movement_speed_+%_final" } }, - [10491]={ + [10505]={ [1]={ [1]={ [1]={ @@ -230110,7 +230338,7 @@ return { [1]="vivisection_spirit_+%_final" } }, - [10492]={ + [10506]={ [1]={ [1]={ limit={ @@ -230126,7 +230354,7 @@ return { [1]="void_sphere_cooldown_speed_+%" } }, - [10493]={ + [10507]={ [1]={ [1]={ limit={ @@ -230142,7 +230370,7 @@ return { [1]="volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity" } }, - [10494]={ + [10508]={ [1]={ [1]={ limit={ @@ -230167,7 +230395,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [10495]={ + [10509]={ [1]={ [1]={ limit={ @@ -230196,7 +230424,7 @@ return { [1]="volatile_dead_cast_speed_+%" } }, - [10496]={ + [10510]={ [1]={ [1]={ limit={ @@ -230212,7 +230440,7 @@ return { [1]="volatile_dead_consume_additional_corpse" } }, - [10497]={ + [10511]={ [1]={ [1]={ limit={ @@ -230241,7 +230469,7 @@ return { [1]="volatile_dead_damage_+%" } }, - [10498]={ + [10512]={ [1]={ [1]={ limit={ @@ -230257,7 +230485,7 @@ return { [1]="volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant" } }, - [10499]={ + [10513]={ [1]={ [1]={ limit={ @@ -230273,7 +230501,7 @@ return { [1]="volatility_critical_strike_chance_+%_to_grant" } }, - [10500]={ + [10514]={ [1]={ [1]={ limit={ @@ -230302,7 +230530,7 @@ return { [1]="volatility_detonation_delay_+%" } }, - [10501]={ + [10515]={ [1]={ [1]={ limit={ @@ -230327,7 +230555,7 @@ return { [1]="volatility_on_kill_%_chance" } }, - [10502]={ + [10516]={ [1]={ [1]={ limit={ @@ -230352,7 +230580,7 @@ return { [1]="volatility_refresh_%_chance" } }, - [10503]={ + [10517]={ [1]={ [1]={ limit={ @@ -230377,7 +230605,7 @@ return { [1]="volatility_when_stunned_%_chance" } }, - [10504]={ + [10518]={ [1]={ [1]={ limit={ @@ -230406,7 +230634,7 @@ return { [1]="volcanic_fissure_damage_+%" } }, - [10505]={ + [10519]={ [1]={ [1]={ limit={ @@ -230431,7 +230659,7 @@ return { [1]="volcanic_fissure_number_of_additional_projectiles" } }, - [10506]={ + [10520]={ [1]={ [1]={ limit={ @@ -230460,7 +230688,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [10507]={ + [10521]={ [1]={ [1]={ limit={ @@ -230489,7 +230717,7 @@ return { [1]="voltaxic_burst_damage_+%" } }, - [10508]={ + [10522]={ [1]={ [1]={ limit={ @@ -230518,7 +230746,7 @@ return { [1]="voltaxic_burst_damage_+%_per_100ms_duration" } }, - [10509]={ + [10523]={ [1]={ [1]={ limit={ @@ -230547,7 +230775,7 @@ return { [1]="voltaxic_burst_skill_area_of_effect_+%" } }, - [10510]={ + [10524]={ [1]={ [1]={ [1]={ @@ -230567,7 +230795,7 @@ return { [1]="vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [10511]={ + [10525]={ [1]={ [1]={ limit={ @@ -230596,7 +230824,7 @@ return { [1]="vortex_area_of_effect_+%_when_cast_on_frostbolt" } }, - [10512]={ + [10526]={ [1]={ [1]={ limit={ @@ -230612,7 +230840,7 @@ return { [1]="vulnerability_no_reservation" } }, - [10513]={ + [10527]={ [1]={ [1]={ limit={ @@ -230641,7 +230869,7 @@ return { [1]="wand_damage_+%_if_crit_recently" } }, - [10514]={ + [10528]={ [1]={ [1]={ limit={ @@ -230670,7 +230898,7 @@ return { [1]="war_banner_aura_effect_+%" } }, - [10515]={ + [10529]={ [1]={ [1]={ limit={ @@ -230699,7 +230927,7 @@ return { [1]="war_banner_mana_reservation_efficiency_+%" } }, - [10516]={ + [10530]={ [1]={ [1]={ limit={ @@ -230715,7 +230943,7 @@ return { [1]="warbringer_overbreak_armour" } }, - [10517]={ + [10531]={ [1]={ [1]={ limit={ @@ -230731,7 +230959,7 @@ return { [1]="warcries_apply_fire_exposure" } }, - [10518]={ + [10532]={ [1]={ [1]={ limit={ @@ -230747,7 +230975,7 @@ return { [1]="warcries_bypass_cooldown" } }, - [10519]={ + [10533]={ [1]={ [1]={ limit={ @@ -230763,7 +230991,7 @@ return { [1]="warcries_debilitate_enemies_for_1_second" } }, - [10520]={ + [10534]={ [1]={ [1]={ limit={ @@ -230779,7 +231007,7 @@ return { [1]="warcries_have_minimum_10_power" } }, - [10521]={ + [10535]={ [1]={ [1]={ limit={ @@ -230795,7 +231023,7 @@ return { [1]="warcries_inflict_x_critical_weakness_on_enemies" } }, - [10522]={ + [10536]={ [1]={ [1]={ limit={ @@ -230811,7 +231039,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [10523]={ + [10537]={ [1]={ [1]={ limit={ @@ -230840,7 +231068,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [10524]={ + [10538]={ [1]={ [1]={ limit={ @@ -230856,7 +231084,7 @@ return { [1]="warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power" } }, - [10525]={ + [10539]={ [1]={ [1]={ [1]={ @@ -230876,7 +231104,7 @@ return { [1]="warcry_cooldown_modifier_ms" } }, - [10526]={ + [10540]={ [1]={ [1]={ limit={ @@ -230905,7 +231133,7 @@ return { [1]="warcry_damage_+%" } }, - [10527]={ + [10541]={ [1]={ [1]={ limit={ @@ -230930,7 +231158,7 @@ return { [1]="warcry_empowers_next_x_melee_attacks" } }, - [10528]={ + [10542]={ [1]={ [1]={ limit={ @@ -230955,7 +231183,7 @@ return { [1]="warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute" } }, - [10529]={ + [10543]={ [1]={ [1]={ limit={ @@ -230984,7 +231212,7 @@ return { [1]="warcry_monster_power_+%" } }, - [10530]={ + [10544]={ [1]={ [1]={ limit={ @@ -231013,7 +231241,7 @@ return { [1]="warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds" } }, - [10531]={ + [10545]={ [1]={ [1]={ limit={ @@ -231042,7 +231270,23 @@ return { [1]="warcry_skill_area_of_effect_+%" } }, - [10532]={ + [10546]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Warcry Skill Gems" + } + }, + stats={ + [1]="warcry_skill_gem_level_+" + } + }, + [10547]={ [1]={ [1]={ limit={ @@ -231058,7 +231302,7 @@ return { [1]="warcry_skills_cooldown_is_4_seconds" } }, - [10533]={ + [10548]={ [1]={ [1]={ limit={ @@ -231087,7 +231331,7 @@ return { [1]="warcry_speed_+%_per_25_tribute" } }, - [10534]={ + [10549]={ [1]={ [1]={ limit={ @@ -231116,7 +231360,7 @@ return { [1]="ward_%_gained_on_kill" } }, - [10535]={ + [10550]={ [1]={ [1]={ limit={ @@ -231145,7 +231389,7 @@ return { [1]="ward_%_to_recover_on_reaching_maximum_rage" } }, - [10536]={ + [10551]={ [1]={ [1]={ limit={ @@ -231154,14 +231398,14 @@ return { [2]="#" } }, - text="Runic Ward recovery can can Overflow maximum Runic Ward" + text="Runic Ward recovery can Overflow maximum Runic Ward" } }, stats={ [1]="ward_can_overcap" } }, - [10537]={ + [10552]={ [1]={ [1]={ limit={ @@ -231190,7 +231434,7 @@ return { [1]="ward_regeneration_rate_+%" } }, - [10538]={ + [10553]={ [1]={ [1]={ limit={ @@ -231219,7 +231463,7 @@ return { [1]="ward_regeneration_rate_+%_if_have_crit_recently" } }, - [10539]={ + [10554]={ [1]={ [1]={ limit={ @@ -231248,7 +231492,7 @@ return { [1]="ward_regeneration_rate_+%_while_sprinting" } }, - [10540]={ + [10555]={ [1]={ [1]={ limit={ @@ -231264,7 +231508,7 @@ return { [1]="ward_regeneration_rate_+1%_final_per_x%_ward_lost_from_hits_up_to_100%" } }, - [10541]={ + [10556]={ [1]={ [1]={ limit={ @@ -231280,7 +231524,7 @@ return { [1]="ward_regeneration_rate_-1%_per_X_maximum_ward" } }, - [10542]={ + [10557]={ [1]={ [1]={ limit={ @@ -231296,7 +231540,7 @@ return { [1]="ward_regeneration_rate_is_doubled" } }, - [10543]={ + [10558]={ [1]={ [1]={ limit={ @@ -231312,7 +231556,7 @@ return { [1]="warping_rune_add_item_tag_1" } }, - [10544]={ + [10559]={ [1]={ [1]={ limit={ @@ -231328,7 +231572,7 @@ return { [1]="warping_rune_add_item_tag_2" } }, - [10545]={ + [10560]={ [1]={ [1]={ limit={ @@ -231344,7 +231588,7 @@ return { [1]="warping_rune_add_item_tag_3" } }, - [10546]={ + [10561]={ [1]={ [1]={ limit={ @@ -231360,7 +231604,7 @@ return { [1]="warping_rune_add_item_tag_4" } }, - [10547]={ + [10562]={ [1]={ [1]={ limit={ @@ -231376,7 +231620,7 @@ return { [1]="warping_rune_add_item_tag_5" } }, - [10548]={ + [10563]={ [1]={ [1]={ limit={ @@ -231392,7 +231636,7 @@ return { [1]="warping_rune_add_item_tag_6" } }, - [10549]={ + [10564]={ [1]={ [1]={ limit={ @@ -231408,7 +231652,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [10550]={ + [10565]={ [1]={ [1]={ limit={ @@ -231437,7 +231681,7 @@ return { [1]="water_sphere_damage_+%" } }, - [10551]={ + [10566]={ [1]={ [1]={ limit={ @@ -231466,7 +231710,7 @@ return { [1]="weapon_damage_+%_per_10_str" } }, - [10552]={ + [10567]={ [1]={ [1]={ limit={ @@ -231495,7 +231739,7 @@ return { [1]="weapon_swap_speed_+%" } }, - [10553]={ + [10568]={ [1]={ [1]={ limit={ @@ -231520,7 +231764,7 @@ return { [1]="while_curse_is_25%_expired_hinder_enemy_%" } }, - [10554]={ + [10569]={ [1]={ [1]={ limit={ @@ -231536,7 +231780,7 @@ return { [1]="while_curse_is_33%_expired_malediction" } }, - [10555]={ + [10570]={ [1]={ [1]={ limit={ @@ -231565,7 +231809,7 @@ return { [1]="while_curse_is_50%_expired_curse_effect_+%" } }, - [10556]={ + [10571]={ [1]={ [1]={ limit={ @@ -231594,7 +231838,7 @@ return { [1]="while_curse_is_75%_expired_enemy_damage_taken_+%" } }, - [10557]={ + [10572]={ [1]={ [1]={ limit={ @@ -231610,7 +231854,7 @@ return { [1]="while_stationary_gain_additional_physical_damage_reduction_%" } }, - [10558]={ + [10573]={ [1]={ [1]={ [1]={ @@ -231630,7 +231874,23 @@ return { [1]="while_stationary_gain_life_regeneration_rate_per_minute_%" } }, - [10559]={ + [10574]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Wind Skill Gems" + } + }, + stats={ + [1]="wind_skill_gem_level_+" + } + }, + [10575]={ [1]={ [1]={ limit={ @@ -231646,7 +231906,7 @@ return { [1]="wind_skills_can_be_empowered_by_multiple_elements" } }, - [10560]={ + [10576]={ [1]={ [1]={ limit={ @@ -231774,7 +232034,7 @@ return { [3]="wind_skills_count_as_empowered_by_shocked_ground" } }, - [10561]={ + [10577]={ [1]={ [1]={ limit={ @@ -231790,7 +232050,7 @@ return { [1]="wind_skills_deal_no_non_elemental_damage" } }, - [10562]={ + [10578]={ [1]={ [1]={ limit={ @@ -231819,7 +232079,7 @@ return { [1]="winter_brand_chill_effect_+%" } }, - [10563]={ + [10579]={ [1]={ [1]={ limit={ @@ -231848,7 +232108,7 @@ return { [1]="winter_brand_damage_+%" } }, - [10564]={ + [10580]={ [1]={ [1]={ limit={ @@ -231864,7 +232124,7 @@ return { [1]="winter_brand_max_number_of_stages_+" } }, - [10565]={ + [10581]={ [1]={ [1]={ limit={ @@ -231880,7 +232140,7 @@ return { [1]="wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [10566]={ + [10582]={ [1]={ [1]={ limit={ @@ -231909,7 +232169,7 @@ return { [1]="witch_passive_maximum_lightning_damage_+%_final" } }, - [10567]={ + [10583]={ [1]={ [1]={ limit={ @@ -231938,7 +232198,7 @@ return { [1]="witchhunter_armour_evasion_+%_final" } }, - [10568]={ + [10584]={ [1]={ [1]={ limit={ @@ -231954,7 +232214,7 @@ return { [1]="witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical" } }, - [10569]={ + [10585]={ [1]={ [1]={ limit={ @@ -231970,7 +232230,7 @@ return { [1]="witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus" } }, - [10570]={ + [10586]={ [1]={ [1]={ limit={ @@ -231986,7 +232246,7 @@ return { [1]="wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [10571]={ + [10587]={ [1]={ [1]={ limit={ @@ -232015,7 +232275,7 @@ return { [1]="withered_effect_on_self_+%" } }, - [10572]={ + [10588]={ [1]={ [1]={ [1]={ @@ -232035,7 +232295,7 @@ return { [1]="withered_enemies_deal_+%_damage" } }, - [10573]={ + [10589]={ [1]={ [1]={ limit={ @@ -232064,7 +232324,7 @@ return { [1]="withered_magnitude_+%" } }, - [10574]={ + [10590]={ [1]={ [1]={ limit={ @@ -232089,7 +232349,7 @@ return { [1]="withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%" } }, - [10575]={ + [10591]={ [1]={ [1]={ limit={ @@ -232114,7 +232374,7 @@ return { [1]="withered_on_hit_for_4_seconds_%_chance" } }, - [10576]={ + [10592]={ [1]={ [1]={ [1]={ @@ -232151,7 +232411,7 @@ return { [1]="wrath_mana_reservation_efficiency_-2%_per_1" } }, - [10577]={ + [10593]={ [1]={ [1]={ limit={ @@ -232180,7 +232440,7 @@ return { [1]="wrath_mana_reservation_efficiency_+%" } }, - [10578]={ + [10594]={ [1]={ [1]={ limit={ @@ -232196,7 +232456,7 @@ return { [1]="wrath_reserves_no_mana" } }, - [10579]={ + [10595]={ [1]={ [1]={ limit={ @@ -232212,7 +232472,7 @@ return { [1]="x%_damage_taken_recouped_as_life_per_5_rage" } }, - [10580]={ + [10596]={ [1]={ [1]={ limit={ @@ -232241,7 +232501,7 @@ return { [1]="x%_faster_start_of_sorcery_ward_recovery" } }, - [10581]={ + [10597]={ [1]={ [1]={ limit={ @@ -232257,7 +232517,7 @@ return { [1]="x%_of_armour_applies_to_elemental_damage_while_shapeshifted" } }, - [10582]={ + [10598]={ [1]={ [1]={ limit={ @@ -232273,7 +232533,7 @@ return { [1]="x%_of_damage_taken_while_channelling_recouped_as_life" } }, - [10583]={ + [10599]={ [1]={ [1]={ limit={ @@ -232289,7 +232549,7 @@ return { [1]="off_hand_apply_ancients_challenge_on_hit" } }, - [10584]={ + [10600]={ [1]={ [1]={ [1]={ @@ -232309,7 +232569,7 @@ return { [1]="apply_ancients_challenge_in_front_facing_radius_on_raise_shield" } }, - [10585]={ + [10601]={ [1]={ [1]={ limit={ @@ -232325,7 +232585,7 @@ return { [1]="runefathers_boast_maximum_stacks" } }, - [10586]={ + [10602]={ [1]={ [1]={ limit={ @@ -232341,7 +232601,7 @@ return { [1]="you_and_allies_additional_block_%_if_have_attacked_recently" } }, - [10587]={ + [10603]={ [1]={ [1]={ limit={ @@ -232370,7 +232630,7 @@ return { [1]="you_and_allies_in_presence_accuracy_rating_+%" } }, - [10588]={ + [10604]={ [1]={ [1]={ limit={ @@ -232386,7 +232646,7 @@ return { [1]="you_and_allies_in_presence_all_damage_can_ignite" } }, - [10589]={ + [10605]={ [1]={ [1]={ limit={ @@ -232415,7 +232675,7 @@ return { [1]="you_and_allies_in_presence_attack_speed_+%" } }, - [10590]={ + [10606]={ [1]={ [1]={ limit={ @@ -232444,7 +232704,7 @@ return { [1]="you_and_allies_in_presence_cast_speed_+%" } }, - [10591]={ + [10607]={ [1]={ [1]={ limit={ @@ -232460,7 +232720,7 @@ return { [1]="you_and_allies_in_presence_chaos_damage_resistance_%" } }, - [10592]={ + [10608]={ [1]={ [1]={ limit={ @@ -232489,7 +232749,7 @@ return { [1]="you_and_allies_in_presence_cooldown_speed_+%" } }, - [10593]={ + [10609]={ [1]={ [1]={ limit={ @@ -232505,7 +232765,7 @@ return { [1]="you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame" } }, - [10594]={ + [10610]={ [1]={ [1]={ limit={ @@ -232521,7 +232781,7 @@ return { [1]="you_and_nearby_allies_armour_+_if_have_impaled_recently" } }, - [10595]={ + [10611]={ [1]={ [1]={ limit={ @@ -232550,7 +232810,7 @@ return { [1]="you_and_nearby_allies_critical_strike_chance_+%" } }, - [10596]={ + [10612]={ [1]={ [1]={ limit={ @@ -232566,7 +232826,7 @@ return { [1]="you_and_nearby_allies_critical_strike_multiplier_+" } }, - [10597]={ + [10613]={ [1]={ [1]={ [1]={ @@ -232586,7 +232846,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently" } }, - [10598]={ + [10614]={ [1]={ [1]={ [1]={ @@ -232606,7 +232866,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently" } }, - [10599]={ + [10615]={ [1]={ [1]={ [1]={ @@ -232626,7 +232886,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently" } }, - [10600]={ + [10616]={ [1]={ [1]={ limit={ @@ -232642,7 +232902,7 @@ return { [1]="you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry" } }, - [10601]={ + [10617]={ [1]={ [1]={ limit={ @@ -232658,7 +232918,7 @@ return { [1]="you_and_nearby_party_members_gain_x_rage_when_you_warcry" } }, - [10602]={ + [10618]={ [1]={ [1]={ [1]={ @@ -232678,7 +232938,7 @@ return { [1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem" } }, - [10603]={ + [10619]={ [1]={ [1]={ limit={ @@ -232694,7 +232954,7 @@ return { [1]="you_are_cursed_with_despair" } }, - [10604]={ + [10620]={ [1]={ [1]={ limit={ @@ -232710,7 +232970,7 @@ return { [1]="you_are_cursed_with_elemental_weakness" } }, - [10605]={ + [10621]={ [1]={ [1]={ limit={ @@ -232726,7 +232986,7 @@ return { [1]="you_are_cursed_with_enfeeble" } }, - [10606]={ + [10622]={ [1]={ [1]={ limit={ @@ -232742,7 +233002,7 @@ return { [1]="you_are_cursed_with_temporal_chains" } }, - [10607]={ + [10623]={ [1]={ [1]={ limit={ @@ -232758,7 +233018,7 @@ return { [1]="you_are_cursed_with_vulnerability" } }, - [10608]={ + [10624]={ [1]={ [1]={ limit={ @@ -232774,7 +233034,7 @@ return { [1]="you_cannot_be_hindered" } }, - [10609]={ + [10625]={ [1]={ [1]={ limit={ @@ -232790,7 +233050,7 @@ return { [1]="you_cannot_have_non_animated_minions" } }, - [10610]={ + [10626]={ [1]={ [1]={ limit={ @@ -232806,7 +233066,7 @@ return { [1]="you_cannot_have_non_spectre_minions" } }, - [10611]={ + [10627]={ [1]={ [1]={ limit={ @@ -232822,7 +233082,7 @@ return { [1]="you_cannot_inflict_curses" } }, - [10612]={ + [10628]={ [1]={ [1]={ limit={ @@ -232838,7 +233098,7 @@ return { [1]="you_count_as_low_life_while_not_on_full_life" } }, - [10613]={ + [10629]={ [1]={ [1]={ limit={ @@ -232854,7 +233114,7 @@ return { [1]="you_gain_%_life_when_one_of_your_minions_is_revived" } }, - [10614]={ + [10630]={ [1]={ [1]={ limit={ @@ -232883,7 +233143,7 @@ return { [1]="your_aftershock_area_of_effect_+%" } }, - [10615]={ + [10631]={ [1]={ [1]={ limit={ @@ -232899,7 +233159,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [10616]={ + [10632]={ [1]={ [1]={ limit={ @@ -232915,7 +233175,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [10617]={ + [10633]={ [1]={ [1]={ limit={ @@ -232931,7 +233191,7 @@ return { [1]="your_auras_except_anger_are_disabled" } }, - [10618]={ + [10634]={ [1]={ [1]={ limit={ @@ -232947,7 +233207,7 @@ return { [1]="your_auras_except_clarity_are_disabled" } }, - [10619]={ + [10635]={ [1]={ [1]={ limit={ @@ -232963,7 +233223,7 @@ return { [1]="your_auras_except_determination_are_disabled" } }, - [10620]={ + [10636]={ [1]={ [1]={ limit={ @@ -232979,7 +233239,7 @@ return { [1]="your_auras_except_discipline_are_disabled" } }, - [10621]={ + [10637]={ [1]={ [1]={ limit={ @@ -232995,7 +233255,7 @@ return { [1]="your_auras_except_grace_are_disabled" } }, - [10622]={ + [10638]={ [1]={ [1]={ limit={ @@ -233011,7 +233271,7 @@ return { [1]="your_auras_except_haste_are_disabled" } }, - [10623]={ + [10639]={ [1]={ [1]={ limit={ @@ -233027,7 +233287,7 @@ return { [1]="your_auras_except_hatred_are_disabled" } }, - [10624]={ + [10640]={ [1]={ [1]={ limit={ @@ -233043,7 +233303,7 @@ return { [1]="your_auras_except_malevolence_are_disabled" } }, - [10625]={ + [10641]={ [1]={ [1]={ limit={ @@ -233059,7 +233319,7 @@ return { [1]="your_auras_except_precision_are_disabled" } }, - [10626]={ + [10642]={ [1]={ [1]={ limit={ @@ -233075,7 +233335,7 @@ return { [1]="your_auras_except_pride_are_disabled" } }, - [10627]={ + [10643]={ [1]={ [1]={ limit={ @@ -233091,7 +233351,7 @@ return { [1]="your_auras_except_purity_of_elements_are_disabled" } }, - [10628]={ + [10644]={ [1]={ [1]={ limit={ @@ -233107,7 +233367,7 @@ return { [1]="your_auras_except_purity_of_fire_are_disabled" } }, - [10629]={ + [10645]={ [1]={ [1]={ limit={ @@ -233123,7 +233383,7 @@ return { [1]="your_auras_except_purity_of_ice_are_disabled" } }, - [10630]={ + [10646]={ [1]={ [1]={ limit={ @@ -233139,7 +233399,7 @@ return { [1]="your_auras_except_purity_of_lightning_are_disabled" } }, - [10631]={ + [10647]={ [1]={ [1]={ limit={ @@ -233155,7 +233415,7 @@ return { [1]="your_auras_except_vitality_are_disabled" } }, - [10632]={ + [10648]={ [1]={ [1]={ limit={ @@ -233171,7 +233431,7 @@ return { [1]="your_auras_except_wrath_are_disabled" } }, - [10633]={ + [10649]={ [1]={ [1]={ limit={ @@ -233187,7 +233447,7 @@ return { [1]="your_auras_except_zealotry_are_disabled" } }, - [10634]={ + [10650]={ [1]={ [1]={ limit={ @@ -233216,7 +233476,7 @@ return { [1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10635]={ + [10651]={ [1]={ [1]={ limit={ @@ -233232,7 +233492,7 @@ return { [1]="your_es_takes_%_hit_damage_from_allies_in_presence_before_them" } }, - [10636]={ + [10652]={ [1]={ [1]={ limit={ @@ -233248,7 +233508,7 @@ return { [1]="your_life_cannot_change_while_you_have_energy_shield" } }, - [10637]={ + [10653]={ [1]={ [1]={ limit={ @@ -233273,7 +233533,7 @@ return { [1]="your_mace_slam_aftershock_chance_%" } }, - [10638]={ + [10654]={ [1]={ [1]={ limit={ @@ -233289,7 +233549,7 @@ return { [1]="your_mace_strike_melee_splash_chance_%" } }, - [10639]={ + [10655]={ [1]={ [1]={ limit={ @@ -233305,7 +233565,7 @@ return { [1]="your_marks_spread_to_a_nearby_enemies_on_consume_%_chance" } }, - [10640]={ + [10656]={ [1]={ [1]={ limit={ @@ -233321,7 +233581,7 @@ return { [1]="your_movement_skills_are_disabled" } }, - [10641]={ + [10657]={ [1]={ [1]={ [1]={ @@ -233354,7 +233614,7 @@ return { [1]="your_profane_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10642]={ + [10658]={ [1]={ [1]={ limit={ @@ -233370,7 +233630,7 @@ return { [1]="your_shield_skills_are_disabled" } }, - [10643]={ + [10659]={ [1]={ [1]={ limit={ @@ -233395,7 +233655,7 @@ return { [1]="your_slam_aftershock_chance_%" } }, - [10644]={ + [10660]={ [1]={ [1]={ limit={ @@ -233411,7 +233671,7 @@ return { [1]="your_spells_are_disabled" } }, - [10645]={ + [10661]={ [1]={ [1]={ limit={ @@ -233427,7 +233687,7 @@ return { [1]="your_travel_skills_are_disabled" } }, - [10646]={ + [10662]={ [1]={ [1]={ limit={ @@ -233443,7 +233703,7 @@ return { [1]="your_travel_skills_except_dash_are_disabled" } }, - [10647]={ + [10663]={ [1]={ [1]={ limit={ @@ -233459,7 +233719,7 @@ return { [1]="blind_from_sightless_conviction_unique" } }, - [10648]={ + [10664]={ [1]={ [1]={ limit={ @@ -233475,7 +233735,7 @@ return { [1]="effects_from_blinded_are_inverted" } }, - [10649]={ + [10665]={ [1]={ [1]={ limit={ @@ -233491,7 +233751,7 @@ return { [1]="all_damage_can_poison_while_affected_by_glorious_madness" } }, - [10650]={ + [10666]={ [1]={ [1]={ limit={ @@ -233507,7 +233767,7 @@ return { [1]="attack_minimum_added_lightning_damage_%_of_maximum_mana" } }, - [10651]={ + [10667]={ [1]={ [1]={ limit={ @@ -233523,7 +233783,7 @@ return { [1]="chance_to_deal_double_damage_while_affected_by_glorious_madness_%" } }, - [10652]={ + [10668]={ [1]={ [1]={ limit={ @@ -233539,7 +233799,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%" } }, - [10653]={ + [10669]={ [1]={ [1]={ limit={ @@ -233555,7 +233815,7 @@ return { [1]="gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness" } }, - [10654]={ + [10670]={ [1]={ [1]={ [1]={ @@ -233575,7 +233835,7 @@ return { [1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy" } }, - [10655]={ + [10671]={ [1]={ [1]={ limit={ @@ -233591,7 +233851,7 @@ return { [1]="immune_to_elemental_status_ailments_while_affected_by_glorious_madness" } }, - [10656]={ + [10672]={ [1]={ [1]={ limit={ @@ -233607,7 +233867,7 @@ return { [1]="local_apply_extra_herald_mod_when_synthesised" } }, - [10657]={ + [10673]={ [1]={ [1]={ limit={ @@ -233623,7 +233883,7 @@ return { [1]="local_is_alternate_tree_jewel" } }, - [10658]={ + [10674]={ [1]={ [1]={ limit={ @@ -233639,7 +233899,7 @@ return { [1]="local_is_survival_jewel" } }, - [10659]={ + [10675]={ [1]={ [1]={ [1]={ @@ -233659,7 +233919,7 @@ return { [1]="max_fortification_while_affected_by_glorious_madness_+1_per_4" } }, - [10660]={ + [10676]={ [1]={ [1]={ limit={ @@ -233675,7 +233935,23 @@ return { [1]="primordial_jewel_count" } }, - [10661]={ + [10677]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Corrupting will always result in change" + } + }, + stats={ + [1]="soul_core_cannot_roll_no_outcome_with_corruption" + } + }, + [10678]={ [1]={ [1]={ limit={ @@ -233691,7 +233967,7 @@ return { [1]="armour_+%_per_rage" } }, - [10662]={ + [10679]={ [1]={ [1]={ limit={ @@ -233720,7 +233996,7 @@ return { [1]="zealotry_aura_effect_+%" } }, - [10663]={ + [10680]={ [1]={ [1]={ [1]={ @@ -233757,7 +234033,7 @@ return { [1]="zealotry_mana_reservation_efficiency_-2%_per_1" } }, - [10664]={ + [10681]={ [1]={ [1]={ limit={ @@ -233786,7 +234062,7 @@ return { [1]="zealotry_mana_reservation_efficiency_+%" } }, - [10665]={ + [10682]={ [1]={ [1]={ limit={ @@ -233819,7 +234095,7 @@ return { [1]="zealotry_mana_reservation_+%" } }, - [10666]={ + [10683]={ [1]={ [1]={ limit={ @@ -233835,7 +234111,7 @@ return { [1]="zealotry_reserves_no_mana" } }, - [10667]={ + [10684]={ [1]={ [1]={ limit={ @@ -233851,7 +234127,7 @@ return { [1]="zero_chaos_resistance" } }, - [10668]={ + [10685]={ [1]={ [1]={ [1]={ @@ -233871,7 +234147,7 @@ return { [1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [10669]={ + [10686]={ [1]={ [1]={ limit={ @@ -233900,7 +234176,7 @@ return { [1]="zombie_physical_damage_+%_final" } }, - [10670]={ + [10687]={ [1]={ [1]={ limit={ @@ -233929,7 +234205,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [10671]={ + [10688]={ [1]={ [1]={ limit={ @@ -233945,7 +234221,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [10672]={ + [10689]={ [1]={ [1]={ limit={ @@ -233961,7 +234237,7 @@ return { [1]="zombie_slam_damage_+%" } }, - [10673]={ + [10690]={ [1]={ [1]={ limit={ @@ -233977,7 +234253,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [10674]={ + [10691]={ [1]={ [1]={ limit={ @@ -233993,7 +234269,7 @@ return { [1]="bloodlust_reveal_weakness" } }, - [10675]={ + [10692]={ [1]={ [1]={ limit={ @@ -234009,7 +234285,7 @@ return { [1]="unique_reveal_weakness" } }, - [10676]={ + [10693]={ [1]={ [1]={ limit={ @@ -234038,7 +234314,7 @@ return { [1]="damage_+%_final_against_bloodlusting_enemies" } }, - [10677]={ + [10694]={ [1]={ [1]={ limit={ @@ -234054,7 +234330,7 @@ return { [1]="gain_soul_eater_when_hitting_a_rare_or_unique_enemy_that_has_open_weakness" } }, - [10678]={ + [10695]={ [1]={ [1]={ limit={ @@ -234070,7 +234346,7 @@ return { [1]="recoup_%_of_damage_taken_from_enemies_with_open_weakness_as_life" } }, - [10679]={ + [10696]={ [1]={ [1]={ limit={ @@ -234086,7 +234362,7 @@ return { [1]="recoup_%_of_damage_taken_from_enemies_with_open_weakness_as_life_and_energy_shield" } }, - [10680]={ + [10697]={ [1]={ [1]={ limit={ @@ -234115,7 +234391,7 @@ return { [1]="movement_speed_+%_against_bloodlusting_enemies" } }, - [10681]={ + [10698]={ [1]={ [1]={ limit={ @@ -234144,7 +234420,7 @@ return { [1]="skill_speed_+%_against_bloodlusting_enemies" } }, - [10682]={ + [10699]={ [1]={ [1]={ limit={ @@ -234160,7 +234436,7 @@ return { [1]="golems_larger_aggro_radius" } }, - [10683]={ + [10700]={ [1]={ [1]={ limit={ @@ -234176,7 +234452,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [10684]={ + [10701]={ [1]={ [1]={ limit={ @@ -234197,7 +234473,7 @@ return { [2]="local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%" } }, - [10685]={ + [10702]={ [1]={ [1]={ limit={ @@ -234226,7 +234502,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%" } }, - [10686]={ + [10703]={ [1]={ [1]={ limit={ @@ -234255,7 +234531,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%" } }, - [10687]={ + [10704]={ [1]={ [1]={ limit={ @@ -234276,7 +234552,7 @@ return { [2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage" } }, - [10688]={ + [10705]={ [1]={ [1]={ limit={ @@ -234292,7 +234568,7 @@ return { [1]="attack_maximum_added_lightning_damage_%_of_maximum_mana" } }, - [10689]={ + [10706]={ [1]={ [1]={ limit={ @@ -234308,7 +234584,7 @@ return { [1]="melee_hits_grant_rampage_stacks" } }, - [10690]={ + [10707]={ [1]={ [1]={ limit={ @@ -234324,7 +234600,7 @@ return { [1]="player_gain_rampage_stacks" } }, - [10691]={ + [10708]={ [1]={ [1]={ limit={ @@ -234340,7 +234616,7 @@ return { [1]="can_have_2_companions" } }, - [10692]={ + [10709]={ [1]={ [1]={ limit={ @@ -234356,7 +234632,7 @@ return { [1]="can_have_unlimited_companions" } }, - [10693]={ + [10710]={ [1]={ [1]={ limit={ @@ -234372,7 +234648,7 @@ return { [1]="unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es" } }, - [10694]={ + [10711]={ [1]={ [1]={ limit={ @@ -234388,7 +234664,7 @@ return { [1]="converts_all_armour_to_evasion_rating" } }, - [10695]={ + [10712]={ [1]={ [1]={ limit={ @@ -234404,7 +234680,7 @@ return { [1]="the_wendigo_manifests_every_x_seconds" } }, - [10696]={ + [10713]={ [1]={ [1]={ [1]={ @@ -234424,7 +234700,7 @@ return { [1]="local_additional_vivisection_random_keystone_index" } }, - [10697]={ + [10714]={ [1]={ [1]={ [1]={ @@ -234444,7 +234720,7 @@ return { [1]="local_vivisection_random_keystone_index" } }, - [10698]={ + [10715]={ [1]={ [1]={ [1]={ @@ -234464,7 +234740,7 @@ return { [1]="local_additional_vivisection_random_keystone_index" } }, - [10699]={ + [10716]={ [1]={ [1]={ limit={ @@ -234480,7 +234756,7 @@ return { [1]="demigods_virtue" } }, - [10700]={ + [10717]={ [1]={ [1]={ limit={ @@ -234496,7 +234772,7 @@ return { [1]="keystone_2_companions" } }, - [10701]={ + [10718]={ [1]={ [1]={ limit={ @@ -234512,7 +234788,7 @@ return { [1]="keystone_acrobatics" } }, - [10702]={ + [10719]={ [1]={ [1]={ limit={ @@ -234528,7 +234804,7 @@ return { [1]="keystone_alternate_dexterity_bonus" } }, - [10703]={ + [10720]={ [1]={ [1]={ limit={ @@ -234544,7 +234820,7 @@ return { [1]="keystone_alternate_es_recovery" } }, - [10704]={ + [10721]={ [1]={ [1]={ limit={ @@ -234560,7 +234836,7 @@ return { [1]="keystone_alternate_intelligence_bonus" } }, - [10705]={ + [10722]={ [1]={ [1]={ limit={ @@ -234576,7 +234852,7 @@ return { [1]="keystone_alternate_strength_bonus" } }, - [10706]={ + [10723]={ [1]={ [1]={ limit={ @@ -234592,7 +234868,7 @@ return { [1]="keystone_ancestral_bond" } }, - [10707]={ + [10724]={ [1]={ [1]={ limit={ @@ -234608,7 +234884,7 @@ return { [1]="keystone_auto_invocation" } }, - [10708]={ + [10725]={ [1]={ [1]={ limit={ @@ -234624,7 +234900,7 @@ return { [1]="keystone_avatar_of_fire" } }, - [10709]={ + [10726]={ [1]={ [1]={ limit={ @@ -234640,7 +234916,7 @@ return { [1]="keystone_battlemage" } }, - [10710]={ + [10727]={ [1]={ [1]={ limit={ @@ -234656,7 +234932,7 @@ return { [1]="keystone_blood_magic" } }, - [10711]={ + [10728]={ [1]={ [1]={ limit={ @@ -234672,7 +234948,7 @@ return { [1]="keystone_bulwark" } }, - [10712]={ + [10729]={ [1]={ [1]={ limit={ @@ -234688,7 +234964,7 @@ return { [1]="keystone_call_to_arms" } }, - [10713]={ + [10730]={ [1]={ [1]={ limit={ @@ -234704,7 +234980,7 @@ return { [1]="keystone_chaos_inoculation" } }, - [10714]={ + [10731]={ [1]={ [1]={ limit={ @@ -234720,7 +234996,7 @@ return { [1]="keystone_charge_cycle" } }, - [10715]={ + [10732]={ [1]={ [1]={ limit={ @@ -234736,7 +235012,7 @@ return { [1]="keystone_conduit" } }, - [10716]={ + [10733]={ [1]={ [1]={ limit={ @@ -234752,7 +235028,7 @@ return { [1]="keystone_crimson_assault" } }, - [10717]={ + [10734]={ [1]={ [1]={ limit={ @@ -234768,7 +235044,7 @@ return { [1]="keystone_crimson_dance" } }, - [10718]={ + [10735]={ [1]={ [1]={ limit={ @@ -234784,7 +235060,7 @@ return { [1]="keystone_dance_with_death" } }, - [10719]={ + [10736]={ [1]={ [1]={ limit={ @@ -234800,7 +235076,7 @@ return { [1]="keystone_divine_flesh" } }, - [10720]={ + [10737]={ [1]={ [1]={ limit={ @@ -234816,7 +235092,7 @@ return { [1]="keystone_divine_shield" } }, - [10721]={ + [10738]={ [1]={ [1]={ limit={ @@ -234832,7 +235108,7 @@ return { [1]="keystone_druidic_rage" } }, - [10722]={ + [10739]={ [1]={ [1]={ limit={ @@ -234848,7 +235124,7 @@ return { [1]="keystone_eldritch_battery" } }, - [10723]={ + [10740]={ [1]={ [1]={ limit={ @@ -234864,7 +235140,7 @@ return { [1]="keystone_elemental_equilibrium" } }, - [10724]={ + [10741]={ [1]={ [1]={ limit={ @@ -234880,7 +235156,7 @@ return { [1]="keystone_elemental_overload" } }, - [10725]={ + [10742]={ [1]={ [1]={ limit={ @@ -234896,7 +235172,7 @@ return { [1]="keystone_emperors_heart" } }, - [10726]={ + [10743]={ [1]={ [1]={ limit={ @@ -234912,7 +235188,7 @@ return { [1]="keystone_eternal_youth" } }, - [10727]={ + [10744]={ [1]={ [1]={ limit={ @@ -234928,7 +235204,7 @@ return { [1]="keystone_everlasting_sacrifice" } }, - [10728]={ + [10745]={ [1]={ [1]={ limit={ @@ -234944,7 +235220,7 @@ return { [1]="keystone_fire_spells_become_chaos_spells" } }, - [10729]={ + [10746]={ [1]={ [1]={ limit={ @@ -234960,7 +235236,7 @@ return { [1]="keystone_giants_blood" } }, - [10730]={ + [10747]={ [1]={ [1]={ limit={ @@ -234976,7 +235252,7 @@ return { [1]="keystone_glancing_blows" } }, - [10731]={ + [10748]={ [1]={ [1]={ limit={ @@ -234992,7 +235268,7 @@ return { [1]="keystone_heartstopper" } }, - [10732]={ + [10749]={ [1]={ [1]={ limit={ @@ -235008,7 +235284,7 @@ return { [1]="keystone_hex_master" } }, - [10733]={ + [10750]={ [1]={ [1]={ limit={ @@ -235024,7 +235300,7 @@ return { [1]="keystone_hollow_palm_technique" } }, - [10734]={ + [10751]={ [1]={ [1]={ limit={ @@ -235040,7 +235316,7 @@ return { [1]="keystone_impale" } }, - [10735]={ + [10752]={ [1]={ [1]={ limit={ @@ -235056,7 +235332,7 @@ return { [1]="keystone_iron_grip" } }, - [10736]={ + [10753]={ [1]={ [1]={ limit={ @@ -235072,7 +235348,7 @@ return { [1]="keystone_iron_reflexes" } }, - [10737]={ + [10754]={ [1]={ [1]={ limit={ @@ -235088,7 +235364,7 @@ return { [1]="keystone_iron_will" } }, - [10738]={ + [10755]={ [1]={ [1]={ limit={ @@ -235104,7 +235380,7 @@ return { [1]="keystone_lord_of_the_wilds" } }, - [10739]={ + [10756]={ [1]={ [1]={ limit={ @@ -235120,7 +235396,7 @@ return { [1]="keystone_mana_shield" } }, - [10740]={ + [10757]={ [1]={ [1]={ limit={ @@ -235136,7 +235412,7 @@ return { [1]="keystone_minion_instability" } }, - [10741]={ + [10758]={ [1]={ [1]={ limit={ @@ -235152,7 +235428,7 @@ return { [1]="keystone_oasis" } }, - [10742]={ + [10759]={ [1]={ [1]={ limit={ @@ -235168,7 +235444,7 @@ return { [1]="keystone_pain_attunement" } }, - [10743]={ + [10760]={ [1]={ [1]={ limit={ @@ -235184,7 +235460,7 @@ return { [1]="keystone_point_blank" } }, - [10744]={ + [10761]={ [1]={ [1]={ limit={ @@ -235200,7 +235476,7 @@ return { [1]="keystone_precise_technique" } }, - [10745]={ + [10762]={ [1]={ [1]={ limit={ @@ -235216,7 +235492,7 @@ return { [1]="keystone_quiet_might" } }, - [10746]={ + [10763]={ [1]={ [1]={ limit={ @@ -235232,7 +235508,7 @@ return { [1]="keystone_runebinder" } }, - [10747]={ + [10764]={ [1]={ [1]={ limit={ @@ -235248,7 +235524,7 @@ return { [1]="keystone_sacred_bastion" } }, - [10748]={ + [10765]={ [1]={ [1]={ limit={ @@ -235264,7 +235540,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [10749]={ + [10766]={ [1]={ [1]={ limit={ @@ -235280,7 +235556,7 @@ return { [1]="keystone_unwavering_stance" } }, - [10750]={ + [10767]={ [1]={ [1]={ limit={ @@ -235296,7 +235572,7 @@ return { [1]="keystone_vaal_pact" } }, - [10751]={ + [10768]={ [1]={ [1]={ limit={ @@ -235312,7 +235588,7 @@ return { [1]="keystone_versatile_combatant" } }, - [10752]={ + [10769]={ [1]={ [1]={ limit={ @@ -235328,7 +235604,7 @@ return { [1]="keystone_wildsurge_incantation" } }, - [10753]={ + [10770]={ [1]={ [1]={ limit={ @@ -235344,7 +235620,7 @@ return { [1]="keystone_zealots_oath" } }, - [10754]={ + [10771]={ [1]={ [1]={ limit={ @@ -235360,7 +235636,7 @@ return { [1]="player_far_shot" } }, - [10755]={ + [10772]={ [1]={ [1]={ limit={ @@ -235376,7 +235652,7 @@ return { [1]="resolute_technique" } }, - [10756]={ + [10773]={ [1]={ [1]={ limit={ @@ -235392,7 +235668,7 @@ return { [1]="summoned_skeletons_have_avatar_of_fire" } }, - [10757]={ + [10774]={ [1]={ [1]={ limit={ @@ -235408,7 +235684,7 @@ return { [1]="attacks_use_life_in_place_of_mana" } }, - [10758]={ + [10775]={ [1]={ [1]={ limit={ @@ -235424,7 +235700,7 @@ return { [1]="gain_crimson_dance_if_have_dealt_critical_strike_recently" } }, - [10759]={ + [10776]={ [1]={ [1]={ limit={ @@ -235440,7 +235716,7 @@ return { [1]="gain_crimson_dance_while_you_have_cat_stealth" } }, - [10760]={ + [10777]={ [1]={ [1]={ limit={ @@ -235456,7 +235732,7 @@ return { [1]="gain_iron_reflexes_while_at_maximum_frenzy_charges" } }, - [10761]={ + [10778]={ [1]={ [1]={ limit={ @@ -235472,7 +235748,7 @@ return { [1]="gain_mind_over_matter_while_at_maximum_power_charges" } }, - [10762]={ + [10779]={ [1]={ [1]={ limit={ @@ -235488,7 +235764,7 @@ return { [1]="avatar_of_fire_rotation_active" } }, - [10763]={ + [10780]={ [1]={ [1]={ limit={ @@ -235504,7 +235780,7 @@ return { [1]="elemental_overload_rotation_active" } }, - [10764]={ + [10781]={ [1]={ [1]={ limit={ @@ -235520,7 +235796,7 @@ return { [1]="gain_iron_reflexes_while_stationary" } }, - [10765]={ + [10782]={ [1]={ [1]={ limit={ @@ -235536,7 +235812,7 @@ return { [1]="gain_resolute_technique_while_do_not_have_elemental_overload" } }, - [10766]={ + [10783]={ [1]={ [1]={ limit={ @@ -235552,7 +235828,7 @@ return { [1]="iron_reflexes_rotation_active" } }, - [10767]={ + [10784]={ [1]={ [1]={ limit={ @@ -235568,7 +235844,7 @@ return { [1]="trap_throw_skills_have_blood_magic" } }, - [10768]={ + [10785]={ [1]={ [1]={ limit={ @@ -235597,7 +235873,7 @@ return { [1]="physical_damage_+%_while_you_have_resolute_technique" } }, - [10769]={ + [10786]={ [1]={ [1]={ limit={ @@ -235626,7 +235902,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_avatar_of_fire" } }, - [10770]={ + [10787]={ [1]={ [1]={ limit={ @@ -235642,7 +235918,7 @@ return { [1]="non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire" } }, - [10771]={ + [10788]={ [1]={ [1]={ limit={ @@ -235658,7 +235934,7 @@ return { [1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes" } }, - [10772]={ + [10789]={ [1]={ [1]={ limit={ @@ -235674,7 +235950,7 @@ return { [1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire" } }, - [10773]={ + [10790]={ [1]={ [1]={ limit={ @@ -235690,7 +235966,7 @@ return { [1]="armour_while_you_do_not_have_avatar_of_fire" } }, - [10774]={ + [10791]={ [1]={ [1]={ limit={ @@ -235719,7 +235995,7 @@ return { [1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes" } }, - [10775]={ + [10792]={ [1]={ [1]={ limit={ @@ -235735,7 +236011,7 @@ return { [1]="gain_player_far_shot_while_do_not_have_iron_reflexes" } }, - [10776]={ + [10793]={ [1]={ [1]={ limit={ @@ -235751,7 +236027,7 @@ return { [1]="blood_footprints_from_item" } }, - [10777]={ + [10794]={ [1]={ [1]={ limit={ @@ -235767,7 +236043,7 @@ return { [1]="celestial_footprints_from_item" } }, - [10778]={ + [10795]={ [1]={ [1]={ limit={ @@ -235783,7 +236059,7 @@ return { [1]="demigod_footprints_from_item" } }, - [10779]={ + [10796]={ [1]={ [1]={ limit={ @@ -235799,7 +236075,7 @@ return { [1]="enable_unfettered_authority_roll_variation" } }, - [10780]={ + [10797]={ [1]={ [1]={ limit={ @@ -235815,7 +236091,7 @@ return { [1]="extra_gore" } }, - [10781]={ + [10798]={ [1]={ [1]={ limit={ @@ -235831,7 +236107,7 @@ return { [1]="goat_footprints_from_item" } }, - [10782]={ + [10799]={ [1]={ [1]={ limit={ @@ -235847,7 +236123,7 @@ return { [1]="local_item_can_be_instilled" } }, - [10783]={ + [10800]={ [1]={ [1]={ limit={ @@ -235870,19 +236146,19 @@ return { ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=4048, ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3495, ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3754, - ["%_chance_to_deal_150%_area_damage_+%_final"]=9437, - ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9438, + ["%_chance_to_deal_150%_area_damage_+%_final"]=9444, + ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9445, ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3306, ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3305, ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3752, ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1895, ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3738, ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1894, - ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9439, + ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9446, ["%_maximum_life_as_focus"]=3, - ["%_number_of_raging_spirits_allowed"]=9440, + ["%_number_of_raging_spirits_allowed"]=9447, ["%_of_life_regeneration_applies_to_totems"]=4, - ["%_of_physical_hit_damage_you_deal_causes_additional_blood_loss"]=9441, + ["%_of_physical_hit_damage_you_deal_causes_additional_blood_loss"]=9448, ["%_physical_damage_bypasses_energy_shield"]=1479, ["+%_faster_start_of_energy_shield_recharge_per_X_maximum_ward"]=5, ["+1_max_charged_attack_stages"]=6, @@ -235901,7 +236177,7 @@ return { ["absolution_cast_speed_+%"]=4136, ["absolution_duration_+%"]=4137, ["absolution_minion_area_of_effect_+%"]=4138, - ["abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%"]=9171, + ["abyss_socketable_movement_speed_is_only_base_+%_per_15_spirit_up_to_+40%"]=9176, ["abyssal_cry_damage_+%"]=3426, ["abyssal_cry_duration_+%"]=3612, ["abyssal_wasting_also_blinds"]=4139, @@ -236017,7 +236293,7 @@ return { ["additional_block_chance_%_while_holding_focus"]=4201, ["additional_block_chance_against_projectiles_%"]=2269, ["additional_chance_to_freeze_chilled_enemies_%"]=1796, - ["additional_chaos_resistance_against_damage_over_time_%"]=5605, + ["additional_chaos_resistance_against_damage_over_time_%"]=5606, ["additional_combo_gain_chance_%"]=4209, ["additional_combo_gain_on_hit"]=4118, ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4210, @@ -236052,7 +236328,7 @@ return { ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4230, ["additional_maximum_block_%"]=1758, ["additional_maximum_block_%_if_blocked_with_active_block_recently"]=4231, - ["additional_maximum_infusion_stacks"]=8894, + ["additional_maximum_infusion_stacks"]=8899, ["additional_number_of_brands_to_create"]=4232, ["additional_off_hand_critical_strike_chance_permyriad"]=4233, ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4234, @@ -236131,7 +236407,7 @@ return { ["all_damage_can_freeze"]=4294, ["all_damage_can_ignite"]=4295, ["all_damage_can_poison"]=4296, - ["all_damage_can_poison_while_affected_by_glorious_madness"]=10649, + ["all_damage_can_poison_while_affected_by_glorious_madness"]=10665, ["all_damage_can_shock"]=4297, ["all_damage_from_you_and_minions_can_ignite_while_not_on_low_infernal_flame"]=4298, ["all_damage_taken_%_as_chaos_damage"]=2220, @@ -236169,7 +236445,7 @@ return { ["allies_in_presence_elemental_damage_+%"]=937, ["allies_in_presence_glory_generation_+%"]=4310, ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3037, - ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6541, + ["allies_in_presence_have_explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6543, ["allies_in_presence_have_unholy_might_while_you_not_on_low_mana"]=2803, ["allies_in_presence_life_regeneration_rate_per_minute"]=945, ["allies_in_presence_life_regeneration_rate_per_minute_equal_to_their_maximum_life_%"]=946, @@ -236235,7 +236511,7 @@ return { ["apply_X_stacks_of_critical_weakness_on_hit"]=4346, ["apply_X_stacks_of_critical_weakness_on_parry"]=4347, ["apply_anaemia_magnitude_on_hit"]=4348, - ["apply_ancients_challenge_in_front_facing_radius_on_raise_shield"]=10584, + ["apply_ancients_challenge_in_front_facing_radius_on_raise_shield"]=10600, ["apply_blind_on_hit_while_ruby_sapphire_socketed"]=4349, ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4350, ["apply_covered_in_ash_to_attacker_when_hit_%"]=4351, @@ -236326,7 +236602,7 @@ return { ["armour_+%_if_you_havent_been_hit_recently"]=4415, ["armour_+%_per_50_str"]=4450, ["armour_+%_per_defiance"]=3953, - ["armour_+%_per_rage"]=10661, + ["armour_+%_per_rage"]=10678, ["armour_+%_per_red_socket_on_main_hand_weapon"]=4452, ["armour_+%_per_second_while_stationary_up_to_100"]=4453, ["armour_+%_while_bleeding"]=4454, @@ -236364,17 +236640,17 @@ return { ["armour_break_physical_damage_%_dealt_as_armour_break"]=4438, ["armour_break_taken_+%"]=4439, ["armour_evasion_+%_while_leeching"]=4440, - ["armour_evasion_energy_shield_+%_while_channelling"]=6121, - ["armour_evasion_energy_shield_+%_while_on_low_life"]=6122, - ["armour_evasion_energy_shield_+%_while_wielding_quarterstaff"]=6123, - ["armour_evasion_energy_shield_+%_while_you_have_four_linked_targets"]=6124, - ["armour_evasion_energy_shield_are_zero"]=6125, + ["armour_evasion_energy_shield_+%_while_channelling"]=6122, + ["armour_evasion_energy_shield_+%_while_on_low_life"]=6123, + ["armour_evasion_energy_shield_+%_while_wielding_quarterstaff"]=6124, + ["armour_evasion_energy_shield_+%_while_you_have_four_linked_targets"]=6125, + ["armour_evasion_energy_shield_are_zero"]=6126, ["armour_from_gloves_and_boots_+%"]=4441, ["armour_from_helmet_and_gloves_+%"]=4442, - ["armour_hellscaping_speed_+%"]=7152, + ["armour_hellscaping_speed_+%"]=7157, ["armour_increased_by_uncapped_fire_resistance"]=4443, ["armour_while_stationary"]=4008, - ["armour_while_you_do_not_have_avatar_of_fire"]=10773, + ["armour_while_you_do_not_have_avatar_of_fire"]=10790, ["arrow_base_number_of_targets_to_pierce"]=1574, ["arrow_chains_+"]=1571, ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4456, @@ -236403,7 +236679,7 @@ return { ["ascendancy_beidats_gaze_mana_+_per_X_maximum_life"]=4470, ["ascendancy_beidats_hand_energy_shield_+_per_X_maximum_life"]=4471, ["ascendancy_beidats_will_spirit_+_per_X_maximum_life"]=4472, - ["ascendancy_energy_generated_+%_final"]=6430, + ["ascendancy_energy_generated_+%_final"]=6432, ["ascendancy_hand_wraps"]=4473, ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4474, ["ascendancy_pathfinder_flask_charges_gained_+%_final"]=4475, @@ -236471,7 +236747,7 @@ return { ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4519, ["attack_block_%_while_at_max_endurance_charges"]=4520, ["attack_cast_and_movement_speed_+%_during_onslaught"]=4521, - ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10774, + ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10791, ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3747, ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4522, ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4523, @@ -236557,7 +236833,7 @@ return { ["attack_maximum_added_fire_damage_with_swords"]=1843, ["attack_maximum_added_fire_damage_with_wand"]=1844, ["attack_maximum_added_lightning_damage"]=885, - ["attack_maximum_added_lightning_damage_%_of_maximum_mana"]=10688, + ["attack_maximum_added_lightning_damage_%_of_maximum_mana"]=10705, ["attack_maximum_added_lightning_damage_per_10_dex"]=4565, ["attack_maximum_added_lightning_damage_per_10_int"]=4566, ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4567, @@ -236625,7 +236901,7 @@ return { ["attack_minimum_added_fire_damage_with_swords"]=1843, ["attack_minimum_added_fire_damage_with_wand"]=1844, ["attack_minimum_added_lightning_damage"]=885, - ["attack_minimum_added_lightning_damage_%_of_maximum_mana"]=10650, + ["attack_minimum_added_lightning_damage_%_of_maximum_mana"]=10666, ["attack_minimum_added_lightning_damage_per_10_dex"]=4565, ["attack_minimum_added_lightning_damage_per_10_int"]=4566, ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4567, @@ -236678,7 +236954,7 @@ return { ["attack_speed_+%_during_flask_effect"]=3031, ["attack_speed_+%_final_per_blitz_charge"]=4585, ["attack_speed_+%_for_4_seconds_on_attack"]=3243, - ["attack_speed_+%_if_changed_stance_recently"]=10096, + ["attack_speed_+%_if_changed_stance_recently"]=10107, ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4586, ["attack_speed_+%_if_enemy_killed_recently"]=4587, ["attack_speed_+%_if_enemy_not_killed_recently"]=3908, @@ -236740,7 +237016,7 @@ return { ["attacks_number_of_additional_projectiles"]=3872, ["attacks_number_of_additional_projectiles_when_in_off_hand"]=3874, ["attacks_poison_while_at_max_frenzy_charges"]=1811, - ["attacks_use_life_in_place_of_mana"]=10757, + ["attacks_use_life_in_place_of_mana"]=10774, ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=2701, ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4617, ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=2701, @@ -236754,7 +237030,7 @@ return { ["aura_grant_%_base_main_hand_attack_damage_to_nearby_allies"]=4621, ["aura_grant_shield_defences_to_nearby_allies"]=3177, ["aura_melee_physical_damage_+%_per_10_strength"]=3167, - ["avatar_of_fire_rotation_active"]=10762, + ["avatar_of_fire_rotation_active"]=10779, ["avians_flight_duration_ms_+"]=4622, ["avians_might_duration_ms_+"]=4623, ["avoid_ailments_%_from_crit"]=4624, @@ -236873,7 +237149,7 @@ return { ["base_banner_resist_all_elements_%_to_apply"]=4682, ["base_bleed_chance_is_poison_chance_instead"]=4683, ["base_bleed_duration_+%"]=4684, - ["base_bleeding_effect_+%"]=4830, + ["base_bleeding_effect_+%"]=4831, ["base_bleeding_magnitude_+%_on_self"]=4685, ["base_block_%_damage_taken"]=4687, ["base_block_chance_luck"]=4686, @@ -236898,7 +237174,7 @@ return { ["base_chance_to_deal_triple_damage_%"]=4694, ["base_chance_to_freeze_%"]=1080, ["base_chance_to_inflict_bleeding_%"]=4695, - ["base_chance_to_not_consume_corpse_%"]=5582, + ["base_chance_to_not_consume_corpse_%"]=5583, ["base_chance_to_pierce_%"]=1092, ["base_chance_to_poison_on_hit_%"]=2923, ["base_chance_to_poison_on_hit_%_vs_non_poisoned_enemies"]=4696, @@ -236909,9 +237185,10 @@ return { ["base_chaos_damage_can_ignite"]=4698, ["base_chaos_damage_does_not_damage_energy_shield_extra_hard"]=2314, ["base_chaos_damage_resistance_%"]=1048, + ["base_chaos_damage_resistance_%_per_equipped_corrupted_item"]=4699, ["base_chaos_damage_taken_per_minute"]=1718, ["base_chaos_golem_granted_buff_effect_+%"]=3779, - ["base_charge_duration_+%"]=4699, + ["base_charge_duration_+%"]=4700, ["base_cold_damage_can_poison"]=2642, ["base_cold_damage_heals"]=2792, ["base_cold_damage_resistance_%"]=1044, @@ -236920,37 +237197,37 @@ return { ["base_cooldown_speed_+%_per_10_tribute"]=4128, ["base_cost_+%"]=1655, ["base_critical_strike_multiplier_+"]=1004, - ["base_curse_delay_+%"]=4700, + ["base_curse_delay_+%"]=4701, ["base_curse_duration_+%"]=1564, - ["base_damage_%_deflected"]=4701, - ["base_damage_%_deflected_if_you_have_not_deflected_recently"]=4702, - ["base_damage_%_deflected_vs_crit"]=4703, + ["base_damage_%_deflected"]=4702, + ["base_damage_%_deflected_if_you_have_not_deflected_recently"]=4703, + ["base_damage_%_deflected_vs_crit"]=4704, ["base_damage_removed_from_mana_before_life_%"]=2496, - ["base_damage_removed_from_mana_before_life_%_when_not_on_low_mana"]=4704, + ["base_damage_removed_from_mana_before_life_%_when_not_on_low_mana"]=4705, ["base_damage_taken_+%"]=1987, - ["base_damage_taken_+%_per_10_tribute"]=4705, - ["base_damaging_ailment_effect_+%"]=6086, - ["base_damaging_ailment_effect_+%_per_10_tribute"]=4706, - ["base_darkness"]=4707, - ["base_darkness_refresh_rate_ms"]=4708, - ["base_deal_no_chaos_damage"]=4709, + ["base_damage_taken_+%_per_10_tribute"]=4706, + ["base_damaging_ailment_effect_+%"]=6087, + ["base_damaging_ailment_effect_+%_per_10_tribute"]=4707, + ["base_darkness"]=4708, + ["base_darkness_refresh_rate_ms"]=4709, + ["base_deal_no_chaos_damage"]=4710, ["base_deal_no_cold_damage"]=2576, - ["base_deal_no_fire_damage"]=4710, - ["base_deal_no_lightning_damage"]=4711, + ["base_deal_no_fire_damage"]=4711, + ["base_deal_no_lightning_damage"]=4712, ["base_deal_no_physical_damage"]=2574, - ["base_deal_no_thorns_damage"]=4712, - ["base_deal_thorns_damage_chance_%_on_hit"]=10281, - ["base_debuff_slow_magnitude_+%"]=4713, + ["base_deal_no_thorns_damage"]=4713, + ["base_deal_thorns_damage_chance_%_on_hit"]=10295, + ["base_debuff_slow_magnitude_+%"]=4714, ["base_deflect_chance_luck"]=1054, ["base_deflection_rating_%_of_armour"]=1053, ["base_deflection_rating_%_of_evasion_rating"]=1052, - ["base_deflection_rating_%_of_evasion_rating_per_25_tribute"]=4714, - ["base_dexterity_per_25_tribute"]=4715, + ["base_deflection_rating_%_of_evasion_rating_per_25_tribute"]=4715, + ["base_dexterity_per_25_tribute"]=4716, ["base_elemental_damage_heals"]=2794, ["base_elemental_hit_damage_bypass_energy_shield_%"]=1482, ["base_elemental_status_ailment_duration_+%"]=1641, - ["base_endurance_charge_skip_consume_chance_%"]=4716, - ["base_enemies_in_your_presence_are_hindered"]=4717, + ["base_endurance_charge_skip_consume_chance_%"]=4717, + ["base_enemies_in_your_presence_are_hindered"]=4718, ["base_enemy_critical_strike_chance_+%_against_self"]=2881, ["base_energy_shield_gained_on_enemy_death"]=2377, ["base_energy_shield_leech_rate_+%"]=1923, @@ -236958,7 +237235,7 @@ return { ["base_energy_shield_regeneration_rate_per_minute_%"]=2444, ["base_es_cost_+"]=1661, ["base_evasion_rating"]=907, - ["base_extra_damage_rolls"]=4718, + ["base_extra_damage_rolls"]=4719, ["base_fire_damage_can_poison"]=2643, ["base_fire_damage_heals"]=2791, ["base_fire_damage_resistance_%"]=1038, @@ -236967,24 +237244,24 @@ return { ["base_fire_hit_damage_taken_%_as_physical"]=2241, ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2242, ["base_fire_immunity"]=1498, - ["base_freezing_enemy_chills_enemies_in_radius"]=6691, + ["base_freezing_enemy_chills_enemies_in_radius"]=6693, ["base_frenzy_charge_duration_+%"]=1890, - ["base_frenzy_charge_skip_consume_chance_%"]=4719, - ["base_frozen_effect_on_self_+%"]=4720, - ["base_gain_x_rage_on_hit"]=4721, + ["base_frenzy_charge_skip_consume_chance_%"]=4720, + ["base_frozen_effect_on_self_+%"]=4721, + ["base_gain_x_rage_on_hit"]=4722, ["base_global_chance_to_knockback_%"]=1761, ["base_ice_golem_granted_buff_effect_+%"]=3777, ["base_ignite_deals_chaos_instead"]=1100, ["base_ignite_effect_+%"]=1101, ["base_immune_to_chill"]=2676, - ["base_immune_to_cold_ailments"]=4722, - ["base_immune_to_freeze"]=4723, - ["base_immune_to_ignite"]=4724, - ["base_immune_to_shock"]=4725, - ["base_inflict_cold_exposure_on_hit_%_chance"]=4726, - ["base_inflict_fire_exposure_on_hit_%_chance"]=4727, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=4728, - ["base_intelligence_per_25_tribute"]=4729, + ["base_immune_to_cold_ailments"]=4723, + ["base_immune_to_freeze"]=4724, + ["base_immune_to_ignite"]=4725, + ["base_immune_to_shock"]=4726, + ["base_inflict_cold_exposure_on_hit_%_chance"]=4727, + ["base_inflict_fire_exposure_on_hit_%_chance"]=4728, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=4729, + ["base_intelligence_per_25_tribute"]=4730, ["base_item_found_quantity_+%"]=1485, ["base_item_found_rarity_+%"]=965, ["base_killed_monster_dropped_item_quantity_+%"]=1780, @@ -236993,45 +237270,45 @@ return { ["base_leech_is_instant_on_critical"]=2343, ["base_life_cost_+"]=1662, ["base_life_cost_+%"]=1656, - ["base_life_cost_+_with_non_channelling_spells_%_maximum_life"]=4731, - ["base_life_cost_efficiency_+%"]=4730, - ["base_life_flasks_do_not_recover_life"]=4732, + ["base_life_cost_+_with_non_channelling_spells_%_maximum_life"]=4732, + ["base_life_cost_efficiency_+%"]=4731, + ["base_life_flasks_do_not_recover_life"]=4733, ["base_life_gain_per_target"]=1064, ["base_life_gained_on_enemy_death"]=1066, ["base_life_gained_on_spell_hit"]=1527, ["base_life_leech_amount_+%"]=1919, ["base_life_leech_does_not_stop_at_full_life"]=2952, - ["base_life_leech_from_all_spell_damage_permyriad"]=4733, - ["base_life_leech_from_all_thorns_damage_permyriad"]=4734, + ["base_life_leech_from_all_spell_damage_permyriad"]=4734, + ["base_life_leech_from_all_thorns_damage_permyriad"]=4735, ["base_life_leech_from_physical_attack_damage_permyriad"]=1062, ["base_life_leech_is_instant"]=2340, ["base_life_leech_rate_+%"]=1920, - ["base_life_recharges_like_energy_shield"]=4735, + ["base_life_recharges_like_energy_shield"]=4736, ["base_life_regeneration_rate_per_minute"]=1058, - ["base_life_regeneration_rate_per_minute_per_10_intelligence"]=7530, + ["base_life_regeneration_rate_per_minute_per_10_intelligence"]=7536, ["base_life_reservation_+%"]=1976, ["base_life_reservation_efficiency_+%"]=1975, - ["base_lightning_damage_can_electrocute"]=4736, + ["base_lightning_damage_can_electrocute"]=4737, ["base_lightning_damage_can_poison"]=2644, ["base_lightning_damage_heals"]=2793, ["base_lightning_damage_resistance_%"]=1047, ["base_lightning_golem_granted_buff_effect_+%"]=3778, ["base_lightning_immunity"]=3782, - ["base_limit_+"]=4737, + ["base_limit_+"]=4738, ["base_main_hand_damage_+%"]=1245, - ["base_main_hand_maim_on_hit_%"]=4738, - ["base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%"]=4739, + ["base_main_hand_maim_on_hit_%"]=4739, + ["base_main_hand_weapon_damage_as_added_off_hand_attack_damage_%"]=4740, ["base_mana_cost_+"]=1663, - ["base_mana_cost_+_with_channelling_skills"]=9926, - ["base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana"]=4746, - ["base_mana_cost_+_with_non_channelling_skills"]=9928, + ["base_mana_cost_+_with_channelling_skills"]=9934, + ["base_mana_cost_+_with_non_channelling_attacks_%_maximum_mana"]=4747, + ["base_mana_cost_+_with_non_channelling_skills"]=9936, ["base_mana_cost_-%"]=1657, - ["base_mana_cost_efficiency_+%"]=4740, - ["base_mana_cost_efficiency_+%_of_command_skills"]=4741, - ["base_mana_cost_efficiency_+%_of_curse_skills"]=4742, - ["base_mana_cost_efficiency_+%_of_mark_skills"]=4743, - ["base_mana_cost_efficiency_+%_per_10_tribute"]=4744, - ["base_mana_cost_efficiency_+%_while_on_low_mana"]=4745, + ["base_mana_cost_efficiency_+%"]=4741, + ["base_mana_cost_efficiency_+%_of_command_skills"]=4742, + ["base_mana_cost_efficiency_+%_of_curse_skills"]=4743, + ["base_mana_cost_efficiency_+%_of_mark_skills"]=4744, + ["base_mana_cost_efficiency_+%_per_10_tribute"]=4745, + ["base_mana_cost_efficiency_+%_while_on_low_mana"]=4746, ["base_mana_gained_on_enemy_death"]=1071, ["base_mana_leech_amount_+%"]=1921, ["base_mana_leech_from_physical_attack_damage_permyriad"]=1070, @@ -237040,13 +237317,13 @@ return { ["base_mana_regeneration_rate_per_minute"]=1471, ["base_mana_reservation_+%"]=1978, ["base_mana_reservation_efficiency_+%"]=1977, - ["base_max_fortification"]=4747, + ["base_max_fortification"]=4748, ["base_maximum_chaos_damage_resistance_%"]=1036, ["base_maximum_cold_damage_resistance_%"]=1034, ["base_maximum_energy_shield"]=909, ["base_maximum_energy_shield_per_blue_socket_on_item"]=2518, ["base_maximum_fire_damage_resistance_%"]=1033, - ["base_maximum_fire_damage_resistance_%_while_ignited"]=4748, + ["base_maximum_fire_damage_resistance_%_while_ignited"]=4749, ["base_maximum_fragile_regrowth"]=4083, ["base_maximum_life"]=911, ["base_maximum_life_%_to_gain_as_maximum_ward"]=1454, @@ -237055,48 +237332,48 @@ return { ["base_maximum_lightning_damage_resistance_%"]=1035, ["base_maximum_mana"]=916, ["base_maximum_mana_per_green_socket_on_item"]=2515, - ["base_maximum_seals_for_skill"]=4749, + ["base_maximum_seals_for_skill"]=4750, ["base_maximum_ward"]=914, ["base_melee_critical_strike_chance_while_unarmed_%"]=3279, ["base_minimum_endurance_charges"]=1582, ["base_minimum_frenzy_charges"]=1587, ["base_minimum_lightning_damage_on_charge_expiry"]=2363, ["base_minimum_power_charges"]=1592, - ["base_minion_duration_+%"]=4750, + ["base_minion_duration_+%"]=4751, ["base_movement_velocity_+%"]=860, ["base_no_energy_shield_recovery"]=2869, - ["base_number_of_arbalists"]=9352, - ["base_number_of_champions_of_light_allowed"]=4751, + ["base_number_of_arbalists"]=9359, + ["base_number_of_champions_of_light_allowed"]=4752, ["base_number_of_crossbow_bolts"]=1012, ["base_number_of_essence_spirits_allowed"]=569, ["base_number_of_golems_allowed"]=3392, - ["base_number_of_herald_scorpions_allowed"]=4752, + ["base_number_of_herald_scorpions_allowed"]=4753, ["base_number_of_raging_spirits_allowed"]=1926, - ["base_number_of_relics_allowed"]=4753, + ["base_number_of_relics_allowed"]=4754, ["base_number_of_remote_mines_allowed"]=2001, - ["base_number_of_sigils_allowed_per_target"]=4754, + ["base_number_of_sigils_allowed_per_target"]=4755, ["base_number_of_skeletons_allowed"]=1925, ["base_number_of_spectres_allowed"]=1924, - ["base_number_of_support_ghosts_allowed"]=4755, + ["base_number_of_support_ghosts_allowed"]=4756, ["base_number_of_totems_allowed"]=1999, ["base_number_of_traps_allowed"]=2000, ["base_off_hand_attack_speed_+%"]=1339, - ["base_off_hand_chance_to_blind_on_hit_%"]=4756, + ["base_off_hand_chance_to_blind_on_hit_%"]=4757, ["base_off_hand_damage_+%"]=1246, ["base_onlsaught_on_hit_%_chance"]=1010, ["base_penetrate_elemental_resistances_%"]=3268, - ["base_physical_damage_can_pin"]=4757, - ["base_physical_damage_over_time_taken_+%"]=4758, + ["base_physical_damage_can_pin"]=4758, + ["base_physical_damage_over_time_taken_+%"]=4759, ["base_physical_damage_reduction_rating"]=905, - ["base_poison_chance_is_bleed_chance_instead"]=4759, + ["base_poison_chance_is_bleed_chance_instead"]=4760, ["base_poison_duration_+%"]=2920, - ["base_poison_effect_+%"]=9516, - ["base_poison_effect_+%_while_poisoned"]=4760, - ["base_power_charge_skip_consume_chance_%"]=4761, + ["base_poison_effect_+%"]=9524, + ["base_poison_effect_+%_while_poisoned"]=4761, + ["base_power_charge_skip_consume_chance_%"]=4762, ["base_projectile_speed_+%"]=921, ["base_rage_cost_+%"]=1658, - ["base_rage_cost_efficiency_+%"]=4762, - ["base_rage_regeneration_per_minute"]=4763, + ["base_rage_cost_efficiency_+%"]=4763, + ["base_rage_regeneration_per_minute"]=4764, ["base_raven_maximum_life_+%"]=1556, ["base_reduce_enemy_cold_resistance_%"]=2749, ["base_reduce_enemy_fire_resistance_%"]=2748, @@ -237109,101 +237386,101 @@ return { ["base_self_freeze_duration_-%"]=1089, ["base_self_ignite_duration_-%"]=1087, ["base_self_shock_duration_-%"]=1090, - ["base_should_have_arcane_surge_from_stat"]=4764, + ["base_should_have_arcane_surge_from_stat"]=4765, ["base_should_have_onslaught_from_stat"]=3302, ["base_skill_area_of_effect_+%"]=1654, - ["base_skill_cost_efficiency_+%"]=4765, - ["base_skill_cost_life_instead_of_mana_%"]=4766, - ["base_skill_detonation_time"]=4767, - ["base_skill_gain_life_cost_%_of_mana_cost"]=4768, - ["base_slow_potency_+%"]=4769, + ["base_skill_cost_efficiency_+%"]=4766, + ["base_skill_cost_life_instead_of_mana_%"]=4767, + ["base_skill_detonation_time"]=4768, + ["base_skill_gain_life_cost_%_of_mana_cost"]=4769, + ["base_slow_potency_+%"]=4770, ["base_spectre_maximum_life_+%"]=1553, ["base_spell_cooldown_speed_+%"]=4129, - ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4770, + ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4771, ["base_spell_critical_strike_chance"]=1378, - ["base_spell_critical_strike_chance_override_permyriad"]=4771, + ["base_spell_critical_strike_chance_override_permyriad"]=4772, ["base_spell_critical_strike_multiplier_+"]=1006, - ["base_spell_mana_cost_efficiency_+%"]=4772, - ["base_spell_projectile_block_%"]=4773, - ["base_spell_skill_cost_efficiency_+%"]=4774, + ["base_spell_mana_cost_efficiency_+%"]=4773, + ["base_spell_projectile_block_%"]=4774, + ["base_spell_skill_cost_efficiency_+%"]=4775, ["base_spirit"]=919, ["base_spirit_from_equipment"]=920, - ["base_spirit_per_socketed_idol"]=4775, - ["base_spirit_reservation_efficiency_+%"]=4776, - ["base_spirit_reservation_efficiency_+%_per_20_tribute"]=4777, + ["base_spirit_per_socketed_idol"]=4776, + ["base_spirit_reservation_efficiency_+%"]=4777, + ["base_spirit_reservation_efficiency_+%_per_20_tribute"]=4778, ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2753, ["base_stone_golem_granted_buff_effect_+%"]=3775, - ["base_strength_per_25_tribute"]=4778, + ["base_strength_per_25_tribute"]=4779, ["base_stun_duration_+%"]=1077, ["base_stun_recovery_+%"]=1084, ["base_stun_threshold_reduction_+%"]=1074, - ["base_thorns_critical_strike_chance"]=4779, - ["base_thorns_critical_strike_multiplier_+"]=4780, - ["base_total_number_of_sigils_allowed"]=4781, - ["base_unaffected_by_poison"]=4782, - ["base_unholy_might_granted_magnitude_+%"]=4783, - ["base_ward_cost_efficiency_+%"]=4784, - ["base_ward_regeneration_per_minute"]=4785, - ["base_weapon_trap_rotation_speed_+%"]=4786, - ["base_weapon_trap_total_rotation_%"]=4787, + ["base_thorns_critical_strike_chance"]=4780, + ["base_thorns_critical_strike_multiplier_+"]=4781, + ["base_total_number_of_sigils_allowed"]=4782, + ["base_unaffected_by_poison"]=4783, + ["base_unholy_might_granted_magnitude_+%"]=4784, + ["base_ward_cost_efficiency_+%"]=4785, + ["base_ward_regeneration_per_minute"]=4786, + ["base_weapon_trap_rotation_speed_+%"]=4787, + ["base_weapon_trap_total_rotation_%"]=4788, ["base_zombie_maximum_life_+%"]=1554, - ["battlemages_cry_buff_effect_+%"]=4788, - ["battlemages_cry_exerts_x_additional_attacks"]=4789, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4790, - ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4791, + ["battlemages_cry_buff_effect_+%"]=4789, + ["battlemages_cry_exerts_x_additional_attacks"]=4790, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4791, + ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4792, ["bear_trap_cooldown_speed_+%"]=3572, ["bear_trap_damage_+%"]=3408, - ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4792, - ["bear_trap_movement_speed_+%_final"]=4793, - ["bell_hit_limit"]=4794, - ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4795, - ["berserk_buff_effect_+%"]=4797, - ["berserk_rage_loss_+%"]=4798, + ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4793, + ["bear_trap_movement_speed_+%_final"]=4794, + ["bell_hit_limit"]=4795, + ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4796, + ["berserk_buff_effect_+%"]=4798, + ["berserk_rage_loss_+%"]=4799, ["berserker_damage_+%_final"]=3735, - ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4799, - ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4800, - ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4801, - ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4802, - ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4803, - ["blackhole_damage_taken_+%"]=4804, - ["blackhole_pulse_frequency_+%"]=4805, - ["blackstar_moonlight_cold_damage_taken_+%_final"]=4806, - ["blackstar_moonlight_fire_damage_taken_+%_final"]=4807, - ["blackstar_sunlight_cold_damage_taken_+%_final"]=4808, - ["blackstar_sunlight_fire_damage_taken_+%_final"]=4809, - ["blade_blase_damage_+%"]=4810, - ["blade_blast_skill_area_of_effect_+%"]=4811, - ["blade_blast_trigger_detonation_area_of_effect_+%"]=4812, - ["blade_trap_damage_+%"]=4813, - ["blade_trap_skill_area_of_effect_+%"]=4814, - ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4815, - ["blade_vortex_blade_deal_no_non_physical_damage"]=4816, - ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4817, + ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4800, + ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4801, + ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4802, + ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4803, + ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4804, + ["blackhole_damage_taken_+%"]=4805, + ["blackhole_pulse_frequency_+%"]=4806, + ["blackstar_moonlight_cold_damage_taken_+%_final"]=4807, + ["blackstar_moonlight_fire_damage_taken_+%_final"]=4808, + ["blackstar_sunlight_cold_damage_taken_+%_final"]=4809, + ["blackstar_sunlight_fire_damage_taken_+%_final"]=4810, + ["blade_blase_damage_+%"]=4811, + ["blade_blast_skill_area_of_effect_+%"]=4812, + ["blade_blast_trigger_detonation_area_of_effect_+%"]=4813, + ["blade_trap_damage_+%"]=4814, + ["blade_trap_skill_area_of_effect_+%"]=4815, + ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4816, + ["blade_vortex_blade_deal_no_non_physical_damage"]=4817, + ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4818, ["blade_vortex_damage_+%"]=3431, ["blade_vortex_duration_+%"]=3616, ["blade_vortex_radius_+%"]=3535, ["bladefall_critical_strike_chance_+%"]=3635, ["bladefall_damage_+%"]=3432, - ["bladefall_number_of_volleys"]=4818, + ["bladefall_number_of_volleys"]=4819, ["bladefall_radius_+%"]=3536, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4819, - ["bladestorm_damage_+%"]=4820, - ["bladestorm_maximum_number_of_storms_allowed"]=4821, - ["bladestorm_sandstorm_movement_speed_+%"]=4822, - ["blasphemy_no_reservation"]=4823, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4820, + ["bladestorm_damage_+%"]=4821, + ["bladestorm_maximum_number_of_storms_allowed"]=4822, + ["bladestorm_sandstorm_movement_speed_+%"]=4823, + ["blasphemy_no_reservation"]=4824, ["blast_rain_%_chance_for_additional_blast"]=3787, ["blast_rain_damage_+%"]=3428, ["blast_rain_number_of_blasts"]=3677, ["blast_rain_radius_+%"]=3532, ["blast_rain_single_additional_projectile"]=3678, - ["blazing_salvo_damage_+%"]=4824, - ["blazing_salvo_number_of_additional_projectiles"]=4825, - ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4826, - ["bleed_chance_+%"]=4827, - ["bleed_damage_applies_as_fire_instead_of_physical"]=4828, + ["blazing_salvo_damage_+%"]=4825, + ["blazing_salvo_number_of_additional_projectiles"]=4826, + ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4827, + ["bleed_chance_+%"]=4828, + ["bleed_damage_applies_as_fire_instead_of_physical"]=4829, ["bleed_duration_per_12_intelligence_+%"]=3494, ["bleed_on_bow_attack_chance_%"]=2293, - ["bleed_on_crit_%"]=4829, + ["bleed_on_crit_%"]=4830, ["bleed_on_crit_%_with_attacks"]=2290, ["bleed_on_hit_with_attacks_%"]=2294, ["bleed_on_melee_attack_chance_%"]=2292, @@ -237211,219 +237488,219 @@ return { ["bleed_on_melee_critical_strike"]=3948, ["bleed_on_stun"]=2289, ["bleeding_damage_on_self_taken_as_fire_instead"]=2262, - ["bleeding_effect_+%_per_endurance_charge"]=4831, - ["bleeding_effect_+%_per_frenzy_charge"]=4832, - ["bleeding_effect_+%_per_impale_on_enemy"]=4833, - ["bleeding_effect_+%_per_rage_if_equipped_axe"]=4834, - ["bleeding_effect_+%_vs_poisoned_enemies"]=4835, - ["bleeding_effect_+%_when_consuming_incision"]=4836, - ["bleeding_enemies_cannot_regenerate_life"]=4837, + ["bleeding_effect_+%_per_endurance_charge"]=4832, + ["bleeding_effect_+%_per_frenzy_charge"]=4833, + ["bleeding_effect_+%_per_impale_on_enemy"]=4834, + ["bleeding_effect_+%_per_rage_if_equipped_axe"]=4835, + ["bleeding_effect_+%_vs_poisoned_enemies"]=4836, + ["bleeding_effect_+%_when_consuming_incision"]=4837, + ["bleeding_enemies_cannot_regenerate_life"]=4838, ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3193, - ["bleeding_magnitude_+%_against_pinned_enemies"]=4838, + ["bleeding_magnitude_+%_against_pinned_enemies"]=4839, ["bleeding_monsters_movement_velocity_+%"]=2735, - ["bleeding_no_extra_damage_while_target_is_moving"]=4839, - ["bleeding_on_self_expire_speed_+%_while_moving"]=4840, - ["bleeding_reflected_to_self"]=4841, - ["bleeding_stacks_up_to_x_times"]=4842, - ["blight_arc_tower_additional_chains"]=4843, - ["blight_arc_tower_additional_repeats"]=4844, - ["blight_arc_tower_chance_to_sap_%"]=4845, - ["blight_arc_tower_damage_+%"]=4846, - ["blight_arc_tower_range_+%"]=4847, - ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4848, - ["blight_cast_speed_+%"]=4849, - ["blight_chilling_tower_chill_effect_+%"]=4850, - ["blight_chilling_tower_damage_+%"]=4851, - ["blight_chilling_tower_duration_+%"]=4852, - ["blight_chilling_tower_range_+%"]=4853, + ["bleeding_no_extra_damage_while_target_is_moving"]=4840, + ["bleeding_on_self_expire_speed_+%_while_moving"]=4841, + ["bleeding_reflected_to_self"]=4842, + ["bleeding_stacks_up_to_x_times"]=4843, + ["blight_arc_tower_additional_chains"]=4844, + ["blight_arc_tower_additional_repeats"]=4845, + ["blight_arc_tower_chance_to_sap_%"]=4846, + ["blight_arc_tower_damage_+%"]=4847, + ["blight_arc_tower_range_+%"]=4848, + ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4849, + ["blight_cast_speed_+%"]=4850, + ["blight_chilling_tower_chill_effect_+%"]=4851, + ["blight_chilling_tower_damage_+%"]=4852, + ["blight_chilling_tower_duration_+%"]=4853, + ["blight_chilling_tower_range_+%"]=4854, ["blight_damage_+%"]=3441, ["blight_duration_+%"]=3618, - ["blight_empowering_tower_buff_effect_+%"]=4854, - ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4857, - ["blight_empowering_tower_grant_cast_speed_+%"]=4855, - ["blight_empowering_tower_grant_damage_+%"]=4856, - ["blight_empowering_tower_range_+%"]=4858, - ["blight_fireball_tower_additional_projectiles_+"]=4859, - ["blight_fireball_tower_cast_speed_+%"]=4860, - ["blight_fireball_tower_damage_+%"]=4861, - ["blight_fireball_tower_projectiles_nova"]=4862, - ["blight_fireball_tower_range_+%"]=4863, - ["blight_flamethrower_tower_cast_speed_+%"]=4864, - ["blight_flamethrower_tower_chance_to_scorch_%"]=4865, - ["blight_flamethrower_tower_damage_+%"]=4866, - ["blight_flamethrower_tower_full_damage_fire_enemies"]=4867, - ["blight_flamethrower_tower_range_+%"]=4868, - ["blight_freezebolt_tower_chance_to_brittle_%"]=4869, - ["blight_freezebolt_tower_damage_+%"]=4870, - ["blight_freezebolt_tower_full_damage_cold_enemies"]=4871, - ["blight_freezebolt_tower_projectiles_+"]=4872, - ["blight_freezebolt_tower_range_+%"]=4873, - ["blight_glacialcage_tower_area_of_effect_+%"]=4874, - ["blight_glacialcage_tower_cooldown_recovery_+%"]=4875, - ["blight_glacialcage_tower_duration_+%"]=4876, - ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4877, - ["blight_glacialcage_tower_range_+%"]=4878, - ["blight_hinder_enemy_chaos_damage_taken_+%"]=4879, - ["blight_imbuing_tower_buff_effect_+%"]=4880, - ["blight_imbuing_tower_grant_critical_strike_+%"]=4881, - ["blight_imbuing_tower_grant_damage_+%"]=4882, - ["blight_imbuing_tower_grants_onslaught"]=4883, - ["blight_imbuing_tower_range_+%"]=4884, - ["blight_lightningstorm_tower_area_of_effect_+%"]=4885, - ["blight_lightningstorm_tower_damage_+%"]=4886, - ["blight_lightningstorm_tower_delay_+%"]=4887, - ["blight_lightningstorm_tower_range_+%"]=4888, - ["blight_lightningstorm_tower_storms_on_enemies"]=4889, - ["blight_meteor_tower_additional_meteor_+"]=4890, - ["blight_meteor_tower_always_stun"]=4891, - ["blight_meteor_tower_creates_burning_ground_ms"]=4892, - ["blight_meteor_tower_damage_+%"]=4893, - ["blight_meteor_tower_range_+%"]=4894, + ["blight_empowering_tower_buff_effect_+%"]=4855, + ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4858, + ["blight_empowering_tower_grant_cast_speed_+%"]=4856, + ["blight_empowering_tower_grant_damage_+%"]=4857, + ["blight_empowering_tower_range_+%"]=4859, + ["blight_fireball_tower_additional_projectiles_+"]=4860, + ["blight_fireball_tower_cast_speed_+%"]=4861, + ["blight_fireball_tower_damage_+%"]=4862, + ["blight_fireball_tower_projectiles_nova"]=4863, + ["blight_fireball_tower_range_+%"]=4864, + ["blight_flamethrower_tower_cast_speed_+%"]=4865, + ["blight_flamethrower_tower_chance_to_scorch_%"]=4866, + ["blight_flamethrower_tower_damage_+%"]=4867, + ["blight_flamethrower_tower_full_damage_fire_enemies"]=4868, + ["blight_flamethrower_tower_range_+%"]=4869, + ["blight_freezebolt_tower_chance_to_brittle_%"]=4870, + ["blight_freezebolt_tower_damage_+%"]=4871, + ["blight_freezebolt_tower_full_damage_cold_enemies"]=4872, + ["blight_freezebolt_tower_projectiles_+"]=4873, + ["blight_freezebolt_tower_range_+%"]=4874, + ["blight_glacialcage_tower_area_of_effect_+%"]=4875, + ["blight_glacialcage_tower_cooldown_recovery_+%"]=4876, + ["blight_glacialcage_tower_duration_+%"]=4877, + ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4878, + ["blight_glacialcage_tower_range_+%"]=4879, + ["blight_hinder_enemy_chaos_damage_taken_+%"]=4880, + ["blight_imbuing_tower_buff_effect_+%"]=4881, + ["blight_imbuing_tower_grant_critical_strike_+%"]=4882, + ["blight_imbuing_tower_grant_damage_+%"]=4883, + ["blight_imbuing_tower_grants_onslaught"]=4884, + ["blight_imbuing_tower_range_+%"]=4885, + ["blight_lightningstorm_tower_area_of_effect_+%"]=4886, + ["blight_lightningstorm_tower_damage_+%"]=4887, + ["blight_lightningstorm_tower_delay_+%"]=4888, + ["blight_lightningstorm_tower_range_+%"]=4889, + ["blight_lightningstorm_tower_storms_on_enemies"]=4890, + ["blight_meteor_tower_additional_meteor_+"]=4891, + ["blight_meteor_tower_always_stun"]=4892, + ["blight_meteor_tower_creates_burning_ground_ms"]=4893, + ["blight_meteor_tower_damage_+%"]=4894, + ["blight_meteor_tower_range_+%"]=4895, ["blight_radius_+%"]=3541, - ["blight_scout_tower_additional_minions_+"]=4895, - ["blight_scout_tower_minion_damage_+%"]=4896, - ["blight_scout_tower_minion_life_+%"]=4897, - ["blight_scout_tower_minion_movement_speed_+%"]=4898, - ["blight_scout_tower_minions_inflict_malediction"]=4899, - ["blight_scout_tower_range_+%"]=4900, - ["blight_secondary_skill_effect_duration_+%"]=4901, - ["blight_seismic_tower_additional_cascades_+"]=4902, - ["blight_seismic_tower_cascade_range_+%"]=4903, - ["blight_seismic_tower_damage_+%"]=4904, - ["blight_seismic_tower_range_+%"]=4905, - ["blight_seismic_tower_stun_duration_+%"]=4906, - ["blight_sentinel_tower_minion_damage_+%"]=4907, - ["blight_sentinel_tower_minion_life_+%"]=4908, - ["blight_sentinel_tower_minion_movement_speed_+%"]=4909, - ["blight_sentinel_tower_range_+%"]=4910, - ["blight_shocking_tower_damage_+%"]=4911, - ["blight_shocking_tower_range_+%"]=4912, - ["blight_shocknova_tower_full_damage_lightning_enemies"]=4913, - ["blight_shocknova_tower_shock_additional_repeats"]=4914, - ["blight_shocknova_tower_shock_effect_+%"]=4915, - ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=4916, - ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=4917, - ["blight_smothering_tower_buff_effect_+%"]=4918, - ["blight_smothering_tower_freeze_shock_ignite_%"]=4919, - ["blight_smothering_tower_grant_damage_+%"]=4920, - ["blight_smothering_tower_grant_movement_speed_+%"]=4921, - ["blight_smothering_tower_range_+%"]=4922, - ["blight_stonegaze_tower_cooldown_recovery_+%"]=4923, - ["blight_stonegaze_tower_duration_+%"]=4924, - ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=4925, - ["blight_stonegaze_tower_petrify_tick_speed_+%"]=4926, - ["blight_stonegaze_tower_range_+%"]=4927, - ["blight_summoning_tower_minion_damage_+%"]=4928, - ["blight_summoning_tower_minion_life_+%"]=4929, - ["blight_summoning_tower_minion_movement_speed_+%"]=4930, - ["blight_summoning_tower_minions_summoned_+"]=4931, - ["blight_summoning_tower_range_+%"]=4932, - ["blight_temporal_tower_buff_effect_+%"]=4933, - ["blight_temporal_tower_grant_you_action_speed_-%"]=4934, - ["blight_temporal_tower_grants_stun_immunity"]=4935, - ["blight_temporal_tower_range_+%"]=4936, - ["blight_temporal_tower_tick_speed_+%"]=4937, - ["blight_tertiary_skill_effect_duration"]=4938, - ["blight_tower_arc_damage_+%"]=4939, - ["blight_tower_chilling_cost_+%"]=4940, - ["blight_tower_damage_per_tower_type_+%"]=4941, - ["blight_tower_fireball_additional_projectile"]=4942, - ["blighted_map_chest_reward_lucky_count"]=4943, - ["blighted_map_tower_damage_+%_final"]=4944, - ["blind_chance_+%"]=4945, - ["blind_chilled_enemies_on_hit_%"]=4946, - ["blind_does_not_affect_chance_to_hit"]=4947, - ["blind_does_not_affect_light_radius"]=4948, + ["blight_scout_tower_additional_minions_+"]=4896, + ["blight_scout_tower_minion_damage_+%"]=4897, + ["blight_scout_tower_minion_life_+%"]=4898, + ["blight_scout_tower_minion_movement_speed_+%"]=4899, + ["blight_scout_tower_minions_inflict_malediction"]=4900, + ["blight_scout_tower_range_+%"]=4901, + ["blight_secondary_skill_effect_duration_+%"]=4902, + ["blight_seismic_tower_additional_cascades_+"]=4903, + ["blight_seismic_tower_cascade_range_+%"]=4904, + ["blight_seismic_tower_damage_+%"]=4905, + ["blight_seismic_tower_range_+%"]=4906, + ["blight_seismic_tower_stun_duration_+%"]=4907, + ["blight_sentinel_tower_minion_damage_+%"]=4908, + ["blight_sentinel_tower_minion_life_+%"]=4909, + ["blight_sentinel_tower_minion_movement_speed_+%"]=4910, + ["blight_sentinel_tower_range_+%"]=4911, + ["blight_shocking_tower_damage_+%"]=4912, + ["blight_shocking_tower_range_+%"]=4913, + ["blight_shocknova_tower_full_damage_lightning_enemies"]=4914, + ["blight_shocknova_tower_shock_additional_repeats"]=4915, + ["blight_shocknova_tower_shock_effect_+%"]=4916, + ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=4917, + ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=4918, + ["blight_smothering_tower_buff_effect_+%"]=4919, + ["blight_smothering_tower_freeze_shock_ignite_%"]=4920, + ["blight_smothering_tower_grant_damage_+%"]=4921, + ["blight_smothering_tower_grant_movement_speed_+%"]=4922, + ["blight_smothering_tower_range_+%"]=4923, + ["blight_stonegaze_tower_cooldown_recovery_+%"]=4924, + ["blight_stonegaze_tower_duration_+%"]=4925, + ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=4926, + ["blight_stonegaze_tower_petrify_tick_speed_+%"]=4927, + ["blight_stonegaze_tower_range_+%"]=4928, + ["blight_summoning_tower_minion_damage_+%"]=4929, + ["blight_summoning_tower_minion_life_+%"]=4930, + ["blight_summoning_tower_minion_movement_speed_+%"]=4931, + ["blight_summoning_tower_minions_summoned_+"]=4932, + ["blight_summoning_tower_range_+%"]=4933, + ["blight_temporal_tower_buff_effect_+%"]=4934, + ["blight_temporal_tower_grant_you_action_speed_-%"]=4935, + ["blight_temporal_tower_grants_stun_immunity"]=4936, + ["blight_temporal_tower_range_+%"]=4937, + ["blight_temporal_tower_tick_speed_+%"]=4938, + ["blight_tertiary_skill_effect_duration"]=4939, + ["blight_tower_arc_damage_+%"]=4940, + ["blight_tower_chilling_cost_+%"]=4941, + ["blight_tower_damage_per_tower_type_+%"]=4942, + ["blight_tower_fireball_additional_projectile"]=4943, + ["blighted_map_chest_reward_lucky_count"]=4944, + ["blighted_map_tower_damage_+%_final"]=4945, + ["blind_chance_+%"]=4946, + ["blind_chilled_enemies_on_hit_%"]=4947, + ["blind_does_not_affect_chance_to_hit"]=4948, + ["blind_does_not_affect_light_radius"]=4949, ["blind_duration_+%"]=3156, - ["blind_effect_+%"]=4949, - ["blind_enemies_when_hit_%_chance"]=4950, - ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=4951, - ["blind_enemies_when_they_stun_you"]=4952, - ["blind_from_sightless_conviction_unique"]=10647, + ["blind_effect_+%"]=4950, + ["blind_enemies_when_hit_%_chance"]=4951, + ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=4952, + ["blind_enemies_when_they_stun_you"]=4953, + ["blind_from_sightless_conviction_unique"]=10663, ["blind_nearby_enemies_when_ignited_%"]=2798, - ["blind_on_poison_inflicted"]=4953, - ["blind_reflected_to_self"]=4954, - ["blink_and_mirror_arrow_cooldown_speed_+%"]=4955, + ["blind_on_poison_inflicted"]=4954, + ["blind_reflected_to_self"]=4955, + ["blink_and_mirror_arrow_cooldown_speed_+%"]=4956, ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3561, ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3421, ["blink_arrow_cooldown_speed_+%"]=3577, - ["block_%_damage_taken_from_elemental"]=4963, - ["block_%_damage_taken_while_active_blocking"]=4964, - ["block_%_if_blocked_an_attack_recently"]=4965, - ["block_%_while_affected_by_determination"]=4966, - ["block_and_stun_+%_recovery_per_fortification"]=4956, + ["block_%_damage_taken_from_elemental"]=4964, + ["block_%_damage_taken_while_active_blocking"]=4965, + ["block_%_if_blocked_an_attack_recently"]=4966, + ["block_%_while_affected_by_determination"]=4967, + ["block_and_stun_+%_recovery_per_fortification"]=4957, ["block_causes_monster_flee_%"]=2729, ["block_chance_%_per_50_strength"]=1151, ["block_chance_%_while_holding_shield"]=1155, ["block_chance_+%"]=1157, - ["block_chance_+%_against_projectiles"]=4957, - ["block_chance_+%_if_blocked_with_active_block_recently"]=4958, - ["block_chance_+%_if_you_have_at_least_100_tribute"]=4959, - ["block_chance_+%_while_companion_in_presence"]=4960, - ["block_chance_+%_while_surrounded"]=4961, + ["block_chance_+%_against_projectiles"]=4958, + ["block_chance_+%_if_blocked_with_active_block_recently"]=4959, + ["block_chance_+%_if_you_have_at_least_100_tribute"]=4960, + ["block_chance_+%_while_companion_in_presence"]=4961, + ["block_chance_+%_while_surrounded"]=4962, ["block_chance_+X%_per_100_base_armour_on_armours"]=1158, - ["block_chance_from_equipped_shield_is_%"]=4962, + ["block_chance_from_equipped_shield_is_%"]=4963, ["block_chance_on_damage_taken_%"]=2958, ["block_recovery_+%"]=1159, ["block_while_dual_wielding_%"]=1153, ["block_while_dual_wielding_claws_%"]=1154, - ["blood_footprints_from_item"]=10776, - ["blood_mage_flask_life_to_recover_+%_final"]=4967, + ["blood_footprints_from_item"]=10793, + ["blood_mage_flask_life_to_recover_+%_final"]=4968, ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3784, ["blood_rage_grants_additional_attack_speed_+%"]=3783, - ["blood_sand_armour_mana_reservation_+%"]=4968, - ["blood_sand_mana_reservation_efficiency_+%"]=4970, - ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=4969, - ["blood_sand_stance_buff_effect_+%"]=4971, - ["blood_spears_area_of_effect_+%"]=4972, - ["blood_spears_base_number_of_spears"]=4973, - ["blood_spears_damage_+%"]=4974, - ["bloodlust_reveal_weakness"]=10674, - ["bloodreap_damage_+%"]=4975, - ["bloodreap_skill_area_of_effect_+%"]=4976, - ["body_armour_+%"]=4977, - ["body_armour_evasion_rating_+%"]=4978, - ["body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage"]=4979, - ["body_armour_grants_base_armour_applies_to_chaos_damage"]=4980, - ["body_armour_grants_glory_generation_+%"]=4981, - ["body_armour_grants_spirit_+%"]=4982, - ["body_armour_grants_thorns_damage_+%"]=4983, - ["body_armour_grants_unaffected_by_damaging_ailments"]=4984, - ["body_armour_grants_unaffected_by_ignite"]=4985, - ["body_armour_grants_x_base_cold_damage_resistance_%"]=4986, - ["body_armour_grants_x_base_fire_damage_resistance_%"]=4987, - ["body_armour_grants_x_base_lightning_damage_resistance_%"]=4988, - ["body_armour_grants_x_base_maximum_fire_damage_resistance_%"]=4989, - ["body_armour_grants_x_base_self_critical_strike_multiplier_-%"]=4990, - ["body_armour_grants_x_life_regeneration_rate_per_minute_%"]=4991, - ["body_armour_grants_x_maximum_life_+%"]=4992, - ["body_armour_grants_x_physical_damage_taken_%_as_fire"]=4993, - ["body_armour_grants_x_strength_+%"]=4994, - ["body_armour_grants_x_stun_threshold_+%"]=4995, - ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=4996, - ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=4997, - ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=4998, - ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=4999, - ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=5000, - ["body_armour_implicit_gain_power_charge_every_x_ms"]=5001, - ["bone_golem_damage_+%"]=5002, - ["bone_golem_elemental_resistances_%"]=5003, - ["bone_lance_cast_speed_+%"]=5004, - ["bone_lance_damage_+%"]=5005, + ["blood_sand_armour_mana_reservation_+%"]=4969, + ["blood_sand_mana_reservation_efficiency_+%"]=4971, + ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=4970, + ["blood_sand_stance_buff_effect_+%"]=4972, + ["blood_spears_area_of_effect_+%"]=4973, + ["blood_spears_base_number_of_spears"]=4974, + ["blood_spears_damage_+%"]=4975, + ["bloodlust_reveal_weakness"]=10691, + ["bloodreap_damage_+%"]=4976, + ["bloodreap_skill_area_of_effect_+%"]=4977, + ["body_armour_+%"]=4978, + ["body_armour_evasion_rating_+%"]=4979, + ["body_armour_grants_armour_%_applies_to_fire_cold_lightning_damage"]=4980, + ["body_armour_grants_base_armour_applies_to_chaos_damage"]=4981, + ["body_armour_grants_glory_generation_+%"]=4982, + ["body_armour_grants_spirit_+%"]=4983, + ["body_armour_grants_thorns_damage_+%"]=4984, + ["body_armour_grants_unaffected_by_damaging_ailments"]=4985, + ["body_armour_grants_unaffected_by_ignite"]=4986, + ["body_armour_grants_x_base_cold_damage_resistance_%"]=4987, + ["body_armour_grants_x_base_fire_damage_resistance_%"]=4988, + ["body_armour_grants_x_base_lightning_damage_resistance_%"]=4989, + ["body_armour_grants_x_base_maximum_fire_damage_resistance_%"]=4990, + ["body_armour_grants_x_base_self_critical_strike_multiplier_-%"]=4991, + ["body_armour_grants_x_life_regeneration_rate_per_minute_%"]=4992, + ["body_armour_grants_x_maximum_life_+%"]=4993, + ["body_armour_grants_x_physical_damage_taken_%_as_fire"]=4994, + ["body_armour_grants_x_strength_+%"]=4995, + ["body_armour_grants_x_stun_threshold_+%"]=4996, + ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=4997, + ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=4998, + ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=4999, + ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=5000, + ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=5001, + ["body_armour_implicit_gain_power_charge_every_x_ms"]=5002, + ["bone_golem_damage_+%"]=5003, + ["bone_golem_elemental_resistances_%"]=5004, + ["bone_lance_cast_speed_+%"]=5005, + ["bone_lance_damage_+%"]=5006, ["bone_offering_block_chance_+%"]=3799, ["bone_offering_duration_+%"]=3595, ["bone_offering_effect_+%"]=1165, - ["boneshatter_chance_to_gain_+1_trauma"]=5006, - ["boneshatter_damage_+%"]=5008, - ["boneshatter_damage_+%_final_if_created_from_unique"]=5007, - ["boneshatter_stun_duration_+%"]=5009, - ["boots_implicit_accuracy_rating_+%_final"]=5010, - ["boss_maximum_life_+%_final"]=5011, + ["boneshatter_chance_to_gain_+1_trauma"]=5007, + ["boneshatter_damage_+%"]=5009, + ["boneshatter_damage_+%_final_if_created_from_unique"]=5008, + ["boneshatter_stun_duration_+%"]=5010, + ["boots_implicit_accuracy_rating_+%_final"]=5011, + ["boss_maximum_life_+%_final"]=5012, ["bow_accuracy_rating"]=1771, ["bow_accuracy_rating_+%"]=1365, ["bow_attack_speed_+%"]=1348, - ["bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount"]=5785, - ["bow_attacks_have_culling_strike"]=5012, + ["bow_attacks_deal_added_physical_damage_equal_to_x%_of_life_flask_recovery_amount"]=5786, + ["bow_attacks_have_culling_strike"]=5013, ["bow_critical_strike_chance_+%"]=1385, ["bow_critical_strike_multiplier_+"]=1412, ["bow_damage_+%"]=1277, @@ -237433,882 +237710,882 @@ return { ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2722, ["bow_stun_duration_+%"]=1644, ["bow_stun_threshold_reduction_+%"]=1432, - ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5013, - ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5014, - ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5015, - ["brands_reattach_on_activation"]=5016, - ["breach_flame_effects_doubled"]=5017, - ["breachstone_commanders_%_drop_additional_fragments"]=5018, - ["breachstone_commanders_%_drop_additional_maps"]=5019, - ["breachstone_commanders_%_drop_additional_scarabs"]=5020, - ["breachstone_commanders_%_drop_additional_unique_items"]=5021, - ["breachstone_commanders_drop_additional_catalysts"]=5022, - ["breachstone_commanders_drop_additional_currency_items"]=5023, - ["breachstone_commanders_drop_additional_delirium_items"]=5024, - ["breachstone_commanders_drop_additional_divination_cards"]=5025, - ["breachstone_commanders_drop_additional_enchanted_items"]=5026, - ["breachstone_commanders_drop_additional_essences"]=5027, - ["breachstone_commanders_drop_additional_fossils"]=5028, - ["breachstone_commanders_drop_additional_gem_items"]=5029, - ["breachstone_commanders_drop_additional_harbinger_shards"]=5030, - ["breachstone_commanders_drop_additional_incubators"]=5031, - ["breachstone_commanders_drop_additional_legion_splinters"]=5032, - ["breachstone_commanders_drop_additional_oils"]=5033, - ["break_%_armour_on_pin"]=5034, - ["break_armour_on_attack_hit_%_of_max_ward"]=5035, - ["brequel_display_base_type_chance_%"]=5036, - ["brequel_display_birthed_items_always_greater_or_perfect"]=5037, - ["brequel_display_cannot_have_modifiers_of_type"]=5038, - ["brequel_display_crafted_modifier_chance_%"]=5039, - ["brequel_display_empty_modifier"]=5040, - ["brequel_display_has_modifier_of_type"]=5041, - ["brequel_display_item_cannot_be_base_type"]=5042, - ["brequel_reward_10_additional_exalted_orb_chance_%"]=5043, - ["brequel_reward_16_to_24_additional_splinters_chance_%"]=5044, - ["brequel_reward_2_additional_quality_currency_same_type_chance_%"]=5045, - ["brequel_reward_3_to_7_additional_chaos_or_vaal_chance_%"]=5046, - ["brequel_reward_5_additional_items_same_type_chance_%"]=5047, - ["brequel_reward_absent_amulet_chance_+%"]=5048, - ["brequel_reward_additional_alchemy_orb_chance_%"]=5049, - ["brequel_reward_additional_catalyst_different_type_chance_%"]=5050, - ["brequel_reward_additional_catalyst_same_type_chance_%"]=5051, - ["brequel_reward_additional_exalted_orb_chance_%"]=5052, - ["brequel_reward_additional_item_chance_%"]=5053, - ["brequel_reward_additional_item_same_type_chance_%"]=5054, - ["brequel_reward_additional_regal_orb_chance_%"]=5055, - ["brequel_reward_additional_seal_crafted_modifier_chance_%"]=5056, - ["brequel_reward_anaemia_crafted_modifier_chance_%"]=5057, - ["brequel_reward_archon_duration_crafted_%"]=5058, - ["brequel_reward_archon_effect_crafted_%"]=5059, - ["brequel_reward_archon_undeath_on_offering_use_crafted_%"]=5060, - ["brequel_reward_biostatic_ring_chance_%"]=5061, - ["brequel_reward_breach_ring_additional_quality"]=5062, - ["brequel_reward_breach_ring_chance_%"]=5063, - ["brequel_reward_breach_splinters_chance_%"]=5064, - ["brequel_reward_breachlord_sac_chance_%"]=5065, - ["brequel_reward_caster_modifier_value_lucky_rolls_+"]=5066, - ["brequel_reward_catalyst_chance_%"]=5067, - ["brequel_reward_chance_to_not_consume_infusion_if_lost_archon_past_6_seconds_crafted_%"]=5068, - ["brequel_reward_chaos_orb_chance_+%"]=5069, - ["brequel_reward_cold_as_phys_crafted_modifier_chance_%"]=5070, - ["brequel_reward_cold_damage_+%_cold_infusion_collected_last_8_seconds_crafted_%"]=5071, - ["brequel_reward_command_skill_speed_crafted_chance_%"]=5173, - ["brequel_reward_consume_no_resource_chance_%"]=5073, - ["brequel_reward_convert_items_to_gold"]=5074, - ["brequel_reward_corona_amulet_chance_%"]=5075, - ["brequel_reward_damage_removed_from_spectres_crafted_%"]=5076, - ["brequel_reward_damage_taken_from_mana_before_life_crafted_%"]=5077, - ["brequel_reward_desecration_chance_%"]=5078, - ["brequel_reward_disable_base_augmentation_orb"]=5079, - ["brequel_reward_disable_base_transmutation_orb"]=5080, - ["brequel_reward_divine_orb_chance_+%"]=5081, - ["brequel_reward_enable_caster_modifiers"]=5082, - ["brequel_reward_enable_minion_modifiers"]=5083, - ["brequel_reward_essence_chance_%"]=5084, - ["brequel_reward_exalted_orb_chance_+%"]=5085, - ["brequel_reward_exposure_effect_crafted_%"]=5086, - ["brequel_reward_fire_damage_+%_if_fire_infusion_collected_last_8_seconds_crafted_%"]=5087, - ["brequel_reward_fire_spell_crit_crafted_modifier_chance_%"]=5088, - ["brequel_reward_forking_belt_chance_%"]=5089, - ["brequel_reward_grasping_ring_chance_%"]=5090, - ["brequel_reward_guarantee_armour_modifier"]=5091, - ["brequel_reward_guarantee_attribute_modifier"]=5092, - ["brequel_reward_guarantee_cold_resistance_modifier"]=5093, - ["brequel_reward_guarantee_defence_modifier"]=5094, - ["brequel_reward_guarantee_dexterity_modifier"]=5095, - ["brequel_reward_guarantee_energy_shield_modifier"]=5096, - ["brequel_reward_guarantee_evasion_modifier"]=5097, - ["brequel_reward_guarantee_fire_resistance_modifier"]=5098, - ["brequel_reward_guarantee_intelligence_modifier"]=5099, - ["brequel_reward_guarantee_life_modifier"]=5100, - ["brequel_reward_guarantee_lightning_resistance_modifier"]=5101, - ["brequel_reward_guarantee_mana_modifier"]=5102, - ["brequel_reward_guarantee_open_prefix"]=5103, - ["brequel_reward_guarantee_open_suffix"]=5104, - ["brequel_reward_guarantee_resistance_modifier"]=5105, - ["brequel_reward_guarantee_resource_modifier"]=5106, - ["brequel_reward_guarantee_strength_modifier"]=5107, - ["brequel_reward_guarantee_two_caster_modifiers"]=5108, - ["brequel_reward_guarantee_two_minion_modifiers"]=5109, - ["brequel_reward_guarantee_x_caster_modifier"]=5108, - ["brequel_reward_guarantee_x_minion_modifiers"]=5109, - ["brequel_reward_invoking_belt_chance_%"]=5110, - ["brequel_reward_jewellers_orb_chance_+%"]=5111, - ["brequel_reward_kinetic_ring_chance_%"]=5112, - ["brequel_reward_lament_amulet_chance_+%"]=5113, - ["brequel_reward_lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds_crafted_%"]=5114, - ["brequel_reward_max_infusions_crafted_modifier_chance_%"]=5115, - ["brequel_reward_maximum_invocation_energy_crafted_%"]=5116, - ["brequel_reward_minimum_armour_modifier_level"]=5117, - ["brequel_reward_minimum_attribute_modifier_level"]=5118, - ["brequel_reward_minimum_caster_crit_modifier_levela"]=5119, - ["brequel_reward_minimum_caster_crit_modifier_levelb"]=5120, - ["brequel_reward_minimum_caster_modifier_levela"]=5121, - ["brequel_reward_minimum_caster_modifier_levelb"]=5122, - ["brequel_reward_minimum_caster_prefix_modifier_levela"]=5123, - ["brequel_reward_minimum_caster_prefix_modifier_levelb"]=5124, - ["brequel_reward_minimum_caster_prefix_modifier_levelc"]=5125, - ["brequel_reward_minimum_caster_speed_modifier_levela"]=5126, - ["brequel_reward_minimum_caster_speed_modifier_levelb"]=5127, - ["brequel_reward_minimum_caster_suffix_modifier_levela"]=5128, - ["brequel_reward_minimum_caster_suffix_modifier_levelb"]=5129, - ["brequel_reward_minimum_chaos_resistance_modifier_levela"]=5130, - ["brequel_reward_minimum_chaos_resistance_modifier_levelb"]=5131, - ["brequel_reward_minimum_charm_modifier_level"]=5132, - ["brequel_reward_minimum_cold_resistance_modifier_level"]=5133, - ["brequel_reward_minimum_damage_modifier_level"]=5134, - ["brequel_reward_minimum_defence_modifier_levela"]=5135, - ["brequel_reward_minimum_defence_modifier_levelb"]=5136, - ["brequel_reward_minimum_dexterity_modifier_level"]=5137, - ["brequel_reward_minimum_elemental_resistance_modifier_level"]=5138, - ["brequel_reward_minimum_energy_shield_modifier_level"]=5139, - ["brequel_reward_minimum_evasion_modifier_level"]=5140, - ["brequel_reward_minimum_fire_resistance_modifier_level"]=5141, - ["brequel_reward_minimum_flask_modifier_level"]=5142, - ["brequel_reward_minimum_intelligence_modifier_level"]=5143, - ["brequel_reward_minimum_life_modifier_level"]=5144, - ["brequel_reward_minimum_lightning_resistance_modifier_level"]=5145, - ["brequel_reward_minimum_mana_modifier_levela"]=5146, - ["brequel_reward_minimum_mana_modifier_levelb"]=5147, - ["brequel_reward_minimum_minion_damage_modifier_levela"]=5148, - ["brequel_reward_minimum_minion_damage_modifier_levelb"]=5149, - ["brequel_reward_minimum_minion_modifier_level"]=5150, - ["brequel_reward_minimum_minion_modifier_levelb"]=5151, - ["brequel_reward_minimum_minion_prefix_modifier_levela"]=5152, - ["brequel_reward_minimum_minion_prefix_modifier_levelb"]=5153, - ["brequel_reward_minimum_minion_prefix_modifier_levelc"]=5154, - ["brequel_reward_minimum_minion_resistance_modifier_levela"]=5155, - ["brequel_reward_minimum_minion_resistance_modifier_levelb"]=5156, - ["brequel_reward_minimum_minion_speed_modifier_levela"]=5157, - ["brequel_reward_minimum_minion_speed_modifier_levelb"]=5158, - ["brequel_reward_minimum_minion_suffix_modifier_levela"]=5159, - ["brequel_reward_minimum_minion_suffix_modifier_levelb"]=5160, - ["brequel_reward_minimum_minion_suffix_modifier_levelc"]=5161, - ["brequel_reward_minimum_modifier_level"]=5162, - ["brequel_reward_minimum_modifier_levelb"]=5163, - ["brequel_reward_minimum_prefix_modifier_level"]=5164, - ["brequel_reward_minimum_resistance_modifier_level"]=5165, - ["brequel_reward_minimum_resource_modifier_levela"]=5166, - ["brequel_reward_minimum_resource_modifier_levelb"]=5167, - ["brequel_reward_minimum_strength_modifier_level"]=5168, - ["brequel_reward_minimum_suffix_modifier_level"]=5169, - ["brequel_reward_minion_additional_projectile_chance_crafted_%"]=5170, - ["brequel_reward_minion_ailment_magnitude_crafted_chance_%"]=5171, - ["brequel_reward_minion_armour_break_crafted_chance_%"]=5172, - ["brequel_reward_minion_cooldown_recovery_crafted_chance_%"]=5072, - ["brequel_reward_minion_damage_per_different_command_skill_used_last_15_seconds_crafted_%"]=5174, - ["brequel_reward_minion_duration_crafted_%"]=5175, - ["brequel_reward_minion_melee_splash_crafted_%"]=5176, - ["brequel_reward_minion_modifier_value_lucky_rolls_+"]=5177, - ["brequel_reward_minion_puppet_master_crafted_chance_%"]=5178, - ["brequel_reward_minion_reservation_efficiency_crafted_%"]=5179, - ["brequel_reward_minions_gigantic_revived_recently_crafted_%"]=5180, - ["brequel_reward_mnemonic_ring_chance_%"]=5181, - ["brequel_reward_modifier_value_lucky_rolls_+"]=5182, - ["brequel_reward_no_amber_amulets"]=5183, - ["brequel_reward_no_attack_catalysts"]=5184, - ["brequel_reward_no_attack_modifiers"]=5185, - ["brequel_reward_no_attribute_catalysts"]=5186, - ["brequel_reward_no_azure_amulets"]=5187, - ["brequel_reward_no_bloodstone_amulets"]=5188, - ["brequel_reward_no_caster_catalysts"]=5189, - ["brequel_reward_no_caster_modifiers"]=5190, - ["brequel_reward_no_chance_orbs"]=5191, - ["brequel_reward_no_chaos_catalysts"]=5192, - ["brequel_reward_no_chaos_orbs"]=5193, - ["brequel_reward_no_charm_modifiers"]=5194, - ["brequel_reward_no_cold_catalysts"]=5195, - ["brequel_reward_no_cold_modifiers"]=5196, - ["brequel_reward_no_crimson_amulets"]=5197, - ["brequel_reward_no_critical_modifiers"]=5198, - ["brequel_reward_no_defences_catalysts"]=5199, - ["brequel_reward_no_dexterity_modifiers"]=5200, - ["brequel_reward_no_divine_orbs"]=5201, - ["brequel_reward_no_fire_catalysts"]=5202, - ["brequel_reward_no_fire_modifiers"]=5203, - ["brequel_reward_no_flask_modifiers"]=5204, - ["brequel_reward_no_gem_cutters_prisms"]=5205, - ["brequel_reward_no_gold_amulets"]=5206, - ["brequel_reward_no_intelligence_modifiers"]=5207, - ["brequel_reward_no_jade_amulets"]=5208, - ["brequel_reward_no_lapis_amulets"]=5209, - ["brequel_reward_no_life_catalysts"]=5210, - ["brequel_reward_no_life_modifiers"]=5211, - ["brequel_reward_no_lightning_catalysts"]=5212, - ["brequel_reward_no_lightning_modifiers"]=5213, - ["brequel_reward_no_lunar_amulets"]=5214, - ["brequel_reward_no_mana_catalysts"]=5215, - ["brequel_reward_no_mana_modifiers"]=5216, - ["brequel_reward_no_orbs_of_annulment"]=5217, - ["brequel_reward_no_orbs_of_augmentation"]=5218, - ["brequel_reward_no_orbs_of_transmutation"]=5219, - ["brequel_reward_no_perfect_jewellers_orbs"]=5220, - ["brequel_reward_no_physical_catalysts"]=5221, - ["brequel_reward_no_solar_amulets"]=5222, - ["brequel_reward_no_speed_catalysts"]=5223, - ["brequel_reward_no_stellar_amulets"]=5224, - ["brequel_reward_no_strength_modifiers"]=5225, - ["brequel_reward_no_vaal_orbs"]=5226, - ["brequel_reward_offering_effect_crafted_chance_%"]=5227, - ["brequel_reward_oneiric_ring_chance_%"]=5228, - ["brequel_reward_only_catalysts"]=5229, - ["brequel_reward_orb_of_alchemy_chance_+%"]=5230, - ["brequel_reward_orb_of_anunulment_chance_+%"]=5231, - ["brequel_reward_orb_of_augmentation_chance_+%"]=5232, - ["brequel_reward_orb_of_transmutation_chance_+%"]=5233, - ["brequel_reward_portent_amulet_chance_+%"]=5234, - ["brequel_reward_prefix_modifier_value_lucky_rolls_+"]=5235, - ["brequel_reward_prefix_modifier_values_always_max"]=5236, - ["brequel_reward_quality_currency_chance_+%"]=5237, - ["brequel_reward_regal_orb_chance_+%"]=5238, - ["brequel_reward_reservation_amulet_chance_%"]=5239, - ["brequel_reward_resource_cost_+%"]=5240, - ["brequel_reward_seal_gain_frequency_crafted_modifier_chance_%"]=5241, - ["brequel_reward_sinew_belt_chance_%"]=5242, - ["brequel_reward_special_catalyst_chance_%"]=5243, - ["brequel_reward_spell_damage_as_extra_chaos_crafted_%"]=5244, - ["brequel_reward_spell_damage_as_extra_cold_crafted_%"]=5245, - ["brequel_reward_spell_damage_as_extra_fire_crafted_%"]=5246, - ["brequel_reward_spell_damage_as_extra_lightning_crafted_%"]=5247, - ["brequel_reward_spell_elemental_ailment_magnitude_crafted_%"]=5248, - ["brequel_reward_spell_impale_effect_crafted_%"]=5249, - ["brequel_reward_stalking_belt_chance_%"]=5250, - ["brequel_reward_suffix_modifier_value_lucky_rolls_+"]=5251, - ["brequel_reward_suffix_modifier_values_always_max"]=5252, - ["brequel_reward_temporary_minion_limit_crafted_chance_%"]=5253, - ["brequel_reward_vaal_orb_chance_+%"]=5254, - ["brequel_reward_vitalic_ring_chance_%"]=5255, - ["broken_armour_and_sundered_armour_debuff_effect_+%"]=5256, - ["broken_armour_enemies_cannot_regenerate_life"]=5257, + ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5014, + ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5015, + ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5016, + ["brands_reattach_on_activation"]=5017, + ["breach_flame_effects_doubled"]=5018, + ["breachstone_commanders_%_drop_additional_fragments"]=5019, + ["breachstone_commanders_%_drop_additional_maps"]=5020, + ["breachstone_commanders_%_drop_additional_scarabs"]=5021, + ["breachstone_commanders_%_drop_additional_unique_items"]=5022, + ["breachstone_commanders_drop_additional_catalysts"]=5023, + ["breachstone_commanders_drop_additional_currency_items"]=5024, + ["breachstone_commanders_drop_additional_delirium_items"]=5025, + ["breachstone_commanders_drop_additional_divination_cards"]=5026, + ["breachstone_commanders_drop_additional_enchanted_items"]=5027, + ["breachstone_commanders_drop_additional_essences"]=5028, + ["breachstone_commanders_drop_additional_fossils"]=5029, + ["breachstone_commanders_drop_additional_gem_items"]=5030, + ["breachstone_commanders_drop_additional_harbinger_shards"]=5031, + ["breachstone_commanders_drop_additional_incubators"]=5032, + ["breachstone_commanders_drop_additional_legion_splinters"]=5033, + ["breachstone_commanders_drop_additional_oils"]=5034, + ["break_%_armour_on_pin"]=5035, + ["break_armour_on_attack_hit_%_of_max_ward"]=5036, + ["brequel_display_base_type_chance_%"]=5037, + ["brequel_display_birthed_items_always_greater_or_perfect"]=5038, + ["brequel_display_cannot_have_modifiers_of_type"]=5039, + ["brequel_display_crafted_modifier_chance_%"]=5040, + ["brequel_display_empty_modifier"]=5041, + ["brequel_display_has_modifier_of_type"]=5042, + ["brequel_display_item_cannot_be_base_type"]=5043, + ["brequel_reward_10_additional_exalted_orb_chance_%"]=5044, + ["brequel_reward_16_to_24_additional_splinters_chance_%"]=5045, + ["brequel_reward_2_additional_quality_currency_same_type_chance_%"]=5046, + ["brequel_reward_3_to_7_additional_chaos_or_vaal_chance_%"]=5047, + ["brequel_reward_5_additional_items_same_type_chance_%"]=5048, + ["brequel_reward_absent_amulet_chance_+%"]=5049, + ["brequel_reward_additional_alchemy_orb_chance_%"]=5050, + ["brequel_reward_additional_catalyst_different_type_chance_%"]=5051, + ["brequel_reward_additional_catalyst_same_type_chance_%"]=5052, + ["brequel_reward_additional_exalted_orb_chance_%"]=5053, + ["brequel_reward_additional_item_chance_%"]=5054, + ["brequel_reward_additional_item_same_type_chance_%"]=5055, + ["brequel_reward_additional_regal_orb_chance_%"]=5056, + ["brequel_reward_additional_seal_crafted_modifier_chance_%"]=5057, + ["brequel_reward_anaemia_crafted_modifier_chance_%"]=5058, + ["brequel_reward_archon_duration_crafted_%"]=5059, + ["brequel_reward_archon_effect_crafted_%"]=5060, + ["brequel_reward_archon_undeath_on_offering_use_crafted_%"]=5061, + ["brequel_reward_biostatic_ring_chance_%"]=5062, + ["brequel_reward_breach_ring_additional_quality"]=5063, + ["brequel_reward_breach_ring_chance_%"]=5064, + ["brequel_reward_breach_splinters_chance_%"]=5065, + ["brequel_reward_breachlord_sac_chance_%"]=5066, + ["brequel_reward_caster_modifier_value_lucky_rolls_+"]=5067, + ["brequel_reward_catalyst_chance_%"]=5068, + ["brequel_reward_chance_to_not_consume_infusion_if_lost_archon_past_6_seconds_crafted_%"]=5069, + ["brequel_reward_chaos_orb_chance_+%"]=5070, + ["brequel_reward_cold_as_phys_crafted_modifier_chance_%"]=5071, + ["brequel_reward_cold_damage_+%_cold_infusion_collected_last_8_seconds_crafted_%"]=5072, + ["brequel_reward_command_skill_speed_crafted_chance_%"]=5174, + ["brequel_reward_consume_no_resource_chance_%"]=5074, + ["brequel_reward_convert_items_to_gold"]=5075, + ["brequel_reward_corona_amulet_chance_%"]=5076, + ["brequel_reward_damage_removed_from_spectres_crafted_%"]=5077, + ["brequel_reward_damage_taken_from_mana_before_life_crafted_%"]=5078, + ["brequel_reward_desecration_chance_%"]=5079, + ["brequel_reward_disable_base_augmentation_orb"]=5080, + ["brequel_reward_disable_base_transmutation_orb"]=5081, + ["brequel_reward_divine_orb_chance_+%"]=5082, + ["brequel_reward_enable_caster_modifiers"]=5083, + ["brequel_reward_enable_minion_modifiers"]=5084, + ["brequel_reward_essence_chance_%"]=5085, + ["brequel_reward_exalted_orb_chance_+%"]=5086, + ["brequel_reward_exposure_effect_crafted_%"]=5087, + ["brequel_reward_fire_damage_+%_if_fire_infusion_collected_last_8_seconds_crafted_%"]=5088, + ["brequel_reward_fire_spell_crit_crafted_modifier_chance_%"]=5089, + ["brequel_reward_forking_belt_chance_%"]=5090, + ["brequel_reward_grasping_ring_chance_%"]=5091, + ["brequel_reward_guarantee_armour_modifier"]=5092, + ["brequel_reward_guarantee_attribute_modifier"]=5093, + ["brequel_reward_guarantee_cold_resistance_modifier"]=5094, + ["brequel_reward_guarantee_defence_modifier"]=5095, + ["brequel_reward_guarantee_dexterity_modifier"]=5096, + ["brequel_reward_guarantee_energy_shield_modifier"]=5097, + ["brequel_reward_guarantee_evasion_modifier"]=5098, + ["brequel_reward_guarantee_fire_resistance_modifier"]=5099, + ["brequel_reward_guarantee_intelligence_modifier"]=5100, + ["brequel_reward_guarantee_life_modifier"]=5101, + ["brequel_reward_guarantee_lightning_resistance_modifier"]=5102, + ["brequel_reward_guarantee_mana_modifier"]=5103, + ["brequel_reward_guarantee_open_prefix"]=5104, + ["brequel_reward_guarantee_open_suffix"]=5105, + ["brequel_reward_guarantee_resistance_modifier"]=5106, + ["brequel_reward_guarantee_resource_modifier"]=5107, + ["brequel_reward_guarantee_strength_modifier"]=5108, + ["brequel_reward_guarantee_two_caster_modifiers"]=5109, + ["brequel_reward_guarantee_two_minion_modifiers"]=5110, + ["brequel_reward_guarantee_x_caster_modifier"]=5109, + ["brequel_reward_guarantee_x_minion_modifiers"]=5110, + ["brequel_reward_invoking_belt_chance_%"]=5111, + ["brequel_reward_jewellers_orb_chance_+%"]=5112, + ["brequel_reward_kinetic_ring_chance_%"]=5113, + ["brequel_reward_lament_amulet_chance_+%"]=5114, + ["brequel_reward_lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds_crafted_%"]=5115, + ["brequel_reward_max_infusions_crafted_modifier_chance_%"]=5116, + ["brequel_reward_maximum_invocation_energy_crafted_%"]=5117, + ["brequel_reward_minimum_armour_modifier_level"]=5118, + ["brequel_reward_minimum_attribute_modifier_level"]=5119, + ["brequel_reward_minimum_caster_crit_modifier_levela"]=5120, + ["brequel_reward_minimum_caster_crit_modifier_levelb"]=5121, + ["brequel_reward_minimum_caster_modifier_levela"]=5122, + ["brequel_reward_minimum_caster_modifier_levelb"]=5123, + ["brequel_reward_minimum_caster_prefix_modifier_levela"]=5124, + ["brequel_reward_minimum_caster_prefix_modifier_levelb"]=5125, + ["brequel_reward_minimum_caster_prefix_modifier_levelc"]=5126, + ["brequel_reward_minimum_caster_speed_modifier_levela"]=5127, + ["brequel_reward_minimum_caster_speed_modifier_levelb"]=5128, + ["brequel_reward_minimum_caster_suffix_modifier_levela"]=5129, + ["brequel_reward_minimum_caster_suffix_modifier_levelb"]=5130, + ["brequel_reward_minimum_chaos_resistance_modifier_levela"]=5131, + ["brequel_reward_minimum_chaos_resistance_modifier_levelb"]=5132, + ["brequel_reward_minimum_charm_modifier_level"]=5133, + ["brequel_reward_minimum_cold_resistance_modifier_level"]=5134, + ["brequel_reward_minimum_damage_modifier_level"]=5135, + ["brequel_reward_minimum_defence_modifier_levela"]=5136, + ["brequel_reward_minimum_defence_modifier_levelb"]=5137, + ["brequel_reward_minimum_dexterity_modifier_level"]=5138, + ["brequel_reward_minimum_elemental_resistance_modifier_level"]=5139, + ["brequel_reward_minimum_energy_shield_modifier_level"]=5140, + ["brequel_reward_minimum_evasion_modifier_level"]=5141, + ["brequel_reward_minimum_fire_resistance_modifier_level"]=5142, + ["brequel_reward_minimum_flask_modifier_level"]=5143, + ["brequel_reward_minimum_intelligence_modifier_level"]=5144, + ["brequel_reward_minimum_life_modifier_level"]=5145, + ["brequel_reward_minimum_lightning_resistance_modifier_level"]=5146, + ["brequel_reward_minimum_mana_modifier_levela"]=5147, + ["brequel_reward_minimum_mana_modifier_levelb"]=5148, + ["brequel_reward_minimum_minion_damage_modifier_levela"]=5149, + ["brequel_reward_minimum_minion_damage_modifier_levelb"]=5150, + ["brequel_reward_minimum_minion_modifier_level"]=5151, + ["brequel_reward_minimum_minion_modifier_levelb"]=5152, + ["brequel_reward_minimum_minion_prefix_modifier_levela"]=5153, + ["brequel_reward_minimum_minion_prefix_modifier_levelb"]=5154, + ["brequel_reward_minimum_minion_prefix_modifier_levelc"]=5155, + ["brequel_reward_minimum_minion_resistance_modifier_levela"]=5156, + ["brequel_reward_minimum_minion_resistance_modifier_levelb"]=5157, + ["brequel_reward_minimum_minion_speed_modifier_levela"]=5158, + ["brequel_reward_minimum_minion_speed_modifier_levelb"]=5159, + ["brequel_reward_minimum_minion_suffix_modifier_levela"]=5160, + ["brequel_reward_minimum_minion_suffix_modifier_levelb"]=5161, + ["brequel_reward_minimum_minion_suffix_modifier_levelc"]=5162, + ["brequel_reward_minimum_modifier_level"]=5163, + ["brequel_reward_minimum_modifier_levelb"]=5164, + ["brequel_reward_minimum_prefix_modifier_level"]=5165, + ["brequel_reward_minimum_resistance_modifier_level"]=5166, + ["brequel_reward_minimum_resource_modifier_levela"]=5167, + ["brequel_reward_minimum_resource_modifier_levelb"]=5168, + ["brequel_reward_minimum_strength_modifier_level"]=5169, + ["brequel_reward_minimum_suffix_modifier_level"]=5170, + ["brequel_reward_minion_additional_projectile_chance_crafted_%"]=5171, + ["brequel_reward_minion_ailment_magnitude_crafted_chance_%"]=5172, + ["brequel_reward_minion_armour_break_crafted_chance_%"]=5173, + ["brequel_reward_minion_cooldown_recovery_crafted_chance_%"]=5073, + ["brequel_reward_minion_damage_per_different_command_skill_used_last_15_seconds_crafted_%"]=5175, + ["brequel_reward_minion_duration_crafted_%"]=5176, + ["brequel_reward_minion_melee_splash_crafted_%"]=5177, + ["brequel_reward_minion_modifier_value_lucky_rolls_+"]=5178, + ["brequel_reward_minion_puppet_master_crafted_chance_%"]=5179, + ["brequel_reward_minion_reservation_efficiency_crafted_%"]=5180, + ["brequel_reward_minions_gigantic_revived_recently_crafted_%"]=5181, + ["brequel_reward_mnemonic_ring_chance_%"]=5182, + ["brequel_reward_modifier_value_lucky_rolls_+"]=5183, + ["brequel_reward_no_amber_amulets"]=5184, + ["brequel_reward_no_attack_catalysts"]=5185, + ["brequel_reward_no_attack_modifiers"]=5186, + ["brequel_reward_no_attribute_catalysts"]=5187, + ["brequel_reward_no_azure_amulets"]=5188, + ["brequel_reward_no_bloodstone_amulets"]=5189, + ["brequel_reward_no_caster_catalysts"]=5190, + ["brequel_reward_no_caster_modifiers"]=5191, + ["brequel_reward_no_chance_orbs"]=5192, + ["brequel_reward_no_chaos_catalysts"]=5193, + ["brequel_reward_no_chaos_orbs"]=5194, + ["brequel_reward_no_charm_modifiers"]=5195, + ["brequel_reward_no_cold_catalysts"]=5196, + ["brequel_reward_no_cold_modifiers"]=5197, + ["brequel_reward_no_crimson_amulets"]=5198, + ["brequel_reward_no_critical_modifiers"]=5199, + ["brequel_reward_no_defences_catalysts"]=5200, + ["brequel_reward_no_dexterity_modifiers"]=5201, + ["brequel_reward_no_divine_orbs"]=5202, + ["brequel_reward_no_fire_catalysts"]=5203, + ["brequel_reward_no_fire_modifiers"]=5204, + ["brequel_reward_no_flask_modifiers"]=5205, + ["brequel_reward_no_gem_cutters_prisms"]=5206, + ["brequel_reward_no_gold_amulets"]=5207, + ["brequel_reward_no_intelligence_modifiers"]=5208, + ["brequel_reward_no_jade_amulets"]=5209, + ["brequel_reward_no_lapis_amulets"]=5210, + ["brequel_reward_no_life_catalysts"]=5211, + ["brequel_reward_no_life_modifiers"]=5212, + ["brequel_reward_no_lightning_catalysts"]=5213, + ["brequel_reward_no_lightning_modifiers"]=5214, + ["brequel_reward_no_lunar_amulets"]=5215, + ["brequel_reward_no_mana_catalysts"]=5216, + ["brequel_reward_no_mana_modifiers"]=5217, + ["brequel_reward_no_orbs_of_annulment"]=5218, + ["brequel_reward_no_orbs_of_augmentation"]=5219, + ["brequel_reward_no_orbs_of_transmutation"]=5220, + ["brequel_reward_no_perfect_jewellers_orbs"]=5221, + ["brequel_reward_no_physical_catalysts"]=5222, + ["brequel_reward_no_solar_amulets"]=5223, + ["brequel_reward_no_speed_catalysts"]=5224, + ["brequel_reward_no_stellar_amulets"]=5225, + ["brequel_reward_no_strength_modifiers"]=5226, + ["brequel_reward_no_vaal_orbs"]=5227, + ["brequel_reward_offering_effect_crafted_chance_%"]=5228, + ["brequel_reward_oneiric_ring_chance_%"]=5229, + ["brequel_reward_only_catalysts"]=5230, + ["brequel_reward_orb_of_alchemy_chance_+%"]=5231, + ["brequel_reward_orb_of_anunulment_chance_+%"]=5232, + ["brequel_reward_orb_of_augmentation_chance_+%"]=5233, + ["brequel_reward_orb_of_transmutation_chance_+%"]=5234, + ["brequel_reward_portent_amulet_chance_+%"]=5235, + ["brequel_reward_prefix_modifier_value_lucky_rolls_+"]=5236, + ["brequel_reward_prefix_modifier_values_always_max"]=5237, + ["brequel_reward_quality_currency_chance_+%"]=5238, + ["brequel_reward_regal_orb_chance_+%"]=5239, + ["brequel_reward_reservation_amulet_chance_%"]=5240, + ["brequel_reward_resource_cost_+%"]=5241, + ["brequel_reward_seal_gain_frequency_crafted_modifier_chance_%"]=5242, + ["brequel_reward_sinew_belt_chance_%"]=5243, + ["brequel_reward_special_catalyst_chance_%"]=5244, + ["brequel_reward_spell_damage_as_extra_chaos_crafted_%"]=5245, + ["brequel_reward_spell_damage_as_extra_cold_crafted_%"]=5246, + ["brequel_reward_spell_damage_as_extra_fire_crafted_%"]=5247, + ["brequel_reward_spell_damage_as_extra_lightning_crafted_%"]=5248, + ["brequel_reward_spell_elemental_ailment_magnitude_crafted_%"]=5249, + ["brequel_reward_spell_impale_effect_crafted_%"]=5250, + ["brequel_reward_stalking_belt_chance_%"]=5251, + ["brequel_reward_suffix_modifier_value_lucky_rolls_+"]=5252, + ["brequel_reward_suffix_modifier_values_always_max"]=5253, + ["brequel_reward_temporary_minion_limit_crafted_chance_%"]=5254, + ["brequel_reward_vaal_orb_chance_+%"]=5255, + ["brequel_reward_vitalic_ring_chance_%"]=5256, + ["broken_armour_and_sundered_armour_debuff_effect_+%"]=5257, + ["broken_armour_enemies_cannot_regenerate_life"]=5258, ["buff_affects_party"]=1568, ["buff_auras_dont_affect_allies"]=2779, ["buff_duration_+%"]=1563, - ["buff_effect_+%_on_low_energy_shield"]=5258, + ["buff_effect_+%_on_low_energy_shield"]=5259, ["buff_effect_on_self_+%"]=1907, ["buff_party_effect_radius_+%"]=1569, - ["buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life"]=5259, - ["buff_time_passed_+%"]=5261, - ["buff_time_passed_+%_only_buff_category"]=5260, - ["buildup_jade_every_x_ms"]=5262, + ["buff_skills_spirit_reservation_efficiency_+%_per_100_maximum_life"]=5260, + ["buff_time_passed_+%"]=5262, + ["buff_time_passed_+%_only_buff_category"]=5261, + ["buildup_jade_every_x_ms"]=5263, ["burn_damage_+%"]=1651, - ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5263, + ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5264, ["burning_arrow_damage_+%"]=3330, - ["burning_arrow_debuff_effect_+%"]=5264, + ["burning_arrow_debuff_effect_+%"]=5265, ["burning_arrow_physical_damage_%_to_gain_as_fire_damage"]=3647, ["burning_damage_+%_if_ignited_an_enemy_recently"]=3993, - ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5265, + ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5266, ["burning_damage_taken_+%"]=2351, - ["can_apply_additional_chill"]=5266, - ["can_apply_additional_shock"]=5267, - ["can_block_from_all_directions"]=5268, + ["can_apply_additional_chill"]=5267, + ["can_apply_additional_shock"]=5268, + ["can_block_from_all_directions"]=5269, ["can_catch_corrupted_fish"]=2633, ["can_catch_exotic_fish"]=2632, - ["can_catch_scourged_fish"]=5269, - ["can_gain_combo_from_any_attack_hit"]=5270, - ["can_have_2_companions"]=10691, - ["can_have_unlimited_companions"]=10692, - ["can_only_have_one_ancestor_totem_buff"]=5271, - ["can_place_multiple_banners"]=5272, - ["can_wield_2h_axe_sword_mace_in_one_hand"]=5273, - ["cannot_adapt_to_cold"]=5274, - ["cannot_adapt_to_fire"]=5275, - ["cannot_adapt_to_lightning"]=5276, + ["can_catch_scourged_fish"]=5270, + ["can_gain_combo_from_any_attack_hit"]=5271, + ["can_have_2_companions"]=10708, + ["can_have_unlimited_companions"]=10709, + ["can_only_have_one_ancestor_totem_buff"]=5272, + ["can_place_multiple_banners"]=5273, + ["can_wield_2h_axe_sword_mace_in_one_hand"]=5274, + ["cannot_adapt_to_cold"]=5275, + ["cannot_adapt_to_fire"]=5276, + ["cannot_adapt_to_lightning"]=5277, ["cannot_be_affected_by_flasks"]=3449, ["cannot_be_blinded"]=2743, - ["cannot_be_blinded_while_affected_by_precision"]=5277, - ["cannot_be_blinded_while_on_full_life"]=5278, - ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5279, - ["cannot_be_chilled_or_frozen_while_moving"]=5280, - ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5281, - ["cannot_be_chilled_while_burning"]=5282, - ["cannot_be_crit_if_you_have_been_stunned_recently"]=5283, + ["cannot_be_blinded_while_affected_by_precision"]=5278, + ["cannot_be_blinded_while_on_full_life"]=5279, + ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5280, + ["cannot_be_chilled_or_frozen_while_moving"]=5281, + ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5282, + ["cannot_be_chilled_while_burning"]=5283, + ["cannot_be_crit_if_you_have_been_stunned_recently"]=5284, ["cannot_be_cursed_with_silence"]=2846, ["cannot_be_damaged"]=1478, - ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5284, - ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5285, - ["cannot_be_frozen_with_dex_higher_than_int"]=5286, - ["cannot_be_heavy_stunned_while_sprinting"]=5287, - ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5288, - ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5289, - ["cannot_be_ignited_while_flame_golem_summoned"]=5290, - ["cannot_be_ignited_with_strength_higher_than_dex"]=5291, - ["cannot_be_inflicted_by_corrupted_blood"]=5292, + ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5285, + ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5286, + ["cannot_be_frozen_with_dex_higher_than_int"]=5287, + ["cannot_be_heavy_stunned_while_sprinting"]=5288, + ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5289, + ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5290, + ["cannot_be_ignited_while_flame_golem_summoned"]=5291, + ["cannot_be_ignited_with_strength_higher_than_dex"]=5292, + ["cannot_be_inflicted_by_corrupted_blood"]=5293, ["cannot_be_killed_by_elemental_reflect"]=2472, ["cannot_be_knocked_back"]=1434, - ["cannot_be_light_stunned"]=5293, - ["cannot_be_light_stunned_by_deflected_hits"]=5294, - ["cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds"]=5295, - ["cannot_be_light_stunned_if_have_not_been_hit_recently"]=5296, - ["cannot_be_light_stunned_if_you_have_been_stunned_recently"]=5297, + ["cannot_be_light_stunned"]=5294, + ["cannot_be_light_stunned_by_deflected_hits"]=5295, + ["cannot_be_light_stunned_if_have_been_stunned_in_past_2_seconds"]=5296, + ["cannot_be_light_stunned_if_have_not_been_hit_recently"]=5297, + ["cannot_be_light_stunned_if_you_have_been_stunned_recently"]=5298, ["cannot_be_poisoned"]=3097, - ["cannot_be_poisoned_if_x_poisons_on_you"]=5298, - ["cannot_be_poisoned_while_bleeding"]=5299, - ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5300, - ["cannot_be_shocked_or_ignited_while_moving"]=5301, + ["cannot_be_poisoned_if_x_poisons_on_you"]=5299, + ["cannot_be_poisoned_while_bleeding"]=5300, + ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5301, + ["cannot_be_shocked_or_ignited_while_moving"]=5302, ["cannot_be_shocked_while_at_maximum_endurance_charges"]=3856, - ["cannot_be_shocked_while_at_maximum_power_charges"]=5302, + ["cannot_be_shocked_while_at_maximum_power_charges"]=5303, ["cannot_be_shocked_while_frozen"]=2680, - ["cannot_be_shocked_while_lightning_golem_summoned"]=5303, - ["cannot_be_shocked_with_int_higher_than_strength"]=5304, + ["cannot_be_shocked_while_lightning_golem_summoned"]=5304, + ["cannot_be_shocked_with_int_higher_than_strength"]=5305, ["cannot_be_stunned"]=1937, ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=4021, - ["cannot_be_stunned_by_blocked_hits"]=5305, - ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5306, + ["cannot_be_stunned_by_blocked_hits"]=5306, + ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5307, ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=4020, ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=4031, - ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5307, - ["cannot_be_stunned_if_you_have_ghost_dance"]=5308, + ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5308, + ["cannot_be_stunned_if_you_have_ghost_dance"]=5309, ["cannot_be_stunned_when_on_low_life"]=1939, ["cannot_be_stunned_while_at_max_endurance_charges"]=3732, - ["cannot_be_stunned_while_bleeding"]=5309, - ["cannot_be_stunned_while_fortified"]=5310, + ["cannot_be_stunned_while_bleeding"]=5310, + ["cannot_be_stunned_while_fortified"]=5311, ["cannot_be_stunned_while_leeching"]=2953, - ["cannot_be_stunned_while_using_chaos_skill"]=5311, - ["cannot_be_stunned_with_25_rage"]=9633, + ["cannot_be_stunned_while_using_chaos_skill"]=5312, + ["cannot_be_stunned_with_25_rage"]=9641, ["cannot_block"]=3001, ["cannot_block_while_no_energy_shield"]=2520, ["cannot_cast_curses"]=2479, - ["cannot_cast_spells"]=5312, + ["cannot_cast_spells"]=5313, ["cannot_cause_bleeding"]=2294, - ["cannot_consume_power_frenzy_endurance_charges"]=5313, + ["cannot_consume_power_frenzy_endurance_charges"]=5314, ["cannot_crit_non_shocked_enemies"]=3814, - ["cannot_critical_strike_with_attacks"]=5314, - ["cannot_fish_from_water"]=5315, + ["cannot_critical_strike_with_attacks"]=5315, + ["cannot_fish_from_water"]=5316, ["cannot_freeze_shock_ignite_on_critical"]=2473, - ["cannot_gain_charges"]=5316, - ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5317, + ["cannot_gain_charges"]=5317, + ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5318, ["cannot_gain_endurance_charges_while_have_onslaught"]=2540, ["cannot_gain_power_charges"]=2774, - ["cannot_gain_rage_during_soul_gain_prevention"]=5318, - ["cannot_gain_spirit_from_equipment"]=5319, + ["cannot_gain_rage_during_soul_gain_prevention"]=5319, + ["cannot_gain_spirit_from_equipment"]=5320, ["cannot_have_current_energy_shield"]=2868, - ["cannot_have_energy_shield_leeched_from"]=5320, + ["cannot_have_energy_shield_leeched_from"]=5321, ["cannot_have_life_leeched_from"]=2216, ["cannot_have_mana_leeched_from"]=2217, - ["cannot_have_more_than_1_damaging_ailment"]=5321, - ["cannot_have_more_than_1_non_damaging_ailment"]=5322, - ["cannot_immobilise_enemies"]=5323, + ["cannot_have_more_than_1_damaging_ailment"]=5322, + ["cannot_have_more_than_1_non_damaging_ailment"]=5323, + ["cannot_immobilise_enemies"]=5324, ["cannot_increase_quantity_of_dropped_items"]=2353, ["cannot_increase_rarity_of_dropped_items"]=2352, ["cannot_inflict_elemental_ailments"]=1642, - ["cannot_kill_enemies_with_hits"]=5324, + ["cannot_kill_enemies_with_hits"]=5325, ["cannot_knockback"]=2770, ["cannot_leech_life_from_critical_strikes"]=3946, ["cannot_leech_or_regenerate_mana"]=2375, ["cannot_leech_when_on_low_life"]=2376, ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=4032, - ["cannot_miss_against_full_life_enemies"]=5325, - ["cannot_penetrate_or_ignore_elemental_resistances"]=5326, - ["cannot_pierce"]=5327, - ["cannot_pin"]=5328, - ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5329, - ["cannot_recharge_energy_shield"]=5330, - ["cannot_recover_above_low_life_except_flasks"]=5331, - ["cannot_recover_life_or_energy_shield_above_%"]=5332, - ["cannot_recover_mana_except_regeneration"]=5333, - ["cannot_regenerate_energy_shield"]=5334, + ["cannot_miss_against_full_life_enemies"]=5326, + ["cannot_penetrate_or_ignore_elemental_resistances"]=5327, + ["cannot_pierce"]=5328, + ["cannot_pin"]=5329, + ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5330, + ["cannot_recharge_energy_shield"]=5331, + ["cannot_recover_above_low_life_except_flasks"]=5332, + ["cannot_recover_life_or_energy_shield_above_%"]=5333, + ["cannot_recover_mana_except_regeneration"]=5334, + ["cannot_regenerate_energy_shield"]=5335, ["cannot_resist_cold_damage"]=1949, - ["cannot_sprint"]=5335, + ["cannot_sprint"]=5336, ["cannot_stun"]=1635, ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4100, - ["cannot_take_reflected_elemental_damage"]=5336, - ["cannot_take_reflected_physical_damage"]=5337, - ["cannot_taunt_enemies"]=5338, - ["cannot_use_flask_in_fifth_slot"]=5339, - ["cannot_use_non_normal_body_armour"]=5340, - ["cannot_use_warcries"]=5341, - ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5342, - ["cascadable_spells_final_echo_also_cascades_to_sides"]=5343, - ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5344, - ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5345, - ["cast_body_swap_on_detonate_dead_cast"]=5346, - ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5347, - ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5348, - ["cast_hydrosphere_while_channeling_winter_orb"]=5349, - ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5350, + ["cannot_take_reflected_elemental_damage"]=5337, + ["cannot_take_reflected_physical_damage"]=5338, + ["cannot_taunt_enemies"]=5339, + ["cannot_use_flask_in_fifth_slot"]=5340, + ["cannot_use_non_normal_body_armour"]=5341, + ["cannot_use_warcries"]=5342, + ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5343, + ["cascadable_spells_final_echo_also_cascades_to_sides"]=5344, + ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5345, + ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5346, + ["cast_body_swap_on_detonate_dead_cast"]=5347, + ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5348, + ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5349, + ["cast_hydrosphere_while_channeling_winter_orb"]=5350, + ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5351, ["cast_linked_spells_on_shocked_enemy_kill_%"]=570, - ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5351, + ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5352, ["cast_socketed_minion_skills_on_bow_kill_%"]=571, ["cast_socketed_spells_on_X_mana_spent"]=572, ["cast_socketed_spells_on_mana_spent_%_chance"]=572, - ["cast_speed_+%_during_flask_effect"]=5359, - ["cast_speed_+%_during_mana_flask_effect"]=5352, + ["cast_speed_+%_during_flask_effect"]=5360, + ["cast_speed_+%_during_mana_flask_effect"]=5353, ["cast_speed_+%_for_4_seconds_on_attack"]=3244, - ["cast_speed_+%_if_enemy_killed_recently"]=5360, - ["cast_speed_+%_if_have_crit_recently"]=5361, - ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5362, - ["cast_speed_+%_if_you_have_used_a_mana_flask_recently"]=5363, - ["cast_speed_+%_per_20_spirit"]=5353, - ["cast_speed_+%_per_corpse_consumed_recently"]=5364, + ["cast_speed_+%_if_enemy_killed_recently"]=5361, + ["cast_speed_+%_if_have_crit_recently"]=5362, + ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5363, + ["cast_speed_+%_if_you_have_used_a_mana_flask_recently"]=5364, + ["cast_speed_+%_per_20_spirit"]=5354, + ["cast_speed_+%_per_corpse_consumed_recently"]=5365, ["cast_speed_+%_per_frenzy_charge"]=1767, - ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=5354, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5355, + ["cast_speed_+%_per_num_unique_spells_cast_in_last_8_seconds"]=5355, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5356, ["cast_speed_+%_per_power_charge"]=1373, - ["cast_speed_+%_per_spell_echoed_recently_up_to_30%"]=5356, + ["cast_speed_+%_per_spell_echoed_recently_up_to_30%"]=5357, ["cast_speed_+%_when_on_full_life"]=1766, ["cast_speed_+%_when_on_low_life"]=1765, - ["cast_speed_+%_while_affected_by_zealotry"]=5365, - ["cast_speed_+%_while_chilled"]=5366, + ["cast_speed_+%_while_affected_by_zealotry"]=5366, + ["cast_speed_+%_while_chilled"]=5367, ["cast_speed_+%_while_holding_bow"]=1372, ["cast_speed_+%_while_holding_shield"]=1370, ["cast_speed_+%_while_holding_staff"]=1371, ["cast_speed_+%_while_ignited"]=2714, - ["cast_speed_+%_while_on_full_mana"]=5367, - ["cast_speed_for_brand_skills_+%"]=5357, + ["cast_speed_+%_while_on_full_mana"]=5368, + ["cast_speed_for_brand_skills_+%"]=5358, ["cast_speed_for_chaos_skills_+%"]=1317, ["cast_speed_for_cold_skills_+%"]=1305, - ["cast_speed_for_elemental_skills_+%"]=5358, + ["cast_speed_for_elemental_skills_+%"]=5359, ["cast_speed_for_fire_skills_+%"]=1297, ["cast_speed_for_lightning_skills_+%"]=1310, ["cast_speed_while_dual_wielding_+%"]=1369, - ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5368, - ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5369, - ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5370, - ["cat_aspect_reserves_no_mana"]=5371, - ["cats_stealth_duration_ms_+"]=5372, + ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5369, + ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5370, + ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5371, + ["cat_aspect_reserves_no_mana"]=5372, + ["cats_stealth_duration_ms_+"]=5373, ["cause_maim_on_critical_strike_attack"]=3753, - ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5373, - ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5374, + ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5374, + ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5375, ["caustic_arrow_damage_+%"]=3390, - ["caustic_arrow_damage_over_time_+%"]=5375, + ["caustic_arrow_damage_over_time_+%"]=5376, ["caustic_arrow_duration_+%"]=3626, - ["caustic_arrow_hit_damage_+%"]=5376, + ["caustic_arrow_hit_damage_+%"]=5377, ["caustic_arrow_radius_+%"]=3526, ["caustic_arrow_withered_base_duration_ms"]=3391, ["caustic_arrow_withered_on_hit_%"]=3391, ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3159, - ["celestial_footprints_from_item"]=10777, - ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5377, - ["chain_strike_cone_radius_+_per_12_rage"]=5378, - ["chain_strike_cone_radius_+_per_x_rage"]=5379, - ["chain_strike_damage_+%"]=5380, - ["chain_strike_gain_rage_on_hit_%_chance"]=5381, - ["chaining_range_+%"]=5382, - ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5383, - ["chance_%_for_other_flasks_to_gain_charge_on_charge_gain"]=5384, - ["chance_%_for_plants_to_overgrow_when_entering_your_presence"]=5385, - ["chance_%_to_create_additional_remnant"]=5429, - ["chance_%_to_create_shocking_ground_on_shock"]=5386, - ["chance_%_to_double_effect_of_removing_frenzy_charges"]=5387, - ["chance_%_to_drop_additional_awakened_sextant"]=5388, - ["chance_%_to_drop_additional_blessed_orb"]=5389, - ["chance_%_to_drop_additional_cartographers_chisel"]=5390, - ["chance_%_to_drop_additional_chaos_orb"]=5391, - ["chance_%_to_drop_additional_chromatic_orb"]=5392, - ["chance_%_to_drop_additional_cleansing_currency"]=5430, - ["chance_%_to_drop_additional_cleansing_influenced_item"]=5431, - ["chance_%_to_drop_additional_currency"]=5432, - ["chance_%_to_drop_additional_divination_cards"]=5433, - ["chance_%_to_drop_additional_divination_cards_corrupted"]=5434, - ["chance_%_to_drop_additional_divination_cards_currency"]=5435, - ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5436, - ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5437, - ["chance_%_to_drop_additional_divination_cards_currency_league"]=5438, - ["chance_%_to_drop_additional_divination_cards_gems"]=5439, - ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5440, - ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5441, - ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5442, - ["chance_%_to_drop_additional_divination_cards_map"]=5443, - ["chance_%_to_drop_additional_divination_cards_map_unique"]=5444, - ["chance_%_to_drop_additional_divination_cards_unique"]=5445, - ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5446, - ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5447, - ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5448, - ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5449, - ["chance_%_to_drop_additional_divine_orb"]=5393, - ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5394, - ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5395, - ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5396, - ["chance_%_to_drop_additional_enkindling_orb"]=5397, - ["chance_%_to_drop_additional_exalted_orb"]=5398, - ["chance_%_to_drop_additional_fusing_orb"]=5399, - ["chance_%_to_drop_additional_gem"]=5450, - ["chance_%_to_drop_additional_gemcutters_prism"]=5400, - ["chance_%_to_drop_additional_glassblowers_bauble"]=5401, - ["chance_%_to_drop_additional_grand_eldritch_ember"]=5402, - ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5403, - ["chance_%_to_drop_additional_greater_eldritch_ember"]=5404, - ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5405, - ["chance_%_to_drop_additional_instilling_orb"]=5406, - ["chance_%_to_drop_additional_jewellers_orb"]=5407, - ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5408, - ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5409, - ["chance_%_to_drop_additional_map_currency"]=5452, - ["chance_%_to_drop_additional_maps"]=5451, - ["chance_%_to_drop_additional_orb_of_alteration"]=5410, - ["chance_%_to_drop_additional_orb_of_annulment"]=5411, - ["chance_%_to_drop_additional_orb_of_binding"]=5412, - ["chance_%_to_drop_additional_orb_of_horizons"]=5413, - ["chance_%_to_drop_additional_orb_of_regret"]=5414, - ["chance_%_to_drop_additional_orb_of_scouring"]=5415, - ["chance_%_to_drop_additional_orb_of_unmaking"]=5416, - ["chance_%_to_drop_additional_regal_orb"]=5417, - ["chance_%_to_drop_additional_scarab"]=5453, - ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5454, - ["chance_%_to_drop_additional_scarab_abyss_polished"]=5455, - ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5456, - ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5457, - ["chance_%_to_drop_additional_scarab_beasts_polished"]=5458, - ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5459, - ["chance_%_to_drop_additional_scarab_blight_gilded"]=5460, - ["chance_%_to_drop_additional_scarab_blight_polished"]=5461, - ["chance_%_to_drop_additional_scarab_blight_rusted"]=5462, - ["chance_%_to_drop_additional_scarab_breach_gilded"]=5463, - ["chance_%_to_drop_additional_scarab_breach_polished"]=5464, - ["chance_%_to_drop_additional_scarab_breach_rusted"]=5465, - ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5466, - ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5467, - ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5468, - ["chance_%_to_drop_additional_scarab_elder_gilded"]=5469, - ["chance_%_to_drop_additional_scarab_elder_polished"]=5470, - ["chance_%_to_drop_additional_scarab_elder_rusted"]=5471, - ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5472, - ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5473, - ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5474, - ["chance_%_to_drop_additional_scarab_legion_gilded"]=5475, - ["chance_%_to_drop_additional_scarab_legion_polished"]=5476, - ["chance_%_to_drop_additional_scarab_legion_rusted"]=5477, - ["chance_%_to_drop_additional_scarab_maps_gilded"]=5478, - ["chance_%_to_drop_additional_scarab_maps_polished"]=5479, - ["chance_%_to_drop_additional_scarab_maps_rusted"]=5480, - ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5481, - ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5482, - ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5483, - ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5484, - ["chance_%_to_drop_additional_scarab_perandus_polished"]=5485, - ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5486, - ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5487, - ["chance_%_to_drop_additional_scarab_shaper_polished"]=5488, - ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5489, - ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5490, - ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5491, - ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5492, - ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5493, - ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5494, - ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5495, - ["chance_%_to_drop_additional_scarab_torment_gilded"]=5496, - ["chance_%_to_drop_additional_scarab_torment_polished"]=5497, - ["chance_%_to_drop_additional_scarab_torment_rusted"]=5498, - ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5499, - ["chance_%_to_drop_additional_scarab_uniques_polished"]=5500, - ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5501, - ["chance_%_to_drop_additional_tangled_currency"]=5502, - ["chance_%_to_drop_additional_tangled_influenced_item"]=5503, - ["chance_%_to_drop_additional_unique"]=5504, - ["chance_%_to_drop_additional_vaal_orb"]=5418, - ["chance_%_to_gain_archon_of_nature_on_overgrowing_plant"]=5419, - ["chance_%_to_gain_archon_of_undeath_on_using_command_skill"]=5420, - ["chance_%_to_gain_archon_of_undeath_when_you_create_an_offering"]=5421, - ["chance_%_to_gain_one_stone_skin_stack_on_immobilising"]=5422, - ["chance_for_double_items_from_heist_chests_%"]=5423, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5424, - ["chance_for_extra_damage_roll_with_lightning_damage_%"]=5425, - ["chance_for_plants_to_be_overgrown_%"]=5426, - ["chance_for_skills_to_avoid_cooldown_%"]=5427, - ["chance_for_spells_to_not_pay_costs_%"]=5428, + ["celestial_footprints_from_item"]=10794, + ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5378, + ["chain_strike_cone_radius_+_per_12_rage"]=5379, + ["chain_strike_cone_radius_+_per_x_rage"]=5380, + ["chain_strike_damage_+%"]=5381, + ["chain_strike_gain_rage_on_hit_%_chance"]=5382, + ["chaining_range_+%"]=5383, + ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5384, + ["chance_%_for_other_flasks_to_gain_charge_on_charge_gain"]=5385, + ["chance_%_for_plants_to_overgrow_when_entering_your_presence"]=5386, + ["chance_%_to_create_additional_remnant"]=5430, + ["chance_%_to_create_shocking_ground_on_shock"]=5387, + ["chance_%_to_double_effect_of_removing_frenzy_charges"]=5388, + ["chance_%_to_drop_additional_awakened_sextant"]=5389, + ["chance_%_to_drop_additional_blessed_orb"]=5390, + ["chance_%_to_drop_additional_cartographers_chisel"]=5391, + ["chance_%_to_drop_additional_chaos_orb"]=5392, + ["chance_%_to_drop_additional_chromatic_orb"]=5393, + ["chance_%_to_drop_additional_cleansing_currency"]=5431, + ["chance_%_to_drop_additional_cleansing_influenced_item"]=5432, + ["chance_%_to_drop_additional_currency"]=5433, + ["chance_%_to_drop_additional_divination_cards"]=5434, + ["chance_%_to_drop_additional_divination_cards_corrupted"]=5435, + ["chance_%_to_drop_additional_divination_cards_currency"]=5436, + ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5437, + ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5438, + ["chance_%_to_drop_additional_divination_cards_currency_league"]=5439, + ["chance_%_to_drop_additional_divination_cards_gems"]=5440, + ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5441, + ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5442, + ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5443, + ["chance_%_to_drop_additional_divination_cards_map"]=5444, + ["chance_%_to_drop_additional_divination_cards_map_unique"]=5445, + ["chance_%_to_drop_additional_divination_cards_unique"]=5446, + ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5447, + ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5448, + ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5449, + ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5450, + ["chance_%_to_drop_additional_divine_orb"]=5394, + ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5395, + ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5396, + ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5397, + ["chance_%_to_drop_additional_enkindling_orb"]=5398, + ["chance_%_to_drop_additional_exalted_orb"]=5399, + ["chance_%_to_drop_additional_fusing_orb"]=5400, + ["chance_%_to_drop_additional_gem"]=5451, + ["chance_%_to_drop_additional_gemcutters_prism"]=5401, + ["chance_%_to_drop_additional_glassblowers_bauble"]=5402, + ["chance_%_to_drop_additional_grand_eldritch_ember"]=5403, + ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5404, + ["chance_%_to_drop_additional_greater_eldritch_ember"]=5405, + ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5406, + ["chance_%_to_drop_additional_instilling_orb"]=5407, + ["chance_%_to_drop_additional_jewellers_orb"]=5408, + ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5409, + ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5410, + ["chance_%_to_drop_additional_map_currency"]=5453, + ["chance_%_to_drop_additional_maps"]=5452, + ["chance_%_to_drop_additional_orb_of_alteration"]=5411, + ["chance_%_to_drop_additional_orb_of_annulment"]=5412, + ["chance_%_to_drop_additional_orb_of_binding"]=5413, + ["chance_%_to_drop_additional_orb_of_horizons"]=5414, + ["chance_%_to_drop_additional_orb_of_regret"]=5415, + ["chance_%_to_drop_additional_orb_of_scouring"]=5416, + ["chance_%_to_drop_additional_orb_of_unmaking"]=5417, + ["chance_%_to_drop_additional_regal_orb"]=5418, + ["chance_%_to_drop_additional_scarab"]=5454, + ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5455, + ["chance_%_to_drop_additional_scarab_abyss_polished"]=5456, + ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5457, + ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5458, + ["chance_%_to_drop_additional_scarab_beasts_polished"]=5459, + ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5460, + ["chance_%_to_drop_additional_scarab_blight_gilded"]=5461, + ["chance_%_to_drop_additional_scarab_blight_polished"]=5462, + ["chance_%_to_drop_additional_scarab_blight_rusted"]=5463, + ["chance_%_to_drop_additional_scarab_breach_gilded"]=5464, + ["chance_%_to_drop_additional_scarab_breach_polished"]=5465, + ["chance_%_to_drop_additional_scarab_breach_rusted"]=5466, + ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5467, + ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5468, + ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5469, + ["chance_%_to_drop_additional_scarab_elder_gilded"]=5470, + ["chance_%_to_drop_additional_scarab_elder_polished"]=5471, + ["chance_%_to_drop_additional_scarab_elder_rusted"]=5472, + ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5473, + ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5474, + ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5475, + ["chance_%_to_drop_additional_scarab_legion_gilded"]=5476, + ["chance_%_to_drop_additional_scarab_legion_polished"]=5477, + ["chance_%_to_drop_additional_scarab_legion_rusted"]=5478, + ["chance_%_to_drop_additional_scarab_maps_gilded"]=5479, + ["chance_%_to_drop_additional_scarab_maps_polished"]=5480, + ["chance_%_to_drop_additional_scarab_maps_rusted"]=5481, + ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5482, + ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5483, + ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5484, + ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5485, + ["chance_%_to_drop_additional_scarab_perandus_polished"]=5486, + ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5487, + ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5488, + ["chance_%_to_drop_additional_scarab_shaper_polished"]=5489, + ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5490, + ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5491, + ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5492, + ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5493, + ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5494, + ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5495, + ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5496, + ["chance_%_to_drop_additional_scarab_torment_gilded"]=5497, + ["chance_%_to_drop_additional_scarab_torment_polished"]=5498, + ["chance_%_to_drop_additional_scarab_torment_rusted"]=5499, + ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5500, + ["chance_%_to_drop_additional_scarab_uniques_polished"]=5501, + ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5502, + ["chance_%_to_drop_additional_tangled_currency"]=5503, + ["chance_%_to_drop_additional_tangled_influenced_item"]=5504, + ["chance_%_to_drop_additional_unique"]=5505, + ["chance_%_to_drop_additional_vaal_orb"]=5419, + ["chance_%_to_gain_archon_of_nature_on_overgrowing_plant"]=5420, + ["chance_%_to_gain_archon_of_undeath_on_using_command_skill"]=5421, + ["chance_%_to_gain_archon_of_undeath_when_you_create_an_offering"]=5422, + ["chance_%_to_gain_one_stone_skin_stack_on_immobilising"]=5423, + ["chance_for_double_items_from_heist_chests_%"]=5424, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5425, + ["chance_for_extra_damage_roll_with_lightning_damage_%"]=5426, + ["chance_for_plants_to_be_overgrown_%"]=5427, + ["chance_for_skills_to_avoid_cooldown_%"]=5428, + ["chance_for_spells_to_not_pay_costs_%"]=5429, ["chance_per_second_of_fire_spreading_between_enemies_%"]=1650, - ["chance_to_avoid_death_%"]=5505, + ["chance_to_avoid_death_%"]=5506, ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=3045, ["chance_to_be_frozen_%"]=2717, ["chance_to_be_frozen_shocked_ignited_%"]=2720, - ["chance_to_be_hindered_when_hit_by_spells_%"]=5506, + ["chance_to_be_hindered_when_hit_by_spells_%"]=5507, ["chance_to_be_ignited_%"]=2718, - ["chance_to_be_inflicted_with_an_ailment_+%"]=5507, - ["chance_to_be_maimed_when_hit_%"]=5508, + ["chance_to_be_inflicted_with_an_ailment_+%"]=5508, + ["chance_to_be_maimed_when_hit_%"]=5509, ["chance_to_be_poisoned_%"]=3098, - ["chance_to_be_sapped_when_hit_%"]=5509, - ["chance_to_be_scorched_when_hit_%"]=5510, + ["chance_to_be_sapped_when_hit_%"]=5510, + ["chance_to_be_scorched_when_hit_%"]=5511, ["chance_to_be_shocked_%"]=2719, - ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5511, - ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5512, - ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5513, - ["chance_to_block_attacks_%_while_channelling"]=5514, + ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5512, + ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5513, + ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5514, + ["chance_to_block_attacks_%_while_channelling"]=5515, ["chance_to_counter_strike_when_hit_%"]=2609, - ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5515, - ["chance_to_crush_on_hit_%"]=5516, + ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5516, + ["chance_to_crush_on_hit_%"]=5517, ["chance_to_curse_self_with_punishment_on_kill_%"]=2872, - ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5517, - ["chance_to_deal_double_damage_%"]=5520, - ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5521, - ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5522, - ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5523, - ["chance_to_deal_double_damage_%_per_4_rage"]=5524, - ["chance_to_deal_double_damage_%_per_500_strength"]=5525, - ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5518, - ["chance_to_deal_double_damage_%_while_focused"]=5526, - ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5527, - ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5519, - ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10651, - ["chance_to_deal_double_damage_while_on_full_life_%"]=5528, - ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5529, - ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5530, - ["chance_to_double_armour_effect_on_hit_%"]=5531, + ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5518, + ["chance_to_deal_double_damage_%"]=5521, + ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5522, + ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5523, + ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5524, + ["chance_to_deal_double_damage_%_per_4_rage"]=5525, + ["chance_to_deal_double_damage_%_per_500_strength"]=5526, + ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5519, + ["chance_to_deal_double_damage_%_while_focused"]=5527, + ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5528, + ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5520, + ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10667, + ["chance_to_deal_double_damage_while_on_full_life_%"]=5529, + ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5530, + ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5531, + ["chance_to_double_armour_effect_on_hit_%"]=5532, ["chance_to_double_stun_duration_%"]=3273, - ["chance_to_fire_1_additional_projectile_%_with_rollover"]=5532, - ["chance_to_fire_1_additional_projectile_%_with_rollover_with_bow_attacks"]=5533, - ["chance_to_fork_extra_projectile_%"]=5535, - ["chance_to_fork_extra_projectile_%_per_10_tribute"]=5534, + ["chance_to_fire_1_additional_projectile_%_with_rollover"]=5533, + ["chance_to_fire_1_additional_projectile_%_with_rollover_with_bow_attacks"]=5534, + ["chance_to_fork_extra_projectile_%"]=5536, + ["chance_to_fork_extra_projectile_%_per_10_tribute"]=5535, ["chance_to_fortify_on_melee_hit_+%"]=2038, - ["chance_to_fortify_on_melee_stun_%"]=5536, - ["chance_to_gain_1_more_charge_%"]=5538, - ["chance_to_gain_1_more_charge_%_per_10_tribute"]=5537, - ["chance_to_gain_1_more_endurance_charge_%"]=5539, - ["chance_to_gain_1_more_frenzy_charge_%"]=5540, - ["chance_to_gain_1_more_power_charge_%"]=5541, - ["chance_to_gain_1_more_random_charge_%"]=5542, - ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5543, - ["chance_to_gain_3_additional_exerted_attacks_%"]=5544, - ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5545, - ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5546, + ["chance_to_fortify_on_melee_stun_%"]=5537, + ["chance_to_gain_1_more_charge_%"]=5539, + ["chance_to_gain_1_more_charge_%_per_10_tribute"]=5538, + ["chance_to_gain_1_more_endurance_charge_%"]=5540, + ["chance_to_gain_1_more_frenzy_charge_%"]=5541, + ["chance_to_gain_1_more_power_charge_%"]=5542, + ["chance_to_gain_1_more_random_charge_%"]=5543, + ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5544, + ["chance_to_gain_3_additional_exerted_attacks_%"]=5545, + ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5546, + ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5547, ["chance_to_gain_endurance_charge_on_block_%"]=1887, ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1601, ["chance_to_gain_endurance_charge_on_crit_%"]=1598, - ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5547, + ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5548, ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1599, ["chance_to_gain_endurance_charge_when_hit_%"]=2537, - ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5548, - ["chance_to_gain_frenzy_charge_on_block_%"]=5550, - ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5549, + ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5549, + ["chance_to_gain_frenzy_charge_on_block_%"]=5551, + ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5550, ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1602, - ["chance_to_gain_frenzy_charge_on_stun_%"]=5551, + ["chance_to_gain_frenzy_charge_on_stun_%"]=5552, ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=4038, - ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5552, - ["chance_to_gain_onslaught_on_flask_use_%"]=5553, - ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5554, + ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5553, + ["chance_to_gain_onslaught_on_flask_use_%"]=5554, + ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5555, ["chance_to_gain_onslaught_on_kill_%"]=2754, - ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5555, + ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5556, ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3105, - ["chance_to_gain_onslaught_on_kill_with_axes_%"]=5556, - ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5557, + ["chance_to_gain_onslaught_on_kill_with_axes_%"]=5557, + ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5558, ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1603, ["chance_to_gain_power_charge_on_melee_stun_%"]=2554, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5558, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5559, ["chance_to_gain_power_charge_on_stun_%"]=2555, ["chance_to_gain_power_charge_when_block_%"]=1891, ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2548, - ["chance_to_gain_random_standard_charge_on_hit_%"]=5559, - ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5560, + ["chance_to_gain_random_standard_charge_on_hit_%"]=5560, + ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5561, ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2861, ["chance_to_gain_vaal_soul_on_kill_%"]=2856, - ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5561, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=5562, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5563, + ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5562, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=5563, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5564, ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3107, - ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5564, - ["chance_to_grant_power_charge_to_nearby_allies_on_hit_%"]=5565, + ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5565, + ["chance_to_grant_power_charge_to_nearby_allies_on_hit_%"]=5566, ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3108, - ["chance_to_ignite_is_doubled"]=5566, - ["chance_to_ignore_hexproof_%"]=5567, - ["chance_to_inflict_10_incision_on_attack_hit_%"]=5568, - ["chance_to_inflict_additional_impale_%"]=5569, - ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5570, - ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5571, - ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5572, + ["chance_to_ignite_is_doubled"]=5567, + ["chance_to_ignore_hexproof_%"]=5568, + ["chance_to_inflict_10_incision_on_attack_hit_%"]=5569, + ["chance_to_inflict_additional_impale_%"]=5570, + ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5571, + ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5572, + ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5573, ["chance_to_inflict_frostburn_%"]=1795, - ["chance_to_inflict_incision_on_attack_hit_%"]=5573, - ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5574, - ["chance_to_inflict_sap_on_enemy_on_block_%"]=5575, + ["chance_to_inflict_incision_on_attack_hit_%"]=5574, + ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5575, + ["chance_to_inflict_sap_on_enemy_on_block_%"]=5576, ["chance_to_inflict_sapped_%"]=1797, - ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5576, - ["chance_to_inflict_wither_%_against_enemies_with_abyssal_wasting"]=5577, - ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5578, - ["chance_to_intimidate_on_hit_%"]=5579, - ["chance_to_leave_2_ground_blades_%"]=5580, - ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=5581, - ["chance_to_not_consume_glory_%"]=5583, - ["chance_to_not_consume_infusion_%"]=5584, - ["chance_to_not_consume_infusion_%_if_lost_archon_in_past_6_seconds"]=5585, - ["chance_to_not_consume_instilling_%"]=5586, + ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5577, + ["chance_to_inflict_wither_%_against_enemies_with_abyssal_wasting"]=5578, + ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5579, + ["chance_to_intimidate_on_hit_%"]=5580, + ["chance_to_leave_2_ground_blades_%"]=5581, + ["chance_to_load_a_bolt_on_killing_an_enemy_%"]=5582, + ["chance_to_not_consume_glory_%"]=5584, + ["chance_to_not_consume_infusion_%"]=5585, + ["chance_to_not_consume_infusion_%_if_lost_archon_in_past_6_seconds"]=5586, + ["chance_to_not_consume_instilling_%"]=5587, ["chance_to_place_an_additional_mine_%"]=3257, ["chance_to_poison_%_vs_cursed_enemies"]=3885, ["chance_to_poison_on_critical_strike_with_bow_%"]=1375, ["chance_to_poison_on_critical_strike_with_dagger_%"]=1376, - ["chance_to_poison_on_hit_%_per_power_charge"]=5589, - ["chance_to_poison_on_hit_+%_vs_non_poisoned_enemies"]=5587, - ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=5588, + ["chance_to_poison_on_hit_%_per_power_charge"]=5590, + ["chance_to_poison_on_hit_+%_vs_non_poisoned_enemies"]=5588, + ["chance_to_poison_on_hit_can_apply_multiple_stacks"]=5589, ["chance_to_poison_on_hit_with_attacks_%"]=2926, ["chance_to_poison_on_melee_hit_%"]=3930, - ["chance_to_retain_40%_of_glory_on_use_%"]=5590, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5591, + ["chance_to_retain_40%_of_glory_on_use_%"]=5591, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5592, ["chance_to_scorch_%"]=1793, ["chance_to_shock_%_while_using_flask"]=2695, - ["chance_to_shock_chilled_enemies_%"]=5592, - ["chance_to_start_energy_shield_recharge_%_on_gaining_infusion"]=5593, - ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5594, - ["chance_to_summon_two_totems_%"]=5595, + ["chance_to_shock_chilled_enemies_%"]=5593, + ["chance_to_start_energy_shield_recharge_%_on_gaining_infusion"]=5594, + ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5595, + ["chance_to_summon_two_totems_%"]=5596, ["chance_to_taunt_on_hit_%"]=3151, - ["chance_to_throw_4_additional_traps_%"]=5596, + ["chance_to_throw_4_additional_traps_%"]=5597, ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=573, ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=426, - ["chance_to_unnerve_on_hit_%"]=5597, - ["channelled_skill_damage_+%"]=5598, - ["channelled_skill_damage_+%_per_10_devotion"]=5599, + ["chance_to_unnerve_on_hit_%"]=5598, + ["channelled_skill_damage_+%"]=5599, + ["channelled_skill_damage_+%_per_10_devotion"]=5600, ["chaos_critical_strike_chance_+%"]=1405, ["chaos_critical_strike_multiplier_+"]=1427, - ["chaos_damage_%_taken_from_mana_before_life"]=5606, + ["chaos_damage_%_taken_from_mana_before_life"]=5607, ["chaos_damage_+%"]=900, - ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5607, + ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5608, ["chaos_damage_+%_per_equipped_corrupted_item"]=2851, ["chaos_damage_+%_per_level"]=2745, - ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5608, - ["chaos_damage_+%_while_affected_by_herald_of_plague"]=5600, + ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5609, + ["chaos_damage_+%_while_affected_by_herald_of_plague"]=5601, ["chaos_damage_can_chill"]=2645, ["chaos_damage_can_freeze"]=2646, ["chaos_damage_can_ignite_chill_and_shock"]=2670, ["chaos_damage_can_shock"]=2647, ["chaos_damage_cannot_poison"]=2671, - ["chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life"]=5601, + ["chaos_damage_does_not_damage_energy_shield_extra_hard_while_not_low_life"]=5602, ["chaos_damage_does_not_damage_minions_energy_shield_extra_hard"]=4088, ["chaos_damage_from_hits_%_taken_as_random_element"]=2260, ["chaos_damage_over_time_+%"]=1195, - ["chaos_damage_over_time_+%_per_volatility"]=5602, - ["chaos_damage_over_time_heals_while_leeching_life"]=5603, - ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5604, + ["chaos_damage_over_time_+%_per_volatility"]=5603, + ["chaos_damage_over_time_heals_while_leeching_life"]=5604, + ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5605, ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1228, ["chaos_damage_over_time_multiplier_+_with_attacks"]=1230, - ["chaos_damage_resistance_%_per_endurance_charge"]=5609, - ["chaos_damage_resistance_%_per_poison_stack"]=5611, + ["chaos_damage_resistance_%_per_endurance_charge"]=5610, + ["chaos_damage_resistance_%_per_poison_stack"]=5612, ["chaos_damage_resistance_%_when_on_low_life"]=1049, - ["chaos_damage_resistance_%_when_stationary"]=5612, - ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5613, - ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5614, - ["chaos_damage_resistance_is_doubled"]=5610, - ["chaos_damage_resisted_by_lowest_resistance"]=5615, + ["chaos_damage_resistance_%_when_stationary"]=5613, + ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5614, + ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5615, + ["chaos_damage_resistance_is_doubled"]=5611, + ["chaos_damage_resisted_by_lowest_resistance"]=5616, ["chaos_damage_taken_+"]=2619, ["chaos_damage_taken_+%"]=1992, ["chaos_damage_taken_over_time_+%"]=1719, - ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5616, + ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5617, ["chaos_damage_to_return_to_melee_attacker"]=1962, ["chaos_damage_to_return_when_hit"]=1967, - ["chaos_damage_with_attack_skills_+%"]=5617, - ["chaos_damage_with_spell_skills_+%"]=5618, + ["chaos_damage_with_attack_skills_+%"]=5618, + ["chaos_damage_with_spell_skills_+%"]=5619, ["chaos_dot_multiplier_+"]=1229, ["chaos_golem_damage_+%"]=3399, ["chaos_golem_elemental_resistances_%"]=3674, - ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5619, + ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5620, ["chaos_hit_and_dot_damage_%_taken_as_fire"]=2258, ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=2259, ["chaos_immunity"]=1932, ["chaos_inoculation_keystone_energy_shield_+%_final"]=1951, - ["chaos_resist_unnaffected_by_area_penalites"]=5620, + ["chaos_resist_unnaffected_by_area_penalites"]=5621, ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3748, ["chaos_resistance_+_while_using_flask"]=3032, - ["chaos_skill_chance_to_hinder_on_hit_%"]=5621, + ["chaos_skill_chance_to_hinder_on_hit_%"]=5622, ["chaos_skill_effect_duration_+%"]=1670, ["chaos_skill_gem_level_+"]=988, - ["chaos_skills_area_of_effect_+%"]=5622, + ["chaos_skills_area_of_effect_+%"]=5623, ["chaos_spell_skill_gem_level_+"]=989, ["chaos_weakness_ignores_hexproof"]=2404, ["chaos_weakness_mana_reservation_+%"]=3726, ["charge_duration_+%"]=2785, - ["charge_skip_consume_chance_%"]=5623, + ["charge_skip_consume_chance_%"]=5624, ["charged_attack_damage_+%"]=3818, ["charged_attack_damage_per_stack_+%_final"]=3827, ["charged_attack_radius_+%"]=3825, ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3545, ["charged_dash_damage_+%"]=3434, - ["charged_dash_movement_speed_+%_final"]=5624, + ["charged_dash_movement_speed_+%_final"]=5625, ["charges_gained_+%"]=1072, - ["charm_charges_gained_+%"]=5625, + ["charm_charges_gained_+%"]=5626, ["charm_charges_used_%_granted_to_life_flasks"]=927, - ["charm_charges_used_+%"]=5626, - ["charm_create_consecrated_ground_when_used"]=5627, - ["charm_defend_with_double_armour_during_effect"]=5628, + ["charm_charges_used_+%"]=5627, + ["charm_create_consecrated_ground_when_used"]=5628, + ["charm_defend_with_double_armour_during_effect"]=5629, ["charm_duration_+%"]=924, - ["charm_duration_+%_per_25_tribute"]=5629, - ["charm_effect_+%"]=5632, - ["charm_effect_+%_per_10_tribute"]=5630, - ["charm_effect_+%_per_empty_charm_slot"]=5631, - ["charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect"]=5633, - ["charm_energy_shield_recharge_starts_when_used"]=5634, + ["charm_duration_+%_per_25_tribute"]=5630, + ["charm_effect_+%"]=5633, + ["charm_effect_+%_per_10_tribute"]=5631, + ["charm_effect_+%_per_empty_charm_slot"]=5632, + ["charm_enemies_extra_damage_rolls_with_lightning_damage_during_effect"]=5634, + ["charm_energy_shield_recharge_starts_when_used"]=5635, ["charm_gain_X_guard_for_duration"]=949, - ["charm_gain_onslaught_during_effect"]=5635, - ["charm_grants_frenzy_charge_when_used"]=5636, - ["charm_grants_power_charge_when_used"]=5637, - ["charm_grants_up_to_your_maximum_rage_when_used"]=5638, - ["charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used"]=5639, - ["charm_possesed_by_bear_spirit_for_x_seconds_when_used"]=5640, - ["charm_possesed_by_boar_spirit_for_x_seconds_when_used"]=5641, - ["charm_possesed_by_cat_spirit_for_x_seconds_when_used"]=5642, - ["charm_possesed_by_owl_spirit_for_x_seconds_when_used"]=5643, - ["charm_possesed_by_ox_spirit_for_x_seconds_when_used"]=5644, - ["charm_possesed_by_primate_spirit_for_x_seconds_when_used"]=5645, - ["charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used"]=5646, - ["charm_possesed_by_serpent_spirit_for_x_seconds_when_used"]=5647, - ["charm_possesed_by_stag_spirit_for_x_seconds_when_used"]=5648, - ["charm_possesed_by_wolf_spirit_for_x_seconds_when_used"]=5649, + ["charm_gain_onslaught_during_effect"]=5636, + ["charm_grants_frenzy_charge_when_used"]=5637, + ["charm_grants_power_charge_when_used"]=5638, + ["charm_grants_up_to_your_maximum_rage_when_used"]=5639, + ["charm_ignite_ground_as_though_dealing_fire_damage_equal_to_x%_of_your_maximum_life_when_used"]=5640, + ["charm_possesed_by_bear_spirit_for_x_seconds_when_used"]=5641, + ["charm_possesed_by_boar_spirit_for_x_seconds_when_used"]=5642, + ["charm_possesed_by_cat_spirit_for_x_seconds_when_used"]=5643, + ["charm_possesed_by_owl_spirit_for_x_seconds_when_used"]=5644, + ["charm_possesed_by_ox_spirit_for_x_seconds_when_used"]=5645, + ["charm_possesed_by_primate_spirit_for_x_seconds_when_used"]=5646, + ["charm_possesed_by_random_azmerian_spirit_for_x_seconds_when_used"]=5647, + ["charm_possesed_by_serpent_spirit_for_x_seconds_when_used"]=5648, + ["charm_possesed_by_stag_spirit_for_x_seconds_when_used"]=5649, + ["charm_possesed_by_wolf_spirit_for_x_seconds_when_used"]=5650, ["charm_recover_X_life_when_used"]=950, ["charm_recover_X_mana_when_used"]=951, - ["charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount"]=5650, - ["charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount"]=5651, - ["charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect"]=5652, - ["charms_%_chance_on_use_to_use_another_charm_without_consuming_charges"]=5653, - ["charms_%_chance_to_not_consume_charges"]=5654, - ["charms_use_no_charges"]=5655, - ["chest_drop_additional_corrupted_item_divination_cards"]=5656, - ["chest_drop_additional_currency_item_divination_cards"]=5657, - ["chest_drop_additional_divination_cards_from_current_world_area"]=5658, - ["chest_drop_additional_divination_cards_from_same_set"]=5659, - ["chest_drop_additional_unique_item_divination_cards"]=5660, + ["charm_recover_life_equal_to_x%_of_mana_flask_recovery_amount"]=5651, + ["charm_recover_mana_equal_to_x%_of_life_flask_recovery_amount"]=5652, + ["charm_x%_of_chaos_damage_from_hits_prevented_recouped_as_life_and_mana_during_effect"]=5653, + ["charms_%_chance_on_use_to_use_another_charm_without_consuming_charges"]=5654, + ["charms_%_chance_to_not_consume_charges"]=5655, + ["charms_use_no_charges"]=5656, + ["chest_drop_additional_corrupted_item_divination_cards"]=5657, + ["chest_drop_additional_currency_item_divination_cards"]=5658, + ["chest_drop_additional_divination_cards_from_current_world_area"]=5659, + ["chest_drop_additional_divination_cards_from_same_set"]=5660, + ["chest_drop_additional_unique_item_divination_cards"]=5661, ["chest_item_quantity_+%"]=1487, ["chest_item_rarity_+%"]=1492, - ["chest_number_of_additional_pirate_uniques_to_drop"]=5661, + ["chest_number_of_additional_pirate_uniques_to_drop"]=5662, ["chest_trap_defuse_%"]=1677, ["chieftain_burning_damage_+%_final"]=1794, - ["chill_and_freeze_duration_+%"]=5662, + ["chill_and_freeze_duration_+%"]=5663, ["chill_and_freeze_duration_based_on_%_energy_shield"]=2396, - ["chill_attackers_for_4_seconds_on_block_%_chance"]=5663, - ["chill_chance_based_on_damage_fixed_magnitude"]=5664, + ["chill_attackers_for_4_seconds_on_block_%_chance"]=5664, + ["chill_chance_based_on_damage_fixed_magnitude"]=5665, ["chill_duration_+%"]=1636, - ["chill_effect_+%"]=5667, - ["chill_effect_+%_while_mana_leeching"]=5665, - ["chill_effect_+%_with_critical_strikes"]=5668, - ["chill_effect_is_reversed"]=5666, + ["chill_effect_+%"]=5668, + ["chill_effect_+%_while_mana_leeching"]=5666, + ["chill_effect_+%_with_critical_strikes"]=5669, + ["chill_effect_is_reversed"]=5667, ["chill_effectiveness_on_self_+%"]=1519, ["chill_enemy_when_hit_duration_ms"]=2891, - ["chill_ground_as_though_dealing_X_damage_on_using_a_wind_skill"]=5669, + ["chill_ground_as_though_dealing_X_damage_on_using_a_wind_skill"]=5670, ["chill_minimum_slow_%"]=4123, - ["chill_minimum_slow_%_from_mastery"]=5670, - ["chill_nearby_enemies_when_you_focus"]=5671, + ["chill_minimum_slow_%_from_mastery"]=5671, + ["chill_nearby_enemies_when_you_focus"]=5672, ["chill_prevention_ms_when_chilled"]=2675, - ["chilled_effect_on_self_+%_while_shapeshifted"]=5672, - ["chilled_enemies_have_no_elemental_resistance"]=5673, + ["chilled_effect_on_self_+%_while_shapeshifted"]=5673, + ["chilled_enemies_have_no_elemental_resistance"]=5674, ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3129, - ["chilled_ground_when_hit_with_attack_%"]=5674, + ["chilled_ground_when_hit_with_attack_%"]=5675, ["chilled_monsters_take_+%_burning_damage"]=2551, - ["chilling_areas_also_grant_curse_effect_+%"]=5675, - ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5676, - ["chills_from_your_hits_cause_shattering"]=5677, - ["chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds"]=5678, - ["chronomancer_reserves_no_mana"]=5679, + ["chilling_areas_also_grant_curse_effect_+%"]=5676, + ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5677, + ["chills_from_your_hits_cause_shattering"]=5678, + ["chronomancer_every_10_seconds_+%_final_cast_speed_for_5_seconds"]=5679, + ["chronomancer_reserves_no_mana"]=5680, ["clarity_mana_reservation_+%"]=3714, - ["clarity_mana_reservation_efficiency_+%"]=5681, - ["clarity_mana_reservation_efficiency_-2%_per_1"]=5680, - ["clarity_reserves_no_mana"]=5682, + ["clarity_mana_reservation_efficiency_+%"]=5682, + ["clarity_mana_reservation_efficiency_-2%_per_1"]=5681, + ["clarity_reserves_no_mana"]=5683, ["claw_accuracy_rating"]=1774, ["claw_accuracy_rating_+%"]=1362, ["claw_attack_speed_+%"]=1345, ["claw_critical_strike_chance_+%"]=1386, ["claw_critical_strike_multiplier_+"]=1415, ["claw_damage_+%"]=1265, - ["claw_damage_+%_while_on_low_life"]=5684, - ["claw_damage_against_enemies_on_low_life_+%"]=5683, + ["claw_damage_+%_while_on_low_life"]=5685, + ["claw_damage_against_enemies_on_low_life_+%"]=5684, ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2721, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5686, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5687, ["cleave_attack_speed_+%"]=3546, ["cleave_damage_+%"]=3331, - ["cleave_fortify_on_hit"]=5685, + ["cleave_fortify_on_hit"]=5686, ["cleave_radius_+%"]=3500, - ["close_range_enemies_avoid_your_projectiles"]=9215, + ["close_range_enemies_avoid_your_projectiles"]=9220, ["cluster_burst_spawn_amount"]=3790, - ["cobra_lash_damage_+%"]=5687, - ["cobra_lash_number_of_additional_chains"]=5688, - ["cobra_lash_projectile_speed_+%"]=5689, - ["coil_of_undoing_curse_magnitude_+%_final"]=5690, - ["cold_ailment_duration_+%"]=5691, - ["cold_ailment_effect_+%"]=5693, - ["cold_ailment_effect_+%_against_shocked_enemies"]=5692, - ["cold_and_chaos_damage_resistance_%"]=5694, + ["cobra_lash_damage_+%"]=5688, + ["cobra_lash_number_of_additional_chains"]=5689, + ["cobra_lash_projectile_speed_+%"]=5690, + ["coil_of_undoing_curse_magnitude_+%_final"]=5691, + ["cold_ailment_duration_+%"]=5692, + ["cold_ailment_effect_+%"]=5694, + ["cold_ailment_effect_+%_against_shocked_enemies"]=5693, + ["cold_and_chaos_damage_resistance_%"]=5695, ["cold_and_lightning_damage_resistance_%"]=1045, ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=2249, ["cold_and_lightning_resist_+_per_equipped_item_with_a_fire_resistance_mod"]=1046, @@ -238321,362 +238598,362 @@ return { ["cold_critical_strike_multiplier_+"]=1425, ["cold_dagger_damage_+%"]=1272, ["cold_damage_+%"]=898, - ["cold_damage_+%_cold_infusion_collected_last_8_seconds"]=5695, - ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5699, + ["cold_damage_+%_cold_infusion_collected_last_8_seconds"]=5696, + ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5700, ["cold_damage_+%_per_1%_block_chance"]=3292, - ["cold_damage_+%_per_25_dexterity"]=5700, - ["cold_damage_+%_per_25_intelligence"]=5701, - ["cold_damage_+%_per_25_strength"]=5702, - ["cold_damage_+%_per_cold_resistance_above_75"]=5698, - ["cold_damage_+%_per_frenzy_charge"]=5703, - ["cold_damage_+%_per_missing_cold_resistance"]=5704, - ["cold_damage_+%_per_rage"]=5696, - ["cold_damage_+%_while_affected_by_hatred"]=5705, - ["cold_damage_+%_while_affected_by_herald_of_ice"]=5706, - ["cold_damage_+%_while_ignited"]=5697, - ["cold_damage_+%_while_off_hand_is_empty"]=5707, + ["cold_damage_+%_per_25_dexterity"]=5701, + ["cold_damage_+%_per_25_intelligence"]=5702, + ["cold_damage_+%_per_25_strength"]=5703, + ["cold_damage_+%_per_cold_resistance_above_75"]=5699, + ["cold_damage_+%_per_frenzy_charge"]=5704, + ["cold_damage_+%_per_missing_cold_resistance"]=5705, + ["cold_damage_+%_per_rage"]=5697, + ["cold_damage_+%_while_affected_by_hatred"]=5706, + ["cold_damage_+%_while_affected_by_herald_of_ice"]=5707, + ["cold_damage_+%_while_ignited"]=5698, + ["cold_damage_+%_while_off_hand_is_empty"]=5708, ["cold_damage_can_ignite"]=2648, ["cold_damage_can_shock"]=2649, ["cold_damage_cannot_chill"]=2669, ["cold_damage_cannot_freeze"]=2668, ["cold_damage_over_time_+%"]=1194, ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1225, - ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5708, + ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5709, ["cold_damage_resistance_+%"]=1513, ["cold_damage_resistance_is_%"]=1511, ["cold_damage_taken_%_as_fire"]=2254, ["cold_damage_taken_%_as_lightning"]=2256, - ["cold_damage_taken_+"]=5710, + ["cold_damage_taken_+"]=5711, ["cold_damage_taken_+%"]=3113, - ["cold_damage_taken_+%_if_have_been_hit_recently"]=5711, - ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5709, + ["cold_damage_taken_+%_if_have_been_hit_recently"]=5712, + ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5710, ["cold_damage_to_return_to_melee_attacker"]=1959, ["cold_damage_to_return_when_hit"]=1965, ["cold_damage_while_dual_wielding_+%"]=1244, - ["cold_damage_with_attack_skills_+%"]=5712, - ["cold_damage_with_spell_skills_+%"]=5713, + ["cold_damage_with_attack_skills_+%"]=5713, + ["cold_damage_with_spell_skills_+%"]=5714, ["cold_dot_multiplier_+"]=1226, - ["cold_exposure_effect_+%"]=5714, - ["cold_exposure_on_hit_magnitude"]=5715, - ["cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%"]=5716, + ["cold_exposure_effect_+%"]=5715, + ["cold_exposure_on_hit_magnitude"]=5716, + ["cold_exposure_you_inflict_lowers_cold_resistance_by_extra_%"]=5717, ["cold_hit_and_dot_damage_%_taken_as_fire"]=2255, ["cold_hit_and_dot_damage_%_taken_as_lightning"]=2257, - ["cold_hit_damage_+%_vs_shocked_enemies"]=5717, + ["cold_hit_damage_+%_vs_shocked_enemies"]=5718, ["cold_mace_damage_+%"]=1276, - ["cold_penetration_%_vs_chilled_enemies"]=5718, - ["cold_projectile_mine_critical_multiplier_+"]=5719, - ["cold_projectile_mine_damage_+%"]=5720, - ["cold_projectile_mine_throwing_speed_+%"]=5722, - ["cold_projectile_mine_throwing_speed_negated_+%"]=5721, - ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5723, - ["cold_resist_unaffected_by_area_penalties"]=5724, - ["cold_skill_chance_to_inflict_cold_exposure_%"]=5725, + ["cold_penetration_%_vs_chilled_enemies"]=5719, + ["cold_projectile_mine_critical_multiplier_+"]=5720, + ["cold_projectile_mine_damage_+%"]=5721, + ["cold_projectile_mine_throwing_speed_+%"]=5723, + ["cold_projectile_mine_throwing_speed_negated_+%"]=5722, + ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5724, + ["cold_resist_unaffected_by_area_penalties"]=5725, + ["cold_skill_chance_to_inflict_cold_exposure_%"]=5726, ["cold_skill_gem_level_+"]=984, - ["cold_skills_chance_to_poison_on_hit_%"]=5726, + ["cold_skills_chance_to_poison_on_hit_%"]=5727, ["cold_snap_cooldown_speed_+%"]=3570, ["cold_snap_damage_+%"]=3405, ["cold_snap_gain_power_charge_on_kill_%"]=2996, ["cold_snap_radius_+%"]=3527, - ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5727, + ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5728, ["cold_spell_skill_gem_level_+"]=985, ["cold_staff_damage_+%"]=1264, ["cold_sword_damage_+%"]=1285, ["cold_wand_damage_+%"]=1289, ["cold_weakness_ignores_hexproof"]=2405, - ["combo_falloff_speed_+%"]=5728, - ["combo_finisher_damage_+%_up_to_40%"]=5729, - ["combust_area_of_effect_+%"]=5730, - ["combust_is_disabled"]=5731, - ["companion_%_damage_as_chaos"]=5732, - ["companion_%_damage_as_cold"]=5733, - ["companion_accuracy_rating_+%"]=5734, - ["companion_area_of_effect_+%"]=5735, - ["companion_attack_speed_+%"]=5736, - ["companion_chance_to_poison_on_hit_%"]=5737, - ["companion_chaos_resistance_%"]=5738, - ["companion_damage_+%"]=5742, - ["companion_damage_+%_final_from_idol_per_different_dead_companion"]=5739, - ["companion_damage_+%_per_socketed_idol"]=5743, - ["companion_damage_+%_vs_immobilised_enemies"]=5740, - ["companion_damage_increases_and_reductions_also_affects_you"]=5741, - ["companion_elemental_resistance_%"]=5744, - ["companion_maim_on_hit_%"]=5745, - ["companion_maximum_life_+%"]=5746, - ["companion_movement_speed_%"]=5747, - ["companion_onslaught_on_kill_%"]=5748, - ["companion_reservation_+%"]=5749, - ["companion_takes_%_damage_before_you"]=5750, - ["companion_takes_%_damage_before_you_from_support"]=5751, - ["companion_takes_%_damage_from_deflected_hits_before_you"]=5752, - ["companions_gain_onslaught_on_hitting_enemies_marked_by_you_ms"]=5753, - ["companions_gain_your_dexterity"]=5754, - ["companions_gain_your_strength"]=5755, - ["companions_in_presence_base_chaos_damage_resistance_%"]=5756, - ["companions_in_presence_base_resist_all_elements_%"]=5757, - ["companions_in_presence_damage_+%_while_you_are_shapeshifted"]=5758, - ["companions_in_presence_gain_x_rage_on_hit"]=5759, - ["companions_in_presence_have_onslaught_while_you_are_shapeshifted"]=5760, - ["companions_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=5761, - ["companions_in_presence_non_skill_base_all_damage_%_to_gain_as_random_element"]=5762, + ["combo_falloff_speed_+%"]=5729, + ["combo_finisher_damage_+%_up_to_40%"]=5730, + ["combust_area_of_effect_+%"]=5731, + ["combust_is_disabled"]=5732, + ["companion_%_damage_as_chaos"]=5733, + ["companion_%_damage_as_cold"]=5734, + ["companion_accuracy_rating_+%"]=5735, + ["companion_area_of_effect_+%"]=5736, + ["companion_attack_speed_+%"]=5737, + ["companion_chance_to_poison_on_hit_%"]=5738, + ["companion_chaos_resistance_%"]=5739, + ["companion_damage_+%"]=5743, + ["companion_damage_+%_final_from_idol_per_different_dead_companion"]=5740, + ["companion_damage_+%_per_socketed_idol"]=5744, + ["companion_damage_+%_vs_immobilised_enemies"]=5741, + ["companion_damage_increases_and_reductions_also_affects_you"]=5742, + ["companion_elemental_resistance_%"]=5745, + ["companion_maim_on_hit_%"]=5746, + ["companion_maximum_life_+%"]=5747, + ["companion_movement_speed_%"]=5748, + ["companion_onslaught_on_kill_%"]=5749, + ["companion_reservation_+%"]=5750, + ["companion_takes_%_damage_before_you"]=5751, + ["companion_takes_%_damage_before_you_from_support"]=5752, + ["companion_takes_%_damage_from_deflected_hits_before_you"]=5753, + ["companions_gain_onslaught_on_hitting_enemies_marked_by_you_ms"]=5754, + ["companions_gain_your_dexterity"]=5755, + ["companions_gain_your_strength"]=5756, + ["companions_in_presence_base_chaos_damage_resistance_%"]=5757, + ["companions_in_presence_base_resist_all_elements_%"]=5758, + ["companions_in_presence_damage_+%_while_you_are_shapeshifted"]=5759, + ["companions_in_presence_gain_x_rage_on_hit"]=5760, + ["companions_in_presence_have_onslaught_while_you_are_shapeshifted"]=5761, + ["companions_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=5762, + ["companions_in_presence_non_skill_base_all_damage_%_to_gain_as_random_element"]=5763, ["companions_you_control_gain_damage_+%_against_enemies_marked_by_you"]=1748, ["conductivity_curse_effect_+%"]=3692, ["conductivity_duration_+%"]=3609, ["conductivity_mana_reservation_+%"]=3727, - ["conductivity_no_reservation"]=5763, - ["connected_notables_grant_armour_display"]=5764, + ["conductivity_no_reservation"]=5764, + ["connected_notables_grant_armour_display"]=5765, ["consecrate_ground_for_3_seconds_when_hit_%"]=3262, ["consecrate_ground_on_kill_%_for_3_seconds"]=3130, ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3805, ["consecrate_on_block_%_chance_to_create"]=2379, ["consecrate_on_crit_%_chance_to_create"]=2437, - ["consecrated_ground_additional_physical_damage_reduction_%"]=5765, - ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5766, - ["consecrated_ground_area_+%"]=5767, - ["consecrated_ground_effect_+%"]=5768, - ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5773, - ["consecrated_ground_enemy_damage_taken_+%"]=5769, - ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5770, - ["consecrated_ground_immune_to_curses"]=5771, - ["consecrated_ground_immune_to_status_ailments"]=5772, - ["consecrated_ground_on_death"]=5774, - ["consecrated_ground_on_hit"]=5775, - ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5776, - ["consecrated_ground_while_stationary_radius"]=5777, - ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5778, - ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5779, - ["consecrated_path_area_of_effect_+%"]=5780, - ["consecrated_path_damage_+%"]=5781, - ["consume_%_of_maximum_life_flask_charges_on_bow_attack"]=5785, - ["consume_X_life_instead_of_last_crossbow_bolt"]=5782, - ["consume_enemy_freeze_to_guarantee_crit"]=5783, - ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5784, - ["consume_rage_when_reverting_to_recover_x%_maximum_life_per_rage"]=5786, + ["consecrated_ground_additional_physical_damage_reduction_%"]=5766, + ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5767, + ["consecrated_ground_area_+%"]=5768, + ["consecrated_ground_effect_+%"]=5769, + ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5774, + ["consecrated_ground_enemy_damage_taken_+%"]=5770, + ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5771, + ["consecrated_ground_immune_to_curses"]=5772, + ["consecrated_ground_immune_to_status_ailments"]=5773, + ["consecrated_ground_on_death"]=5775, + ["consecrated_ground_on_hit"]=5776, + ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5777, + ["consecrated_ground_while_stationary_radius"]=5778, + ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5779, + ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5780, + ["consecrated_path_area_of_effect_+%"]=5781, + ["consecrated_path_damage_+%"]=5782, + ["consume_%_of_maximum_life_flask_charges_on_bow_attack"]=5786, + ["consume_X_life_instead_of_last_crossbow_bolt"]=5783, + ["consume_enemy_freeze_to_guarantee_crit"]=5784, + ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5785, + ["consume_rage_when_reverting_to_recover_x%_maximum_life_per_rage"]=5787, ["contagion_damage_+%"]=3430, ["contagion_duration_+%"]=3613, ["contagion_radius_+%"]=3533, - ["contagion_spread_on_hit_affected_enemy_%"]=5787, - ["conversation_trap_converted_enemy_damage_+%"]=5788, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5789, + ["contagion_spread_on_hit_affected_enemy_%"]=5788, + ["conversation_trap_converted_enemy_damage_+%"]=5789, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5790, ["conversion_trap_cooldown_speed_+%"]=3583, - ["convert_100%_energy_shield_to_divinity"]=5790, - ["convert_all_life_leech_to_energy_shield_leech"]=5791, + ["convert_100%_energy_shield_to_divinity"]=5791, + ["convert_all_life_leech_to_energy_shield_leech"]=5792, ["converted_enemies_damage_+%"]=3425, - ["converts_all_armour_to_evasion_rating"]=10694, + ["converts_all_armour_to_evasion_rating"]=10711, ["convocation_buff_effect_+%"]=3704, ["convocation_cooldown_speed_+%"]=3571, - ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5792, - ["cooldown_recovery_+%_per_power_charge"]=5793, - ["cooldown_speed_+%_per_brand_up_to_40%"]=5794, - ["corpse_erruption_base_maximum_number_of_geyers"]=5795, - ["corpse_eruption_cast_speed_+%"]=5796, - ["corpse_eruption_damage_+%"]=5797, - ["corpse_warp_cast_speed_+%"]=5798, - ["corpse_warp_damage_+%"]=5799, - ["corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=5800, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5801, + ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5793, + ["cooldown_recovery_+%_per_power_charge"]=5794, + ["cooldown_speed_+%_per_brand_up_to_40%"]=5795, + ["corpse_erruption_base_maximum_number_of_geyers"]=5796, + ["corpse_eruption_cast_speed_+%"]=5797, + ["corpse_eruption_damage_+%"]=5798, + ["corpse_warp_cast_speed_+%"]=5799, + ["corpse_warp_damage_+%"]=5800, + ["corpses_in_your_area_of_effect_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=5801, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5802, ["corrupted_charms_have_+%_duration"]=925, ["corrupted_gem_experience_gain_+%"]=2863, ["corrupted_skill_gem_level_+"]=975, ["corrupted_skills_have_+%_increased_skill_cost_efficiency_during_flask_effect"]=3030, ["corrupted_spell_skill_gem_level_+"]=976, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=5802, - ["corrupting_fever_damage_+%"]=5803, - ["corrupting_fever_duration_+%"]=5804, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=5803, + ["corrupting_fever_damage_+%"]=5804, + ["corrupting_fever_duration_+%"]=5805, ["counter_attacks_maximum_added_cold_damage"]=3882, ["counter_attacks_maximum_added_physical_damage"]=3875, ["counter_attacks_minimum_added_cold_damage"]=3882, ["counter_attacks_minimum_added_physical_damage"]=3875, - ["counterattacks_cooldown_recovery_+%"]=5805, - ["counterattacks_deal_double_damage"]=5806, - ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5807, - ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5808, - ["cover_in_ash_on_hit_%"]=5809, - ["cover_in_ash_on_hit_%_while_you_are_burning"]=5810, - ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5811, - ["cover_in_frost_on_hit"]=5812, + ["counterattacks_cooldown_recovery_+%"]=5806, + ["counterattacks_deal_double_damage"]=5807, + ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5808, + ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5809, + ["cover_in_ash_on_hit_%"]=5810, + ["cover_in_ash_on_hit_%_while_you_are_burning"]=5811, + ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5812, + ["cover_in_frost_on_hit"]=5813, ["crab_aspect_crab_barrier_max_+"]=4033, - ["crackling_lance_cast_speed_+%"]=5813, - ["crackling_lance_damage_+%"]=5814, - ["create_additional_brand_%_chance"]=5815, - ["create_blighted_spore_on_killing_rare_enemy"]=5816, - ["create_chilling_ground_on_freeze"]=5817, - ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5818, - ["create_consecrated_ground_on_kill_%"]=5819, - ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5820, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=5821, - ["create_profane_ground_instead_of_consecrated_ground"]=5822, - ["create_smoke_cloud_on_kill_%_chance"]=5823, - ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=5824, - ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5825, - ["cremation_base_fires_projectile_every_x_ms"]=5826, - ["critical_bonus_+%_final_while_shocked"]=5828, - ["critical_chance_luck_against_parry_debuffed_enemies"]=5829, - ["critical_damage_+%_per_50_current_life"]=5830, - ["critical_hit_bleeding_effect_+%"]=5831, - ["critical_hit_chance_+%_against_enemies_entered_your_presence_recently"]=5832, - ["critical_hit_chance_+%_vs_humanoids"]=5833, - ["critical_hit_damage_+%_against_enemies_exited_your_presence_recently"]=5834, - ["critical_hit_damage_bonus_+%_if_consumed_power_charge_recently"]=5835, - ["critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance"]=5836, - ["critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance"]=5837, - ["critical_hit_damaging_ailment_effect_+%"]=5838, - ["critical_hit_ignite_effect_+%"]=5839, - ["critical_hit_poison_effect_+%"]=5840, - ["critical_hits_always_apply_impale"]=5841, - ["critical_hits_apply_life_regeneration_rate_+%_for_4_seconds"]=5842, - ["critical_hits_cannot_consume_impale"]=5843, - ["critical_hits_ignore_armour"]=5844, - ["critical_multiplier_+%_per_10_max_es_on_shield"]=5845, - ["critical_strike_%_chance_to_deal_double_damage"]=5914, + ["crackling_lance_cast_speed_+%"]=5814, + ["crackling_lance_damage_+%"]=5815, + ["create_additional_brand_%_chance"]=5816, + ["create_blighted_spore_on_killing_rare_enemy"]=5817, + ["create_chilling_ground_on_freeze"]=5818, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5819, + ["create_consecrated_ground_on_kill_%"]=5820, + ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5821, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=5822, + ["create_profane_ground_instead_of_consecrated_ground"]=5823, + ["create_smoke_cloud_on_kill_%_chance"]=5824, + ["created_remnants_have_%_chance_to_duplicate_pick_up_results"]=5825, + ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5826, + ["cremation_base_fires_projectile_every_x_ms"]=5827, + ["critical_bonus_+%_final_while_shocked"]=5829, + ["critical_chance_luck_against_parry_debuffed_enemies"]=5830, + ["critical_damage_+%_per_50_current_life"]=5831, + ["critical_hit_bleeding_effect_+%"]=5832, + ["critical_hit_chance_+%_against_enemies_entered_your_presence_recently"]=5833, + ["critical_hit_chance_+%_vs_humanoids"]=5834, + ["critical_hit_damage_+%_against_enemies_exited_your_presence_recently"]=5835, + ["critical_hit_damage_bonus_+%_if_consumed_power_charge_recently"]=5836, + ["critical_hit_damage_bonus_+%_vs_enemies_further_than_6m_distance"]=5837, + ["critical_hit_damage_bonus_+%_vs_enemies_within_2m_distance"]=5838, + ["critical_hit_damaging_ailment_effect_+%"]=5839, + ["critical_hit_ignite_effect_+%"]=5840, + ["critical_hit_poison_effect_+%"]=5841, + ["critical_hits_always_apply_impale"]=5842, + ["critical_hits_apply_life_regeneration_rate_+%_for_4_seconds"]=5843, + ["critical_hits_cannot_consume_impale"]=5844, + ["critical_hits_ignore_armour"]=5845, + ["critical_multiplier_+%_per_10_max_es_on_shield"]=5846, + ["critical_strike_%_chance_to_deal_double_damage"]=5915, ["critical_strike_chance_+%"]=1000, - ["critical_strike_chance_+%_against_enemies_marked_by_you"]=5846, - ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5861, - ["critical_strike_chance_+%_during_any_flask_effect"]=5862, - ["critical_strike_chance_+%_final_while_affected_by_precision"]=5847, - ["critical_strike_chance_+%_final_while_unhinged"]=5863, + ["critical_strike_chance_+%_against_enemies_marked_by_you"]=5847, + ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5862, + ["critical_strike_chance_+%_during_any_flask_effect"]=5863, + ["critical_strike_chance_+%_final_while_affected_by_precision"]=5848, + ["critical_strike_chance_+%_final_while_unhinged"]=5864, ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3170, ["critical_strike_chance_+%_for_forking_arrows"]=3996, - ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5864, - ["critical_strike_chance_+%_if_enemy_killed_recently"]=5865, - ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5866, - ["critical_strike_chance_+%_if_have_not_crit_recently"]=5867, - ["critical_strike_chance_+%_if_havent_blocked_recently"]=5868, - ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5869, - ["critical_strike_chance_+%_if_triggered_skill_recently"]=5848, - ["critical_strike_chance_+%_if_youve_shapeshifted_to_animal_recently"]=5849, - ["critical_strike_chance_+%_per_10_strength"]=5870, - ["critical_strike_chance_+%_per_25_intelligence"]=5871, + ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5865, + ["critical_strike_chance_+%_if_enemy_killed_recently"]=5866, + ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5867, + ["critical_strike_chance_+%_if_have_not_crit_recently"]=5868, + ["critical_strike_chance_+%_if_havent_blocked_recently"]=5869, + ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5870, + ["critical_strike_chance_+%_if_triggered_skill_recently"]=5849, + ["critical_strike_chance_+%_if_youve_shapeshifted_to_animal_recently"]=5850, + ["critical_strike_chance_+%_per_10_strength"]=5871, + ["critical_strike_chance_+%_per_25_intelligence"]=5872, ["critical_strike_chance_+%_per_8_strength"]=2712, - ["critical_strike_chance_+%_per_blitz_charge"]=5872, - ["critical_strike_chance_+%_per_brand"]=5873, - ["critical_strike_chance_+%_per_endurance_charge"]=5874, - ["critical_strike_chance_+%_per_frenzy_charge"]=5875, - ["critical_strike_chance_+%_per_intensity"]=5876, + ["critical_strike_chance_+%_per_blitz_charge"]=5873, + ["critical_strike_chance_+%_per_brand"]=5874, + ["critical_strike_chance_+%_per_endurance_charge"]=5875, + ["critical_strike_chance_+%_per_frenzy_charge"]=5876, + ["critical_strike_chance_+%_per_intensity"]=5877, ["critical_strike_chance_+%_per_level"]=2731, ["critical_strike_chance_+%_per_lightning_adaptation"]=4103, - ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5877, + ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5878, ["critical_strike_chance_+%_per_power_charge"]=2917, - ["critical_strike_chance_+%_per_righteous_charge"]=5878, + ["critical_strike_chance_+%_per_righteous_charge"]=5879, ["critical_strike_chance_+%_per_stackable_unique_jewel"]=3837, ["critical_strike_chance_+%_vs_bleeding_enemies"]=2933, ["critical_strike_chance_+%_vs_blinded_enemies"]=3128, - ["critical_strike_chance_+%_vs_dazed_enemies"]=5850, - ["critical_strike_chance_+%_vs_enemies_further_than_6m_distance"]=5851, + ["critical_strike_chance_+%_vs_dazed_enemies"]=5851, + ["critical_strike_chance_+%_vs_enemies_further_than_6m_distance"]=5852, ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3737, ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3240, - ["critical_strike_chance_+%_vs_exposed"]=5852, - ["critical_strike_chance_+%_vs_immobilised_enemies"]=5853, - ["critical_strike_chance_+%_vs_marked_enemies"]=5854, + ["critical_strike_chance_+%_vs_exposed"]=5853, + ["critical_strike_chance_+%_vs_immobilised_enemies"]=5854, + ["critical_strike_chance_+%_vs_marked_enemies"]=5855, ["critical_strike_chance_+%_vs_poisoned_enemies"]=3024, - ["critical_strike_chance_+%_vs_shocked_enemies"]=5827, - ["critical_strike_chance_+%_vs_taunted_enemies"]=5879, + ["critical_strike_chance_+%_vs_shocked_enemies"]=5828, + ["critical_strike_chance_+%_vs_taunted_enemies"]=5880, ["critical_strike_chance_+%_when_in_main_hand"]=3860, - ["critical_strike_chance_+%_while_affected_by_wrath"]=5880, - ["critical_strike_chance_+%_while_channelling"]=5881, - ["critical_strike_chance_+%_while_shapeshifted"]=5855, - ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10769, - ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5885, + ["critical_strike_chance_+%_while_affected_by_wrath"]=5881, + ["critical_strike_chance_+%_while_channelling"]=5882, + ["critical_strike_chance_+%_while_shapeshifted"]=5856, + ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10786, + ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5886, ["critical_strike_chance_+%_with_at_least_200_int"]=4051, - ["critical_strike_chance_+%_with_unarmed_attacks"]=5856, - ["critical_strike_chance_against_cursed_enemies_+%"]=5857, + ["critical_strike_chance_+%_with_unarmed_attacks"]=5857, + ["critical_strike_chance_against_cursed_enemies_+%"]=5858, ["critical_strike_chance_against_enemies_on_full_life_+%"]=3465, - ["critical_strike_chance_cannot_be_rerolled"]=5858, - ["critical_strike_chance_increased_by_lightning_resistance"]=5859, - ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5860, + ["critical_strike_chance_cannot_be_rerolled"]=5859, + ["critical_strike_chance_increased_by_lightning_resistance"]=5860, + ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5861, ["critical_strike_chance_while_dual_wielding_+%"]=1400, ["critical_strike_chance_while_wielding_shield_+%"]=1394, - ["critical_strike_damage_cannot_be_reflected"]=5886, - ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5912, - ["critical_strike_multiplier_+%_with_claws_daggers"]=5913, - ["critical_strike_multiplier_+_during_any_flask_effect"]=5891, - ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5892, - ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5893, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5894, - ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5895, - ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5896, - ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5897, - ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5887, - ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5898, - ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5899, - ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5900, - ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5901, - ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5902, + ["critical_strike_damage_cannot_be_reflected"]=5887, + ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5913, + ["critical_strike_multiplier_+%_with_claws_daggers"]=5914, + ["critical_strike_multiplier_+_during_any_flask_effect"]=5892, + ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5893, + ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5894, + ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5895, + ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5896, + ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5897, + ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5898, + ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5888, + ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5899, + ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5900, + ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5901, + ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5902, + ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5903, ["critical_strike_multiplier_+_per_1%_block_chance"]=2932, - ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5903, + ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5904, ["critical_strike_multiplier_+_per_power_charge"]=3014, ["critical_strike_multiplier_+_vs_bleeding_enemies"]=2930, ["critical_strike_multiplier_+_vs_burning_enemies"]=2931, ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3265, - ["critical_strike_multiplier_+_vs_stunned_enemies"]=5888, - ["critical_strike_multiplier_+_vs_taunted_enemies"]=5904, - ["critical_strike_multiplier_+_vs_unique_enemies"]=5905, - ["critical_strike_multiplier_+_while_affected_by_anger"]=5906, - ["critical_strike_multiplier_+_while_affected_by_precision"]=5907, + ["critical_strike_multiplier_+_vs_stunned_enemies"]=5889, + ["critical_strike_multiplier_+_vs_taunted_enemies"]=5905, + ["critical_strike_multiplier_+_vs_unique_enemies"]=5906, + ["critical_strike_multiplier_+_while_affected_by_anger"]=5907, + ["critical_strike_multiplier_+_while_affected_by_precision"]=5908, ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1813, - ["critical_strike_multiplier_+_with_herald_skills"]=5911, - ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5889, - ["critical_strike_multiplier_is_250"]=5890, + ["critical_strike_multiplier_+_with_herald_skills"]=5912, + ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5890, + ["critical_strike_multiplier_is_250"]=5891, ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3154, ["critical_strike_multiplier_while_dual_wielding_+"]=1420, ["critical_strike_multiplier_with_dagger_+"]=1409, - ["critical_strikes_always_knockback_shocked_enemies"]=5915, - ["critical_strikes_deal_no_damage"]=5916, - ["critical_strikes_do_not_always_ignite"]=5917, - ["critical_strikes_from_spells_have_no_multiplier"]=5918, + ["critical_strikes_always_knockback_shocked_enemies"]=5916, + ["critical_strikes_deal_no_damage"]=5917, + ["critical_strikes_do_not_always_ignite"]=5918, + ["critical_strikes_from_spells_have_no_multiplier"]=5919, ["critical_strikes_ignore_elemental_resistances"]=3168, - ["critical_strikes_ignore_lightning_resistance"]=5919, - ["critical_strikes_ignore_positive_elemental_resistances"]=5920, - ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5921, - ["critical_support_gem_level_+"]=5922, + ["critical_strikes_ignore_lightning_resistance"]=5920, + ["critical_strikes_ignore_positive_elemental_resistances"]=5921, + ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5922, + ["critical_support_gem_level_+"]=5923, ["crits_have_culling_strike"]=3158, ["crossbow_accuracy_rating"]=3974, ["crossbow_accuracy_rating_+%"]=3975, - ["crossbow_attack_%_chance_to_not_consume_ammo"]=5923, - ["crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently"]=5924, + ["crossbow_attack_%_chance_to_not_consume_ammo"]=5924, + ["crossbow_attack_%_chance_to_not_consume_ammo_if_reloaded_recently"]=5925, ["crossbow_attack_speed_+%"]=3976, ["crossbow_critical_strike_chance_+%"]=3977, ["crossbow_critical_strike_multiplier_+"]=3978, ["crossbow_damage_+%"]=3972, - ["crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds"]=5925, + ["crossbow_damage_+%_per_ammo_type_fired_in_past_10_seconds"]=5926, ["crossbow_elemental_damage_+%"]=3973, ["crossbow_physical_damage_+%"]=3979, ["crossbow_skill_gem_level_+"]=994, - ["crowd_control_effects_are_triggered_at_%_poise_threshold_instead"]=5926, - ["cruelty_effect_+%"]=5927, - ["crush_for_2_seconds_on_hit_%_chance"]=5928, - ["crush_on_hit_ms_vs_full_life_enemies"]=5929, - ["culling_strike_enemies_on_block"]=5930, + ["crowd_control_effects_are_triggered_at_%_poise_threshold_instead"]=5927, + ["cruelty_effect_+%"]=5928, + ["crush_for_2_seconds_on_hit_%_chance"]=5929, + ["crush_on_hit_ms_vs_full_life_enemies"]=5930, + ["culling_strike_enemies_on_block"]=5931, ["culling_strike_on_burning_enemies"]=2616, - ["culling_strike_threshold_+%"]=5934, - ["culling_strike_threshold_+%_if_culled_recently"]=5931, - ["culling_strike_threshold_+%_vs_immobilised_enemies"]=5932, - ["culling_strike_threshold_+%_vs_rare_or_unique_monsters"]=5933, - ["culling_strike_vs_beasts_while_in_presence_of_beast_companion"]=5935, - ["culling_strike_vs_cursed_enemies"]=5936, - ["culling_strike_vs_marked_enemy"]=5937, + ["culling_strike_threshold_+%"]=5935, + ["culling_strike_threshold_+%_if_culled_recently"]=5932, + ["culling_strike_threshold_+%_vs_immobilised_enemies"]=5933, + ["culling_strike_threshold_+%_vs_rare_or_unique_monsters"]=5934, + ["culling_strike_vs_beasts_while_in_presence_of_beast_companion"]=5936, + ["culling_strike_vs_cursed_enemies"]=5937, + ["culling_strike_vs_marked_enemy"]=5938, ["current_endurance_charges"]=15, - ["current_energy_shield_%_as_elemental_damage_reduction"]=5939, - ["current_energy_shield_%_as_physical_damage_reduction"]=5938, + ["current_energy_shield_%_as_elemental_damage_reduction"]=5940, + ["current_energy_shield_%_as_physical_damage_reduction"]=5939, ["current_frenzy_charges"]=16, ["current_power_charges"]=17, ["curse_area_of_effect_+%"]=1974, - ["curse_aura_skill_area_of_effect_+%"]=5940, - ["curse_aura_skills_mana_reservation_efficiency_+%"]=5943, - ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5942, - ["curse_aura_skills_reservation_efficiency_+%"]=5941, + ["curse_aura_skill_area_of_effect_+%"]=5941, + ["curse_aura_skills_mana_reservation_efficiency_+%"]=5944, + ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5943, + ["curse_aura_skills_reservation_efficiency_+%"]=5942, ["curse_cast_speed_+%"]=1968, - ["curse_delay_+%"]=5944, - ["curse_delay_+%_per_20_tribute"]=5945, - ["curse_duration_+%_if_you_have_at_least_100_tribute"]=5946, - ["curse_duration_+%_per_10_tribute"]=5947, + ["curse_delay_+%"]=5945, + ["curse_delay_+%_per_20_tribute"]=5946, + ["curse_duration_+%_if_you_have_at_least_100_tribute"]=5947, + ["curse_duration_+%_per_10_tribute"]=5948, ["curse_effect_+%"]=2400, - ["curse_effect_+%_if_200_mana_spent_recently"]=5950, + ["curse_effect_+%_if_200_mana_spent_recently"]=5951, ["curse_effect_on_self_+%"]=1935, - ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5948, - ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5949, - ["curse_ignores_curse_limit"]=5951, - ["curse_mana_cost_+%"]=5952, - ["curse_on_block_enfeeble_chance_%"]=5953, + ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5949, + ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5950, + ["curse_ignores_curse_limit"]=5952, + ["curse_mana_cost_+%"]=5953, + ["curse_on_block_enfeeble_chance_%"]=5954, ["curse_on_hit_%_conductivity"]=2318, ["curse_on_hit_%_despair"]=2319, ["curse_on_hit_%_elemental_weakness"]=2320, @@ -238696,192 +238973,192 @@ return { ["curse_on_hit_level_temporal_chains"]=2326, ["curse_on_hit_level_vulnerability"]=2327, ["curse_pillar_curse_effect_+%_final"]=2401, - ["curse_skill_effect_duration_+%"]=5954, + ["curse_skill_effect_duration_+%"]=5955, ["curse_skill_gem_level_+"]=995, ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2325, - ["curse_with_punishment_on_hit_%"]=5955, - ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5957, - ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5958, - ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5959, - ["cursed_enemies_are_exorcised_on_kill"]=5956, - ["cursed_with_silence_when_hit_%_chance"]=5960, - ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5961, + ["curse_with_punishment_on_hit_%"]=5956, + ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5958, + ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5959, + ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5960, + ["cursed_enemies_are_exorcised_on_kill"]=5957, + ["cursed_with_silence_when_hit_%_chance"]=5961, + ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5962, ["curses_never_expire"]=1927, - ["curses_reflected_to_self"]=5962, - ["curses_you_inflict_remain_after_death"]=5963, - ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5964, - ["cyclone_and_sweep_melee_knockback"]=5965, + ["curses_reflected_to_self"]=5963, + ["curses_you_inflict_remain_after_death"]=5964, + ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5965, + ["cyclone_and_sweep_melee_knockback"]=5966, ["cyclone_attack_speed_+%"]=3556, ["cyclone_damage_+%"]=3378, - ["cyclone_max_stages_movement_speed_+%"]=5966, + ["cyclone_max_stages_movement_speed_+%"]=5967, ["dagger_accuracy_rating"]=1772, ["dagger_accuracy_rating_+%"]=1363, ["dagger_attack_speed_+%"]=1346, ["dagger_critical_strike_chance_+%"]=1387, ["dagger_damage_+%"]=1269, ["damage_+%"]=1174, - ["damage_+%_against_enemies_marked_by_you"]=5998, - ["damage_+%_against_enemies_with_fully_broken_armour"]=5967, + ["damage_+%_against_enemies_marked_by_you"]=5999, + ["damage_+%_against_enemies_with_fully_broken_armour"]=5968, ["damage_+%_during_flask_effect"]=3761, - ["damage_+%_final_against_bloodlusting_enemies"]=10676, - ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5999, - ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5968, - ["damage_+%_final_with_at_least_1_nearby_ally"]=6000, + ["damage_+%_final_against_bloodlusting_enemies"]=10693, + ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=6000, + ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5969, + ["damage_+%_final_with_at_least_1_nearby_ally"]=6001, ["damage_+%_for_4_seconds_on_crit"]=3169, ["damage_+%_for_4_seconds_on_detonation"]=3190, ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3764, ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3741, - ["damage_+%_for_each_herald_affecting_you"]=6001, + ["damage_+%_for_each_herald_affecting_you"]=6002, ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3869, ["damage_+%_for_each_trap_and_mine_active"]=3755, - ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=6002, + ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=6003, ["damage_+%_for_you_and_allies_affected_by_your_auras"]=3749, - ["damage_+%_if_consumed_frenzy_charge_recently"]=5969, - ["damage_+%_if_enemy_killed_recently"]=6003, + ["damage_+%_if_consumed_frenzy_charge_recently"]=5970, + ["damage_+%_if_enemy_killed_recently"]=6004, ["damage_+%_if_enemy_killed_recently_final"]=3894, - ["damage_+%_if_enemy_shattered_recently"]=6004, - ["damage_+%_if_firing_atleast_7_projectiles"]=6005, + ["damage_+%_if_enemy_shattered_recently"]=6005, + ["damage_+%_if_firing_atleast_7_projectiles"]=6006, ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3400, - ["damage_+%_if_have_been_ignited_recently"]=6006, - ["damage_+%_if_have_crit_in_past_8_seconds"]=6007, - ["damage_+%_if_only_one_enemy_nearby"]=6008, - ["damage_+%_if_skill_costs_life"]=6009, - ["damage_+%_if_triggered_skill_recently"]=5970, - ["damage_+%_if_used_travel_skill_recently"]=6010, + ["damage_+%_if_have_been_ignited_recently"]=6007, + ["damage_+%_if_have_crit_in_past_8_seconds"]=6008, + ["damage_+%_if_only_one_enemy_nearby"]=6009, + ["damage_+%_if_skill_costs_life"]=6010, + ["damage_+%_if_triggered_skill_recently"]=5971, + ["damage_+%_if_used_travel_skill_recently"]=6011, ["damage_+%_if_you_have_consumed_a_corpse_recently"]=3925, - ["damage_+%_if_you_have_frozen_enemy_recently"]=6011, - ["damage_+%_if_you_have_shocked_recently"]=6012, + ["damage_+%_if_you_have_frozen_enemy_recently"]=6012, + ["damage_+%_if_you_have_shocked_recently"]=6013, ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3770, ["damage_+%_on_consecrated_ground"]=3261, - ["damage_+%_on_full_energy_shield"]=6037, - ["damage_+%_per_1%_block_chance"]=6020, - ["damage_+%_per_1%_increased_item_found_quantity"]=6021, - ["damage_+%_per_100_dexterity"]=6013, - ["damage_+%_per_100_intelligence"]=6014, - ["damage_+%_per_100_strength"]=6015, - ["damage_+%_per_10_dex"]=6016, + ["damage_+%_on_full_energy_shield"]=6038, + ["damage_+%_per_1%_block_chance"]=6021, + ["damage_+%_per_1%_increased_item_found_quantity"]=6022, + ["damage_+%_per_100_dexterity"]=6014, + ["damage_+%_per_100_intelligence"]=6015, + ["damage_+%_per_100_strength"]=6016, + ["damage_+%_per_10_dex"]=6017, ["damage_+%_per_10_levels"]=2618, - ["damage_+%_per_15_dex"]=6017, - ["damage_+%_per_15_int"]=6018, - ["damage_+%_per_15_strength"]=6019, - ["damage_+%_per_5_of_your_lowest_attribute"]=6022, + ["damage_+%_per_15_dex"]=6018, + ["damage_+%_per_15_int"]=6019, + ["damage_+%_per_15_strength"]=6020, + ["damage_+%_per_5_of_your_lowest_attribute"]=6023, ["damage_+%_per_abyss_jewel_type"]=3845, ["damage_+%_per_active_curse_on_self"]=1197, - ["damage_+%_per_active_golem"]=6023, - ["damage_+%_per_active_link"]=6024, - ["damage_+%_per_active_minion"]=5971, + ["damage_+%_per_active_golem"]=6024, + ["damage_+%_per_active_link"]=6025, + ["damage_+%_per_active_minion"]=5972, ["damage_+%_per_active_trap"]=3179, ["damage_+%_per_crab_charge"]=4034, - ["damage_+%_per_different_companion_in_presence"]=5972, - ["damage_+%_per_different_warcry_used_recently"]=6025, + ["damage_+%_per_different_companion_in_presence"]=5973, + ["damage_+%_per_different_warcry_used_recently"]=6026, ["damage_+%_per_endurance_charge"]=2941, - ["damage_+%_per_enemy_elemental_ailment"]=5973, + ["damage_+%_per_enemy_elemental_ailment"]=5974, ["damage_+%_per_equipped_magic_item"]=2833, ["damage_+%_per_fire_adaptation"]=4101, ["damage_+%_per_frenzy_charge"]=3018, - ["damage_+%_per_frenzy_power_or_endurance_charge"]=6026, - ["damage_+%_per_poison_stack"]=5974, - ["damage_+%_per_poison_up_to_75%"]=6027, - ["damage_+%_per_power_charge"]=6028, - ["damage_+%_per_raised_zombie"]=5975, - ["damage_+%_per_recently_triggered_hazard_up_to_50%"]=6029, + ["damage_+%_per_frenzy_power_or_endurance_charge"]=6027, + ["damage_+%_per_poison_stack"]=5975, + ["damage_+%_per_poison_up_to_75%"]=6028, + ["damage_+%_per_power_charge"]=6029, + ["damage_+%_per_raised_zombie"]=5976, + ["damage_+%_per_recently_triggered_hazard_up_to_50%"]=6030, ["damage_+%_per_shock"]=2559, - ["damage_+%_per_warcry_used_recently"]=6030, - ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=6031, + ["damage_+%_per_warcry_used_recently"]=6031, + ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=6032, ["damage_+%_to_rare_and_unique_enemies"]=2950, - ["damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute"]=5976, + ["damage_+%_to_rare_and_unique_enemies_if_you_have_at_least_100_tribute"]=5977, ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3765, - ["damage_+%_vs_abyssal_monsters"]=6032, + ["damage_+%_vs_abyssal_monsters"]=6033, ["damage_+%_vs_blinded_enemies"]=2592, ["damage_+%_vs_burning_enemies"]=3165, - ["damage_+%_vs_dazed_enemies"]=5977, + ["damage_+%_vs_dazed_enemies"]=5978, ["damage_+%_vs_demons"]=2550, ["damage_+%_vs_enemies_affected_by_status_ailments"]=3175, - ["damage_+%_vs_enemies_on_full_life"]=6033, + ["damage_+%_vs_enemies_on_full_life"]=6034, ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2591, ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1217, ["damage_+%_vs_frozen_enemies"]=1213, ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1218, ["damage_+%_vs_hindered_enemies"]=3786, - ["damage_+%_vs_immobilised_enemies"]=5978, - ["damage_+%_vs_immobilised_enemies_while_shapeshifted"]=5979, - ["damage_+%_vs_magic_monsters"]=6035, + ["damage_+%_vs_immobilised_enemies"]=5979, + ["damage_+%_vs_immobilised_enemies_while_shapeshifted"]=5980, + ["damage_+%_vs_magic_monsters"]=6036, ["damage_+%_vs_rare_monsters"]=2588, - ["damage_+%_vs_taunted_enemies"]=6036, + ["damage_+%_vs_taunted_enemies"]=6037, ["damage_+%_when_currently_has_no_energy_shield"]=2521, ["damage_+%_when_not_on_low_life"]=2946, ["damage_+%_when_on_burning_ground"]=1910, - ["damage_+%_when_on_full_life"]=6038, + ["damage_+%_when_on_full_life"]=6039, ["damage_+%_when_on_low_life"]=1196, - ["damage_+%_while_affected_by_a_herald"]=6039, - ["damage_+%_while_channelling"]=6040, + ["damage_+%_while_affected_by_a_herald"]=6040, + ["damage_+%_while_channelling"]=6041, ["damage_+%_while_dead"]=2848, ["damage_+%_while_es_not_full"]=3757, ["damage_+%_while_fortified"]=2939, ["damage_+%_while_ignited"]=2583, - ["damage_+%_while_in_blood_stance"]=6041, - ["damage_+%_while_in_presence_of_companion"]=5980, + ["damage_+%_while_in_blood_stance"]=6042, + ["damage_+%_while_in_presence_of_companion"]=5981, ["damage_+%_while_leeching"]=2819, ["damage_+%_while_life_leeching"]=1198, ["damage_+%_while_mana_leeching"]=1200, - ["damage_+%_while_shapeshifted"]=5981, + ["damage_+%_while_shapeshifted"]=5982, ["damage_+%_while_totem_active"]=2947, - ["damage_+%_while_using_charm"]=6042, - ["damage_+%_while_wielding_bow_if_totem_summoned"]=6043, - ["damage_+%_while_wielding_two_different_weapon_types"]=6044, + ["damage_+%_while_using_charm"]=6043, + ["damage_+%_while_wielding_bow_if_totem_summoned"]=6044, + ["damage_+%_while_wielding_two_different_weapon_types"]=6045, ["damage_+%_while_wielding_wand"]=1286, - ["damage_+%_while_you_have_a_summoned_golem"]=6045, + ["damage_+%_while_you_have_a_summoned_golem"]=6046, ["damage_+%_with_bow_skills"]=903, - ["damage_+%_with_daggers_against_full_life_enemies"]=6046, - ["damage_+%_with_herald_skills"]=6047, - ["damage_+%_with_maces_sceptres_staves"]=6048, + ["damage_+%_with_daggers_against_full_life_enemies"]=6047, + ["damage_+%_with_herald_skills"]=6048, + ["damage_+%_with_maces_sceptres_staves"]=6049, ["damage_+%_with_melee_weapons"]=1248, ["damage_+%_with_movement_skills"]=1354, - ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=6049, + ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=6050, ["damage_+%_with_one_handed_melee_weapons"]=1247, ["damage_+%_with_one_handed_weapons"]=3065, - ["damage_+%_with_shield_skills"]=6050, - ["damage_+%_with_shield_skills_per_2%_attack_block"]=6051, + ["damage_+%_with_shield_skills"]=6051, + ["damage_+%_with_shield_skills_per_2%_attack_block"]=6052, ["damage_+%_with_two_handed_melee_weapons"]=1253, ["damage_+%_with_two_handed_weapons"]=3066, ["damage_+1%_per_X_strength_when_in_main_hand"]=2560, - ["damage_against_undead_+%"]=5982, + ["damage_against_undead_+%"]=5983, ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3171, - ["damage_blocked_%_recouped_as_mana"]=5983, - ["damage_cannot_be_taken_from_ward"]=5984, + ["damage_blocked_%_recouped_as_mana"]=5984, + ["damage_cannot_be_taken_from_ward"]=5985, ["damage_over_time_+%"]=1191, ["damage_over_time_+%_per_frenzy_charge"]=1896, ["damage_over_time_+%_per_power_charge"]=1897, - ["damage_over_time_+%_while_affected_by_a_herald"]=5986, + ["damage_over_time_+%_while_affected_by_a_herald"]=5987, ["damage_over_time_+%_while_dual_wielding"]=1898, ["damage_over_time_+%_while_holding_a_shield"]=1899, ["damage_over_time_+%_while_wielding_two_handed_weapon"]=1900, - ["damage_over_time_+%_with_attack_skills"]=5987, - ["damage_over_time_+%_with_bow_skills"]=5988, - ["damage_over_time_+%_with_herald_skills"]=5989, - ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5985, + ["damage_over_time_+%_with_attack_skills"]=5988, + ["damage_over_time_+%_with_bow_skills"]=5989, + ["damage_over_time_+%_with_herald_skills"]=5990, + ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5986, ["damage_over_time_multiplier_+_with_attacks"]=1220, - ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5990, - ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5991, - ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5992, - ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5993, - ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5994, - ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5995, - ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5996, - ["damage_penetrates_x%_of_elemental_resistances_per_glory_skill_used_in_last_6_seconds"]=5997, - ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=6052, + ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5991, + ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5992, + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5993, + ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5994, + ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5995, + ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5996, + ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5997, + ["damage_penetrates_x%_of_elemental_resistances_per_glory_skill_used_in_last_6_seconds"]=5998, + ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=6053, ["damage_reduction_rating_%_with_active_totem"]=3068, ["damage_reduction_rating_from_body_armour_doubled"]=3067, - ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=6053, - ["damage_removed_from_mana_before_life_%_while_focused"]=6054, - ["damage_removed_from_spectres_before_life_or_es_%"]=6055, - ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=6056, - ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=6071, - ["damage_taken_%_recovered_as_life_from_stunning_hits"]=6072, - ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=6073, - ["damage_taken_+%_final_per_tailwind"]=6074, - ["damage_taken_+%_final_per_totem"]=6075, - ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=6057, + ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=6054, + ["damage_removed_from_mana_before_life_%_while_focused"]=6055, + ["damage_removed_from_spectres_before_life_or_es_%"]=6056, + ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=6057, + ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=6072, + ["damage_taken_%_recovered_as_life_from_stunning_hits"]=6073, + ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=6074, + ["damage_taken_+%_final_per_tailwind"]=6075, + ["damage_taken_+%_final_per_totem"]=6076, + ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=6058, ["damage_taken_+%_for_4_seconds_on_kill"]=3055, ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3153, ["damage_taken_+%_from_bleeding_enemies"]=3046, @@ -238890,36 +239167,36 @@ return { ["damage_taken_+%_from_hits"]=1989, ["damage_taken_+%_from_skeletons"]=1996, ["damage_taken_+%_from_taunted_enemies"]=3766, - ["damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute"]=6058, - ["damage_taken_+%_if_have_been_frozen_recently"]=6076, - ["damage_taken_+%_if_have_not_been_hit_recently"]=6077, + ["damage_taken_+%_from_volatility_if_you_have_at_least_100_tribute"]=6059, + ["damage_taken_+%_if_have_been_frozen_recently"]=6077, + ["damage_taken_+%_if_have_not_been_hit_recently"]=6078, ["damage_taken_+%_if_not_hit_recently_final"]=3863, ["damage_taken_+%_if_taunted_an_enemy_recently"]=3898, - ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=6059, + ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=6060, ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3851, - ["damage_taken_+%_on_full_life"]=6078, - ["damage_taken_+%_on_low_life"]=6079, + ["damage_taken_+%_on_full_life"]=6079, + ["damage_taken_+%_on_low_life"]=6080, ["damage_taken_+%_per_frenzy_charge"]=2704, ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3320, ["damage_taken_+%_vs_demons"]=2549, - ["damage_taken_+%_while_affected_by_elusive"]=6060, + ["damage_taken_+%_while_affected_by_elusive"]=6061, ["damage_taken_+%_while_es_full"]=1993, - ["damage_taken_+%_while_leeching"]=6080, - ["damage_taken_+%_while_phasing"]=6081, - ["damage_taken_from_hits_is_unlucky_if_ward_damaged_recently"]=6061, + ["damage_taken_+%_while_leeching"]=6081, + ["damage_taken_+%_while_phasing"]=6082, + ["damage_taken_from_hits_is_unlucky_if_ward_damaged_recently"]=6062, ["damage_taken_from_traps_and_mines_+%"]=3026, - ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=6062, + ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=6063, ["damage_taken_goes_to_life_over_4_seconds_%"]=1061, - ["damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute"]=6063, + ["damage_taken_goes_to_life_over_4_seconds_%_per_10_tribute"]=6064, ["damage_taken_goes_to_mana_%"]=1068, - ["damage_taken_goes_to_mana_%_per_10_tribute"]=6064, + ["damage_taken_goes_to_mana_%_per_10_tribute"]=6065, ["damage_taken_goes_to_mana_%_per_power_charge"]=2916, - ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=6065, - ["damage_taken_over_time_+%_final_during_life_flask_effect"]=6066, - ["damage_taken_per_250_dexterity_+%"]=6067, - ["damage_taken_per_250_intelligence_+%"]=6068, - ["damage_taken_per_250_strength_+%"]=6069, - ["damage_taken_per_ghost_dance_stack_+%"]=6070, + ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=6066, + ["damage_taken_over_time_+%_final_during_life_flask_effect"]=6067, + ["damage_taken_per_250_dexterity_+%"]=6068, + ["damage_taken_per_250_intelligence_+%"]=6069, + ["damage_taken_per_250_strength_+%"]=6070, + ["damage_taken_per_ghost_dance_stack_+%"]=6071, ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2773, ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2757, ["damage_vs_enemies_on_low_life_+%"]=2589, @@ -238930,75 +239207,75 @@ return { ["damage_while_no_frenzy_charges_+%"]=3464, ["damage_with_cold_skills_+%"]=1304, ["damage_with_fire_skills_+%"]=1296, - ["damage_with_hits_is_lucky_vs_enemies_on_low_life"]=6082, - ["damage_with_hits_is_lucky_vs_heavy_stunned_enemies"]=6083, + ["damage_with_hits_is_lucky_vs_enemies_on_low_life"]=6083, + ["damage_with_hits_is_lucky_vs_heavy_stunned_enemies"]=6084, ["damage_with_lightning_skills_+%"]=1309, - ["damaging_ailment_duration_+%"]=6084, - ["damaging_ailment_duration_+%_per_10_tribute"]=6085, - ["damaging_ailments_deal_damage_+%_faster"]=6087, - ["dark_pact_minions_recover_%_life_on_hit"]=6088, - ["dark_ritual_area_of_effect_+%"]=6089, - ["dark_ritual_damage_+%"]=6090, - ["dark_ritual_linked_curse_effect_+%"]=6091, - ["darkness_per_level"]=6092, - ["darkness_refresh_rate_+%"]=6093, - ["daytime_fish_caught_size_+%"]=6094, - ["daze_build_up_+%"]=6095, - ["daze_duration_+%"]=6096, - ["daze_magnitude_+%"]=6097, - ["deadeye_accuracy_unaffected_by_range"]=6098, - ["deadeye_damage_taken_+%_final_from_marked_enemy"]=6099, - ["deadeye_movement_speed_penalty_+%_final_while_performing_action"]=6100, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases"]=6101, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=6102, - ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=6103, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=6104, - ["deal_double_damage_to_enemies_on_full_life"]=6105, - ["deal_no_damage_when_not_on_low_life"]=6106, + ["damaging_ailment_duration_+%"]=6085, + ["damaging_ailment_duration_+%_per_10_tribute"]=6086, + ["damaging_ailments_deal_damage_+%_faster"]=6088, + ["dark_pact_minions_recover_%_life_on_hit"]=6089, + ["dark_ritual_area_of_effect_+%"]=6090, + ["dark_ritual_damage_+%"]=6091, + ["dark_ritual_linked_curse_effect_+%"]=6092, + ["darkness_per_level"]=6093, + ["darkness_refresh_rate_+%"]=6094, + ["daytime_fish_caught_size_+%"]=6095, + ["daze_build_up_+%"]=6096, + ["daze_duration_+%"]=6097, + ["daze_magnitude_+%"]=6098, + ["deadeye_accuracy_unaffected_by_range"]=6099, + ["deadeye_damage_taken_+%_final_from_marked_enemy"]=6100, + ["deadeye_movement_speed_penalty_+%_final_while_performing_action"]=6101, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_decreases"]=6102, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=6103, + ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=6104, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=6105, + ["deal_double_damage_to_enemies_on_full_life"]=6106, + ["deal_no_damage_when_not_on_low_life"]=6107, ["deal_no_damage_yourself"]=1998, - ["deal_no_elemental_damage"]=6107, - ["deal_no_elemental_physical_damage"]=6108, - ["deal_no_non_chaos_damage"]=6109, + ["deal_no_elemental_damage"]=6108, + ["deal_no_elemental_physical_damage"]=6109, + ["deal_no_non_chaos_damage"]=6110, ["deal_no_non_cold_damage"]=2579, - ["deal_no_non_elemental_damage"]=6110, + ["deal_no_non_elemental_damage"]=6111, ["deal_no_non_fire_damage"]=2577, ["deal_no_non_lightning_damage"]=2578, ["deal_no_non_physical_damage"]=2575, - ["deal_thorns_damage_on_hit"]=6111, - ["deal_thorns_damage_on_melee_crit"]=6112, - ["deal_thorns_damage_on_stun"]=6113, - ["deathgrip_presence"]=6114, + ["deal_thorns_damage_on_hit"]=6112, + ["deal_thorns_damage_on_melee_crit"]=6113, + ["deal_thorns_damage_on_stun"]=6114, + ["deathgrip_presence"]=6115, ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2490, ["deaths_oath_debuff_on_kill_duration_ms"]=2490, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=6115, - ["debilitate_enemies_within_X_metres_while_active_blocking"]=6116, - ["debuff_time_passed_+%"]=6118, - ["debuff_time_passed_-%_while_affected_by_haste"]=6117, - ["decimating_strike"]=6119, - ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=6120, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=6116, + ["debilitate_enemies_within_X_metres_while_active_blocking"]=6117, + ["debuff_time_passed_+%"]=6119, + ["debuff_time_passed_-%_while_affected_by_haste"]=6118, + ["decimating_strike"]=6120, + ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=6121, ["decoy_totem_life_+%"]=3681, ["decoy_totem_radius_+%"]=3528, - ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=6126, - ["defend_with_%_armour_against_critical_strikes"]=6127, - ["defend_with_%_armour_against_hits_from_distance_greater_than_6m"]=6128, - ["defend_with_%_armour_against_ranged_attacks"]=6129, - ["defend_with_%_armour_when_low_energy_shield"]=6130, - ["defend_with_%_armour_while_you_have_energy_shield"]=6131, - ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=6132, - ["defiance_banner_aura_effect_+%"]=6133, - ["defiance_banner_mana_reservation_efficiency_+%"]=6134, + ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=6127, + ["defend_with_%_armour_against_critical_strikes"]=6128, + ["defend_with_%_armour_against_hits_from_distance_greater_than_6m"]=6129, + ["defend_with_%_armour_against_ranged_attacks"]=6130, + ["defend_with_%_armour_when_low_energy_shield"]=6131, + ["defend_with_%_armour_while_you_have_energy_shield"]=6132, + ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=6133, + ["defiance_banner_aura_effect_+%"]=6134, + ["defiance_banner_mana_reservation_efficiency_+%"]=6135, ["deflect_chance_is_lucky_while_on_low_life"]=1055, - ["deflected_hit_damage_taken_%_recouped_as_life"]=6135, - ["deflected_hits_cannot_directly_inflict_maim_on_self"]=6136, - ["deflected_hits_cannot_inflict_bleeding_on_self"]=6137, - ["deflection_rating_+%"]=6138, - ["deflection_rating_+%_while_moving"]=6139, - ["deflection_rating_+%_while_surrounded"]=6140, + ["deflected_hit_damage_taken_%_recouped_as_life"]=6136, + ["deflected_hits_cannot_directly_inflict_maim_on_self"]=6137, + ["deflected_hits_cannot_inflict_bleeding_on_self"]=6138, + ["deflection_rating_+%"]=6139, + ["deflection_rating_+%_while_moving"]=6140, + ["deflection_rating_+%_while_surrounded"]=6141, ["degen_effect_+%"]=1994, - ["delirium_aura_effect_+%"]=6141, - ["delirium_mana_reservation_+%"]=6142, - ["delirium_reserves_no_mana"]=6143, - ["delve_biome_area_contains_x_extra_packs_of_insects"]=6144, + ["delirium_aura_effect_+%"]=6142, + ["delirium_mana_reservation_+%"]=6143, + ["delirium_reserves_no_mana"]=6144, + ["delve_biome_area_contains_x_extra_packs_of_insects"]=6145, ["delve_biome_azurite_collected_+%"]=2059, ["delve_biome_boss_drops_additional_unique_item"]=2050, ["delve_biome_boss_drops_extra_precursor_component_ring"]=2051, @@ -239012,7 +239289,7 @@ return { ["delve_biome_contains_delve_boss"]=2049, ["delve_biome_encounters_extra_reward_chest_%_chance"]=2062, ["delve_biome_monster_drop_fossil_chance_%"]=2063, - ["delve_biome_monster_projectiles_always_pierce"]=6145, + ["delve_biome_monster_projectiles_always_pierce"]=6146, ["delve_biome_node_tier_upgrade_+%"]=2065, ["delve_biome_off_path_reward_chests_always_azurite"]=2067, ["delve_biome_off_path_reward_chests_always_currency"]=2068, @@ -239023,73 +239300,73 @@ return { ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2073, ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2074, ["delve_biome_sulphite_cost_+%_final"]=2060, - ["delve_boss_life_+%_final_from_biome"]=6146, - ["demigod_footprints_from_item"]=10778, - ["demigods_virtue"]=10699, - ["demon_form_has_no_max_stacks"]=6147, - ["demon_minion_reservation_+%"]=9998, + ["delve_boss_life_+%_final_from_biome"]=6147, + ["demigod_footprints_from_item"]=10795, + ["demigods_virtue"]=10716, + ["demon_form_has_no_max_stacks"]=6148, + ["demon_minion_reservation_+%"]=10008, ["desecrate_cooldown_speed_+%"]=3576, ["desecrate_creates_X_additional_corpses"]=3924, ["desecrate_damage_+%"]=3420, ["desecrate_duration_+%"]=3610, - ["desecrate_maximum_number_of_corpses"]=6149, + ["desecrate_maximum_number_of_corpses"]=6150, ["desecrate_number_of_corpses_to_create"]=3800, ["desecrate_on_block_%_chance_to_create"]=2380, ["desecrated_ground_effect_on_self_+%"]=1912, - ["despair_curse_effect_+%"]=6150, - ["despair_duration_+%"]=6151, + ["despair_curse_effect_+%"]=6151, + ["despair_duration_+%"]=6152, ["despair_gem_level_+"]=2006, - ["despair_no_reservation"]=6152, - ["destructive_link_duration_+%"]=6153, + ["despair_no_reservation"]=6153, + ["destructive_link_duration_+%"]=6154, ["determination_aura_effect_+%"]=3095, ["determination_mana_reservation_+%"]=3717, - ["determination_mana_reservation_efficiency_+%"]=6155, - ["determination_mana_reservation_efficiency_-2%_per_1"]=6154, - ["determination_reserves_no_mana"]=6156, + ["determination_mana_reservation_efficiency_+%"]=6156, + ["determination_mana_reservation_efficiency_-2%_per_1"]=6155, + ["determination_reserves_no_mana"]=6157, ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3679, ["detonate_dead_damage_+%"]=3389, ["detonate_dead_radius_+%"]=3523, - ["detonator_skill_area_of_effect_+%"]=6157, - ["detonator_skill_damage_+%"]=6158, + ["detonator_skill_area_of_effect_+%"]=6158, + ["detonator_skill_damage_+%"]=6159, ["devouring_totem_%_chance_to_consume_additional_corpse"]=3687, ["dexterity_+%"]=1024, - ["dexterity_+%_if_strength_higher_than_intelligence"]=6160, + ["dexterity_+%_if_strength_higher_than_intelligence"]=6161, ["dexterity_and_intelligence_+%"]=1028, - ["dexterity_can_satisfy_strength_and_intelligence_requirements_of_melee_weapons_and_skills"]=6159, + ["dexterity_can_satisfy_strength_and_intelligence_requirements_of_melee_weapons_and_skills"]=6160, ["dexterity_inherently_grants_mana_instead_of_accuracy"]=1783, ["dexterity_skill_gem_level_+"]=978, ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=415, ["disable_chest_slot"]=2388, ["disable_skill_if_melee_attack"]=2301, - ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=6161, - ["discharge_area_of_effect_+%_final"]=6162, + ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=6162, + ["discharge_area_of_effect_+%_final"]=6163, ["discharge_chance_not_to_consume_charges_%"]=3138, - ["discharge_cooldown_override_ms"]=6163, + ["discharge_cooldown_override_ms"]=6164, ["discharge_damage_+%"]=3136, - ["discharge_damage_+%_final"]=6164, - ["discharge_radius_+"]=6165, + ["discharge_damage_+%_final"]=6165, + ["discharge_radius_+"]=6166, ["discharge_radius_+%"]=3137, - ["discharge_triggered_damage_+%_final"]=6166, + ["discharge_triggered_damage_+%_final"]=6167, ["discipline_aura_effect_+%"]=3096, ["discipline_mana_reservation_+%"]=3718, - ["discipline_mana_reservation_efficiency_+%"]=6168, - ["discipline_mana_reservation_efficiency_-2%_per_1"]=6167, - ["discipline_reserves_no_mana"]=6169, - ["disintegrate_secondary_beam_angle_+%"]=6170, - ["dispel_bleed_on_guard_skill_use"]=6171, - ["dispel_corrupted_blood_on_guard_skill_use"]=6172, + ["discipline_mana_reservation_efficiency_+%"]=6169, + ["discipline_mana_reservation_efficiency_-2%_per_1"]=6168, + ["discipline_reserves_no_mana"]=6170, + ["disintegrate_secondary_beam_angle_+%"]=6171, + ["dispel_bleed_on_guard_skill_use"]=6172, + ["dispel_corrupted_blood_on_guard_skill_use"]=6173, ["dispel_status_ailments_on_flask_use"]=3028, ["dispel_status_ailments_on_rampage_threshold"]=2724, ["display_abberaths_hooves_skill_level"]=574, ["display_ailment_bearer_charge_interval"]=4113, - ["display_altar_chaos_aura"]=6173, - ["display_altar_cold_aura"]=6174, - ["display_altar_fire_aura"]=6175, - ["display_altar_lightning_aura"]=6176, - ["display_altar_tangle_tentalces_daemon"]=6177, - ["display_area_contains_alluring_vaal_side_area"]=6178, - ["display_area_contains_corrupting_tempest"]=6179, - ["display_area_contains_improved_labyrinth_trial"]=6180, + ["display_altar_chaos_aura"]=6174, + ["display_altar_cold_aura"]=6175, + ["display_altar_fire_aura"]=6176, + ["display_altar_lightning_aura"]=6177, + ["display_altar_tangle_tentalces_daemon"]=6178, + ["display_area_contains_alluring_vaal_side_area"]=6179, + ["display_area_contains_corrupting_tempest"]=6180, + ["display_area_contains_improved_labyrinth_trial"]=6181, ["display_attack_with_commandment_of_force_on_hit_%"]=3222, ["display_attack_with_commandment_of_fury_on_hit_%"]=3234, ["display_attack_with_commandment_of_ire_when_hit_%"]=3702, @@ -239152,272 +239429,273 @@ return { ["display_cast_word_of_thunder_on_kill_%"]=3253, ["display_cast_word_of_war_on_kill_%"]=3227, ["display_cast_word_of_winter_when_hit_%"]=3199, - ["display_cowards_trial_waves_of_monsters"]=6181, - ["display_cowards_trial_waves_of_undead_monsters"]=6182, - ["display_dark_ritual_curse_max_skill_level_requirement"]=6183, + ["display_cowards_trial_waves_of_monsters"]=6182, + ["display_cowards_trial_waves_of_undead_monsters"]=6183, + ["display_dark_ritual_curse_max_skill_level_requirement"]=6184, ["display_golden_radiance"]=2300, - ["display_heist_contract_lockdown_timer_+%"]=6184, - ["display_herald_of_thunder_storm"]=5821, - ["display_item_can_also_roll_ring_mods"]=6185, + ["display_heist_contract_lockdown_timer_+%"]=6185, + ["display_herald_of_thunder_storm"]=5822, + ["display_item_can_also_roll_ring_mods"]=6186, ["display_item_generation_can_roll_minion_affixes"]=45, ["display_item_generation_can_roll_totem_affixes"]=46, - ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=6186, - ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=6187, - ["display_legion_uber_fragment_improved_rewards_+%"]=6188, - ["display_link_stuff"]=7602, + ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=6187, + ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=6188, + ["display_legion_uber_fragment_improved_rewards_+%"]=6189, + ["display_link_stuff"]=7608, ["display_mana_cost_reduction_%"]=1720, - ["display_map_augmentable_boss"]=6189, + ["display_map_augmentable_boss"]=6190, ["display_map_boss_gives_experience_+%"]=2621, ["display_map_final_boss_drops_higher_level_gear"]=2620, ["display_map_has_oxygen"]=2751, - ["display_map_inhabited_by_lunaris_fanatics"]=6190, - ["display_map_inhabited_by_solaris_fanatics"]=6191, + ["display_map_inhabited_by_lunaris_fanatics"]=6191, + ["display_map_inhabited_by_solaris_fanatics"]=6192, ["display_map_inhabited_by_wild_beasts"]=2103, - ["display_map_labyrinth_chests_fortune"]=6192, - ["display_map_labyrinth_enchant_belts"]=6193, + ["display_map_labyrinth_chests_fortune"]=6193, + ["display_map_labyrinth_enchant_belts"]=6194, ["display_map_large_chest"]=2346, ["display_map_larger_maze"]=2345, - ["display_map_mission_id"]=6194, + ["display_map_mission_id"]=6195, ["display_map_no_monsters"]=2206, ["display_map_restless_dead"]=2344, - ["display_memory_line_abyss_beyond_monsters_from_cracks"]=6195, - ["display_memory_line_ambush_contains_standalone_map_boss"]=6196, - ["display_memory_line_ambush_strongbox_chain"]=6197, - ["display_memory_line_anarchy_rogue_exiles_in_packs"]=6198, - ["display_memory_line_bestiary_capturable_harvest_monsters"]=6199, - ["display_memory_line_breach_area_is_breached"]=6200, - ["display_memory_line_breach_miniature_flash_breaches"]=6201, - ["display_memory_line_domination_multiple_modded_shrines"]=6202, - ["display_memory_line_domination_shrines_to_pantheon_gods"]=6203, - ["display_memory_line_essence_multiple_rare_monsters"]=6204, - ["display_memory_line_essence_rogue_exiles"]=6205, - ["display_memory_line_harbinger_player_is_a_harbinger"]=6206, - ["display_memory_line_harbinger_portals_everywhere"]=6207, - ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=6208, - ["display_memory_line_torment_player_is_possessed"]=6209, - ["display_memory_line_torment_rares_uniques_are_possessed"]=6210, + ["display_memory_line_abyss_beyond_monsters_from_cracks"]=6196, + ["display_memory_line_ambush_contains_standalone_map_boss"]=6197, + ["display_memory_line_ambush_strongbox_chain"]=6198, + ["display_memory_line_anarchy_rogue_exiles_in_packs"]=6199, + ["display_memory_line_bestiary_capturable_harvest_monsters"]=6200, + ["display_memory_line_breach_area_is_breached"]=6201, + ["display_memory_line_breach_miniature_flash_breaches"]=6202, + ["display_memory_line_domination_multiple_modded_shrines"]=6203, + ["display_memory_line_domination_shrines_to_pantheon_gods"]=6204, + ["display_memory_line_essence_multiple_rare_monsters"]=6205, + ["display_memory_line_essence_rogue_exiles"]=6206, + ["display_memory_line_harbinger_player_is_a_harbinger"]=6207, + ["display_memory_line_harbinger_portals_everywhere"]=6208, + ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=6209, + ["display_memory_line_torment_player_is_possessed"]=6210, + ["display_memory_line_torment_rares_uniques_are_possessed"]=6211, ["display_minion_maximum_life"]=1721, - ["display_modifiers_to_totem_life_effect_these_minions"]=6211, + ["display_modifiers_to_totem_life_effect_these_minions"]=6212, ["display_no_sockets"]=44, - ["display_passive_attribute_text"]=6212, + ["display_passive_attribute_text"]=6213, ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=410, - ["display_stat_coming_soon"]=6213, - ["display_strongbox_drops_additional_shaper_or_elder_cards"]=6214, + ["display_stat_coming_soon"]=6214, + ["display_strongbox_drops_additional_shaper_or_elder_cards"]=6215, ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=576, - ["distance_scaled_accuracy_rating_penalty_+%"]=6215, - ["divine_tempest_beam_width_+%"]=6216, - ["divine_tempest_damage_+%"]=6217, - ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=6218, + ["distance_scaled_accuracy_rating_penalty_+%"]=6216, + ["divine_tempest_beam_width_+%"]=6217, + ["divine_tempest_damage_+%"]=6218, + ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=6219, ["do_not_chain"]=1570, - ["dodge_roll_base_travel_distance"]=6219, - ["dodge_roll_can_avoid_all_damage"]=6220, - ["dodge_roll_phasing_without_visual"]=6221, - ["dodge_roll_speed_+%"]=6222, + ["dodge_roll_base_travel_distance"]=6220, + ["dodge_roll_can_avoid_all_damage"]=6221, + ["dodge_roll_phasing_without_visual"]=6222, + ["dodge_roll_speed_+%"]=6223, ["dodge_roll_travel_distance_+_if_dodge_rolled_recently"]=4115, ["dodge_roll_travel_distance_+_if_not_dodge_rolled_recently"]=4114, - ["dodge_roll_travel_distance_+_while_surrounded"]=6223, - ["doedre_aura_damage_+%_final"]=6224, + ["dodge_roll_travel_distance_+_while_surrounded"]=6224, + ["doedre_aura_damage_+%_final"]=6225, ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2761, ["dominance_armour_evasion_energy_shield_+%_on_nearby_allies_per_100_strength"]=2762, ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2764, ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2763, - ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=6225, + ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=6226, ["dominating_blow_duration_+%"]=3592, ["dominating_blow_minion_damage_+%"]=3403, ["dominating_blow_skill_attack_damage_+%"]=3404, ["dot_multiplier_+"]=1219, - ["dot_multiplier_+_if_crit_in_past_8_seconds"]=6226, - ["dot_multiplier_+_while_affected_by_malevolence"]=6227, - ["dot_multiplier_+_with_bow_skills"]=6228, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=6229, - ["double_armour_effect"]=6230, - ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=6232, - ["double_damage_chance_%_if_below_100_strength"]=6231, - ["double_effect_of_consuming_frenzy_charges"]=6233, - ["double_evasion_rating_from_gloves_helmets_boots"]=6234, - ["double_evasion_rating_if_you_havent_been_hit_recently"]=6235, - ["double_number_of_poison_you_can_inflict"]=6236, + ["dot_multiplier_+_if_crit_in_past_8_seconds"]=6227, + ["dot_multiplier_+_while_affected_by_malevolence"]=6228, + ["dot_multiplier_+_with_bow_skills"]=6229, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=6230, + ["double_armour_effect"]=6231, + ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=6233, + ["double_damage_chance_%_if_below_100_strength"]=6232, + ["double_effect_of_consuming_frenzy_charges"]=6234, + ["double_evasion_rating_from_gloves_helmets_boots"]=6235, + ["double_evasion_rating_if_you_havent_been_hit_recently"]=6236, + ["double_number_of_poison_you_can_inflict"]=6237, ["double_slash_critical_strike_chance_+%"]=3824, ["double_slash_damage_+%"]=3817, - ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=6237, - ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=6237, + ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=6238, + ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=6238, ["double_slash_radius_+%"]=3826, ["double_strike_attack_speed_+%"]=3547, - ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=6238, + ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=6239, ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2972, ["double_strike_critical_strike_chance_+%"]=3627, ["double_strike_damage_+%"]=3332, - ["drain_%_max_mana_to_activate_expended_charms"]=6239, - ["drain_focus_%_of_damage_dealt_on_hit"]=6240, - ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=6241, - ["dread_banner_aura_effect_+%"]=6242, - ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner"]=6243, - ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50"]=6244, - ["dread_banner_mana_reservation_efficiency_+%"]=6245, - ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=6246, + ["drain_%_max_mana_to_activate_expended_charms"]=6240, + ["drain_focus_%_of_damage_dealt_on_hit"]=6241, + ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=6242, + ["dread_banner_aura_effect_+%"]=6243, + ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner"]=6244, + ["dread_banner_grants_an_additional_x_to_maximum_fortification_when_placing_the_banner_div_50"]=6245, + ["dread_banner_mana_reservation_efficiency_+%"]=6246, + ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=6247, ["dual_strike_attack_speed_+%"]=3548, - ["dual_strike_attack_speed_+%_while_wielding_claw"]=6247, + ["dual_strike_attack_speed_+%_while_wielding_claw"]=6248, ["dual_strike_critical_strike_chance_+%"]=3628, - ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=6248, + ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=6249, ["dual_strike_damage_+%"]=3333, - ["dual_strike_intimidate_on_hit_while_wielding_axe"]=6249, - ["dual_strike_main_hand_deals_double_damage_%"]=6250, - ["dual_strike_melee_splash_while_wielding_mace"]=6251, - ["dual_strike_melee_splash_with_off_hand_weapon"]=6252, - ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=6253, + ["dual_strike_intimidate_on_hit_while_wielding_axe"]=6250, + ["dual_strike_main_hand_deals_double_damage_%"]=6251, + ["dual_strike_melee_splash_while_wielding_mace"]=6252, + ["dual_strike_melee_splash_with_off_hand_weapon"]=6253, + ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=6254, ["dual_wield_or_shield_block_%"]=1156, - ["dummy_display_defeating_arbiter_will_allow_completion_of_a_section_of_fortress"]=6254, - ["dummy_display_stat_active"]=6255, - ["dummy_display_stat_inactive"]=6256, - ["dummy_display_stat_rune_chaos_convert"]=6257, - ["dummy_display_stat_rune_cold_convert"]=6258, - ["dummy_display_stat_rune_create_jewel_socket"]=6259, - ["dummy_display_stat_rune_delevel_inherent_skill"]=6260, - ["dummy_display_stat_rune_fire_convert"]=6261, - ["dummy_display_stat_rune_lightning_convert"]=6262, - ["dummy_display_stat_rune_olroths_legacy"]=6263, - ["dummy_display_stat_rune_reforge"]=6264, - ["dummy_display_stat_rune_upgrade"]=6265, + ["dummy_display_defeating_arbiter_will_allow_completion_of_a_section_of_fortress"]=6255, + ["dummy_display_is_obliterated"]=6256, + ["dummy_display_stat_active"]=6257, + ["dummy_display_stat_inactive"]=6258, + ["dummy_display_stat_rune_chaos_convert"]=6259, + ["dummy_display_stat_rune_cold_convert"]=6260, + ["dummy_display_stat_rune_create_jewel_socket"]=6261, + ["dummy_display_stat_rune_delevel_inherent_skill"]=6262, + ["dummy_display_stat_rune_fire_convert"]=6263, + ["dummy_display_stat_rune_lightning_convert"]=6264, + ["dummy_display_stat_rune_olroths_legacy"]=6265, + ["dummy_display_stat_rune_reforge"]=6266, + ["dummy_display_stat_rune_upgrade"]=6267, ["dummy_stat_display_contains_mapuniquelake_mirror"]=425, - ["dummy_stat_zarokhs_gift_jewel_slot"]=6266, - ["duration_of_ailments_on_self_+%_per_fortification"]=6267, - ["each_arrow_fired_gains_random_perdandus_prefix"]=6268, - ["earthquake_and_earthshatter_shatter_on_killing_blow"]=6269, + ["dummy_stat_zarokhs_gift_jewel_slot"]=6268, + ["duration_of_ailments_on_self_+%_per_fortification"]=6269, + ["each_arrow_fired_gains_random_perdandus_prefix"]=6270, + ["earthquake_and_earthshatter_shatter_on_killing_blow"]=6271, ["earthquake_damage_+%"]=3435, - ["earthquake_damage_+%_per_100ms_duration"]=6270, + ["earthquake_damage_+%_per_100ms_duration"]=6272, ["earthquake_duration_+%"]=3617, ["earthquake_radius_+%"]=3538, - ["earthshatter_area_of_effect_+%"]=6271, - ["earthshatter_damage_+%"]=6272, - ["echoed_spell_area_of_effect_+%"]=6273, - ["effects_from_blinded_are_inverted"]=10648, - ["electrocuted_enemy_damage_taken_+%"]=6274, - ["elemental_ailment_chance_+%"]=6275, - ["elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently"]=6276, - ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6277, - ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6278, - ["elemental_ailment_types_apply_damage_taken_+%"]=6279, - ["elemental_ailments_reflected_to_self"]=6280, + ["earthshatter_area_of_effect_+%"]=6273, + ["earthshatter_damage_+%"]=6274, + ["echoed_spell_area_of_effect_+%"]=6275, + ["effects_from_blinded_are_inverted"]=10664, + ["electrocuted_enemy_damage_taken_+%"]=6276, + ["elemental_ailment_chance_+%"]=6277, + ["elemental_ailment_chance_+%_if_youve_shapeshifted_to_animal_recently"]=6278, + ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6279, + ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6280, + ["elemental_ailment_types_apply_damage_taken_+%"]=6281, + ["elemental_ailments_reflected_to_self"]=6282, ["elemental_critical_strike_chance_+%"]=1404, ["elemental_critical_strike_multiplier_+"]=1426, ["elemental_damage_+%"]=1750, ["elemental_damage_+%_during_flask_effect"]=3901, - ["elemental_damage_+%_final_per_righteous_charge"]=6283, - ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6284, - ["elemental_damage_+%_if_enemy_chilled_recently"]=6285, - ["elemental_damage_+%_if_enemy_ignited_recently"]=6286, - ["elemental_damage_+%_if_enemy_shocked_recently"]=6287, - ["elemental_damage_+%_if_have_crit_recently"]=6288, - ["elemental_damage_+%_if_used_a_warcry_recently"]=6289, - ["elemental_damage_+%_per_10_devotion"]=6290, - ["elemental_damage_+%_per_10_dexterity"]=6291, - ["elemental_damage_+%_per_12_int"]=6292, - ["elemental_damage_+%_per_12_strength"]=6293, + ["elemental_damage_+%_final_per_righteous_charge"]=6285, + ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6286, + ["elemental_damage_+%_if_enemy_chilled_recently"]=6287, + ["elemental_damage_+%_if_enemy_ignited_recently"]=6288, + ["elemental_damage_+%_if_enemy_shocked_recently"]=6289, + ["elemental_damage_+%_if_have_crit_recently"]=6290, + ["elemental_damage_+%_if_used_a_warcry_recently"]=6291, + ["elemental_damage_+%_per_10_devotion"]=6292, + ["elemental_damage_+%_per_10_dexterity"]=6293, + ["elemental_damage_+%_per_12_int"]=6294, + ["elemental_damage_+%_per_12_strength"]=6295, ["elemental_damage_+%_per_divine_charge"]=4074, ["elemental_damage_+%_per_frenzy_charge"]=1901, ["elemental_damage_+%_per_level"]=2744, - ["elemental_damage_+%_per_power_charge"]=6294, - ["elemental_damage_+%_per_sextant_affecting_area"]=6295, + ["elemental_damage_+%_per_power_charge"]=6296, + ["elemental_damage_+%_per_sextant_affecting_area"]=6297, ["elemental_damage_+%_per_stackable_unique_jewel"]=3838, - ["elemental_damage_+%_while_affected_by_a_herald"]=6296, - ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6297, - ["elemental_damage_+%_while_shapeshifted"]=6281, - ["elemental_damage_additional_rolls_lucky_shocked"]=6282, + ["elemental_damage_+%_while_affected_by_a_herald"]=6298, + ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6299, + ["elemental_damage_+%_while_shapeshifted"]=6283, + ["elemental_damage_additional_rolls_lucky_shocked"]=6284, ["elemental_damage_also_contributes_to_flammability_ignite_chill_freeze_and_shock"]=2650, ["elemental_damage_can_freeze"]=2651, ["elemental_damage_can_ignite"]=2652, ["elemental_damage_can_inflict_bleeding"]=2653, ["elemental_damage_can_shock"]=2654, - ["elemental_damage_reduction_%_from_evasion_rating"]=6298, - ["elemental_damage_resistance_+%"]=6299, - ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6300, + ["elemental_damage_reduction_%_from_evasion_rating"]=6300, + ["elemental_damage_resistance_+%"]=6301, + ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6302, ["elemental_damage_taken_%_as_chaos"]=2239, - ["elemental_damage_taken_%_recouped_as_life"]=6301, + ["elemental_damage_taken_%_recouped_as_life"]=6303, ["elemental_damage_taken_+%"]=3025, ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=3051, ["elemental_damage_taken_+%_during_flask_effect"]=3763, - ["elemental_damage_taken_+%_final_per_raised_zombie"]=6302, - ["elemental_damage_taken_+%_if_been_hit_recently"]=6304, - ["elemental_damage_taken_+%_if_not_hit_recently"]=6305, - ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6306, - ["elemental_damage_taken_+%_per_endurance_charge"]=6307, + ["elemental_damage_taken_+%_final_per_raised_zombie"]=6304, + ["elemental_damage_taken_+%_if_been_hit_recently"]=6306, + ["elemental_damage_taken_+%_if_not_hit_recently"]=6307, + ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6308, + ["elemental_damage_taken_+%_per_endurance_charge"]=6309, ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3736, - ["elemental_damage_taken_+%_while_stationary"]=6308, - ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6303, + ["elemental_damage_taken_+%_while_stationary"]=6310, + ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6305, ["elemental_damage_with_attack_skills_+%"]=901, - ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6309, + ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6311, ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2543, ["elemental_golem_granted_buff_effect_+%"]=3774, ["elemental_golem_immunity_to_elemental_damage"]=3771, - ["elemental_golems_maximum_life_is_doubled"]=6310, - ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6311, + ["elemental_golems_maximum_life_is_doubled"]=6312, + ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6313, ["elemental_hit_attack_speed_+%"]=3555, - ["elemental_hit_cannot_roll_cold_damage"]=6312, - ["elemental_hit_cannot_roll_fire_damage"]=6313, - ["elemental_hit_cannot_roll_lightning_damage"]=6314, + ["elemental_hit_cannot_roll_cold_damage"]=6314, + ["elemental_hit_cannot_roll_fire_damage"]=6315, + ["elemental_hit_cannot_roll_lightning_damage"]=6316, ["elemental_hit_damage_+%"]=3377, ["elemental_hit_damage_taken_%_as_physical"]=2238, - ["elemental_hit_deals_50%_less_cold_damage"]=6315, - ["elemental_hit_deals_50%_less_fire_damage"]=6316, - ["elemental_hit_deals_50%_less_lightning_damage"]=6317, - ["elemental_overload_rotation_active"]=10763, + ["elemental_hit_deals_50%_less_cold_damage"]=6317, + ["elemental_hit_deals_50%_less_fire_damage"]=6318, + ["elemental_hit_deals_50%_less_lightning_damage"]=6319, + ["elemental_overload_rotation_active"]=10780, ["elemental_penetration_%_during_flask_effect"]=3936, - ["elemental_penetration_%_if_you_have_a_power_charge"]=6319, - ["elemental_penetration_%_while_chilled"]=6320, - ["elemental_penetration_can_go_down_to_override"]=6318, + ["elemental_penetration_%_if_you_have_a_power_charge"]=6321, + ["elemental_penetration_%_while_chilled"]=6322, + ["elemental_penetration_can_go_down_to_override"]=6320, ["elemental_reflect_damage_taken_+%"]=2504, - ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=6322, - ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6321, - ["elemental_resistance_%_per_10_devotion"]=6325, - ["elemental_resistance_%_per_minion_up_to_30%"]=6323, + ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=6324, + ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6323, + ["elemental_resistance_%_per_10_devotion"]=6327, + ["elemental_resistance_%_per_minion_up_to_30%"]=6325, ["elemental_resistance_%_per_stackable_unique_jewel"]=3839, ["elemental_resistance_%_when_on_low_life"]=1507, ["elemental_resistance_+%_per_15_ascendance"]=1171, - ["elemental_resistance_cannot_be_lowered_by_curses"]=6324, + ["elemental_resistance_cannot_be_lowered_by_curses"]=6326, ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3750, - ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6326, - ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6327, + ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6328, + ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6329, ["elemental_skill_gem_level_+"]=981, - ["elemental_skill_limit_+"]=6328, - ["elemental_skills_deal_triple_damage"]=6329, - ["elemental_storm_cooldown_recovery_speed_+%_final"]=6330, - ["elemental_sundering_damage_+%_final_if_created_from_unique"]=6331, + ["elemental_skill_limit_+"]=6330, + ["elemental_skills_deal_triple_damage"]=6331, + ["elemental_storm_cooldown_recovery_speed_+%_final"]=6332, + ["elemental_sundering_damage_+%_final_if_created_from_unique"]=6333, ["elemental_weakness_curse_effect_+%"]=3693, ["elemental_weakness_duration_+%"]=3608, ["elemental_weakness_gem_level_+"]=2007, ["elemental_weakness_ignores_hexproof"]=2406, - ["elemental_weakness_no_reservation"]=6332, + ["elemental_weakness_no_reservation"]=6334, ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3326, - ["elementalist_area_of_effect_+%_for_5_seconds"]=6333, - ["elementalist_chill_maximum_magnitude_override"]=6334, + ["elementalist_area_of_effect_+%_for_5_seconds"]=6335, + ["elementalist_chill_maximum_magnitude_override"]=6336, ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3322, ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3319, ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3321, - ["elementalist_elemental_damage_+%_for_5_seconds"]=6335, + ["elementalist_elemental_damage_+%_for_5_seconds"]=6337, ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3324, - ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6336, - ["elementalist_ignite_effect_+%_final"]=6337, + ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6338, + ["elementalist_ignite_effect_+%_final"]=6339, ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3323, ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3913, ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3325, - ["elusive_effect_+%"]=6338, + ["elusive_effect_+%"]=6340, ["elusive_effect_on_self_+%_per_power_charge"]=4077, - ["ember_projectile_spread_area_+%"]=6339, - ["empowered_attack_damage_+%"]=6341, - ["empowered_attack_damage_+%_per_10_tribute"]=6340, - ["empowered_attack_double_damage_%_chance"]=6342, - ["empowered_attack_hit_damage_stun_multiplier_+%"]=6343, - ["empowered_attack_physical_damage_%_to_gain_as_fire"]=6344, - ["enable_chakras"]=6345, - ["enable_ring_slot_3"]=6346, - ["enable_unfettered_authority_roll_variation"]=10779, + ["ember_projectile_spread_area_+%"]=6341, + ["empowered_attack_damage_+%"]=6343, + ["empowered_attack_damage_+%_per_10_tribute"]=6342, + ["empowered_attack_double_damage_%_chance"]=6344, + ["empowered_attack_hit_damage_stun_multiplier_+%"]=6345, + ["empowered_attack_physical_damage_%_to_gain_as_fire"]=6346, + ["enable_chakras"]=6347, + ["enable_ring_slot_3"]=6348, + ["enable_unfettered_authority_roll_variation"]=10796, ["enchantment_boots_added_cold_damage_when_hit_maximum"]=2977, ["enchantment_boots_added_cold_damage_when_hit_minimum"]=2977, ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2976, ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=3038, ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2918, ["enchantment_boots_mana_costs_when_hit_+%"]=2974, - ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6347, + ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6349, ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3040, ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2979, ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2978, @@ -239429,359 +239707,359 @@ return { ["enchantment_boots_stun_avoid_%_on_kill"]=2975, ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3260, ["endurance_charge_duration_+%"]=1888, - ["endurance_charge_on_hit_%_vs_no_armour"]=6348, + ["endurance_charge_on_hit_%_vs_no_armour"]=6350, ["endurance_charge_on_kill_%"]=2427, - ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6349, - ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6350, + ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6351, + ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6352, ["endurance_charge_on_off_hand_kill_%"]=3166, ["endurance_only_conduit"]=2034, ["enduring_cry_buff_effect_+%"]=3789, ["enduring_cry_cooldown_speed_+%"]=3581, - ["enduring_cry_grants_x_additional_endurance_charges"]=6351, - ["enemies_affected_by_your_hazards_recently_have_+%_armour"]=6352, - ["enemies_affected_by_your_hazards_recently_have_+%_evasion_rating"]=6353, - ["enemies_are_maimed_for_x_seconds_after_becoming_unpinned"]=6354, - ["enemies_blinded_by_you_while_blinded_have_malediction"]=6355, + ["enduring_cry_grants_x_additional_endurance_charges"]=6353, + ["enemies_affected_by_your_hazards_recently_have_+%_armour"]=6354, + ["enemies_affected_by_your_hazards_recently_have_+%_evasion_rating"]=6355, + ["enemies_are_maimed_for_x_seconds_after_becoming_unpinned"]=6356, + ["enemies_blinded_by_you_while_blinded_have_malediction"]=6357, ["enemies_chaos_resistance_%_while_cursed"]=3740, ["enemies_chill_as_unfrozen"]=1678, - ["enemies_chilled_by_bane_and_contagion"]=6356, - ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6357, - ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6358, + ["enemies_chilled_by_bane_and_contagion"]=6358, + ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6359, + ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6360, ["enemies_damage_taken_+%_while_cursed"]=3457, - ["enemies_dying_while_afflicted_by_abyssal_wasting_have_x%_chance_to_explode_on_death_for_10%_of_maximum_life"]=6359, - ["enemies_explode_for_%_life_as_physical_damage"]=6360, - ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6361, - ["enemies_explode_on_kill"]=6362, - ["enemies_explode_on_kill_while_unhinged"]=6363, - ["enemies_extra_damage_rolls_with_lightning_damage"]=6364, - ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6365, - ["enemies_extra_damage_rolls_with_physical_damage"]=6366, - ["enemies_hitting_you_drop_burning_ground_%"]=6367, - ["enemies_hitting_you_drop_chilled_ground_%"]=6368, - ["enemies_hitting_you_drop_shocked_ground_%"]=6369, - ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6370, - ["enemies_in_chilled_ground_take_+%_fire_damage"]=6371, - ["enemies_in_ignited_ground_take_+%_cold_damage"]=6372, - ["enemies_in_presence_are_blinded"]=6373, - ["enemies_in_presence_are_blinded_by_the_wendigo"]=6374, - ["enemies_in_presence_are_intimidated"]=6375, - ["enemies_in_presence_cooldown_recovery_+%"]=6376, - ["enemies_in_presence_count_as_low_life"]=6377, - ["enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance"]=6378, - ["enemies_in_presence_gain_critical_weakness_every_second_for_seconds"]=6380, - ["enemies_in_presence_have_exposure"]=6381, - ["enemies_in_presence_have_fire_resistance_%"]=6382, - ["enemies_in_presence_have_no_elemental_resistances"]=6383, - ["enemies_in_presence_life_regeneration_+%"]=6384, - ["enemies_in_presence_lightning_resist_equal_to_yours"]=6385, - ["enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=6386, - ["enemies_in_your_presence_gain_a_stack_of_gruelling_madness_every_second"]=6379, - ["enemies_in_your_presence_with_abyssal_wasting_have_doubled_power"]=6387, - ["enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted"]=6388, - ["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=6389, - ["enemies_killed_while_afflicted_by_abyssal_wasting_grant_+%_flask_charges"]=6390, - ["enemies_killed_while_afflicted_by_abyssal_wasting_grant_x_rage"]=6391, - ["enemies_killed_while_afflicted_by_abyssal_wasting_grant_x_volatility"]=6392, - ["enemies_killed_while_afflicted_by_abyssal_wasting_have_%_chance_to_grant_you_onslaught_for_3_seconds"]=6393, - ["enemies_killed_while_afflicted_by_abyssal_wasting_have_%_chance_to_revive_a_minion"]=6394, - ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6395, - ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6396, - ["enemies_near_link_skill_target_have_exposure"]=6397, - ["enemies_near_marked_enemy_are_blinded"]=6398, - ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6399, - ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6400, - ["enemies_taunted_by_you_cannot_evade_attacks"]=6401, - ["enemies_taunted_by_your_warcies_are_intimidated"]=6402, - ["enemies_taunted_by_your_warcries_are_unnerved"]=6403, - ["enemies_that_hit_you_inflict_temporal_chains"]=6404, - ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6405, + ["enemies_dying_while_afflicted_by_abyssal_wasting_have_x%_chance_to_explode_on_death_for_10%_of_maximum_life"]=6361, + ["enemies_explode_for_%_life_as_physical_damage"]=6362, + ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6363, + ["enemies_explode_on_kill"]=6364, + ["enemies_explode_on_kill_while_unhinged"]=6365, + ["enemies_extra_damage_rolls_with_lightning_damage"]=6366, + ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6367, + ["enemies_extra_damage_rolls_with_physical_damage"]=6368, + ["enemies_hitting_you_drop_burning_ground_%"]=6369, + ["enemies_hitting_you_drop_chilled_ground_%"]=6370, + ["enemies_hitting_you_drop_shocked_ground_%"]=6371, + ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6372, + ["enemies_in_chilled_ground_take_+%_fire_damage"]=6373, + ["enemies_in_ignited_ground_take_+%_cold_damage"]=6374, + ["enemies_in_presence_are_blinded"]=6375, + ["enemies_in_presence_are_blinded_by_the_wendigo"]=6376, + ["enemies_in_presence_are_intimidated"]=6377, + ["enemies_in_presence_cooldown_recovery_+%"]=6378, + ["enemies_in_presence_count_as_low_life"]=6379, + ["enemies_in_presence_elemental_damage_resisted_by_lowest_elemental_resistance"]=6380, + ["enemies_in_presence_gain_critical_weakness_every_second_for_seconds"]=6382, + ["enemies_in_presence_have_exposure"]=6383, + ["enemies_in_presence_have_fire_resistance_%"]=6384, + ["enemies_in_presence_have_no_elemental_resistances"]=6385, + ["enemies_in_presence_life_regeneration_+%"]=6386, + ["enemies_in_presence_lightning_resist_equal_to_yours"]=6387, + ["enemies_in_presence_non_skill_base_all_damage_%_to_gain_as_chaos"]=6388, + ["enemies_in_your_presence_gain_a_stack_of_gruelling_madness_every_second"]=6381, + ["enemies_in_your_presence_with_abyssal_wasting_have_doubled_power"]=6389, + ["enemies_intimidated_x_seconds_when_pinned_heavy_stunned_frozen_or_electrocuted"]=6390, + ["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=6391, + ["enemies_killed_while_afflicted_by_abyssal_wasting_grant_+%_flask_charges"]=6392, + ["enemies_killed_while_afflicted_by_abyssal_wasting_grant_x_rage"]=6393, + ["enemies_killed_while_afflicted_by_abyssal_wasting_grant_x_volatility"]=6394, + ["enemies_killed_while_afflicted_by_abyssal_wasting_have_%_chance_to_grant_you_onslaught_for_3_seconds"]=6395, + ["enemies_killed_while_afflicted_by_abyssal_wasting_have_%_chance_to_revive_a_minion"]=6396, + ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6397, + ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6398, + ["enemies_near_link_skill_target_have_exposure"]=6399, + ["enemies_near_marked_enemy_are_blinded"]=6400, + ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6401, + ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6402, + ["enemies_taunted_by_you_cannot_evade_attacks"]=6403, + ["enemies_taunted_by_your_warcies_are_intimidated"]=6404, + ["enemies_taunted_by_your_warcries_are_unnerved"]=6405, + ["enemies_that_hit_you_inflict_temporal_chains"]=6406, + ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6407, ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4081, ["enemies_you_bleed_grant_flask_charges_+%"]=2298, - ["enemies_you_blind_have_critical_strike_chance_+%"]=6406, - ["enemies_you_blind_have_no_crit_bonus_for_x_seconds"]=6407, - ["enemies_you_curse_are_intimidated"]=6408, - ["enemies_you_curse_are_unnerved"]=6409, - ["enemies_you_curse_cannot_recharge_energy_shield"]=6410, - ["enemies_you_curse_have_15%_hinder"]=6411, + ["enemies_you_blind_have_critical_strike_chance_+%"]=6408, + ["enemies_you_blind_have_no_crit_bonus_for_x_seconds"]=6409, + ["enemies_you_curse_are_intimidated"]=6410, + ["enemies_you_curse_are_unnerved"]=6411, + ["enemies_you_curse_cannot_recharge_energy_shield"]=6412, + ["enemies_you_curse_have_15%_hinder"]=6413, ["enemies_you_curse_have_malediction"]=3458, - ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6412, - ["enemies_you_heavy_stun_while_shapeshifted_are_intimidated_for_x_seconds"]=6413, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6414, - ["enemies_you_ignite_wither_does_not_expire"]=6415, - ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6416, - ["enemies_you_maim_have_damage_taken_over_time_+%"]=6417, + ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6414, + ["enemies_you_heavy_stun_while_shapeshifted_are_intimidated_for_x_seconds"]=6415, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6416, + ["enemies_you_ignite_wither_does_not_expire"]=6417, + ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6418, + ["enemies_you_maim_have_damage_taken_over_time_+%"]=6419, ["enemies_you_shock_cast_speed_+%"]=3956, ["enemies_you_shock_movement_speed_+%"]=3957, - ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6418, - ["enemies_you_wither_have_all_resistances_%"]=6419, + ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6420, + ["enemies_you_wither_have_all_resistances_%"]=6421, ["enemy_additional_critical_strike_chance_permyriad_against_self"]=2882, ["enemy_aggro_radius_+%"]=2894, ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2883, - ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6420, - ["enemy_extra_damage_rolls_chance_%"]=6422, - ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6423, - ["enemy_extra_damage_rolls_when_on_full_life"]=6424, + ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6422, + ["enemy_extra_damage_rolls_chance_%"]=6424, + ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6425, + ["enemy_extra_damage_rolls_when_on_full_life"]=6426, ["enemy_extra_damage_rolls_when_on_low_life"]=2362, ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2867, - ["enemy_hit_critical_strike_chance_+%_against_self_while_chilled"]=6425, - ["enemy_hits_against_you_have_distance_based_accuracy_falloff"]=6426, + ["enemy_hit_critical_strike_chance_+%_against_self_while_chilled"]=6427, + ["enemy_hits_against_you_have_distance_based_accuracy_falloff"]=6428, ["enemy_hits_roll_low_damage"]=2360, ["enemy_knockback_direction_is_reversed"]=2776, - ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6427, + ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6429, ["enemy_non_skill_physical_damage_%_as_extra_fire_vs_you"]=1697, ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2435, ["enemy_phys_reduction_%_penalty_vs_hit"]=2746, ["enemy_shock_on_kill"]=1679, - ["enemy_spell_critical_strike_chance_+%_against_self"]=6428, - ["energy_generated_+%"]=6429, - ["energy_generated_+%_if_crit_recently"]=6431, - ["energy_generated_+%_on_full_mana"]=6432, - ["energy_generated_+%_per_spell_crit_dealt_recently"]=6433, - ["energy_generation_is_doubled"]=6434, + ["enemy_spell_critical_strike_chance_+%_against_self"]=6430, + ["energy_generated_+%"]=6431, + ["energy_generated_+%_if_crit_recently"]=6433, + ["energy_generated_+%_on_full_mana"]=6434, + ["energy_generated_+%_per_spell_crit_dealt_recently"]=6435, + ["energy_generation_is_doubled"]=6436, ["energy_shield_%_gained_on_block"]=2272, ["energy_shield_%_of_armour_rating_gained_on_block"]=2273, ["energy_shield_%_to_lose_on_block"]=2526, - ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6435, - ["energy_shield_+%_if_consumed_power_charge_recently"]=6436, - ["energy_shield_+%_per_10_strength"]=6453, - ["energy_shield_+%_per_power_charge"]=6454, - ["energy_shield_+_per_8_evasion_on_boots"]=6437, - ["energy_shield_+_per_8_helmet_armour"]=6438, - ["energy_shield_cannot_be_converted"]=6439, + ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6437, + ["energy_shield_+%_if_consumed_power_charge_recently"]=6438, + ["energy_shield_+%_per_10_strength"]=6455, + ["energy_shield_+%_per_power_charge"]=6456, + ["energy_shield_+_per_8_evasion_on_boots"]=6439, + ["energy_shield_+_per_8_helmet_armour"]=6440, + ["energy_shield_cannot_be_converted"]=6441, ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2445, ["energy_shield_delay_-%"]=1057, - ["energy_shield_delay_-%_if_stunned_recently"]=6440, - ["energy_shield_delay_-%_when_not_on_full_life"]=6441, - ["energy_shield_delay_-%_while_affected_by_archon"]=6442, - ["energy_shield_delay_-%_while_affected_by_discipline"]=6444, - ["energy_shield_delay_-%_while_shapeshifted"]=6443, + ["energy_shield_delay_-%_if_stunned_recently"]=6442, + ["energy_shield_delay_-%_when_not_on_full_life"]=6443, + ["energy_shield_delay_-%_while_affected_by_archon"]=6444, + ["energy_shield_delay_-%_while_affected_by_discipline"]=6446, + ["energy_shield_delay_-%_while_shapeshifted"]=6445, ["energy_shield_delay_during_flask_effect_-%"]=3285, - ["energy_shield_from_focus_+%"]=6445, - ["energy_shield_from_gloves_and_boots_+%"]=6446, - ["energy_shield_from_helmet_+%"]=6447, + ["energy_shield_from_focus_+%"]=6447, + ["energy_shield_from_gloves_and_boots_+%"]=6448, + ["energy_shield_from_helmet_+%"]=6449, ["energy_shield_gain_per_target"]=1534, - ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6448, - ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6449, + ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6450, + ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6451, ["energy_shield_gained_on_block"]=1545, ["energy_shield_gained_on_enemy_death_per_level"]=2742, - ["energy_shield_increased_by_uncapped_cold_resistance"]=6450, - ["energy_shield_lost_per_minute_%"]=6451, - ["energy_shield_per_level"]=6452, + ["energy_shield_increased_by_uncapped_cold_resistance"]=6452, + ["energy_shield_lost_per_minute_%"]=6453, + ["energy_shield_per_level"]=6454, ["energy_shield_protects_mana"]=2866, - ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6455, - ["energy_shield_recharge_delay_override_ms"]=6456, + ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6457, + ["energy_shield_recharge_delay_override_ms"]=6458, ["energy_shield_recharge_is_not_interrupted_if_recharge_begaen_recently"]=3446, ["energy_shield_recharge_not_delayed_by_damage"]=1462, ["energy_shield_recharge_rate_+%"]=1056, - ["energy_shield_recharge_rate_+%_if_blocked_recently"]=6464, - ["energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently"]=6457, - ["energy_shield_recharge_rate_+%_per_25_tribute"]=6458, - ["energy_shield_recharge_rate_+%_per_4_dexterity"]=6459, - ["energy_shield_recharge_rate_+%_per_4_strength"]=6460, - ["energy_shield_recharge_rate_+%_per_X_maximum_ward"]=6461, - ["energy_shield_recharge_rate_+%_while_affected_by_archon"]=6462, - ["energy_shield_recharge_rate_+%_while_shapeshifted"]=6463, + ["energy_shield_recharge_rate_+%_if_blocked_recently"]=6466, + ["energy_shield_recharge_rate_+%_if_not_dodge_rolled_recently"]=6459, + ["energy_shield_recharge_rate_+%_per_25_tribute"]=6460, + ["energy_shield_recharge_rate_+%_per_4_dexterity"]=6461, + ["energy_shield_recharge_rate_+%_per_4_strength"]=6462, + ["energy_shield_recharge_rate_+%_per_X_maximum_ward"]=6463, + ["energy_shield_recharge_rate_+%_while_affected_by_archon"]=6464, + ["energy_shield_recharge_rate_+%_while_shapeshifted"]=6465, ["energy_shield_recharge_rate_during_flask_effect_+%"]=3287, ["energy_shield_recharge_rate_per_minute_%"]=1463, ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3880, - ["energy_shield_recharge_start_when_minions_reform"]=6465, - ["energy_shield_recharge_start_when_stunned"]=6466, - ["energy_shield_recharge_starts_after_spending_2000_mana_every_2_seconds"]=6467, + ["energy_shield_recharge_start_when_minions_reform"]=6467, + ["energy_shield_recharge_start_when_stunned"]=6468, + ["energy_shield_recharge_starts_after_spending_2000_mana_every_2_seconds"]=6469, ["energy_shield_recharges_on_block_%"]=3144, - ["energy_shield_recharges_on_kill_%"]=6468, - ["energy_shield_recharges_on_skill_use_chance_%"]=6469, + ["energy_shield_recharges_on_kill_%"]=6470, + ["energy_shield_recharges_on_skill_use_chance_%"]=6471, ["energy_shield_recovery_rate_+%"]=1464, - ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6470, - ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6471, - ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6472, - ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6473, - ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6474, + ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6472, + ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6473, + ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6474, + ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6475, + ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6476, ["energy_shield_regeneration_%_per_minute_while_shocked"]=2784, - ["energy_shield_regeneration_rate_+%"]=6481, - ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6477, - ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6478, + ["energy_shield_regeneration_rate_+%"]=6483, + ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6479, + ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6480, ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1580, - ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6475, - ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6476, - ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6479, - ["energy_shield_regeneration_rate_per_second"]=6480, + ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6477, + ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6478, + ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6481, + ["energy_shield_regeneration_rate_per_second"]=6482, ["enfeeble_curse_effect_+%"]=3694, ["enfeeble_duration_+%"]=3607, ["enfeeble_gem_level_+"]=2008, ["enfeeble_ignores_hexproof"]=2407, - ["enfeeble_no_reservation"]=6482, - ["ensnaring_arrow_area_of_effect_+%"]=6483, - ["ensnaring_arrow_debuff_effect_+%"]=6484, - ["envy_reserves_no_mana"]=6485, - ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6486, - ["equipped_jewellery_effect_of_bonuses_+%"]=6487, - ["equipped_ring1_effect_of_bonuses_+%"]=6488, - ["equipped_ring2_effect_of_bonuses_+%"]=6489, - ["equipped_rings_effect_of_bonuses_+%"]=6490, + ["enfeeble_no_reservation"]=6484, + ["ensnaring_arrow_area_of_effect_+%"]=6485, + ["ensnaring_arrow_debuff_effect_+%"]=6486, + ["envy_reserves_no_mana"]=6487, + ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6488, + ["equipped_jewellery_effect_of_bonuses_+%"]=6489, + ["equipped_ring1_effect_of_bonuses_+%"]=6490, + ["equipped_ring2_effect_of_bonuses_+%"]=6491, + ["equipped_rings_effect_of_bonuses_+%"]=6492, ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3902, - ["es_regeneration_per_minute_%_while_stationary"]=6491, - ["essence_abyss_guaranteed_pick"]=6492, + ["es_regeneration_per_minute_%_while_stationary"]=6493, + ["essence_abyss_guaranteed_pick"]=6494, ["essence_buff_ground_fire_damage_to_deal_per_second"]=4003, ["essence_buff_ground_fire_duration_ms"]=4003, ["essence_display_elemental_damage_taken_while_not_moving_+%"]=4006, ["essence_drain_damage_+%"]=3429, - ["essence_drain_soulrend_base_projectile_speed_+%"]=6493, - ["essence_drain_soulrend_number_of_additional_projectiles"]=6494, - ["essence_grants_additional_attributes"]=6495, - ["essence_grants_additional_attributes_increase"]=6496, - ["essence_grants_armour_evasion_energy_shield_+%"]=6497, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6498, + ["essence_drain_soulrend_base_projectile_speed_+%"]=6495, + ["essence_drain_soulrend_number_of_additional_projectiles"]=6496, + ["essence_grants_additional_attributes"]=6497, + ["essence_grants_additional_attributes_increase"]=6498, + ["essence_grants_armour_evasion_energy_shield_+%"]=6499, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6500, ["ethereal_knives_damage_+%"]=3350, - ["ethereal_knives_number_of_additional_projectiles"]=6499, - ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6500, + ["ethereal_knives_number_of_additional_projectiles"]=6501, + ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6502, ["ethereal_knives_projectile_speed_+%"]=3589, - ["ethereal_knives_projectiles_nova"]=6501, + ["ethereal_knives_projectiles_nova"]=6503, ["evasion_+%_if_hit_recently"]=3864, - ["evasion_+%_per_10_intelligence"]=6504, + ["evasion_+%_per_10_intelligence"]=6506, ["evasion_and_physical_damage_reduction_rating_+%"]=1445, - ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6519, - ["evasion_rating_%_to_gain_as_ailment_threshold"]=6505, - ["evasion_rating_%_to_gain_as_armour"]=6520, + ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6521, + ["evasion_rating_%_to_gain_as_ailment_threshold"]=6507, + ["evasion_rating_%_to_gain_as_armour"]=6522, ["evasion_rating_+%"]=908, - ["evasion_rating_+%_during_focus"]=6506, - ["evasion_rating_+%_if_consumed_frenzy_charge_recently"]=6507, - ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6502, - ["evasion_rating_+%_if_have_not_been_hit_recently"]=6524, - ["evasion_rating_+%_if_not_dodge_rolled_recently"]=6508, - ["evasion_rating_+%_if_sprinting"]=6509, - ["evasion_rating_+%_if_you_dodge_rolled_recently"]=6525, - ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6526, - ["evasion_rating_+%_per_10_tribute"]=6510, - ["evasion_rating_+%_per_500_maximum_mana_up_to_100%"]=6511, - ["evasion_rating_+%_per_5_intelligence"]=6503, + ["evasion_rating_+%_during_focus"]=6508, + ["evasion_rating_+%_if_consumed_frenzy_charge_recently"]=6509, + ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6504, + ["evasion_rating_+%_if_have_not_been_hit_recently"]=6526, + ["evasion_rating_+%_if_not_dodge_rolled_recently"]=6510, + ["evasion_rating_+%_if_sprinting"]=6511, + ["evasion_rating_+%_if_you_dodge_rolled_recently"]=6527, + ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6528, + ["evasion_rating_+%_per_10_tribute"]=6512, + ["evasion_rating_+%_per_500_maximum_mana_up_to_100%"]=6513, + ["evasion_rating_+%_per_5_intelligence"]=6505, ["evasion_rating_+%_per_frenzy_charge"]=1450, - ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6527, - ["evasion_rating_+%_per_rage"]=6512, - ["evasion_rating_+%_when_on_full_life"]=6528, + ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6529, + ["evasion_rating_+%_per_rage"]=6514, + ["evasion_rating_+%_when_on_full_life"]=6530, ["evasion_rating_+%_when_on_low_life"]=2339, - ["evasion_rating_+%_while_leeching"]=6529, - ["evasion_rating_+%_while_moving"]=6530, + ["evasion_rating_+%_while_leeching"]=6531, + ["evasion_rating_+%_while_moving"]=6532, ["evasion_rating_+%_while_onslaught_is_active"]=1449, ["evasion_rating_+%_while_phasing"]=2309, - ["evasion_rating_+%_while_surrounded"]=6513, - ["evasion_rating_+%_while_you_have_energy_shield"]=6531, - ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6521, - ["evasion_rating_+_per_1_armour_on_gloves"]=6514, + ["evasion_rating_+%_while_surrounded"]=6515, + ["evasion_rating_+%_while_you_have_energy_shield"]=6533, + ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6523, + ["evasion_rating_+_per_1_armour_on_gloves"]=6516, ["evasion_rating_+_per_1_helmet_energy_shield"]=1448, ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4064, ["evasion_rating_+_when_on_full_life"]=1447, ["evasion_rating_+_when_on_low_life"]=1446, - ["evasion_rating_+_while_phasing"]=6522, - ["evasion_rating_+_while_you_have_tailwind"]=6523, - ["evasion_rating_also_reduces_physical_damage"]=6515, - ["evasion_rating_from_helmet_and_boots_+%"]=6516, - ["evasion_rating_increased_by_overcapped_cold_resistance"]=6517, - ["evasion_rating_increased_by_uncapped_lightning_resistance"]=6518, - ["evasion_rating_plus_in_sand_stance"]=10090, + ["evasion_rating_+_while_phasing"]=6524, + ["evasion_rating_+_while_you_have_tailwind"]=6525, + ["evasion_rating_also_reduces_physical_damage"]=6517, + ["evasion_rating_from_helmet_and_boots_+%"]=6518, + ["evasion_rating_increased_by_overcapped_cold_resistance"]=6519, + ["evasion_rating_increased_by_uncapped_lightning_resistance"]=6520, + ["evasion_rating_plus_in_sand_stance"]=10101, ["evasion_rating_while_es_full_+%_final"]=3756, - ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6532, - ["excess_ward_regeneration_is_applied_to_mana"]=6533, - ["exerted_attack_knockback_chance_%"]=6534, - ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6535, - ["expanding_fire_cone_additional_maximum_number_of_stages"]=6536, - ["expanding_fire_cone_area_of_effect_+%"]=6537, - ["expedition_chest_logbook_chance_%"]=6538, - ["expedition_monsters_logbook_chance_+%"]=6539, + ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6534, + ["excess_ward_regeneration_is_applied_to_mana"]=6535, + ["exerted_attack_knockback_chance_%"]=6536, + ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6537, + ["expanding_fire_cone_additional_maximum_number_of_stages"]=6538, + ["expanding_fire_cone_area_of_effect_+%"]=6539, + ["expedition_chest_logbook_chance_%"]=6540, + ["expedition_monsters_logbook_chance_+%"]=6541, ["experience_gain_+%"]=1495, ["experience_loss_on_death_-%"]=1496, - ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6540, + ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6542, ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3037, - ["explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6541, - ["explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%"]=6542, + ["explode_cursed_enemies_for_25%_life_as_physical_on_kill_chance_%"]=6543, + ["explode_enemies_for_10%_life_as_fire_on_kill_with_empowered_attacks_chance_%"]=6544, ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=3035, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6543, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6545, ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3036, - ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10652, - ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6544, + ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10668, + ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6546, ["explode_on_kill_%_chaos_damage_to_deal"]=3034, ["explode_on_kill_%_fire_damage_to_deal"]=2501, ["explosive_arrow_attack_speed_+%"]=3808, ["explosive_arrow_damage_+%"]=3381, - ["explosive_arrow_duration_+%"]=6545, + ["explosive_arrow_duration_+%"]=6547, ["explosive_arrow_radius_+%"]=3519, - ["explosive_concoction_damage_+%"]=6546, - ["explosive_concoction_flask_charges_consumed_+%"]=6547, - ["explosive_concoction_skill_area_of_effect_+%"]=6548, - ["exposure_effect_+%"]=6552, - ["exposure_effect_+%_if_fire_cold_lightning_infusion"]=6550, - ["exposure_effect_on_you_+%"]=6551, - ["exposure_you_inflict_lowers_affected_resistance_by_extra_%"]=6553, - ["exsanguinate_additional_chain_chance_%"]=6554, - ["exsanguinate_damage_+%"]=6555, - ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6556, - ["exsanguinate_duration_+%"]=6557, - ["extinguish_on_hit_%_chance"]=6558, + ["explosive_concoction_damage_+%"]=6548, + ["explosive_concoction_flask_charges_consumed_+%"]=6549, + ["explosive_concoction_skill_area_of_effect_+%"]=6550, + ["exposure_effect_+%"]=6554, + ["exposure_effect_+%_if_fire_cold_lightning_infusion"]=6552, + ["exposure_effect_on_you_+%"]=6553, + ["exposure_you_inflict_lowers_affected_resistance_by_extra_%"]=6555, + ["exsanguinate_additional_chain_chance_%"]=6556, + ["exsanguinate_damage_+%"]=6557, + ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6558, + ["exsanguinate_duration_+%"]=6559, + ["extinguish_on_hit_%_chance"]=6560, ["extra_critical_rolls"]=2470, - ["extra_critical_rolls_during_focus"]=6559, - ["extra_critical_rolls_while_on_low_life"]=6560, - ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6561, + ["extra_critical_rolls_during_focus"]=6561, + ["extra_critical_rolls_while_on_low_life"]=6562, + ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6563, ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4107, ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4108, - ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6562, + ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6564, ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=2981, - ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6563, - ["extra_gore"]=10780, - ["extra_target_targeting_distance_+%"]=6564, - ["eye_of_winter_damage_+%"]=6565, - ["eye_of_winter_projectile_speed_+%"]=6566, - ["eye_of_winter_spiral_fire_frequency_+%"]=6567, - ["faster_bleed_%"]=6569, - ["faster_bleed_per_frenzy_charge_%"]=6568, + ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6565, + ["extra_gore"]=10797, + ["extra_target_targeting_distance_+%"]=6566, + ["eye_of_winter_damage_+%"]=6567, + ["eye_of_winter_projectile_speed_+%"]=6568, + ["eye_of_winter_spiral_fire_frequency_+%"]=6569, + ["faster_bleed_%"]=6571, + ["faster_bleed_per_frenzy_charge_%"]=6570, ["faster_burn_%"]=2370, ["faster_burn_from_attacks_%"]=2372, - ["faster_poison_%"]=6570, - ["fire_ailment_duration_+%"]=6571, - ["fire_and_chaos_damage_resistance_%"]=6572, + ["faster_poison_%"]=6572, + ["fire_ailment_duration_+%"]=6573, + ["fire_and_chaos_damage_resistance_%"]=6574, ["fire_and_cold_damage_resistance_%"]=1040, ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=2243, ["fire_and_cold_resist_+_per_equipped_item_with_a_lightning_resistance_mod"]=1041, - ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6573, + ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6575, ["fire_and_lightning_damage_resistance_%"]=1042, ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=2246, ["fire_and_lightning_resist_+_per_equipped_item_with_a_cold_resistance_mod"]=1043, ["fire_attack_damage_+%"]=1184, ["fire_attack_damage_+%_while_holding_a_shield"]=1187, ["fire_axe_damage_+%"]=1259, - ["fire_beam_cast_speed_+%"]=6574, - ["fire_beam_damage_+%"]=6575, - ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6576, - ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6577, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=6578, - ["fire_beam_length_+%"]=6579, + ["fire_beam_cast_speed_+%"]=6576, + ["fire_beam_damage_+%"]=6577, + ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6578, + ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6579, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=6580, + ["fire_beam_length_+%"]=6581, ["fire_bow_damage_+%"]=1279, ["fire_claw_damage_+%"]=1267, ["fire_critical_strike_chance_+%"]=1401, ["fire_critical_strike_multiplier_+"]=1423, ["fire_dagger_damage_+%"]=1271, ["fire_damage_+%"]=897, - ["fire_damage_+%_if_fire_infusion_collected_last_8_seconds"]=6580, - ["fire_damage_+%_if_you_have_been_hit_recently"]=6585, - ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6586, - ["fire_damage_+%_per_10%_armour_break"]=6581, - ["fire_damage_+%_per_20_strength"]=6587, - ["fire_damage_+%_per_endurance_charge"]=6588, - ["fire_damage_+%_per_missing_fire_resistance"]=6589, - ["fire_damage_+%_per_rage"]=6582, + ["fire_damage_+%_if_fire_infusion_collected_last_8_seconds"]=6582, + ["fire_damage_+%_if_you_have_been_hit_recently"]=6587, + ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6588, + ["fire_damage_+%_per_10%_armour_break"]=6583, + ["fire_damage_+%_per_20_strength"]=6589, + ["fire_damage_+%_per_endurance_charge"]=6590, + ["fire_damage_+%_per_missing_fire_resistance"]=6591, + ["fire_damage_+%_per_rage"]=6584, ["fire_damage_+%_to_blinded_enemies"]=2962, - ["fire_damage_+%_vs_bleeding_enemies"]=6590, - ["fire_damage_+%_while_affected_by_anger"]=6591, - ["fire_damage_+%_while_affected_by_herald_of_ash"]=6592, - ["fire_damage_+%_while_ignited"]=6583, + ["fire_damage_+%_vs_bleeding_enemies"]=6592, + ["fire_damage_+%_while_affected_by_anger"]=6593, + ["fire_damage_+%_while_affected_by_herald_of_ash"]=6594, + ["fire_damage_+%_while_ignited"]=6585, ["fire_damage_can_chill"]=2655, ["fire_damage_can_freeze"]=2656, ["fire_damage_can_inflict_bleeding"]=2657, ["fire_damage_can_shock"]=2658, ["fire_damage_cannot_ignite"]=2667, ["fire_damage_over_time_+%"]=1193, - ["fire_damage_over_time_multiplier_+%_while_burning"]=6584, + ["fire_damage_over_time_multiplier_+%_while_burning"]=6586, ["fire_damage_over_time_multiplier_+_with_attacks"]=1224, ["fire_damage_resistance_%_when_on_low_life"]=1039, - ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6593, + ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6595, ["fire_damage_resistance_+%"]=1510, ["fire_damage_resistance_is_%"]=1508, ["fire_damage_taken_%_as_cold"]=2247, @@ -239789,81 +240067,81 @@ return { ["fire_damage_taken_%_causes_additional_physical_damage"]=2240, ["fire_damage_taken_+"]=1986, ["fire_damage_taken_+%"]=1991, - ["fire_damage_taken_+%_while_moving"]=6596, - ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6594, - ["fire_damage_taken_per_second_while_flame_touched"]=6595, - ["fire_damage_taken_when_enemy_ignited"]=6597, - ["fire_damage_to_return_on_block"]=6598, + ["fire_damage_taken_+%_while_moving"]=6598, + ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6596, + ["fire_damage_taken_per_second_while_flame_touched"]=6597, + ["fire_damage_taken_when_enemy_ignited"]=6599, + ["fire_damage_to_return_on_block"]=6600, ["fire_damage_to_return_to_melee_attacker"]=1960, ["fire_damage_to_return_when_hit"]=1964, ["fire_damage_while_dual_wielding_+%"]=1243, - ["fire_damage_with_attack_skills_+%"]=6599, - ["fire_damage_with_spell_skills_+%"]=6600, + ["fire_damage_with_attack_skills_+%"]=6601, + ["fire_damage_with_spell_skills_+%"]=6602, ["fire_dot_multiplier_+"]=1223, - ["fire_exposure_effect_+%"]=6601, - ["fire_exposure_on_hit_magnitude"]=6602, - ["fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%"]=6603, + ["fire_exposure_effect_+%"]=6603, + ["fire_exposure_on_hit_magnitude"]=6604, + ["fire_exposure_you_inflict_lowers_fire_resistance_by_extra_%"]=6605, ["fire_hit_and_dot_damage_%_taken_as_cold"]=2248, ["fire_hit_and_dot_damage_%_taken_as_lightning"]=2245, ["fire_mace_damage_+%"]=1275, ["fire_nova_mine_cast_speed_+%"]=3566, ["fire_nova_mine_damage_+%"]=3364, - ["fire_penetration_%_if_you_have_blocked_recently"]=6604, - ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6605, - ["fire_resist_unaffected_by_area_penalties"]=6606, - ["fire_skill_chance_to_inflict_fire_exposure_%"]=6607, + ["fire_penetration_%_if_you_have_blocked_recently"]=6606, + ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6607, + ["fire_resist_unaffected_by_area_penalties"]=6608, + ["fire_skill_chance_to_inflict_fire_exposure_%"]=6609, ["fire_skill_gem_level_+"]=982, - ["fire_skills_chance_to_poison_on_hit_%"]=6608, - ["fire_spell_additional_critical_strike_chance_permyriad"]=6609, + ["fire_skills_chance_to_poison_on_hit_%"]=6610, + ["fire_spell_additional_critical_strike_chance_permyriad"]=6611, ["fire_spell_skill_gem_level_+"]=983, ["fire_staff_damage_+%"]=1263, ["fire_storm_damage_+%"]=3365, ["fire_sword_damage_+%"]=1284, ["fire_trap_burning_damage_+%"]=3649, - ["fire_trap_burning_ground_duration_+%"]=6610, + ["fire_trap_burning_ground_duration_+%"]=6612, ["fire_trap_cooldown_speed_+%"]=3568, ["fire_trap_damage_+%"]=3334, - ["fire_trap_number_of_additional_traps_to_throw"]=6611, + ["fire_trap_number_of_additional_traps_to_throw"]=6613, ["fire_wand_damage_+%"]=1288, ["fire_weakness_ignores_hexproof"]=2408, - ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6612, - ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6613, + ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6614, + ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6615, ["fireball_base_radius_up_to_+_at_longer_ranges"]=2989, - ["fireball_cannot_ignite"]=6614, + ["fireball_cannot_ignite"]=6616, ["fireball_cast_speed_+%"]=3565, - ["fireball_chance_to_scorch_%"]=6615, + ["fireball_chance_to_scorch_%"]=6617, ["fireball_damage_+%"]=3335, ["fireball_radius_up_to_+%_at_longer_ranges"]=2988, ["firestorm_duration_+%"]=3620, ["firestorm_explosion_area_of_effect_+%"]=3657, - ["first_X_minions_have_0_base_spirit_reservation"]=6616, + ["first_X_minions_have_0_base_spirit_reservation"]=6618, ["fish_quantity_+%"]=2629, ["fish_rarity_+%"]=2630, - ["fish_rot_when_caught"]=6617, - ["fishing_bestiary_lures_at_fishing_holes"]=6618, + ["fish_rot_when_caught"]=6619, + ["fishing_bestiary_lures_at_fishing_holes"]=6620, ["fishing_bite_sensitivity_+%"]=3291, - ["fishing_can_catch_divine_fish"]=6619, - ["fishing_chance_to_catch_boots_+%"]=6620, - ["fishing_chance_to_catch_divine_orb_+%"]=6621, - ["fishing_corrupted_fish_cleansed_chance_%"]=6622, - ["fishing_fish_always_tell_truth_with_this_rod"]=6623, - ["fishing_ghastly_fisherman_cannot_spawn"]=6624, - ["fishing_ghastly_fisherman_spawns_behind_you"]=6625, + ["fishing_can_catch_divine_fish"]=6621, + ["fishing_chance_to_catch_boots_+%"]=6622, + ["fishing_chance_to_catch_divine_orb_+%"]=6623, + ["fishing_corrupted_fish_cleansed_chance_%"]=6624, + ["fishing_fish_always_tell_truth_with_this_rod"]=6625, + ["fishing_ghastly_fisherman_cannot_spawn"]=6626, + ["fishing_ghastly_fisherman_spawns_behind_you"]=6627, ["fishing_hook_type"]=2627, - ["fishing_krillson_affection_per_fish_gifted_+%"]=6626, - ["fishing_life_of_fish_with_this_rod_+%"]=6627, + ["fishing_krillson_affection_per_fish_gifted_+%"]=6628, + ["fishing_life_of_fish_with_this_rod_+%"]=6629, ["fishing_line_strength_+%"]=2624, ["fishing_lure_type"]=2626, - ["fishing_magmatic_fish_are_cooked"]=6628, - ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6629, + ["fishing_magmatic_fish_are_cooked"]=6630, + ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6631, ["fishing_pool_consumption_+%"]=2625, ["fishing_range_+%"]=2628, - ["fishing_reeling_stability_+%"]=6630, - ["fishing_tasalio_ire_per_fish_caught_+%"]=6631, - ["fishing_valako_aid_per_stormy_day_+%"]=6632, - ["fishing_wish_effect_of_ancient_fish_+%"]=6633, - ["fishing_wish_per_fish_+"]=6634, - ["fissure_skills_limit_+"]=6635, + ["fishing_reeling_stability_+%"]=6632, + ["fishing_tasalio_ire_per_fish_caught_+%"]=6633, + ["fishing_valako_aid_per_stormy_day_+%"]=6634, + ["fishing_wish_effect_of_ancient_fish_+%"]=6635, + ["fishing_wish_per_fish_+"]=6636, + ["fissure_skills_limit_+"]=6637, ["flail_accuracy_rating"]=3963, ["flail_accuracy_rating_+%"]=3964, ["flail_attack_speed_+%"]=3965, @@ -239875,116 +240153,116 @@ return { ["flame_dash_damage_+%"]=3414, ["flame_golem_damage_+%"]=3396, ["flame_golem_elemental_resistances_%"]=3671, - ["flame_link_duration_+%"]=6636, + ["flame_link_duration_+%"]=6638, ["flame_surge_critical_strike_chance_+%"]=3632, ["flame_surge_damage_+%"]=3366, ["flame_surge_damage_+%_vs_burning_enemies"]=3658, - ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6637, + ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6639, ["flame_totem_damage_+%"]=3406, ["flame_totem_num_of_additional_projectiles"]=3644, ["flame_totem_projectile_speed_+%"]=3590, - ["flame_wall_damage_+%"]=6638, - ["flame_wall_maximum_added_fire_damage"]=6639, - ["flame_wall_minimum_added_fire_damage"]=6639, - ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6640, - ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6641, - ["flameblast_and_incinerate_cannot_inflict_elemental_ailments"]=6642, - ["flameblast_cast_speed_+%_final_when_targeting_solar_orb"]=6643, + ["flame_wall_damage_+%"]=6640, + ["flame_wall_maximum_added_fire_damage"]=6641, + ["flame_wall_minimum_added_fire_damage"]=6641, + ["flame_wall_projectiles_gain_all_damage_%_as_fire"]=6642, + ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6643, + ["flameblast_and_incinerate_cannot_inflict_elemental_ailments"]=6644, + ["flameblast_cast_speed_+%_final_when_targeting_solar_orb"]=6645, ["flameblast_critical_strike_chance_+%"]=3631, ["flameblast_damage_+%"]=3382, ["flameblast_radius_+%"]=3520, - ["flameblast_starts_with_X_additional_stages"]=6644, - ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6645, - ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6646, - ["flamethrower_tower_trap_cast_speed_+%"]=6647, - ["flamethrower_tower_trap_cooldown_speed_+%"]=6648, - ["flamethrower_tower_trap_damage_+%"]=6649, - ["flamethrower_tower_trap_duration_+%"]=6650, - ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6651, - ["flamethrower_tower_trap_throwing_speed_+%"]=6652, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6653, + ["flameblast_starts_with_X_additional_stages"]=6646, + ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6647, + ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6648, + ["flamethrower_tower_trap_cast_speed_+%"]=6649, + ["flamethrower_tower_trap_cooldown_speed_+%"]=6650, + ["flamethrower_tower_trap_damage_+%"]=6651, + ["flamethrower_tower_trap_duration_+%"]=6652, + ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6653, + ["flamethrower_tower_trap_throwing_speed_+%"]=6654, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6655, ["flammability_curse_effect_+%"]=3695, ["flammability_duration_+%"]=3606, ["flammability_mana_reservation_+%"]=3728, - ["flammability_no_reservation"]=6654, - ["flask_charge_recovery_is_doubled"]=6655, + ["flammability_no_reservation"]=6656, + ["flask_charge_recovery_is_doubled"]=6657, ["flask_charges_+%_from_enemies_with_status_ailments"]=3921, - ["flask_charges_gained_+%"]=6659, + ["flask_charges_gained_+%"]=6661, ["flask_charges_gained_+%_during_flask_effect"]=2927, - ["flask_charges_gained_+%_if_crit_recently"]=6656, - ["flask_charges_gained_from_kills_+%_final_from_unique"]=6657, - ["flask_charges_gained_from_marked_enemy_+%"]=6658, + ["flask_charges_gained_+%_if_crit_recently"]=6658, + ["flask_charges_gained_from_kills_+%_final_from_unique"]=6659, + ["flask_charges_gained_from_marked_enemy_+%"]=6660, ["flask_charges_recovered_per_3_seconds"]=3191, ["flask_charges_used_+%"]=1073, ["flask_duration_+%"]=926, - ["flask_duration_+%_per_25_tribute"]=6660, + ["flask_duration_+%_per_25_tribute"]=6662, ["flask_duration_on_minions_+%"]=1948, ["flask_effect_+%"]=2528, - ["flask_life_and_mana_recovery_+%_while_using_charm"]=6661, - ["flask_life_and_mana_to_recover_+%"]=6663, - ["flask_life_and_mana_to_recover_+%_per_10_tribute"]=6662, - ["flask_life_recovery_+%_while_affected_by_vitality"]=6664, + ["flask_life_and_mana_recovery_+%_while_using_charm"]=6663, + ["flask_life_and_mana_to_recover_+%"]=6665, + ["flask_life_and_mana_to_recover_+%_per_10_tribute"]=6664, + ["flask_life_recovery_+%_while_affected_by_vitality"]=6666, ["flask_life_recovery_rate_+%"]=922, ["flask_life_to_recover_+%"]=1818, ["flask_mana_charges_used_+%"]=1946, ["flask_mana_recovery_rate_+%"]=923, ["flask_mana_to_recover_+%"]=1819, ["flask_minion_heal_%"]=2684, - ["flask_recovery_amount_%_to_recover_instantly"]=6665, - ["flask_recovery_is_instant"]=6666, + ["flask_recovery_amount_%_to_recover_instantly"]=6667, + ["flask_recovery_is_instant"]=6668, ["flask_recovery_speed_+%"]=1820, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6667, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6669, ["flasks_%_chance_to_not_consume_charges"]=3905, - ["flasks_apply_to_your_linked_targets"]=6668, + ["flasks_apply_to_your_linked_targets"]=6670, ["flasks_apply_to_your_zombies_and_spectres"]=3450, ["flasks_dispel_burning"]=2541, - ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6669, - ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6670, - ["flesh_and_stone_area_of_effect_+%"]=6671, + ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6671, + ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6672, + ["flesh_and_stone_area_of_effect_+%"]=6673, ["flesh_offering_attack_speed_+%"]=3801, ["flesh_offering_duration_+%"]=3596, ["flesh_offering_effect_+%"]=1166, - ["flesh_stone_mana_reservation_efficiency_+%"]=6673, - ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6672, - ["flesh_stone_no_reservation"]=6674, + ["flesh_stone_mana_reservation_efficiency_+%"]=6675, + ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6674, + ["flesh_stone_no_reservation"]=6676, ["flicker_strike_cooldown_speed_+%"]=3569, ["flicker_strike_damage_+%"]=3355, ["flicker_strike_damage_+%_per_frenzy_charge"]=3654, ["flicker_strike_more_attack_speed_+%_final"]=1336, - ["focus_cooldown_modifier_ms"]=6675, - ["focus_cooldown_speed_+%"]=6676, - ["focus_decay_%_per_minute"]=6677, - ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6678, - ["forbidden_rite_damage_+%"]=6679, - ["forbidden_rite_number_of_additional_projectiles"]=6680, - ["forbidden_rite_projectile_speed_+%"]=6681, - ["forking_angle_+%"]=6682, - ["fortification_gained_from_hits_+%"]=6683, - ["fortification_gained_from_hits_+%_against_unique_enemies"]=6684, + ["focus_cooldown_modifier_ms"]=6677, + ["focus_cooldown_speed_+%"]=6678, + ["focus_decay_%_per_minute"]=6679, + ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6680, + ["forbidden_rite_damage_+%"]=6681, + ["forbidden_rite_number_of_additional_projectiles"]=6682, + ["forbidden_rite_projectile_speed_+%"]=6683, + ["forking_angle_+%"]=6684, + ["fortification_gained_from_hits_+%"]=6685, + ["fortification_gained_from_hits_+%_against_unique_enemies"]=6686, ["fortify_duration_+%"]=2039, - ["fortify_duration_+%_per_10_strength"]=6685, - ["fortify_on_hit"]=6686, - ["frag_rounds_damage_+%_final_if_created_from_unique"]=6687, - ["freeze_applies_cold_damage_taken_+%"]=6688, - ["freeze_applies_cold_resistance_+"]=6689, + ["fortify_duration_+%_per_10_strength"]=6687, + ["fortify_on_hit"]=6688, + ["frag_rounds_damage_+%_final_if_created_from_unique"]=6689, + ["freeze_applies_cold_damage_taken_+%"]=6690, + ["freeze_applies_cold_resistance_+"]=6691, ["freeze_duration_+%"]=1638, - ["freeze_duration_against_cursed_enemies_+%"]=6690, + ["freeze_duration_against_cursed_enemies_+%"]=6692, ["freeze_mine_cold_resistance_+_while_frozen"]=2562, ["freeze_mine_damage_+%"]=3415, ["freeze_mine_radius_+%"]=3530, ["freeze_prevention_ms_when_frozen"]=2677, ["freeze_threshold_+%"]=3008, - ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6692, + ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6694, ["freezing_pulse_cast_speed_+%"]=3564, ["freezing_pulse_damage_+%"]=3336, - ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6693, - ["freezing_pulse_number_of_additional_projectiles"]=6694, + ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6695, + ["freezing_pulse_number_of_additional_projectiles"]=6696, ["freezing_pulse_projectile_speed_+%"]=3586, ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3665, - ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6695, + ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6697, ["frenzy_charge_duration_+%_per_frenzy_charge"]=1810, - ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6696, - ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6697, + ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6698, + ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6699, ["frenzy_damage_+%"]=3375, ["frenzy_damage_+%_per_frenzy_charge"]=3664, ["frenzy_only_conduit"]=2035, @@ -240007,340 +240285,341 @@ return { ["from_self_minimum_added_fire_damage_taken"]=1292, ["from_self_minimum_added_lightning_damage_taken"]=1306, ["frost_blades_damage_+%"]=3131, - ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6698, + ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6700, ["frost_blades_number_of_additional_projectiles_in_chain"]=3133, ["frost_blades_projectile_speed_+%"]=3132, ["frost_bolt_cast_speed_+%"]=3828, ["frost_bolt_damage_+%"]=3815, ["frost_bolt_freeze_chance_%"]=3829, - ["frost_bolt_nova_cooldown_speed_+%"]=6699, + ["frost_bolt_nova_cooldown_speed_+%"]=6701, ["frost_bolt_nova_damage_+%"]=3816, ["frost_bolt_nova_duration_+%"]=3830, ["frost_bolt_nova_radius_+%"]=3823, - ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6701, - ["frost_bomb_buff_duration_+%"]=6700, + ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6703, + ["frost_bomb_buff_duration_+%"]=6702, ["frost_bomb_cooldown_speed_+%"]=3582, ["frost_bomb_damage_+%"]=3438, ["frost_bomb_radius_+%"]=3539, - ["frost_fury_additional_max_number_of_stages"]=6702, - ["frost_fury_area_of_effect_+%_per_stage"]=6703, - ["frost_fury_damage_+%"]=6704, - ["frost_globe_added_cooldown_count"]=6705, - ["frost_globe_health_per_stage"]=6706, + ["frost_fury_additional_max_number_of_stages"]=6704, + ["frost_fury_area_of_effect_+%_per_stage"]=6705, + ["frost_fury_damage_+%"]=6706, + ["frost_globe_added_cooldown_count"]=6707, + ["frost_globe_health_per_stage"]=6708, ["frost_wall_cooldown_speed_+%"]=3573, ["frost_wall_damage_+%"]=3409, ["frost_wall_duration_+%"]=3599, ["frostbite_curse_effect_+%"]=3696, ["frostbite_duration_+%"]=3605, ["frostbite_mana_reservation_+%"]=3729, - ["frostbite_no_reservation"]=6707, - ["frostbolt_number_of_additional_projectiles"]=6708, - ["frostbolt_projectile_acceleration"]=6709, - ["frozen_legion_%_chance_to_summon_additional_statue"]=6713, - ["frozen_legion_added_cooldown_count"]=6710, - ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6711, - ["frozen_legion_cooldown_speed_+%"]=6712, + ["frostbite_no_reservation"]=6709, + ["frostbolt_number_of_additional_projectiles"]=6710, + ["frostbolt_projectile_acceleration"]=6711, + ["frozen_legion_%_chance_to_summon_additional_statue"]=6715, + ["frozen_legion_added_cooldown_count"]=6712, + ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6713, + ["frozen_legion_cooldown_speed_+%"]=6714, ["frozen_monsters_take_increased_damage"]=2268, - ["frozen_sweep_damage_+%"]=6714, - ["frozen_sweep_damage_+%_final"]=6715, - ["full_life_threshold_%_override"]=6716, - ["full_mana_threshold_%_override"]=6717, - ["fully_break_enemies_armour_on_heavy_stun_with_shield_skills"]=6718, - ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage"]=6719, - ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_fire_damage"]=6720, - ["fully_broken_armour_and_sundered_armour_you_inflict_applies_to_all_damage"]=6721, - ["fungal_ground_while_stationary_radius"]=6722, - ["gain_%_damage_as_chaos_from_unreserved_darkness"]=6723, + ["frozen_sweep_damage_+%"]=6716, + ["frozen_sweep_damage_+%_final"]=6717, + ["full_life_threshold_%_override"]=6718, + ["full_mana_threshold_%_override"]=6719, + ["fully_break_enemies_armour_on_heavy_stun_with_shield_skills"]=6720, + ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_cold_and_lightning_damage"]=6721, + ["fully_broken_armour_and_sundered_armour_you_inflict_also_applies_to_fire_damage"]=6722, + ["fully_broken_armour_and_sundered_armour_you_inflict_applies_to_all_damage"]=6723, + ["fungal_ground_while_stationary_radius"]=6724, + ["gain_%_damage_as_chaos_from_unreserved_darkness"]=6725, ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4071, - ["gain_%_life_from_body_es"]=6724, + ["gain_%_life_from_body_es"]=6726, ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4070, - ["gain_%_maximum_energy_shield_as_freeze_threshold_+"]=6725, - ["gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use"]=6726, - ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6855, - ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6861, - ["gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence"]=6727, - ["gain_1_random_charge_on_reaching_maximum_rage_no_more_than_once_every_X_ms"]=6728, - ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6729, - ["gain_1_verisium_infusion_every_X_seconds"]=6730, - ["gain_X%_armour_per_50_mana_reserved"]=6731, - ["gain_X_druidic_prowess_on_heavy_stunning_rare_or_unique_enemy"]=6732, + ["gain_%_maximum_energy_shield_as_freeze_threshold_+"]=6727, + ["gain_%_of_expected_recovery_over_1_second_as_guard_on_life_flask_use"]=6728, + ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6858, + ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6864, + ["gain_1_glory_every_X_seconds_per_rare_unique_monster_in_presence"]=6729, + ["gain_1_random_charge_on_reaching_maximum_rage_no_more_than_once_every_X_ms"]=6730, + ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6731, + ["gain_1_verisium_infusion_every_X_seconds"]=6732, + ["gain_X%_armour_per_50_mana_reserved"]=6733, + ["gain_X_druidic_prowess_on_heavy_stunning_rare_or_unique_enemy"]=6734, ["gain_X_energy_shield_on_killing_shocked_enemy"]=2378, - ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6733, - ["gain_X_frenzy_charges_after_spending_200_mana"]=6734, - ["gain_X_instilling_chaos_when_any_charge_is_consumed"]=6738, - ["gain_X_instilling_cold_on_reload"]=6739, - ["gain_X_instilling_cold_when_charge_is_consumed"]=6736, - ["gain_X_instilling_fire_on_reload"]=6739, - ["gain_X_instilling_fire_when_charge_is_consumed"]=6735, - ["gain_X_instilling_lightning_when_charge_is_consumed"]=6737, - ["gain_X_life_on_stun"]=6740, - ["gain_X_max_life_per_8_armour_on_equipped_helmet"]=6741, - ["gain_X_max_mana_per_2_es_on_equipped_helmet"]=6742, - ["gain_X_power_charges_on_using_a_warcry"]=6743, - ["gain_X_rage_on_hit_per_enemy_power"]=6744, - ["gain_X_rage_on_ignite_hit"]=6745, - ["gain_X_random_charges_every_6_seconds"]=6746, + ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6735, + ["gain_X_frenzy_charges_after_spending_200_mana"]=6736, + ["gain_X_instilling_chaos_when_any_charge_is_consumed"]=6740, + ["gain_X_instilling_cold_on_reload"]=6741, + ["gain_X_instilling_cold_when_charge_is_consumed"]=6738, + ["gain_X_instilling_fire_on_reload"]=6741, + ["gain_X_instilling_fire_when_charge_is_consumed"]=6737, + ["gain_X_instilling_lightning_when_charge_is_consumed"]=6739, + ["gain_X_life_on_stun"]=6742, + ["gain_X_max_life_per_8_armour_on_equipped_helmet"]=6743, + ["gain_X_max_mana_per_2_es_on_equipped_helmet"]=6744, + ["gain_X_max_mana_per_3_armour_on_equipped_helmet"]=6745, + ["gain_X_power_charges_on_using_a_warcry"]=6746, + ["gain_X_rage_on_hit_per_enemy_power"]=6747, + ["gain_X_rage_on_ignite_hit"]=6748, + ["gain_X_random_charges_every_6_seconds"]=6749, ["gain_X_random_rare_monster_mods_on_kill"]=2815, ["gain_X_vaal_souls_on_rampage_threshold"]=2726, - ["gain_X_volatility_on_persistent_minion_death"]=6747, - ["gain_a_modifier_from_enemies_in_presence_when_shapeshifting_ms"]=6748, - ["gain_a_power_charge_when_you_consume_an_elemental_infusion"]=6749, + ["gain_X_volatility_on_persistent_minion_death"]=6750, + ["gain_a_modifier_from_enemies_in_presence_when_shapeshifting_ms"]=6751, + ["gain_a_power_charge_when_you_consume_an_elemental_infusion"]=6752, ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3812, - ["gain_absorption_charges_instead_of_power_charges"]=6750, - ["gain_accuracy_rating_equal_to_2_times_strength"]=6751, - ["gain_accuracy_rating_equal_to_intelligence"]=6752, - ["gain_accuracy_rating_equal_to_strength"]=6753, - ["gain_additional_crit_chance_from_%_chance_to_hit_over_100"]=6754, - ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6755, - ["gain_adrenaline_for_X_seconds_on_kill"]=6756, - ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6757, - ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6758, - ["gain_adrenaline_on_gaining_flame_touched"]=6759, - ["gain_affliction_charges_instead_of_frenzy_charges"]=6760, - ["gain_alchemists_genius_on_flask_use_%"]=6761, - ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6762, - ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6763, - ["gain_arcane_surge_for_4_seconds_on_minion_death"]=6764, - ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6765, - ["gain_arcane_surge_on_crit_%_chance"]=6766, - ["gain_arcane_surge_on_hit_%_chance"]=6769, - ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6767, - ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6768, - ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6770, - ["gain_arcane_surge_on_kill_chance_%"]=6771, - ["gain_arcane_surge_on_reverting_if_you_were_shapeshifted_x_seconds"]=6772, - ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6773, - ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6774, - ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6775, - ["gain_arcane_surge_when_you_summon_a_totem"]=6776, - ["gain_archon_cold_when_energy_shield_recharge_starts"]=6777, - ["gain_archon_elemental_after_spending_100%_of_your_maximum_mana"]=6778, - ["gain_archon_elemental_when_energy_shield_recharge_starts"]=6779, - ["gain_archon_elemental_when_you_ignite_enemy_chance_%"]=6780, - ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=6781, - ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6782, - ["gain_armour_equal_to_strength"]=6783, - ["gain_armour_from_%_life_loss_from_hits_lasting_8_seconds"]=6784, + ["gain_absorption_charges_instead_of_power_charges"]=6753, + ["gain_accuracy_rating_equal_to_2_times_strength"]=6754, + ["gain_accuracy_rating_equal_to_intelligence"]=6755, + ["gain_accuracy_rating_equal_to_strength"]=6756, + ["gain_additional_crit_chance_from_%_chance_to_hit_over_100"]=6757, + ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6758, + ["gain_adrenaline_for_X_seconds_on_kill"]=6759, + ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6760, + ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6761, + ["gain_adrenaline_on_gaining_flame_touched"]=6762, + ["gain_affliction_charges_instead_of_frenzy_charges"]=6763, + ["gain_alchemists_genius_on_flask_use_%"]=6764, + ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6765, + ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6766, + ["gain_arcane_surge_for_4_seconds_on_minion_death"]=6767, + ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6768, + ["gain_arcane_surge_on_crit_%_chance"]=6769, + ["gain_arcane_surge_on_hit_%_chance"]=6772, + ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6770, + ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6771, + ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6773, + ["gain_arcane_surge_on_kill_chance_%"]=6774, + ["gain_arcane_surge_on_reverting_if_you_were_shapeshifted_x_seconds"]=6775, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6776, + ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6777, + ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6778, + ["gain_arcane_surge_when_you_summon_a_totem"]=6779, + ["gain_archon_cold_when_energy_shield_recharge_starts"]=6780, + ["gain_archon_elemental_after_spending_100%_of_your_maximum_mana"]=6781, + ["gain_archon_elemental_when_energy_shield_recharge_starts"]=6782, + ["gain_archon_elemental_when_you_ignite_enemy_chance_%"]=6783, + ["gain_archon_fire_when_you_ignite_enemy_chance_%"]=6784, + ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6785, + ["gain_armour_equal_to_strength"]=6786, + ["gain_armour_from_%_life_loss_from_hits_lasting_8_seconds"]=6787, ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3734, - ["gain_attack_damage_+%_for_each_your_minion_in_presence_capped"]=6785, - ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6786, + ["gain_attack_damage_+%_for_each_your_minion_in_presence_capped"]=6788, + ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6789, ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3164, - ["gain_blitz_charge_%_chance_on_crit"]=6787, - ["gain_brutal_charges_instead_of_endurance_charges"]=6788, + ["gain_blitz_charge_%_chance_on_crit"]=6790, + ["gain_brutal_charges_instead_of_endurance_charges"]=6791, ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3499, - ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6789, - ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6790, - ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10653, + ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6792, + ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6793, + ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10669, ["gain_convergence_on_hitting_unique_enemy"]=4125, - ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10758, - ["gain_crimson_dance_while_you_have_cat_stealth"]=10759, - ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6791, + ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10775, + ["gain_crimson_dance_while_you_have_cat_stealth"]=10776, + ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6794, ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3163, - ["gain_dark_whispers_every_second_there_is_a_cursed_enemy_in_presence"]=6792, - ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10654, + ["gain_dark_whispers_every_second_there_is_a_cursed_enemy_in_presence"]=6795, + ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10670, ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=3952, ["gain_divine_charge_on_hit_%"]=4073, ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4075, - ["gain_druidic_prowess_per_X_rage_spent"]=6793, + ["gain_druidic_prowess_per_X_rage_spent"]=6796, ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3739, ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3780, ["gain_elusive_on_crit_%_chance"]=3949, ["gain_elusive_on_kill_chance_%"]=3950, - ["gain_elusive_on_reaching_low_life"]=6795, + ["gain_elusive_on_reaching_low_life"]=6798, ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1600, - ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6801, - ["gain_endurance_charge_%_when_hit_while_channelling"]=6802, - ["gain_endurance_charge_if_attack_freezes"]=6796, - ["gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy"]=6797, + ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6804, + ["gain_endurance_charge_%_when_hit_while_channelling"]=6805, + ["gain_endurance_charge_if_attack_freezes"]=6799, + ["gain_endurance_charge_on_heavy_stunning_rare_or_unique_enemy"]=6800, ["gain_endurance_charge_on_main_hand_kill_%"]=3054, ["gain_endurance_charge_on_melee_stun"]=2553, ["gain_endurance_charge_on_melee_stun_%"]=2553, ["gain_endurance_charge_on_power_charge_expiry"]=2434, - ["gain_endurance_charge_on_reaching_low_life_once_per_2s"]=6798, - ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6799, - ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6800, - ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6803, - ["gain_finality_for_x_ms_per_combo_lost_using_skills"]=6804, - ["gain_fire_damage_+%_per_endurance_charge_consumed_recently"]=6805, + ["gain_endurance_charge_on_reaching_low_life_once_per_2s"]=6801, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6802, + ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6803, + ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6806, + ["gain_finality_for_x_ms_per_combo_lost_using_skills"]=6807, + ["gain_fire_damage_+%_per_endurance_charge_consumed_recently"]=6808, ["gain_flask_chance_on_crit_%"]=3115, - ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6806, + ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6809, ["gain_flask_charge_when_crit_%"]=1821, ["gain_flask_charge_when_crit_amount"]=1821, - ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6807, - ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6808, + ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6810, + ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6811, ["gain_frenzy_and_power_charge_on_kill_%"]=2433, - ["gain_frenzy_charge_%_when_hit_while_channelling"]=6819, + ["gain_frenzy_charge_%_when_hit_while_channelling"]=6822, ["gain_frenzy_charge_if_attack_ignites"]=2617, - ["gain_frenzy_charge_on_critical_strike_%"]=6810, - ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6809, - ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6811, - ["gain_frenzy_charge_on_hit_%_while_blinded"]=6812, - ["gain_frenzy_charge_on_hit_while_bleeding"]=6813, - ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6814, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6815, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6816, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6817, + ["gain_frenzy_charge_on_critical_strike_%"]=6813, + ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6812, + ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6814, + ["gain_frenzy_charge_on_hit_%_while_blinded"]=6815, + ["gain_frenzy_charge_on_hit_while_bleeding"]=6816, + ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6817, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6818, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6819, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6820, ["gain_frenzy_charge_on_main_hand_kill_%"]=3053, ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3310, - ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6818, - ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6820, - ["gain_guard_%_of_max_ward_for_2s_every_4s"]=6821, - ["gain_guard_%_of_maximum_life_for_4_seconds_on_taking_savage_hit"]=6822, - ["gain_guard_after_sprinting_equal_to_x%_of_maximum_life_per_second_sprinted_up_to_20%"]=6823, - ["gain_guard_equal_to_%_of_your_missing_energy_shield_for_4_seconds_on_dodge_roll"]=6824, - ["gain_guard_flask_charge_when_hit_by_enemy_chance_%"]=6825, - ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10760, - ["gain_iron_reflexes_while_stationary"]=10764, + ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6821, + ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6823, + ["gain_guard_%_of_max_ward_for_2s_every_4s"]=6824, + ["gain_guard_%_of_maximum_life_for_4_seconds_on_taking_savage_hit"]=6825, + ["gain_guard_after_sprinting_equal_to_x%_of_maximum_life_per_second_sprinted_up_to_20%"]=6826, + ["gain_guard_equal_to_%_of_your_missing_energy_shield_for_4_seconds_on_dodge_roll"]=6827, + ["gain_guard_flask_charge_when_hit_by_enemy_chance_%"]=6828, + ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10777, + ["gain_iron_reflexes_while_stationary"]=10781, ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3855, - ["gain_lightning_archon_after_spending_100%_of_your_maximum_mana"]=6826, - ["gain_magic_monster_mods_on_kill_%_chance"]=6827, - ["gain_max_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks"]=6837, - ["gain_max_rage_on_losing_temporal_chains_debuff"]=6828, - ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6829, + ["gain_lightning_archon_after_spending_100%_of_your_maximum_mana"]=6829, + ["gain_magic_monster_mods_on_kill_%_chance"]=6830, + ["gain_max_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks"]=6840, + ["gain_max_rage_on_losing_temporal_chains_debuff"]=6831, + ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6832, ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3912, - ["gain_maximum_endurance_charges_when_crit_chance_%"]=6830, - ["gain_maximum_energy_shield_equal_to_%_total_strength_requirement_of_equipped_armour_items"]=6831, - ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6832, - ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6833, - ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6834, - ["gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life"]=6838, - ["gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6839, - ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6835, - ["gain_maximum_power_charges_on_vaal_skill_use"]=6836, - ["gain_min_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks"]=6837, - ["gain_mind_over_matter_while_at_maximum_power_charges"]=10761, - ["gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life"]=6838, - ["gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6839, - ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6840, + ["gain_maximum_endurance_charges_when_crit_chance_%"]=6833, + ["gain_maximum_energy_shield_equal_to_%_total_strength_requirement_of_equipped_armour_items"]=6834, + ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6835, + ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6836, + ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6837, + ["gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life"]=6841, + ["gain_maximum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6842, + ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6838, + ["gain_maximum_power_charges_on_vaal_skill_use"]=6839, + ["gain_min_physical_thorns_damage_equal_to_x_times_your_runic_tempering_stacks"]=6840, + ["gain_mind_over_matter_while_at_maximum_power_charges"]=10778, + ["gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life"]=6841, + ["gain_minimum_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6842, + ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6843, ["gain_no_inherent_bonus_from_dexterity"]=1785, ["gain_no_inherent_bonus_from_intelligence"]=1786, ["gain_no_inherent_bonus_from_strength"]=1787, - ["gain_onslaught_during_soul_gain_prevention"]=6841, - ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6842, - ["gain_onslaught_for_4_seconds_on_minion_death"]=6843, + ["gain_onslaught_during_soul_gain_prevention"]=6844, + ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6845, + ["gain_onslaught_for_4_seconds_on_minion_death"]=6846, ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3888, - ["gain_onslaught_for_x_seconds_when_your_marks_activate"]=6844, - ["gain_onslaught_if_you_have_swapped_stance_recently"]=6845, - ["gain_onslaught_ms_on_using_a_warcry"]=6846, + ["gain_onslaught_for_x_seconds_when_your_marks_activate"]=6847, + ["gain_onslaught_if_you_have_swapped_stance_recently"]=6848, + ["gain_onslaught_ms_on_using_a_warcry"]=6849, ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2539, - ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6847, - ["gain_onslaught_on_hit_duration_ms"]=6848, - ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6849, + ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6850, + ["gain_onslaught_on_hit_duration_ms"]=6851, + ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6852, ["gain_onslaught_on_stun_duration_ms"]=2536, ["gain_onslaught_when_ignited_ms"]=2797, - ["gain_onslaught_while_at_maximum_endurance_charges"]=6850, + ["gain_onslaught_while_at_maximum_endurance_charges"]=6853, ["gain_onslaught_while_frenzy_charges_full"]=3759, - ["gain_onslaught_while_not_on_low_mana"]=6851, - ["gain_onslaught_while_on_low_life"]=6852, - ["gain_onslaught_while_you_have_cats_agility"]=6853, - ["gain_onslaught_while_you_have_fortify"]=6854, + ["gain_onslaught_while_not_on_low_mana"]=6854, + ["gain_onslaught_while_on_low_life"]=6855, + ["gain_onslaught_while_you_have_cats_agility"]=6856, + ["gain_onslaught_while_you_have_fortify"]=6857, ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2308, - ["gain_phasing_if_enemy_killed_recently"]=6856, - ["gain_phasing_while_affected_by_haste"]=6857, + ["gain_phasing_if_enemy_killed_recently"]=6859, + ["gain_phasing_while_affected_by_haste"]=6860, ["gain_phasing_while_at_maximum_frenzy_charges"]=2306, - ["gain_phasing_while_you_have_cats_stealth"]=6858, - ["gain_phasing_while_you_have_low_life"]=6859, + ["gain_phasing_while_you_have_cats_stealth"]=6861, + ["gain_phasing_while_you_have_low_life"]=6862, ["gain_phasing_while_you_have_onslaught"]=2307, ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2725, - ["gain_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6860, - ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10775, - ["gain_power_charge_on_critical_strike_with_wands_%"]=6862, - ["gain_power_charge_on_curse_cast_%"]=6863, - ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6864, - ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6865, - ["gain_power_charge_on_mana_flask_use_%_chance"]=6866, + ["gain_physical_thorns_damage_equal_to_x%_of_maximum_life_while_shapeshifted"]=6863, + ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10792, + ["gain_power_charge_on_critical_strike_with_wands_%"]=6865, + ["gain_power_charge_on_curse_cast_%"]=6866, + ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6867, + ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6868, + ["gain_power_charge_on_mana_flask_use_%_chance"]=6869, ["gain_power_charge_on_non_critical_strike_%"]=3127, - ["gain_power_charge_on_vaal_skill_use_%"]=6867, + ["gain_power_charge_on_vaal_skill_use_%"]=6870, ["gain_power_charge_per_enemy_you_crit"]=2350, - ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6868, + ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6871, ["gain_power_charge_when_throwing_trap_%"]=2711, - ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6869, - ["gain_rage_on_hitting_rare_unique_enemy_%"]=9631, - ["gain_rage_on_kill"]=9630, - ["gain_rage_when_you_use_a_warcry"]=9632, + ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6872, + ["gain_rage_on_hitting_rare_unique_enemy_%"]=9639, + ["gain_rage_on_kill"]=9638, + ["gain_rage_when_you_use_a_warcry"]=9640, ["gain_rampage_while_at_maximum_endurance_charges"]=3003, - ["gain_random_charge_on_block"]=6871, - ["gain_random_charge_per_second_while_stationary"]=6872, + ["gain_random_charge_on_block"]=6874, + ["gain_random_charge_per_second_while_stationary"]=6875, ["gain_rare_monster_mods_on_kill_ms"]=2596, - ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10765, - ["gain_runic_binding_stack_on_damaging_spell_hit_once_per_second"]=6873, - ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6874, - ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6875, - ["gain_shrine_buff_every_10_seconds"]=6876, - ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6877, + ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10782, + ["gain_runic_binding_stack_on_damaging_spell_hit_once_per_second"]=6876, + ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6877, + ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6878, + ["gain_shrine_buff_every_10_seconds"]=6879, + ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6880, ["gain_soul_eater_during_flask_effect"]=3148, - ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6878, - ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6879, - ["gain_soul_eater_when_hitting_a_rare_or_unique_enemy_that_has_open_weakness"]=10677, + ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6881, + ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6882, + ["gain_soul_eater_when_hitting_a_rare_or_unique_enemy_that_has_open_weakness"]=10694, ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2864, - ["gain_spell_cost_as_mana_every_fifth_cast"]=6880, - ["gain_spell_damage_+%_for_each_second_shapeshifted_capped_when_reverting_for_duration"]=6881, + ["gain_spell_cost_as_mana_every_fifth_cast"]=6883, + ["gain_spell_damage_+%_for_each_second_shapeshifted_capped_when_reverting_for_duration"]=6884, ["gain_spirit_charge_every_x_ms"]=4067, ["gain_spirit_charge_on_kill_%_chance"]=4068, - ["gain_stack_of_disorderly_conduct_every_x_grenade_skills_used"]=6882, - ["gain_stormsurge_on_hit"]=6794, - ["gain_tailwind_on_critical_hit"]=6884, - ["gain_tailwind_stack_on_skill_use"]=6885, + ["gain_stack_of_disorderly_conduct_every_x_grenade_skills_used"]=6885, + ["gain_stormsurge_on_hit"]=6797, + ["gain_tailwind_on_critical_hit"]=6887, + ["gain_tailwind_stack_on_skill_use"]=6888, ["gain_unholy_might_on_block_ms"]=2804, - ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6886, - ["gain_vaal_soul_on_hit_cooldown_ms"]=6887, + ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6889, + ["gain_vaal_soul_on_hit_cooldown_ms"]=6890, ["gain_x_es_on_trap_triggered_by_an_enemy"]=3917, - ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6888, - ["gain_x_fragile_regrowth_per_second"]=6889, + ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6891, + ["gain_x_fragile_regrowth_per_second"]=6892, ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4104, ["gain_x_life_on_trap_triggered_by_an_enemy"]=3916, ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2772, - ["gain_x_rage_on_hit"]=9634, - ["gain_x_rage_on_hit_with_axes"]=6890, - ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6891, - ["gain_x_rage_on_melee_hit"]=6892, - ["gain_x_rage_per_200_mana_spent"]=6893, - ["gain_x_rage_when_hit"]=6894, - ["gain_x_rage_when_taken_crit"]=6895, - ["galvanic_arrow_area_damage_+%"]=9885, - ["galvanic_arrow_projectile_speed_+%"]=6896, - ["galvanic_field_beam_frequency_+%"]=6897, - ["galvanic_field_cast_speed_+%"]=6898, - ["galvanic_field_damage_+%"]=6899, - ["galvanic_field_number_of_chains"]=6900, + ["gain_x_rage_on_hit"]=9642, + ["gain_x_rage_on_hit_with_axes"]=6893, + ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6894, + ["gain_x_rage_on_melee_hit"]=6895, + ["gain_x_rage_per_200_mana_spent"]=6896, + ["gain_x_rage_when_hit"]=6897, + ["gain_x_rage_when_taken_crit"]=6898, + ["galvanic_arrow_area_damage_+%"]=9893, + ["galvanic_arrow_projectile_speed_+%"]=6899, + ["galvanic_field_beam_frequency_+%"]=6900, + ["galvanic_field_cast_speed_+%"]=6901, + ["galvanic_field_damage_+%"]=6902, + ["galvanic_field_number_of_chains"]=6903, ["gem_experience_gain_+%"]=1653, - ["gem_requirements_can_be_satisfied_by_highest_attribute"]=6901, - ["gemling_all_attributes_+%_final"]=6902, - ["gemling_double_basic_attribute_bonuses"]=6903, - ["gemling_skill_cost_+%_final"]=6904, - ["generals_cry_cooldown_speed_+%"]=6905, - ["generals_cry_maximum_warriors_+"]=6906, + ["gem_requirements_can_be_satisfied_by_highest_attribute"]=6904, + ["gemling_all_attributes_+%_final"]=6905, + ["gemling_double_basic_attribute_bonuses"]=6906, + ["gemling_skill_cost_+%_final"]=6907, + ["generals_cry_cooldown_speed_+%"]=6908, + ["generals_cry_maximum_warriors_+"]=6909, ["generate_endurance_charges_for_allies_in_your_presence"]=1914, ["generate_frenzy_charges_for_allies_in_your_presence"]=1915, ["generate_power_charges_for_allies_in_your_presence"]=1916, - ["generate_x_charges_for_any_flask_per_minute"]=6907, - ["generate_x_charges_for_charms_per_minute"]=6908, - ["generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute"]=6909, - ["generate_x_charges_for_guard_flasks_per_minute"]=6910, - ["generate_x_charges_for_life_flasks_per_minute"]=6911, - ["generate_x_charges_for_mana_flasks_per_minute"]=6912, - ["ghostflame_on_hit_duration_ms"]=6913, - ["gifts_from_above_consecrated_ground_while_stationary"]=6914, + ["generate_x_charges_for_any_flask_per_minute"]=6910, + ["generate_x_charges_for_charms_per_minute"]=6911, + ["generate_x_charges_for_charms_per_minute_if_you_have_at_least_200_tribute"]=6912, + ["generate_x_charges_for_guard_flasks_per_minute"]=6913, + ["generate_x_charges_for_life_flasks_per_minute"]=6914, + ["generate_x_charges_for_mana_flasks_per_minute"]=6915, + ["ghostflame_on_hit_duration_ms"]=6916, + ["gifts_from_above_consecrated_ground_while_stationary"]=6917, ["glacial_cascade_damage_+%"]=3383, - ["glacial_cascade_number_of_additional_bursts"]=6915, - ["glacial_cascade_physical_damage_%_to_gain_as_cold"]=6916, + ["glacial_cascade_number_of_additional_bursts"]=6918, + ["glacial_cascade_physical_damage_%_to_gain_as_cold"]=6919, ["glacial_cascade_radius_+%"]=3521, ["glacial_hammer_damage_+%"]=3337, ["glacial_hammer_freeze_chance_%"]=3650, ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2970, - ["glacial_hammer_melee_splash_with_cold_damage"]=6917, + ["glacial_hammer_melee_splash_with_cold_damage"]=6920, ["glacial_hammer_physical_damage_%_to_gain_as_cold_damage"]=3666, ["global_always_hit"]=1804, ["global_armour_evasion_energy_shield_+%"]=2612, - ["global_armour_evasion_energy_shield_+%_per_frenzy_charge"]=6922, - ["global_armour_evasion_energy_shield_while_in_presence_of_companion_+%"]=6923, + ["global_armour_evasion_energy_shield_+%_per_frenzy_charge"]=6925, + ["global_armour_evasion_energy_shield_while_in_presence_of_companion_+%"]=6926, ["global_attack_speed_+%_per_green_socket_on_item"]=2516, - ["global_attack_speed_+%_per_level"]=6918, - ["global_bleed_on_hit"]=6919, + ["global_attack_speed_+%_per_level"]=6921, + ["global_bleed_on_hit"]=6922, ["global_cannot_crit"]=1941, ["global_chance_to_blind_on_hit_%"]=2727, - ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6920, - ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6921, + ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6923, + ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6924, ["global_critical_strike_chance_+%_while_holding_bow"]=2279, ["global_critical_strike_chance_+%_while_holding_staff"]=2277, ["global_critical_strike_chance_while_dual_wielding_+%"]=3935, @@ -240351,9 +240630,9 @@ return { ["global_critical_strike_multiplier_while_dual_wielding_+"]=3934, ["global_equipment_attribute_requirements_+%"]=2357, ["global_equipment_no_attribute_requirements"]=2355, - ["global_evasion_rating_+_while_moving"]=6924, + ["global_evasion_rating_+_while_moving"]=6927, ["global_gem_attribute_requirements_+%"]=2358, - ["global_gem_attribute_requirements_+%_final_from_gemling"]=6925, + ["global_gem_attribute_requirements_+%_final_from_gemling"]=6928, ["global_hit_causes_monster_flee_%"]=1802, ["global_item_attribute_requirements_+%"]=2359, ["global_knockback"]=1433, @@ -240362,92 +240641,93 @@ return { ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2519, ["global_maximum_added_chaos_damage"]=1311, ["global_maximum_added_cold_damage"]=1299, - ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6926, + ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6929, ["global_maximum_added_fire_damage"]=1293, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=10216, - ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6927, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=10229, + ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6930, ["global_maximum_added_lightning_damage"]=1307, - ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6928, - ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6929, + ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6931, + ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6932, ["global_maximum_added_physical_damage"]=1231, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6930, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6933, ["global_minimum_added_chaos_damage"]=1311, ["global_minimum_added_cold_damage"]=1299, - ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6926, + ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6929, ["global_minimum_added_fire_damage"]=1293, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=10216, - ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6927, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=10229, + ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6930, ["global_minimum_added_lightning_damage"]=1307, - ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6928, - ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6929, + ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6931, + ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6932, ["global_minimum_added_physical_damage"]=1231, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6930, - ["global_physical_damage_reduction_rating_while_moving"]=6931, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6933, + ["global_physical_damage_reduction_rating_while_moving"]=6934, ["global_poison_on_hit"]=2922, ["global_skill_gems_no_attribute_requirements"]=2356, ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2514, - ["glory_generation_+%"]=6933, - ["glory_generation_+%_for_banners"]=6934, - ["glory_generation_+%_if_you_have_at_least_100_tribute"]=6932, - ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6935, + ["glory_generation_+%"]=6936, + ["glory_generation_+%_for_banners"]=6937, + ["glory_generation_+%_if_you_have_at_least_100_tribute"]=6935, + ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6938, ["glows_in_area_with_unique_fish"]=3806, - ["goat_footprints_from_item"]=10781, - ["gold_+%_from_enemies"]=6936, - ["golem_attack_and_cast_speed_+%"]=6937, - ["golem_attack_maximum_added_physical_damage"]=6938, - ["golem_attack_minimum_added_physical_damage"]=6938, - ["golem_buff_effect_+%"]=6939, - ["golem_buff_effect_+%_per_summoned_golem"]=6940, + ["goat_footprints_from_item"]=10798, + ["gold_+%_from_enemies"]=6939, + ["golem_attack_and_cast_speed_+%"]=6940, + ["golem_attack_maximum_added_physical_damage"]=6941, + ["golem_attack_minimum_added_physical_damage"]=6941, + ["golem_buff_effect_+%"]=6942, + ["golem_buff_effect_+%_per_summoned_golem"]=6943, ["golem_cooldown_recovery_+%"]=3061, ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3401, ["golem_damage_+%_per_active_golem"]=3877, ["golem_damage_+%_per_active_golem_type"]=3876, ["golem_immunity_to_elemental_damage"]=3772, - ["golem_life_regeneration_per_minute_%"]=6941, - ["golem_maximum_life_+%"]=6942, - ["golem_maximum_mana_+%"]=6943, - ["golem_movement_speed_+%"]=6944, - ["golem_physical_damage_reduction_rating"]=6945, + ["golem_life_regeneration_per_minute_%"]=6944, + ["golem_maximum_life_+%"]=6945, + ["golem_maximum_mana_+%"]=6946, + ["golem_movement_speed_+%"]=6947, + ["golem_physical_damage_reduction_rating"]=6948, ["golem_scale_+%"]=3394, ["golem_skill_cooldown_recovery_+%"]=3060, - ["golems_larger_aggro_radius"]=10682, + ["golems_larger_aggro_radius"]=10699, ["grace_aura_effect_+%"]=3091, ["grace_mana_reservation_+%"]=3724, - ["grace_mana_reservation_efficiency_+%"]=6947, - ["grace_mana_reservation_efficiency_-2%_per_1"]=6946, - ["grace_reserves_no_mana"]=6948, + ["grace_mana_reservation_efficiency_+%"]=6950, + ["grace_mana_reservation_efficiency_-2%_per_1"]=6949, + ["grace_reserves_no_mana"]=6951, ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2681, - ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6949, - ["grant_elemental_archon_to_minions_for_x_ms_when_they_revive"]=6950, - ["grant_fear_incarnate_stack_on_culling_enemies"]=6951, - ["grant_fear_overwhelming_stack_on_culling_enemies"]=6952, - ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6953, + ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6952, + ["grant_elemental_archon_to_minions_for_x_ms_when_they_revive"]=6953, + ["grant_fear_incarnate_stack_on_culling_enemies"]=6954, + ["grant_fear_overwhelming_stack_on_culling_enemies"]=6955, + ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6956, ["grant_unholy_might_to_self_while_not_on_low_mana"]=2803, - ["grant_void_arrow_every_x_ms"]=6954, - ["gratuitous_violence_physical_damage_over_time_+%_final"]=6955, - ["grenade_fuse_duration_+%"]=6956, - ["grenade_projectile_speed_+%"]=6957, - ["grenade_skill_%_chance_to_explode_twice"]=6958, - ["grenade_skill_area_of_effect_+%"]=6959, - ["grenade_skill_cooldown_count_+"]=6960, - ["grenade_skill_cooldown_speed_+%"]=6961, - ["grenade_skill_damage_+%"]=6962, - ["grenade_skill_duration_+%"]=6963, - ["grenade_skill_number_of_additional_projectiles"]=6964, - ["ground_effect_duration_+%"]=6965, + ["grant_void_arrow_every_x_ms"]=6957, + ["gratuitous_violence_physical_damage_over_time_+%_final"]=6958, + ["grenade_fuse_duration_+%"]=6959, + ["grenade_projectile_speed_+%"]=6960, + ["grenade_skill_%_chance_to_explode_twice"]=6961, + ["grenade_skill_area_of_effect_+%"]=6962, + ["grenade_skill_cooldown_count_+"]=6963, + ["grenade_skill_cooldown_speed_+%"]=6964, + ["grenade_skill_damage_+%"]=6965, + ["grenade_skill_duration_+%"]=6966, + ["grenade_skill_gem_level_+"]=6967, + ["grenade_skill_number_of_additional_projectiles"]=6968, + ["ground_effect_duration_+%"]=6969, ["ground_slam_angle_+%"]=2994, - ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6966, + ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6970, ["ground_slam_damage_+%"]=3338, ["ground_slam_radius_+%"]=3501, ["ground_smoke_on_rampage_threshold_ms"]=2736, ["ground_smoke_when_hit_%"]=2382, - ["ground_tar_on_block_base_area_of_effect_radius"]=6967, + ["ground_tar_on_block_base_area_of_effect_radius"]=6971, ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2315, - ["ground_tar_when_hit_%_chance"]=6968, - ["guard_flask_effect_+%"]=6969, - ["guard_gained_+%"]=6970, - ["guard_skill_cooldown_recovery_+%"]=6971, - ["guard_skill_effect_duration_+%"]=6972, + ["ground_tar_when_hit_%_chance"]=6972, + ["guard_flask_effect_+%"]=6973, + ["guard_gained_+%"]=6974, + ["guard_skill_cooldown_recovery_+%"]=6975, + ["guard_skill_effect_duration_+%"]=6976, ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3482, ["guardian_nearby_allies_share_charges"]=3796, ["guardian_nearby_enemies_cannot_gain_charges"]=3478, @@ -240455,137 +240735,138 @@ return { ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3479, ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3480, ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=3044, - ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6973, - ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6974, - ["halve_evasion_rating_from_body"]=6976, + ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6977, + ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6978, + ["halve_evasion_rating_from_body"]=6980, ["hand_wraps_attack_damage_+%_final_on_low_mana"]=917, ["hand_wraps_damage_taken_+%_final_on_low_life"]=912, - ["hand_wraps_damage_taken_+%_final_while_cursed"]=6977, + ["hand_wraps_damage_taken_+%_final_while_cursed"]=6981, ["hand_wraps_evasion_rating_and_energy_shield_+%_final"]=877, - ["harvest_encounter_fluid_granted_+%"]=6978, - ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6979, - ["has_curse_limit_equal_to_maximum_power_charges"]=6980, - ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6981, - ["has_onslaught_if_totem_summoned_recently"]=6982, - ["has_stun_prevention_flask"]=6983, - ["has_trickster_alternating_damage_taken_+%_final"]=6984, - ["has_unique_brutal_shrine_effect"]=6985, - ["has_unique_chaos_shrine_effect"]=6986, - ["has_unique_cold_shrine_effect"]=6987, - ["has_unique_fire_shrine_effect"]=6988, - ["has_unique_lightning_shrine_effect"]=6989, - ["has_unique_massive_shrine_effect"]=6990, + ["harvest_encounter_fluid_granted_+%"]=6982, + ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6983, + ["has_curse_limit_equal_to_maximum_power_charges"]=6984, + ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6985, + ["has_onslaught_if_totem_summoned_recently"]=6986, + ["has_stun_prevention_flask"]=6987, + ["has_trickster_alternating_damage_taken_+%_final"]=6988, + ["has_unique_brutal_shrine_effect"]=6989, + ["has_unique_chaos_shrine_effect"]=6990, + ["has_unique_cold_shrine_effect"]=6991, + ["has_unique_fire_shrine_effect"]=6992, + ["has_unique_lightning_shrine_effect"]=6993, + ["has_unique_massive_shrine_effect"]=6994, ["haste_aura_effect_+%"]=3092, ["haste_mana_reservation_+%"]=3725, - ["haste_mana_reservation_efficiency_+%"]=6992, - ["haste_mana_reservation_efficiency_-2%_per_1"]=6991, - ["haste_reserves_no_mana"]=6993, + ["haste_mana_reservation_efficiency_+%"]=6996, + ["haste_mana_reservation_efficiency_-2%_per_1"]=6995, + ["haste_reserves_no_mana"]=6997, ["hatred_aura_effect_+%"]=3094, ["hatred_mana_reservation_+%"]=3715, - ["hatred_mana_reservation_efficiency_+%"]=6995, - ["hatred_mana_reservation_efficiency_-2%_per_1"]=6994, - ["hatred_reserves_no_mana"]=6996, - ["have_unholy_might"]=6997, - ["hazard_area_of_effect_+%"]=6998, - ["hazard_base_debuff_slow_magnitude_+%"]=6999, - ["hazard_damage_+%"]=7000, + ["hatred_mana_reservation_efficiency_+%"]=6999, + ["hatred_mana_reservation_efficiency_-2%_per_1"]=6998, + ["hatred_reserves_no_mana"]=7000, + ["have_unholy_might"]=7001, + ["hazard_area_of_effect_+%"]=7002, + ["hazard_base_debuff_slow_magnitude_+%"]=7003, + ["hazard_damage_+%"]=7004, ["hazard_duration_+%"]=1688, - ["hazard_hit_damage_immobilisation_multiplier_+%"]=7001, - ["hazard_rearm_%_chance"]=7002, - ["hazards_cant_trigger_x_seconds_after_creation"]=7003, - ["heat_loss_%_slower"]=7004, + ["hazard_hit_damage_immobilisation_multiplier_+%"]=7005, + ["hazard_rearm_%_chance"]=7006, + ["hazard_skill_gem_level_+"]=7007, + ["hazards_cant_trigger_x_seconds_after_creation"]=7008, + ["heat_loss_%_slower"]=7009, ["heavy_strike_attack_speed_+%"]=3549, ["heavy_strike_chance_to_deal_double_damage_%"]=2973, ["heavy_strike_damage_+%"]=3339, - ["heavy_stun_poise_decay_rate_+%"]=7006, - ["heavy_stun_poise_decay_rate_+%_per_10_tribute"]=7005, - ["heavy_stun_threshold_+"]=7007, - ["heavy_stuns_have_culling_strike"]=7008, - ["heist_additional_abyss_rewards_from_reward_chests_%"]=7009, - ["heist_additional_armour_rewards_from_reward_chests_%"]=7010, - ["heist_additional_blight_rewards_from_reward_chests_%"]=7011, - ["heist_additional_breach_rewards_from_reward_chests_%"]=7012, - ["heist_additional_corrupted_rewards_from_reward_chests_%"]=7013, - ["heist_additional_delirium_rewards_from_reward_chests_%"]=7014, - ["heist_additional_delve_rewards_from_reward_chests_%"]=7015, - ["heist_additional_divination_rewards_from_reward_chests_%"]=7016, - ["heist_additional_essences_rewards_from_reward_chests_%"]=7017, - ["heist_additional_gems_rewards_from_reward_chests_%"]=7018, - ["heist_additional_harbinger_rewards_from_reward_chests_%"]=7019, - ["heist_additional_jewellery_rewards_from_reward_chests_%"]=7020, - ["heist_additional_legion_rewards_from_reward_chests_%"]=7021, - ["heist_additional_metamorph_rewards_from_reward_chests_%"]=7022, - ["heist_additional_perandus_rewards_from_reward_chests_%"]=7023, - ["heist_additional_talisman_rewards_from_reward_chests_%"]=7024, - ["heist_additional_uniques_rewards_from_reward_chests_%"]=7025, - ["heist_additional_weapons_rewards_from_reward_chests_%"]=7026, - ["heist_alert_level_gained_on_monster_death"]=7027, - ["heist_alert_level_gained_per_10_sec"]=7028, - ["heist_chests_chance_for_secondary_objectives_%"]=7029, - ["heist_chests_double_blighted_maps_and_catalysts_%"]=7030, - ["heist_chests_double_breach_splinters_%"]=7031, - ["heist_chests_double_catalysts_%"]=7032, - ["heist_chests_double_currency_%"]=7033, - ["heist_chests_double_delirium_orbs_and_splinters_%"]=7034, - ["heist_chests_double_divination_cards_%"]=7035, - ["heist_chests_double_essences_%"]=7036, - ["heist_chests_double_jewels_%"]=7037, - ["heist_chests_double_legion_splinters_%"]=7038, - ["heist_chests_double_map_fragments_%"]=7039, - ["heist_chests_double_maps_%"]=7040, - ["heist_chests_double_oils_%"]=7041, - ["heist_chests_double_scarabs_%"]=7042, - ["heist_chests_double_sextants_%"]=7043, - ["heist_chests_double_uniques_%"]=7044, - ["heist_chests_unique_rarity_%"]=7045, - ["heist_coins_dropped_by_monsters_double_%"]=7047, + ["heavy_stun_poise_decay_rate_+%"]=7011, + ["heavy_stun_poise_decay_rate_+%_per_10_tribute"]=7010, + ["heavy_stun_threshold_+"]=7012, + ["heavy_stuns_have_culling_strike"]=7013, + ["heist_additional_abyss_rewards_from_reward_chests_%"]=7014, + ["heist_additional_armour_rewards_from_reward_chests_%"]=7015, + ["heist_additional_blight_rewards_from_reward_chests_%"]=7016, + ["heist_additional_breach_rewards_from_reward_chests_%"]=7017, + ["heist_additional_corrupted_rewards_from_reward_chests_%"]=7018, + ["heist_additional_delirium_rewards_from_reward_chests_%"]=7019, + ["heist_additional_delve_rewards_from_reward_chests_%"]=7020, + ["heist_additional_divination_rewards_from_reward_chests_%"]=7021, + ["heist_additional_essences_rewards_from_reward_chests_%"]=7022, + ["heist_additional_gems_rewards_from_reward_chests_%"]=7023, + ["heist_additional_harbinger_rewards_from_reward_chests_%"]=7024, + ["heist_additional_jewellery_rewards_from_reward_chests_%"]=7025, + ["heist_additional_legion_rewards_from_reward_chests_%"]=7026, + ["heist_additional_metamorph_rewards_from_reward_chests_%"]=7027, + ["heist_additional_perandus_rewards_from_reward_chests_%"]=7028, + ["heist_additional_talisman_rewards_from_reward_chests_%"]=7029, + ["heist_additional_uniques_rewards_from_reward_chests_%"]=7030, + ["heist_additional_weapons_rewards_from_reward_chests_%"]=7031, + ["heist_alert_level_gained_on_monster_death"]=7032, + ["heist_alert_level_gained_per_10_sec"]=7033, + ["heist_chests_chance_for_secondary_objectives_%"]=7034, + ["heist_chests_double_blighted_maps_and_catalysts_%"]=7035, + ["heist_chests_double_breach_splinters_%"]=7036, + ["heist_chests_double_catalysts_%"]=7037, + ["heist_chests_double_currency_%"]=7038, + ["heist_chests_double_delirium_orbs_and_splinters_%"]=7039, + ["heist_chests_double_divination_cards_%"]=7040, + ["heist_chests_double_essences_%"]=7041, + ["heist_chests_double_jewels_%"]=7042, + ["heist_chests_double_legion_splinters_%"]=7043, + ["heist_chests_double_map_fragments_%"]=7044, + ["heist_chests_double_maps_%"]=7045, + ["heist_chests_double_oils_%"]=7046, + ["heist_chests_double_scarabs_%"]=7047, + ["heist_chests_double_sextants_%"]=7048, + ["heist_chests_double_uniques_%"]=7049, + ["heist_chests_unique_rarity_%"]=7050, + ["heist_coins_dropped_by_monsters_double_%"]=7052, ["heist_coins_from_monsters_+%"]=35, - ["heist_coins_from_world_chests_double_%"]=7046, - ["heist_contract_alert_level_+%"]=7050, - ["heist_contract_alert_level_from_chests_+%"]=7048, - ["heist_contract_alert_level_from_monsters_+%"]=7049, - ["heist_contract_gang_cost_+%"]=7051, - ["heist_contract_gang_takes_no_cut"]=7052, - ["heist_contract_generate_secondary_objectives_chance_%"]=7053, - ["heist_contract_guarding_monsters_damage_+%"]=7054, - ["heist_contract_guarding_monsters_take_damage_+%"]=7055, - ["heist_contract_magical_unlock_count"]=7057, - ["heist_contract_mechanical_unlock_count"]=7056, - ["heist_contract_no_travel_cost"]=7058, - ["heist_contract_npc_cost_+%"]=7059, - ["heist_contract_objective_completion_time_+%"]=7060, - ["heist_contract_patrol_additional_elite_chance_+%"]=7061, - ["heist_contract_patrol_damage_+%"]=7062, - ["heist_contract_patrol_take_damage_+%"]=7063, - ["heist_contract_side_area_monsters_damage_+%"]=7064, - ["heist_contract_side_area_monsters_take_damage_+%"]=7065, - ["heist_contract_total_cost_+%_final"]=7066, - ["heist_contract_travel_cost_+%"]=7067, - ["heist_currency_alchemy_drops_as_blessed_%"]=7068, - ["heist_currency_alchemy_drops_as_divine_%"]=7069, - ["heist_currency_alchemy_drops_as_exalted_%"]=7070, - ["heist_currency_alteration_drops_as_alchemy_%"]=7071, - ["heist_currency_alteration_drops_as_chaos_%"]=7072, - ["heist_currency_alteration_drops_as_regal_%"]=7073, - ["heist_currency_augmentation_drops_as_alchemy_%"]=7074, - ["heist_currency_augmentation_drops_as_chaos_%"]=7075, - ["heist_currency_augmentation_drops_as_regal_%"]=7076, - ["heist_currency_chaos_drops_as_blessed_%"]=7077, - ["heist_currency_chaos_drops_as_divine_%"]=7078, - ["heist_currency_chaos_drops_as_exalted_%"]=7079, - ["heist_currency_chromatic_drops_as_fusing_%"]=7080, - ["heist_currency_chromatic_drops_as_jewellers_%"]=7081, - ["heist_currency_jewellers_drops_as_fusing_%"]=7082, - ["heist_currency_regal_drops_as_blessed_%"]=7083, - ["heist_currency_regal_drops_as_divine_%"]=7084, - ["heist_currency_regal_drops_as_exalted_%"]=7085, - ["heist_currency_regret_drops_as_annulment_%"]=7086, - ["heist_currency_scouring_drops_as_annulment_%"]=7087, - ["heist_currency_scouring_drops_as_regret_%"]=7088, - ["heist_currency_transmutation_drops_as_alchemy_%"]=7089, - ["heist_currency_transmutation_drops_as_chaos_%"]=7090, - ["heist_currency_transmutation_drops_as_regal_%"]=7091, - ["heist_drops_double_currency_%"]=7092, + ["heist_coins_from_world_chests_double_%"]=7051, + ["heist_contract_alert_level_+%"]=7055, + ["heist_contract_alert_level_from_chests_+%"]=7053, + ["heist_contract_alert_level_from_monsters_+%"]=7054, + ["heist_contract_gang_cost_+%"]=7056, + ["heist_contract_gang_takes_no_cut"]=7057, + ["heist_contract_generate_secondary_objectives_chance_%"]=7058, + ["heist_contract_guarding_monsters_damage_+%"]=7059, + ["heist_contract_guarding_monsters_take_damage_+%"]=7060, + ["heist_contract_magical_unlock_count"]=7062, + ["heist_contract_mechanical_unlock_count"]=7061, + ["heist_contract_no_travel_cost"]=7063, + ["heist_contract_npc_cost_+%"]=7064, + ["heist_contract_objective_completion_time_+%"]=7065, + ["heist_contract_patrol_additional_elite_chance_+%"]=7066, + ["heist_contract_patrol_damage_+%"]=7067, + ["heist_contract_patrol_take_damage_+%"]=7068, + ["heist_contract_side_area_monsters_damage_+%"]=7069, + ["heist_contract_side_area_monsters_take_damage_+%"]=7070, + ["heist_contract_total_cost_+%_final"]=7071, + ["heist_contract_travel_cost_+%"]=7072, + ["heist_currency_alchemy_drops_as_blessed_%"]=7073, + ["heist_currency_alchemy_drops_as_divine_%"]=7074, + ["heist_currency_alchemy_drops_as_exalted_%"]=7075, + ["heist_currency_alteration_drops_as_alchemy_%"]=7076, + ["heist_currency_alteration_drops_as_chaos_%"]=7077, + ["heist_currency_alteration_drops_as_regal_%"]=7078, + ["heist_currency_augmentation_drops_as_alchemy_%"]=7079, + ["heist_currency_augmentation_drops_as_chaos_%"]=7080, + ["heist_currency_augmentation_drops_as_regal_%"]=7081, + ["heist_currency_chaos_drops_as_blessed_%"]=7082, + ["heist_currency_chaos_drops_as_divine_%"]=7083, + ["heist_currency_chaos_drops_as_exalted_%"]=7084, + ["heist_currency_chromatic_drops_as_fusing_%"]=7085, + ["heist_currency_chromatic_drops_as_jewellers_%"]=7086, + ["heist_currency_jewellers_drops_as_fusing_%"]=7087, + ["heist_currency_regal_drops_as_blessed_%"]=7088, + ["heist_currency_regal_drops_as_divine_%"]=7089, + ["heist_currency_regal_drops_as_exalted_%"]=7090, + ["heist_currency_regret_drops_as_annulment_%"]=7091, + ["heist_currency_scouring_drops_as_annulment_%"]=7092, + ["heist_currency_scouring_drops_as_regret_%"]=7093, + ["heist_currency_transmutation_drops_as_alchemy_%"]=7094, + ["heist_currency_transmutation_drops_as_chaos_%"]=7095, + ["heist_currency_transmutation_drops_as_regal_%"]=7096, + ["heist_drops_double_currency_%"]=7097, ["heist_enchantment_ailment_mod_effect_+%"]=56, ["heist_enchantment_attribute_mod_effect_+%"]=57, ["heist_enchantment_casterdamage_mod_effect_+%"]=58, @@ -240601,124 +240882,125 @@ return { ["heist_enchantment_physical_mod_effect_+%"]=68, ["heist_enchantment_resistance_mod_effect_+%"]=69, ["heist_enchantment_speed_mod_effect_+%"]=70, - ["heist_guards_are_magic"]=7093, - ["heist_guards_are_rare"]=7094, - ["heist_interruption_resistance_%"]=7095, - ["heist_item_quantity_+%"]=7096, - ["heist_item_rarity_+%"]=7097, - ["heist_items_are_fully_linked_%"]=7098, - ["heist_items_drop_corrupted_%"]=7099, - ["heist_items_drop_identified_%"]=7100, - ["heist_items_have_elder_influence_%"]=7101, - ["heist_items_have_one_additional_socket_%"]=7102, - ["heist_items_have_shaper_influence_%"]=7103, - ["heist_job_agility_level_+"]=7104, - ["heist_job_brute_force_level_+"]=7105, - ["heist_job_counter_thaumaturgy_level_+"]=7106, - ["heist_job_deception_level_+"]=7107, - ["heist_job_demolition_level_+"]=7108, - ["heist_job_demolition_speed_+%"]=7109, - ["heist_job_engineering_level_+"]=7110, - ["heist_job_lockpicking_level_+"]=7111, - ["heist_job_lockpicking_speed_+%"]=7112, - ["heist_job_perception_level_+"]=7113, - ["heist_job_trap_disarmament_level_+"]=7114, - ["heist_job_trap_disarmament_speed_+%"]=7115, - ["heist_lockdown_is_instant"]=7116, - ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=7117, - ["heist_npc_blueprint_reveal_cost_+%"]=7118, - ["heist_npc_contract_generates_gianna_intelligence"]=7119, - ["heist_npc_contract_generates_niles_intelligence"]=7120, - ["heist_npc_display_huck_combat"]=7121, - ["heist_npc_karst_alert_level_from_chests_+%_final"]=7122, - ["heist_npc_nenet_alert_level_+%_final"]=7123, - ["heist_npc_tullina_alert_level_+%_final"]=7124, - ["heist_npc_vinderi_alert_level_+%_final"]=7125, - ["heist_patrols_are_magic"]=7126, - ["heist_patrols_are_rare"]=7127, - ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=7128, - ["heist_player_armour_+%_final_per_25%_alert_level"]=7129, - ["heist_player_cold_resistance_%_per_25%_alert_level"]=7130, - ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=7131, - ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=7132, - ["heist_player_experience_gain_+%"]=7133, - ["heist_player_fire_resistance_%_per_25%_alert_level"]=7134, - ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=7135, - ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=7136, - ["heist_player_lightning_resistance_%_per_25%_alert_level"]=7137, - ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=7138, - ["heist_reinforcements_attack_speed_+%"]=7139, - ["heist_reinforcements_cast_speed_+%"]=7140, - ["heist_reinforcements_movements_speed_+%"]=7141, - ["heist_side_reward_room_monsters_+%"]=7142, - ["hellscape_extra_item_slots"]=7143, - ["hellscape_extra_map_slots"]=7144, - ["hellscaping_add_corruption_implicit_chance_%"]=7145, - ["hellscaping_add_explicit_mod_chance_%"]=7146, - ["hellscaping_additional_link_chance_%"]=7147, - ["hellscaping_additional_socket_chance_%"]=7148, - ["hellscaping_additional_upside_chance_%"]=7149, - ["hellscaping_downsides_tier_downgrade_chance_%"]=7150, - ["hellscaping_speed_+%_per_map_hellscape_tier"]=7151, - ["hellscaping_upgrade_mod_tier_chance_%"]=7157, - ["hellscaping_upsides_tier_upgrade_chance_%"]=7158, - ["helmet_mod_freeze_as_though_damage_+%_final"]=7159, - ["helmet_mod_shock_as_though_damage_+%_final"]=7160, - ["herald_effect_on_self_+%"]=7161, - ["herald_mana_reservation_override_45%"]=7162, - ["herald_of_agony_buff_drop_off_speed_+%"]=7163, - ["herald_of_agony_buff_effect_+%"]=7164, - ["herald_of_agony_mana_reservation_+%"]=7167, - ["herald_of_agony_mana_reservation_efficiency_+%"]=7166, - ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=7165, - ["herald_of_ash_buff_effect_+%"]=7168, + ["heist_guards_are_magic"]=7098, + ["heist_guards_are_rare"]=7099, + ["heist_interruption_resistance_%"]=7100, + ["heist_item_quantity_+%"]=7101, + ["heist_item_rarity_+%"]=7102, + ["heist_items_are_fully_linked_%"]=7103, + ["heist_items_drop_corrupted_%"]=7104, + ["heist_items_drop_identified_%"]=7105, + ["heist_items_have_elder_influence_%"]=7106, + ["heist_items_have_one_additional_socket_%"]=7107, + ["heist_items_have_shaper_influence_%"]=7108, + ["heist_job_agility_level_+"]=7109, + ["heist_job_brute_force_level_+"]=7110, + ["heist_job_counter_thaumaturgy_level_+"]=7111, + ["heist_job_deception_level_+"]=7112, + ["heist_job_demolition_level_+"]=7113, + ["heist_job_demolition_speed_+%"]=7114, + ["heist_job_engineering_level_+"]=7115, + ["heist_job_lockpicking_level_+"]=7116, + ["heist_job_lockpicking_speed_+%"]=7117, + ["heist_job_perception_level_+"]=7118, + ["heist_job_trap_disarmament_level_+"]=7119, + ["heist_job_trap_disarmament_speed_+%"]=7120, + ["heist_lockdown_is_instant"]=7121, + ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=7122, + ["heist_npc_blueprint_reveal_cost_+%"]=7123, + ["heist_npc_contract_generates_gianna_intelligence"]=7124, + ["heist_npc_contract_generates_niles_intelligence"]=7125, + ["heist_npc_display_huck_combat"]=7126, + ["heist_npc_karst_alert_level_from_chests_+%_final"]=7127, + ["heist_npc_nenet_alert_level_+%_final"]=7128, + ["heist_npc_tullina_alert_level_+%_final"]=7129, + ["heist_npc_vinderi_alert_level_+%_final"]=7130, + ["heist_patrols_are_magic"]=7131, + ["heist_patrols_are_rare"]=7132, + ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=7133, + ["heist_player_armour_+%_final_per_25%_alert_level"]=7134, + ["heist_player_cold_resistance_%_per_25%_alert_level"]=7135, + ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=7136, + ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=7137, + ["heist_player_experience_gain_+%"]=7138, + ["heist_player_fire_resistance_%_per_25%_alert_level"]=7139, + ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=7140, + ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=7141, + ["heist_player_lightning_resistance_%_per_25%_alert_level"]=7142, + ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=7143, + ["heist_reinforcements_attack_speed_+%"]=7144, + ["heist_reinforcements_cast_speed_+%"]=7145, + ["heist_reinforcements_movements_speed_+%"]=7146, + ["heist_side_reward_room_monsters_+%"]=7147, + ["hellscape_extra_item_slots"]=7148, + ["hellscape_extra_map_slots"]=7149, + ["hellscaping_add_corruption_implicit_chance_%"]=7150, + ["hellscaping_add_explicit_mod_chance_%"]=7151, + ["hellscaping_additional_link_chance_%"]=7152, + ["hellscaping_additional_socket_chance_%"]=7153, + ["hellscaping_additional_upside_chance_%"]=7154, + ["hellscaping_downsides_tier_downgrade_chance_%"]=7155, + ["hellscaping_speed_+%_per_map_hellscape_tier"]=7156, + ["hellscaping_upgrade_mod_tier_chance_%"]=7162, + ["hellscaping_upsides_tier_upgrade_chance_%"]=7163, + ["helmet_mod_freeze_as_though_damage_+%_final"]=7164, + ["helmet_mod_shock_as_though_damage_+%_final"]=7165, + ["herald_effect_on_self_+%"]=7166, + ["herald_mana_reservation_override_45%"]=7167, + ["herald_of_agony_buff_drop_off_speed_+%"]=7168, + ["herald_of_agony_buff_effect_+%"]=7169, + ["herald_of_agony_mana_reservation_+%"]=7172, + ["herald_of_agony_mana_reservation_efficiency_+%"]=7171, + ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=7170, + ["herald_of_ash_buff_effect_+%"]=7173, ["herald_of_ash_damage_+%"]=3416, ["herald_of_ash_mana_reservation_+%"]=3711, - ["herald_of_ash_mana_reservation_efficiency_+%"]=7170, - ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=7169, - ["herald_of_ice_buff_effect_+%"]=7171, + ["herald_of_ash_mana_reservation_efficiency_+%"]=7175, + ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=7174, + ["herald_of_ice_buff_effect_+%"]=7176, ["herald_of_ice_damage_+%"]=3417, ["herald_of_ice_mana_reservation_+%"]=3712, - ["herald_of_ice_mana_reservation_efficiency_+%"]=7173, - ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=7172, - ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=7174, - ["herald_of_light_buff_effect_+%"]=7175, - ["herald_of_light_minion_area_of_effect_+%"]=7176, - ["herald_of_purity_mana_reservation_+%"]=7179, - ["herald_of_purity_mana_reservation_efficiency_+%"]=7178, - ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=7177, - ["herald_of_thunder_bolt_frequency_+%"]=7180, - ["herald_of_thunder_buff_effect_+%"]=7181, + ["herald_of_ice_mana_reservation_efficiency_+%"]=7178, + ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=7177, + ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=7179, + ["herald_of_light_buff_effect_+%"]=7180, + ["herald_of_light_minion_area_of_effect_+%"]=7181, + ["herald_of_purity_mana_reservation_+%"]=7184, + ["herald_of_purity_mana_reservation_efficiency_+%"]=7183, + ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=7182, + ["herald_of_thunder_bolt_frequency_+%"]=7185, + ["herald_of_thunder_buff_effect_+%"]=7186, ["herald_of_thunder_damage_+%"]=3418, ["herald_of_thunder_mana_reservation_+%"]=3713, - ["herald_of_thunder_mana_reservation_efficiency_+%"]=7183, - ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=7182, - ["herald_scorpion_number_of_additional_projectiles"]=7184, - ["herald_skills_mana_reservation_+%"]=7187, - ["herald_skills_mana_reservation_efficiency_+%"]=7186, - ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=7185, - ["hex_remove_at_effect_variance"]=7192, + ["herald_of_thunder_mana_reservation_efficiency_+%"]=7188, + ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=7187, + ["herald_scorpion_number_of_additional_projectiles"]=7189, + ["herald_skill_gem_level_+"]=7190, + ["herald_skills_mana_reservation_+%"]=7193, + ["herald_skills_mana_reservation_efficiency_+%"]=7192, + ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=7191, + ["hex_remove_at_effect_variance"]=7198, ["hex_skill_cast_speed_+%"]=1969, - ["hex_skill_duration_+%"]=7188, - ["hexblast_%_chance_to_not_consume_hex"]=7190, - ["hexblast_damage_+%"]=7189, - ["hexblast_skill_area_of_effect_+%"]=7191, - ["hexes_expire_on_reaching_200%_effect"]=7192, - ["hexproof_if_right_ring_is_magic_item"]=7193, - ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=7194, - ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=7195, + ["hex_skill_duration_+%"]=7194, + ["hexblast_%_chance_to_not_consume_hex"]=7196, + ["hexblast_damage_+%"]=7195, + ["hexblast_skill_area_of_effect_+%"]=7197, + ["hexes_expire_on_reaching_200%_effect"]=7198, + ["hexproof_if_right_ring_is_magic_item"]=7199, + ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=7200, + ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=7201, ["hierophant_gloves_supported_by_increased_area_of_effect"]=479, ["hierophant_helmet_supported_by_elemental_penetration"]=478, - ["hierophant_mana_cost_+%_final"]=7196, - ["hierophant_mana_reservation_+%_final"]=7197, + ["hierophant_mana_cost_+%_final"]=7202, + ["hierophant_mana_reservation_+%_final"]=7203, ["hierophant_passive_damage_+%_final_per_totem"]=3447, - ["hinder_chance_%_on_spreading_poioson"]=7198, - ["hinder_duration_+%"]=7199, - ["hinder_effect_on_self_+%"]=7200, - ["hinder_enemy_chaos_damage_+%"]=7201, - ["hinder_enemy_chaos_damage_taken_+%"]=7202, - ["hinder_enemy_elemental_damage_taken_+%"]=7203, - ["hinder_enemy_physical_damage_taken_+%"]=7204, + ["hinder_chance_%_on_spreading_poioson"]=7204, + ["hinder_duration_+%"]=7205, + ["hinder_effect_on_self_+%"]=7206, + ["hinder_enemy_chaos_damage_+%"]=7207, + ["hinder_enemy_chaos_damage_taken_+%"]=7208, + ["hinder_enemy_elemental_damage_taken_+%"]=7209, + ["hinder_enemy_physical_damage_taken_+%"]=7210, ["hit_%_chance_to_gain_100%_damage_as_chaos"]=4045, ["hit_%_chance_to_gain_100%_non_chaos_damage_as_chaos"]=4046, ["hit_%_chance_to_gain_100%_of_elemental_damage_as_chaos"]=3259, @@ -240726,277 +241008,277 @@ return { ["hit_%_chance_to_gain_25%_non_chaos_damage_as_chaos"]=4042, ["hit_%_chance_to_gain_50%_damage_as_chaos"]=4043, ["hit_%_chance_to_gain_50%_non_chaos_damage_as_chaos"]=4044, - ["hit_damage_+%"]=7215, - ["hit_damage_+%_against_enemies_in_presence"]=7205, - ["hit_damage_+%_vs_bleeding_enemies"]=7216, - ["hit_damage_+%_vs_blinded_enemies"]=7217, - ["hit_damage_+%_vs_chilled_enemies"]=7218, - ["hit_damage_+%_vs_cursed_enemies"]=7219, - ["hit_damage_+%_vs_enemies_affected_by_ailments"]=7220, - ["hit_damage_+%_vs_ignited_enemies"]=7206, - ["hit_damage_+%_vs_unique_enemies"]=7221, + ["hit_damage_+%"]=7221, + ["hit_damage_+%_against_enemies_in_presence"]=7211, + ["hit_damage_+%_vs_bleeding_enemies"]=7222, + ["hit_damage_+%_vs_blinded_enemies"]=7223, + ["hit_damage_+%_vs_chilled_enemies"]=7224, + ["hit_damage_+%_vs_cursed_enemies"]=7225, + ["hit_damage_+%_vs_enemies_affected_by_ailments"]=7226, + ["hit_damage_+%_vs_ignited_enemies"]=7212, + ["hit_damage_+%_vs_unique_enemies"]=7227, ["hit_damage_bypass_energy_shield_%_when_below_half_energy_shield"]=1483, - ["hit_damage_electrocute_multiplier_+%"]=7207, - ["hit_damage_electrocute_multiplier_+%_vs_shocked_enemies"]=7208, + ["hit_damage_electrocute_multiplier_+%"]=7213, + ["hit_damage_electrocute_multiplier_+%_vs_shocked_enemies"]=7214, ["hit_damage_freeze_multiplier_+%"]=1081, - ["hit_damage_freeze_multiplier_+%_against_ignited_enemies"]=7210, - ["hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently"]=7211, - ["hit_damage_freeze_multiplier_+%_with_empowered_attacks"]=7209, - ["hit_damage_immobilisation_multiplier_+%"]=7212, - ["hit_damage_immobilisation_multiplier_+%_vs_constructs"]=7213, - ["hit_damage_pin_multiplier_+%"]=7214, + ["hit_damage_freeze_multiplier_+%_against_ignited_enemies"]=7216, + ["hit_damage_freeze_multiplier_+%_if_consumed_power_charge_recently"]=7217, + ["hit_damage_freeze_multiplier_+%_with_empowered_attacks"]=7215, + ["hit_damage_immobilisation_multiplier_+%"]=7218, + ["hit_damage_immobilisation_multiplier_+%_vs_constructs"]=7219, + ["hit_damage_pin_multiplier_+%"]=7220, ["hit_damage_stun_multiplier_+%"]=1075, - ["hit_damage_stun_multiplier_+%_if_youve_shapeshifted_to_animal_recently"]=7222, - ["hit_damage_stun_multiplier_+%_per_10_tribute"]=7223, - ["hit_damage_stun_multiplier_+%_vs_enemies_at_close_range"]=7225, - ["hit_damage_stun_multiplier_+%_vs_enemies_on_low_life"]=7226, - ["hit_damage_stun_multiplier_+%_while_shapeshifted"]=7224, - ["hit_for_%_max_life_es_on_max_infernal_flame"]=7227, - ["hit_for_%_of_infernal_flame_on_max_infernal_flame"]=7228, - ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=7229, + ["hit_damage_stun_multiplier_+%_if_youve_shapeshifted_to_animal_recently"]=7228, + ["hit_damage_stun_multiplier_+%_per_10_tribute"]=7229, + ["hit_damage_stun_multiplier_+%_vs_enemies_at_close_range"]=7231, + ["hit_damage_stun_multiplier_+%_vs_enemies_on_low_life"]=7232, + ["hit_damage_stun_multiplier_+%_while_shapeshifted"]=7230, + ["hit_for_%_max_life_es_on_max_infernal_flame"]=7233, + ["hit_for_%_of_infernal_flame_on_max_infernal_flame"]=7234, + ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=7235, ["hits_can_only_kill_frozen_enemies"]=2780, - ["hits_cannot_be_evaded_vs_blinded_enemies"]=7230, - ["hits_cannot_be_evaded_vs_blinded_maimed_bleeding_enemies"]=7231, - ["hits_cannot_be_evaded_vs_heavy_stunned_enemies"]=7232, - ["hits_from_maces_and_sceptres_crush_enemies"]=7233, - ["hits_ignore_elemental_resistances_vs_frozen_enemies"]=7234, - ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=7235, - ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=7236, - ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=7237, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7239, - ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=7238, - ["hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%"]=7240, - ["hits_treat_enemy_cold_resistance_as_x%"]=7241, - ["hits_treat_enemy_fire_resistance_as_x%"]=7242, - ["hits_treat_enemy_lightning_resistance_as_x%"]=7243, - ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=7244, - ["holy_path_teleport_range_+%"]=7245, - ["holy_relic_area_of_effect_+%"]=7246, - ["holy_relic_buff_effect_+%"]=7247, - ["holy_relic_cooldown_recovery_+%"]=7248, - ["holy_relic_damage_+%"]=7249, - ["husk_of_dreams_flask_charges_used_-%_final"]=7250, - ["hydro_sphere_pulse_frequency_+%"]=7251, - ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=7252, - ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=7253, - ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=7254, - ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=7255, + ["hits_cannot_be_evaded_vs_blinded_enemies"]=7236, + ["hits_cannot_be_evaded_vs_blinded_maimed_bleeding_enemies"]=7237, + ["hits_cannot_be_evaded_vs_heavy_stunned_enemies"]=7238, + ["hits_from_maces_and_sceptres_crush_enemies"]=7239, + ["hits_ignore_elemental_resistances_vs_frozen_enemies"]=7240, + ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=7241, + ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=7242, + ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=7243, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7245, + ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=7244, + ["hits_that_cause_bleeding_consume_pinned_to_gain_bleeding_effect_+%"]=7246, + ["hits_treat_enemy_cold_resistance_as_x%"]=7247, + ["hits_treat_enemy_fire_resistance_as_x%"]=7248, + ["hits_treat_enemy_lightning_resistance_as_x%"]=7249, + ["holy_and_shockwave_totem_have_physical_damage_%_to_gain_as_fire_damage_when_linked_by_searing_bond"]=7250, + ["holy_path_teleport_range_+%"]=7251, + ["holy_relic_area_of_effect_+%"]=7252, + ["holy_relic_buff_effect_+%"]=7253, + ["holy_relic_cooldown_recovery_+%"]=7254, + ["holy_relic_damage_+%"]=7255, + ["husk_of_dreams_flask_charges_used_-%_final"]=7256, + ["hydro_sphere_pulse_frequency_+%"]=7257, + ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=7258, + ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=7259, + ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=7260, + ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=7261, ["ice_crash_damage_+%"]=3384, - ["ice_crash_first_stage_damage_+%_final"]=7256, + ["ice_crash_first_stage_damage_+%_final"]=7262, ["ice_crash_physical_damage_%_to_gain_as_cold_damage"]=3667, ["ice_crash_radius_+%"]=3524, - ["ice_crystal_maximum_life_+%"]=7257, - ["ice_crystal_maximum_life_+%_per_5%_cold_resistance"]=7258, - ["ice_dash_cooldown_speed_+%"]=7259, - ["ice_dash_duration_+%"]=7260, - ["ice_dash_travel_distance_+%"]=7261, + ["ice_crystal_maximum_life_+%"]=7263, + ["ice_crystal_maximum_life_+%_per_5%_cold_resistance"]=7264, + ["ice_dash_cooldown_speed_+%"]=7265, + ["ice_dash_duration_+%"]=7266, + ["ice_dash_travel_distance_+%"]=7267, ["ice_golem_damage_+%"]=3397, ["ice_golem_elemental_resistances_%"]=3672, - ["ice_nova_chill_minimum_slow_%"]=7262, + ["ice_nova_chill_minimum_slow_%"]=7268, ["ice_nova_damage_+%"]=3367, ["ice_nova_freeze_chance_%"]=3651, ["ice_nova_radius_+%"]=3511, - ["ice_shot_additional_pierce_per_10_old"]=7263, - ["ice_shot_area_angle_+%"]=7264, + ["ice_shot_additional_pierce_per_10_old"]=7269, + ["ice_shot_area_angle_+%"]=7270, ["ice_shot_damage_+%"]=3351, ["ice_shot_duration_+%"]=3625, - ["ice_shot_pierce_+"]=7265, + ["ice_shot_pierce_+"]=7271, ["ice_shot_radius_+%"]=3507, - ["ice_siphon_trap_chill_effect_+%"]=7266, - ["ice_siphon_trap_damage_+%"]=7267, - ["ice_siphon_trap_damage_taken_+%_per_beam"]=7268, - ["ice_siphon_trap_duration_+%"]=7269, + ["ice_siphon_trap_chill_effect_+%"]=7272, + ["ice_siphon_trap_damage_+%"]=7273, + ["ice_siphon_trap_damage_taken_+%_per_beam"]=7274, + ["ice_siphon_trap_duration_+%"]=7275, ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3659, - ["ice_spear_and_ball_lightning_projectiles_nova"]=7270, - ["ice_spear_and_ball_lightning_projectiles_return"]=7271, + ["ice_spear_and_ball_lightning_projectiles_nova"]=7276, + ["ice_spear_and_ball_lightning_projectiles_return"]=7277, ["ice_spear_damage_+%"]=3368, - ["ice_spear_distance_before_form_change_+%"]=7272, - ["ice_spear_number_of_additional_projectiles"]=7273, + ["ice_spear_distance_before_form_change_+%"]=7278, + ["ice_spear_number_of_additional_projectiles"]=7279, ["ice_spear_second_form_critical_strike_chance_+%"]=3802, ["ice_spear_second_form_critical_strike_multiplier_+"]=3803, ["ice_spear_second_form_projectile_speed_+%_final"]=3804, - ["ice_trap_cold_resistance_penetration_%"]=7274, + ["ice_trap_cold_resistance_penetration_%"]=7280, ["ice_trap_cooldown_speed_+%"]=3584, ["ice_trap_damage_+%"]=3433, ["ice_trap_radius_+%"]=3537, - ["ignite_as_though_dealing_X_damage_in_your_presence"]=7278, + ["ignite_as_though_dealing_X_damage_in_your_presence"]=7284, ["ignite_chance_+%"]=1079, ["ignite_duration_+%"]=1639, - ["ignite_effect_+%_against_frozen_enemies"]=7281, - ["ignite_effect_+%_if_consumed_endurance_charge_recently"]=7282, - ["ignite_effect_on_self_+%"]=7280, - ["ignite_effect_on_self_+%_while_shapeshifted"]=7279, - ["ignite_ground_as_though_dealing_X_damage_on_using_a_wind_skill"]=7283, - ["ignite_magnitude_+%_against_poisoned_enemies"]=7284, + ["ignite_effect_+%_against_frozen_enemies"]=7287, + ["ignite_effect_+%_if_consumed_endurance_charge_recently"]=7288, + ["ignite_effect_on_self_+%"]=7286, + ["ignite_effect_on_self_+%_while_shapeshifted"]=7285, + ["ignite_ground_as_though_dealing_X_damage_on_using_a_wind_skill"]=7289, + ["ignite_magnitude_+%_against_poisoned_enemies"]=7290, ["ignite_prevention_ms_when_ignited"]=2678, ["ignite_proliferation_radius_15"]=1971, - ["ignite_shock_chill_duration_+%"]=7285, + ["ignite_shock_chill_duration_+%"]=7291, ["ignite_slower_burn_%"]=2371, ["ignited_enemies_explode_on_kill"]=2398, - ["ignites_and_chill_apply_elemental_resistance_+"]=7286, - ["ignites_apply_fire_resistance_+"]=7287, + ["ignites_and_chill_apply_elemental_resistance_+"]=7292, + ["ignites_apply_fire_resistance_+"]=7293, ["ignites_reflected_to_self"]=2796, ["ignore_armour_movement_penalties"]=1942, - ["ignore_armour_movement_penalties_if_you_have_at_least_100_tribute"]=7288, - ["ignore_attribute_requirements_for_gloves"]=7289, + ["ignore_armour_movement_penalties_if_you_have_at_least_100_tribute"]=7294, + ["ignore_attribute_requirements_for_gloves"]=7295, ["ignore_hexproof"]=2403, - ["ignore_strength_requirements_of_melee_weapons_and_skills"]=7290, - ["ignores_enemy_cold_resistance"]=7291, - ["ignores_enemy_fire_resistance"]=7292, - ["ignores_enemy_lightning_resistance"]=7293, - ["imbue_weapon_max_exerts"]=7294, - ["immobilisation_buildup_+%_against_enemies_with_abyssal_wasting"]=7295, + ["ignore_strength_requirements_of_melee_weapons_and_skills"]=7296, + ["ignores_enemy_cold_resistance"]=7297, + ["ignores_enemy_fire_resistance"]=7298, + ["ignores_enemy_lightning_resistance"]=7299, + ["imbue_weapon_max_exerts"]=7300, + ["immobilisation_buildup_+%_against_enemies_with_abyssal_wasting"]=7301, ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3706, - ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=7296, + ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=7302, ["immortal_call_duration_+%"]=3594, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=7297, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=7303, ["immune_to_ally_buff_auras"]=2777, ["immune_to_bleeding"]=3891, - ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=7298, - ["immune_to_bleeding_while_archon"]=7299, - ["immune_to_bleeding_while_shapeshifted"]=7300, - ["immune_to_burning_shocks_and_chilled_ground"]=7301, - ["immune_to_chill_if_majority_blue_supports_socketed"]=7302, - ["immune_to_corrupted_blood"]=7303, - ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=7304, - ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=7305, - ["immune_to_curses_while_at_least_X_rage"]=7306, - ["immune_to_curses_while_channelling"]=7307, - ["immune_to_elemental_ailments_while_on_consecrated_ground"]=7308, - ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=7309, - ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=7310, + ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=7304, + ["immune_to_bleeding_while_archon"]=7305, + ["immune_to_bleeding_while_shapeshifted"]=7306, + ["immune_to_burning_shocks_and_chilled_ground"]=7307, + ["immune_to_chill_if_majority_blue_supports_socketed"]=7308, + ["immune_to_corrupted_blood"]=7309, + ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=7310, + ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=7311, + ["immune_to_curses_while_at_least_X_rage"]=7312, + ["immune_to_curses_while_channelling"]=7313, + ["immune_to_elemental_ailments_while_on_consecrated_ground"]=7314, + ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=7315, + ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=7316, ["immune_to_elemental_status_ailments_during_flask_effect"]=3900, - ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10655, - ["immune_to_exposure"]=7311, - ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=7312, - ["immune_to_freeze_and_chill_while_ignited"]=7313, - ["immune_to_freeze_chill_while_archon"]=7314, - ["immune_to_freeze_while_affected_by_purity_of_ice"]=7315, - ["immune_to_hinder"]=7316, - ["immune_to_ignite_and_shock"]=7317, - ["immune_to_ignite_if_majority_red_supports_socketed"]=7318, - ["immune_to_ignite_while_affected_by_purity_of_fire"]=7319, - ["immune_to_ignite_while_archon"]=7320, - ["immune_to_maim"]=7321, - ["immune_to_maim_while_shapeshifted"]=7322, + ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10671, + ["immune_to_exposure"]=7317, + ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=7318, + ["immune_to_freeze_and_chill_while_ignited"]=7319, + ["immune_to_freeze_chill_while_archon"]=7320, + ["immune_to_freeze_while_affected_by_purity_of_ice"]=7321, + ["immune_to_hinder"]=7322, + ["immune_to_ignite_and_shock"]=7323, + ["immune_to_ignite_if_majority_red_supports_socketed"]=7324, + ["immune_to_ignite_while_affected_by_purity_of_fire"]=7325, + ["immune_to_ignite_while_archon"]=7326, + ["immune_to_maim"]=7327, + ["immune_to_maim_while_shapeshifted"]=7328, ["immune_to_poison"]=3318, - ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=7323, - ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=7324, - ["immune_to_shock_if_majority_green_supports_socketed"]=7325, - ["immune_to_shock_while_affected_by_purity_of_lightning"]=7326, - ["immune_to_shock_while_archon"]=7327, - ["immune_to_status_ailments_while_focused"]=7328, + ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=7329, + ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=7330, + ["immune_to_shock_if_majority_green_supports_socketed"]=7331, + ["immune_to_shock_while_affected_by_purity_of_lightning"]=7332, + ["immune_to_shock_while_archon"]=7333, + ["immune_to_status_ailments_while_focused"]=7334, ["immune_to_status_ailments_while_phased"]=3181, - ["immune_to_thorns_damage"]=7329, - ["immune_to_wither"]=7330, - ["impacting_steel_%_chance_to_not_consume_ammo"]=7331, - ["impale_inflicted_by_two_handed_weapons_magnitude_+%"]=7332, - ["impale_magnitude_+%"]=7333, - ["impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=7334, - ["impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies"]=7335, - ["impale_on_hit_%_chance"]=7336, - ["impale_on_hit_%_chance_with_axes_swords"]=7337, - ["impending_doom_base_added_chaos_damage_%_of_current_mana"]=7338, - ["impurity_cold_damage_taken_+%_final"]=7339, - ["impurity_fire_damage_taken_+%_final"]=7340, - ["impurity_lightning_damage_taken_+%_final"]=7341, + ["immune_to_thorns_damage"]=7335, + ["immune_to_wither"]=7336, + ["impacting_steel_%_chance_to_not_consume_ammo"]=7337, + ["impale_inflicted_by_two_handed_weapons_magnitude_+%"]=7338, + ["impale_magnitude_+%"]=7339, + ["impale_magnitude_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=7340, + ["impale_magnitude_+%_for_impales_inflicted_on_non_impaled_enemies"]=7341, + ["impale_on_hit_%_chance"]=7342, + ["impale_on_hit_%_chance_with_axes_swords"]=7343, + ["impending_doom_base_added_chaos_damage_%_of_current_mana"]=7344, + ["impurity_cold_damage_taken_+%_final"]=7345, + ["impurity_fire_damage_taken_+%_final"]=7346, + ["impurity_lightning_damage_taken_+%_final"]=7347, ["incinerate_damage_+%"]=3369, ["incinerate_damage_+%_per_stage"]=3689, ["incinerate_projectile_speed_+%"]=3591, - ["incinerate_starts_with_X_additional_stages"]=7342, - ["incision_effect_+%"]=7343, - ["incision_you_inflict_applies_%_increased_physical_damage_taken"]=7344, - ["increase_crit_chance_by_lowest_of_str_or_int"]=7345, + ["incinerate_starts_with_X_additional_stages"]=7348, + ["incision_effect_+%"]=7349, + ["incision_you_inflict_applies_%_increased_physical_damage_taken"]=7350, + ["increase_crit_chance_by_lowest_of_str_or_int"]=7351, ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1407, - ["increases_and_reductions_to_move_speed_apply_to_es_recharge_rate"]=7346, + ["increases_and_reductions_to_move_speed_apply_to_es_recharge_rate"]=7352, ["infernal_blow_damage_+%"]=3340, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=7347, - ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=7348, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=7353, + ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=7354, ["infernal_blow_physical_damage_%_to_gain_as_fire_damage"]=3648, ["infernal_blow_radius_+%"]=3502, - ["infernal_cry_area_of_effect_+%"]=7349, - ["infernal_cry_cooldown_speed_+%"]=7350, - ["infernal_familiar_burn_damage"]=7351, - ["infernal_familiar_nearby_enemies_fire_damage_taken_+%"]=7352, - ["infernal_familiar_revive_if_killed_by_enemies_ms"]=7353, - ["infernal_familiar_total_burn_radius"]=7351, - ["infernal_flame_instead_of_mana_at_%_ratio"]=6975, - ["infernalist_burn_life_and_es_%_per_second_if_crit_recently"]=7354, - ["infernalist_critical_strike_chance_+%_final"]=7355, - ["infernalist_critical_strike_multiplier_+%_final"]=7356, - ["infinite_active_block_distance"]=7357, - ["inflict_all_exposure_on_hit"]=7358, - ["inflict_blind_on_enemies_within_x_meters_while_shield_is_raised"]=7359, - ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=7360, - ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=7361, - ["inflict_cold_exposure_on_ignite"]=7362, - ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=7363, - ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=7364, - ["inflict_fire_exposure_on_hits_that_heavy_stun"]=7365, - ["inflict_fire_exposure_on_shock"]=7366, - ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=7367, - ["inflict_lightning_exposure_on_crit"]=7368, - ["inflict_lightning_exposure_on_electrocute_for_x_seconds"]=7369, - ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=7370, - ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=7371, - ["inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence"]=7372, - ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=7373, - ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=7374, - ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=7375, - ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=7376, - ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=7377, - ["infusion_blast_area_of_effect_+%"]=7378, - ["infusion_blast_damage_+%"]=7379, - ["infusion_duration_+%"]=7380, - ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=7381, + ["infernal_cry_area_of_effect_+%"]=7355, + ["infernal_cry_cooldown_speed_+%"]=7356, + ["infernal_familiar_burn_damage"]=7357, + ["infernal_familiar_nearby_enemies_fire_damage_taken_+%"]=7358, + ["infernal_familiar_revive_if_killed_by_enemies_ms"]=7359, + ["infernal_familiar_total_burn_radius"]=7357, + ["infernal_flame_instead_of_mana_at_%_ratio"]=6979, + ["infernalist_burn_life_and_es_%_per_second_if_crit_recently"]=7360, + ["infernalist_critical_strike_chance_+%_final"]=7361, + ["infernalist_critical_strike_multiplier_+%_final"]=7362, + ["infinite_active_block_distance"]=7363, + ["inflict_all_exposure_on_hit"]=7364, + ["inflict_blind_on_enemies_within_x_meters_while_shield_is_raised"]=7365, + ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=7366, + ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=7367, + ["inflict_cold_exposure_on_ignite"]=7368, + ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=7369, + ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=7370, + ["inflict_fire_exposure_on_hits_that_heavy_stun"]=7371, + ["inflict_fire_exposure_on_shock"]=7372, + ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=7373, + ["inflict_lightning_exposure_on_crit"]=7374, + ["inflict_lightning_exposure_on_electrocute_for_x_seconds"]=7375, + ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=7376, + ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=7377, + ["inflict_withered_for_x_seconds_on_unwithered_enemies_when_they_enter_your_presence"]=7378, + ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=7379, + ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=7380, + ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=7381, + ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=7382, + ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=7383, + ["infusion_blast_area_of_effect_+%"]=7384, + ["infusion_blast_damage_+%"]=7385, + ["infusion_duration_+%"]=7386, + ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=7387, ["inquisitor_aura_elemental_damage_+%_final"]=3298, - ["inspiration_charge_duration_+%"]=7382, - ["instability_on_critical_%_chance"]=7383, - ["instilling_%_chance_to_gain_additional_instilling_stack"]=7384, + ["inspiration_charge_duration_+%"]=7388, + ["instability_on_critical_%_chance"]=7389, + ["instilling_%_chance_to_gain_additional_instilling_stack"]=7390, ["intelligence_+%"]=1025, ["intelligence_+%_per_equipped_unique"]=2397, ["intelligence_inherently_grants_life_instead_of_mana"]=1784, - ["intelligence_is_0"]=7385, + ["intelligence_is_0"]=7391, ["intelligence_skill_gem_level_+"]=979, - ["intensity_loss_frequency_while_moving_+%"]=7386, - ["internecine_draw_%_damage_gained_as_lightning_per_cleansed_form"]=7387, - ["internecine_draw_%_damage_gained_as_physical_per_corrupted_form"]=7388, - ["internecine_draw_always_bleed_at_maximum_corrupted_form"]=7389, - ["internecine_draw_always_shock_at_maximum_cleansed_form"]=7390, - ["internecine_draw_gain_cleansing_on_bow_attack"]=7391, - ["internecine_draw_gain_corruption_on_bow_attack"]=7392, - ["internecine_draw_lightning_damage_taken_on_attack_per_cleansed_form_above_corrupted_form"]=7393, - ["internecine_draw_maximum_stacks"]=7394, - ["internecine_draw_physical_damage_taken_on_attack_per_corrupted_form_above_cleansed_form"]=7395, - ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=7396, - ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=7397, - ["intimidate_enemy_on_block_for_duration_ms"]=7398, - ["intimidate_nearby_enemies_on_use_for_ms"]=7399, - ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=7400, - ["intimidating_cry_area_of_effect_+%"]=7401, - ["intimidating_cry_cooldown_speed_+%"]=7402, - ["intuitive_link_duration_+%"]=7403, - ["invocation_skill_maximum_energy_+%"]=7404, - ["invocation_spell_chance_to_cost_half_energy_%"]=7405, - ["invocation_spell_critical_strike_chance_+%"]=7406, - ["invocation_spell_critical_strike_multiplier_+"]=7407, - ["invocation_spell_damage_+%"]=7408, - ["iron_reflexes_rotation_active"]=10766, - ["is_blighted_map"]=7409, + ["intensity_loss_frequency_while_moving_+%"]=7392, + ["internecine_draw_%_damage_gained_as_lightning_per_cleansed_form"]=7393, + ["internecine_draw_%_damage_gained_as_physical_per_corrupted_form"]=7394, + ["internecine_draw_always_bleed_at_maximum_corrupted_form"]=7395, + ["internecine_draw_always_shock_at_maximum_cleansed_form"]=7396, + ["internecine_draw_gain_cleansing_on_bow_attack"]=7397, + ["internecine_draw_gain_corruption_on_bow_attack"]=7398, + ["internecine_draw_lightning_damage_taken_on_attack_per_cleansed_form_above_corrupted_form"]=7399, + ["internecine_draw_maximum_stacks"]=7400, + ["internecine_draw_physical_damage_taken_on_attack_per_corrupted_form_above_cleansed_form"]=7401, + ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=7402, + ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=7403, + ["intimidate_enemy_on_block_for_duration_ms"]=7404, + ["intimidate_nearby_enemies_on_use_for_ms"]=7405, + ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=7406, + ["intimidating_cry_area_of_effect_+%"]=7407, + ["intimidating_cry_cooldown_speed_+%"]=7408, + ["intuitive_link_duration_+%"]=7409, + ["invocation_skill_maximum_energy_+%"]=7410, + ["invocation_spell_chance_to_cost_half_energy_%"]=7411, + ["invocation_spell_critical_strike_chance_+%"]=7412, + ["invocation_spell_critical_strike_multiplier_+"]=7413, + ["invocation_spell_damage_+%"]=7414, + ["iron_reflexes_rotation_active"]=10783, + ["is_blighted_map"]=7415, ["is_hindered"]=3785, ["is_petrified"]=3311, - ["item_can_have_catalyst_quality_in_addition_to_base_quality"]=7410, + ["item_can_have_catalyst_quality_in_addition_to_base_quality"]=7416, ["item_drop_slots"]=12, ["item_drops_on_death"]=2364, ["item_found_quality_+%"]=1493, ["item_found_quantity_+%_if_wearing_a_magic_item"]=3887, - ["item_found_quantity_+%_per_chest_opened_recently"]=7411, + ["item_found_quantity_+%_per_chest_opened_recently"]=7417, ["item_found_quantity_+%_when_on_low_life"]=1486, ["item_found_rarity_+%"]=1488, ["item_found_rarity_+%_if_wearing_a_normal_item"]=3886, ["item_found_rarity_+%_when_on_low_life"]=1491, ["item_found_rarity_+%_while_phasing"]=2310, - ["item_found_rarity_+1%_per_X_rampage_stacks"]=7412, + ["item_found_rarity_+1%_per_X_rampage_stacks"]=7418, ["item_found_relevancy_+%"]=1494, ["item_generation_can_have_multiple_crafted_mods"]=53, ["item_generation_cannot_change_prefixes"]=48, @@ -241005,430 +241287,430 @@ return { ["item_generation_cannot_roll_caster_affixes"]=51, ["item_generation_local_maximum_mod_required_level_override"]=55, ["item_rarity_+%_while_using_flask"]=2542, - ["jagged_ground_duration_+%"]=7413, - ["jagged_ground_effect_+%"]=7414, - ["jagged_ground_enemy_damage_taken_+%"]=7415, - ["jewellery_hellscaping_speed_+%"]=7153, + ["jagged_ground_duration_+%"]=7419, + ["jagged_ground_effect_+%"]=7420, + ["jagged_ground_enemy_damage_taken_+%"]=7421, + ["jewellery_hellscaping_speed_+%"]=7158, ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2580, - ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=7416, - ["keystone_2_companions"]=10700, - ["keystone_acrobatics"]=10701, - ["keystone_alternate_dexterity_bonus"]=10702, - ["keystone_alternate_es_recovery"]=10703, - ["keystone_alternate_intelligence_bonus"]=10704, - ["keystone_alternate_strength_bonus"]=10705, - ["keystone_ancestral_bond"]=10706, - ["keystone_auto_invocation"]=10707, - ["keystone_avatar_of_fire"]=10708, - ["keystone_battlemage"]=10709, - ["keystone_blood_magic"]=10710, - ["keystone_bulwark"]=10711, - ["keystone_call_to_arms"]=10712, - ["keystone_chaos_inoculation"]=10713, - ["keystone_charge_cycle"]=10714, - ["keystone_conduit"]=10715, - ["keystone_crimson_assault"]=10716, - ["keystone_crimson_dance"]=10717, - ["keystone_dance_with_death"]=10718, - ["keystone_divine_flesh"]=10719, - ["keystone_divine_shield"]=10720, - ["keystone_druidic_rage"]=10721, - ["keystone_eldritch_battery"]=10722, - ["keystone_elemental_equilibrium"]=10723, - ["keystone_elemental_overload"]=10724, - ["keystone_emperors_heart"]=10725, - ["keystone_eternal_youth"]=10726, - ["keystone_everlasting_sacrifice"]=10727, - ["keystone_fire_spells_become_chaos_spells"]=10728, - ["keystone_giants_blood"]=10729, - ["keystone_glancing_blows"]=10730, - ["keystone_heartstopper"]=10731, - ["keystone_hex_master"]=10732, - ["keystone_hollow_palm_technique"]=10733, - ["keystone_impale"]=10734, - ["keystone_iron_grip"]=10735, - ["keystone_iron_reflexes"]=10736, - ["keystone_iron_will"]=10737, - ["keystone_lord_of_the_wilds"]=10738, - ["keystone_mana_shield"]=10739, - ["keystone_minion_instability"]=10740, - ["keystone_oasis"]=10741, - ["keystone_pain_attunement"]=10742, - ["keystone_point_blank"]=10743, - ["keystone_precise_technique"]=10744, - ["keystone_quiet_might"]=10745, - ["keystone_runebinder"]=10746, - ["keystone_sacred_bastion"]=10747, - ["keystone_secrets_of_suffering"]=10748, - ["keystone_shepherd_of_souls"]=7417, - ["keystone_unwavering_stance"]=10749, - ["keystone_vaal_pact"]=10750, - ["keystone_versatile_combatant"]=10751, - ["keystone_wildsurge_incantation"]=10752, - ["keystone_zealots_oath"]=10753, + ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=7422, + ["keystone_2_companions"]=10717, + ["keystone_acrobatics"]=10718, + ["keystone_alternate_dexterity_bonus"]=10719, + ["keystone_alternate_es_recovery"]=10720, + ["keystone_alternate_intelligence_bonus"]=10721, + ["keystone_alternate_strength_bonus"]=10722, + ["keystone_ancestral_bond"]=10723, + ["keystone_auto_invocation"]=10724, + ["keystone_avatar_of_fire"]=10725, + ["keystone_battlemage"]=10726, + ["keystone_blood_magic"]=10727, + ["keystone_bulwark"]=10728, + ["keystone_call_to_arms"]=10729, + ["keystone_chaos_inoculation"]=10730, + ["keystone_charge_cycle"]=10731, + ["keystone_conduit"]=10732, + ["keystone_crimson_assault"]=10733, + ["keystone_crimson_dance"]=10734, + ["keystone_dance_with_death"]=10735, + ["keystone_divine_flesh"]=10736, + ["keystone_divine_shield"]=10737, + ["keystone_druidic_rage"]=10738, + ["keystone_eldritch_battery"]=10739, + ["keystone_elemental_equilibrium"]=10740, + ["keystone_elemental_overload"]=10741, + ["keystone_emperors_heart"]=10742, + ["keystone_eternal_youth"]=10743, + ["keystone_everlasting_sacrifice"]=10744, + ["keystone_fire_spells_become_chaos_spells"]=10745, + ["keystone_giants_blood"]=10746, + ["keystone_glancing_blows"]=10747, + ["keystone_heartstopper"]=10748, + ["keystone_hex_master"]=10749, + ["keystone_hollow_palm_technique"]=10750, + ["keystone_impale"]=10751, + ["keystone_iron_grip"]=10752, + ["keystone_iron_reflexes"]=10753, + ["keystone_iron_will"]=10754, + ["keystone_lord_of_the_wilds"]=10755, + ["keystone_mana_shield"]=10756, + ["keystone_minion_instability"]=10757, + ["keystone_oasis"]=10758, + ["keystone_pain_attunement"]=10759, + ["keystone_point_blank"]=10760, + ["keystone_precise_technique"]=10761, + ["keystone_quiet_might"]=10762, + ["keystone_runebinder"]=10763, + ["keystone_sacred_bastion"]=10764, + ["keystone_secrets_of_suffering"]=10765, + ["keystone_shepherd_of_souls"]=7423, + ["keystone_unwavering_stance"]=10766, + ["keystone_vaal_pact"]=10767, + ["keystone_versatile_combatant"]=10768, + ["keystone_wildsurge_incantation"]=10769, + ["keystone_zealots_oath"]=10770, ["kill_enemy_on_hit_if_under_10%_life"]=1799, ["kill_enemy_on_hit_if_under_15%_life"]=3889, ["kill_enemy_on_hit_if_under_20%_life"]=3890, - ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=7418, + ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=7424, ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2491, ["killed_monster_dropped_item_rarity_+%_on_crit"]=2440, ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2494, ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2492, ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3284, ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2493, - ["kills_count_twice_for_rampage_%"]=7419, + ["kills_count_twice_for_rampage_%"]=7425, ["kinetic_blast_%_chance_for_additional_blast"]=3795, ["kinetic_blast_damage_+%"]=3385, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=7420, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=7426, ["kinetic_blast_radius_+%"]=3525, - ["kinetic_bolt_attack_speed_+%"]=7421, - ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=7422, - ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=7423, - ["kinetic_bolt_projectile_speed_+%"]=7424, - ["kinetic_wand_base_number_of_zig_zags"]=7425, - ["knockback_chance_%_against_bleeding_enemies_with_hits"]=7426, - ["knockback_chance_%_at_close_range"]=7427, + ["kinetic_bolt_attack_speed_+%"]=7427, + ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=7428, + ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=7429, + ["kinetic_bolt_projectile_speed_+%"]=7430, + ["kinetic_wand_base_number_of_zig_zags"]=7431, + ["knockback_chance_%_against_bleeding_enemies_with_hits"]=7432, + ["knockback_chance_%_at_close_range"]=7433, ["knockback_distance_+%"]=1768, - ["knockback_distance_+%_final_vs_unique_enemies"]=7428, + ["knockback_distance_+%_final_vs_unique_enemies"]=7434, ["knockback_on_counterattack_%"]=3327, ["knockback_on_crit_with_bow"]=1723, - ["knockback_on_crit_with_projectile_damage"]=7429, + ["knockback_on_crit_with_projectile_damage"]=7435, ["knockback_on_crit_with_quarterstaff"]=1724, ["knockback_on_crit_with_wand"]=1725, ["knockback_with_bow"]=1436, ["knockback_with_staff"]=1437, ["knockback_with_wand"]=1438, - ["labyrinth_darkshrine_additional_divine_font_use_display"]=7430, - ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=7431, - ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=7432, - ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=7433, - ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=7434, - ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=7435, - ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=7436, - ["labyrinth_owner_x_addition_enchants"]=7437, - ["lancing_steel_%_chance_to_not_consume_ammo"]=7441, - ["lancing_steel_damage_+%"]=7438, - ["lancing_steel_impale_chance_%"]=7439, - ["lancing_steel_number_of_additional_projectiles"]=7440, - ["lancing_steel_primary_proj_pierce_num"]=7442, - ["last_tremor_duration_ms"]=7443, + ["labyrinth_darkshrine_additional_divine_font_use_display"]=7436, + ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=7437, + ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=7438, + ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=7439, + ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=7440, + ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=7441, + ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=7442, + ["labyrinth_owner_x_addition_enchants"]=7443, + ["lancing_steel_%_chance_to_not_consume_ammo"]=7447, + ["lancing_steel_damage_+%"]=7444, + ["lancing_steel_impale_chance_%"]=7445, + ["lancing_steel_number_of_additional_projectiles"]=7446, + ["lancing_steel_primary_proj_pierce_num"]=7448, + ["last_tremor_duration_ms"]=7449, ["leap_slam_attack_speed_+%"]=3552, ["leap_slam_damage_+%"]=3356, ["leap_slam_radius_+%"]=3509, - ["leech_%_is_instant"]=7444, + ["leech_%_is_instant"]=7450, ["leech_rate_+%"]=1918, level=11, ["lich_mana_cost_+%_final_if_you_have_no_energy_shield"]=154, ["life_%_gained_on_kill_if_spent_life_recently"]=2707, ["life_+%_with_no_corrupted_equipped_items"]=3878, - ["life_and_energy_shield_recovery_rate_+%"]=7445, - ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=7446, - ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=7447, - ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=7448, - ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=7449, - ["life_and_mana_flasks_can_be_equipped_in_either_slot"]=7450, + ["life_and_energy_shield_recovery_rate_+%"]=7451, + ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=7452, + ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=7453, + ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=7454, + ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=7455, + ["life_and_mana_flasks_can_be_equipped_in_either_slot"]=7456, ["life_and_mana_gain_per_hit"]=1528, - ["life_and_mana_regeneration_rate_+%_for_each_minion_in_your_presence_capped"]=7451, + ["life_and_mana_regeneration_rate_+%_for_each_minion_in_your_presence_capped"]=7457, ["life_degeneration_%_per_minute_not_in_grace"]=1714, ["life_degeneration_per_minute_not_in_grace"]=1467, - ["life_flask_charges_gained_+%"]=7452, - ["life_flask_charges_recovered_per_3_seconds"]=7453, + ["life_flask_charges_gained_+%"]=7458, + ["life_flask_charges_recovered_per_3_seconds"]=7459, ["life_flask_charges_used_%_granted_to_charms"]=928, - ["life_flask_effects_are_not_removed_at_full_life"]=7454, - ["life_flask_recovery_can_overcap_life"]=7455, - ["life_flask_recovery_is_instant"]=7456, - ["life_flask_recovery_is_instant_while_on_low_life"]=7457, - ["life_flasks_do_not_recover_life"]=7458, - ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7459, - ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7460, - ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7461, + ["life_flask_effects_are_not_removed_at_full_life"]=7460, + ["life_flask_recovery_can_overcap_life"]=7461, + ["life_flask_recovery_is_instant"]=7462, + ["life_flask_recovery_is_instant_while_on_low_life"]=7463, + ["life_flasks_do_not_recover_life"]=7464, + ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7465, + ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7466, + ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7467, ["life_gain_on_ignited_enemy_hit"]=1530, ["life_gain_per_target"]=1526, - ["life_gain_per_target_hit_while_affected_by_vitality"]=7462, - ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7463, - ["life_gained_on_attack_hit_if_crit_recently"]=7464, - ["life_gained_on_attack_hit_vs_cursed_enemies"]=7465, + ["life_gain_per_target_hit_while_affected_by_vitality"]=7468, + ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7469, + ["life_gained_on_attack_hit_if_crit_recently"]=7470, + ["life_gained_on_attack_hit_vs_cursed_enemies"]=7471, ["life_gained_on_bleeding_enemy_hit"]=3278, ["life_gained_on_block"]=1543, - ["life_gained_on_cull"]=7466, + ["life_gained_on_cull"]=7472, ["life_gained_on_enemy_death_per_frenzy_charge"]=2706, ["life_gained_on_enemy_death_per_level"]=2740, ["life_gained_on_hit_per_enemy_status_ailment"]=2828, - ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7467, + ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7473, ["life_gained_on_killing_ignited_enemies"]=1539, ["life_gained_on_spell_hit_per_enemy_status_ailment"]=2829, ["life_gained_on_taunting_enemy"]=1566, - ["life_leech_%_is_instant_if_you_have_at_least_200_tribute"]=7468, - ["life_leech_%_is_instant_per_defiance"]=7477, - ["life_leech_%_maximum_life_on_spell_cast"]=7478, - ["life_leech_also_recovers_based_on_elemental_damage_types"]=7469, - ["life_leech_also_recovers_based_on_lightning_damage"]=7470, - ["life_leech_amount_+%_if_consumed_frenzy_charge_recently"]=7471, - ["life_leech_amount_+%_while_shapeshifted"]=7472, - ["life_leech_can_overcap_life"]=7473, - ["life_leech_excess_goes_to_energy_shield"]=7474, - ["life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute"]=7475, + ["life_leech_%_is_instant_if_you_have_at_least_200_tribute"]=7474, + ["life_leech_%_is_instant_per_defiance"]=7483, + ["life_leech_%_maximum_life_on_spell_cast"]=7484, + ["life_leech_also_recovers_based_on_elemental_damage_types"]=7475, + ["life_leech_also_recovers_based_on_lightning_damage"]=7476, + ["life_leech_amount_+%_if_consumed_frenzy_charge_recently"]=7477, + ["life_leech_amount_+%_while_shapeshifted"]=7478, + ["life_leech_can_overcap_life"]=7479, + ["life_leech_excess_goes_to_energy_shield"]=7480, + ["life_leech_from_all_thorns_damage_permyriad_if_you_have_at_least_100_tribute"]=7481, ["life_leech_from_physical_attack_damage_permyriad_vs_bleeding_enemies"]=1525, - ["life_leech_is_instant_for_empowered_attacks"]=7476, - ["life_leech_rate_+%_if_you_have_at_least_100_tribute"]=7479, + ["life_leech_is_instant_for_empowered_attacks"]=7482, + ["life_leech_rate_+%_if_you_have_at_least_100_tribute"]=7485, ["life_leech_rate_+%_per_equipped_corrupted_item"]=2852, - ["life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage"]=7480, - ["life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence"]=7481, - ["life_leeched_from_hits_also_leeches_same_amount_to_companions"]=7482, - ["life_loss_%_per_minute_if_have_been_hit_recently"]=7484, - ["life_loss_%_per_minute_while_sprinting"]=7483, - ["life_lost_%_per_minute_nonlethal"]=7485, - ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7486, - ["life_mana_flasks_restore_mana_life"]=7487, - ["life_mastery_count_maximum_life_+%_final"]=7488, - ["life_per_level"]=7489, - ["life_recoup_also_applies_to_energy_shield"]=7490, - ["life_recoup_applies_to_energy_shield_instead"]=7491, - ["life_recovery_+%_from_flasks_while_on_low_life"]=7498, - ["life_recovery_from_flasks_also_recovers_energy_shield"]=7492, - ["life_recovery_from_flasks_also_recovers_ward_%"]=7493, - ["life_recovery_from_flasks_applies_to_companions"]=7494, - ["life_recovery_from_flasks_apply_to_minions_in_your_presence"]=7495, - ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7496, - ["life_recovery_from_regeneration_is_not_applied"]=7497, + ["life_leech_recovers_based_on_your_chaos_damage_instead_of_physical_damage"]=7486, + ["life_leeched_from_hits_also_leeches_same_amount_to_allies_in_presence"]=7487, + ["life_leeched_from_hits_also_leeches_same_amount_to_companions"]=7488, + ["life_loss_%_per_minute_if_have_been_hit_recently"]=7490, + ["life_loss_%_per_minute_while_sprinting"]=7489, + ["life_lost_%_per_minute_nonlethal"]=7491, + ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7492, + ["life_mana_flasks_restore_mana_life"]=7493, + ["life_mastery_count_maximum_life_+%_final"]=7494, + ["life_per_level"]=7495, + ["life_recoup_also_applies_to_energy_shield"]=7496, + ["life_recoup_applies_to_energy_shield_instead"]=7497, + ["life_recovery_+%_from_flasks_while_on_low_life"]=7504, + ["life_recovery_from_flasks_also_recovers_energy_shield"]=7498, + ["life_recovery_from_flasks_also_recovers_ward_%"]=7499, + ["life_recovery_from_flasks_applies_to_companions"]=7500, + ["life_recovery_from_flasks_apply_to_minions_in_your_presence"]=7501, + ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7502, + ["life_recovery_from_regeneration_is_not_applied"]=7503, ["life_recovery_rate_+%"]=1469, - ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7501, - ["life_recovery_rate_+%_if_havent_killed_recently"]=7502, - ["life_recovery_rate_+%_per_10_tribute"]=7499, - ["life_recovery_rate_+%_per_5%_missing_life"]=7500, - ["life_recovery_rate_+%_while_affected_by_vitality"]=7503, - ["life_recovery_rate_while_in_presence_of_companion_+%"]=7504, + ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7507, + ["life_recovery_rate_+%_if_havent_killed_recently"]=7508, + ["life_recovery_rate_+%_per_10_tribute"]=7505, + ["life_recovery_rate_+%_per_5%_missing_life"]=7506, + ["life_recovery_rate_+%_while_affected_by_vitality"]=7509, + ["life_recovery_rate_while_in_presence_of_companion_+%"]=7510, ["life_regen_per_minute_per_endurance_charge"]=2769, ["life_regenerate_rate_per_second_%_while_totem_active"]=3733, - ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7520, - ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7521, - ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7505, - ["life_regeneration_per_minute_%_if_used_a_command_skill_recently"]=7506, - ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7512, - ["life_regeneration_per_minute_%_per_fortification"]=7513, - ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7514, - ["life_regeneration_per_minute_%_while_channelling"]=7515, + ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7526, + ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7527, + ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7511, + ["life_regeneration_per_minute_%_if_used_a_command_skill_recently"]=7512, + ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7518, + ["life_regeneration_per_minute_%_per_fortification"]=7519, + ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7520, + ["life_regeneration_per_minute_%_while_channelling"]=7521, ["life_regeneration_per_minute_%_while_fortified"]=2940, ["life_regeneration_per_minute_%_while_frozen"]=3443, - ["life_regeneration_per_minute_%_while_ignited"]=7507, + ["life_regeneration_per_minute_%_while_ignited"]=7513, ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4058, ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4059, ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4057, - ["life_regeneration_per_minute_in_blood_stance"]=10088, - ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7508, - ["life_regeneration_per_minute_per_active_buff"]=7509, - ["life_regeneration_per_minute_per_maximum_energy_shield"]=7510, - ["life_regeneration_per_minute_per_nearby_corpse"]=7511, - ["life_regeneration_per_minute_while_affected_by_vitality"]=7516, - ["life_regeneration_per_minute_while_ignited"]=7517, - ["life_regeneration_per_minute_while_moving"]=7518, - ["life_regeneration_per_minute_while_you_have_avians_flight"]=7519, + ["life_regeneration_per_minute_in_blood_stance"]=10099, + ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7514, + ["life_regeneration_per_minute_per_active_buff"]=7515, + ["life_regeneration_per_minute_per_maximum_energy_shield"]=7516, + ["life_regeneration_per_minute_per_nearby_corpse"]=7517, + ["life_regeneration_per_minute_while_affected_by_vitality"]=7522, + ["life_regeneration_per_minute_while_ignited"]=7523, + ["life_regeneration_per_minute_while_moving"]=7524, + ["life_regeneration_per_minute_while_you_have_avians_flight"]=7525, ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3879, ["life_regeneration_rate_+%"]=1060, ["life_regeneration_rate_+%_while_es_full"]=2830, - ["life_regeneration_rate_+%_while_ignited"]=7522, - ["life_regeneration_rate_+%_while_moving"]=7547, - ["life_regeneration_rate_+%_while_on_low_life"]=7548, - ["life_regeneration_rate_+%_while_shapeshifted"]=7523, - ["life_regeneration_rate_+%_while_stationary"]=7549, - ["life_regeneration_rate_+%_while_surrounded"]=7524, - ["life_regeneration_rate_+%_while_using_life_flask"]=7525, + ["life_regeneration_rate_+%_while_ignited"]=7528, + ["life_regeneration_rate_+%_while_moving"]=7553, + ["life_regeneration_rate_+%_while_on_low_life"]=7554, + ["life_regeneration_rate_+%_while_shapeshifted"]=7529, + ["life_regeneration_rate_+%_while_stationary"]=7555, + ["life_regeneration_rate_+%_while_surrounded"]=7530, + ["life_regeneration_rate_+%_while_using_life_flask"]=7531, ["life_regeneration_rate_per_minute_%"]=1715, - ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7531, - ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7532, - ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7533, + ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7537, + ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7538, + ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7539, ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=1059, - ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7534, - ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7526, + ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7540, + ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7532, ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3899, - ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7535, - ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7536, + ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7541, + ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7542, ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1468, ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4084, ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2426, - ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7537, - ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7538, - ["life_regeneration_rate_per_minute_%_per_power_charge"]=7539, - ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7540, - ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7541, + ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7543, + ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7544, + ["life_regeneration_rate_per_minute_%_per_power_charge"]=7545, + ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7546, + ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7547, ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1911, ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1716, - ["life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment"]=7527, - ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7528, - ["life_regeneration_rate_per_minute_%_while_moving"]=7542, - ["life_regeneration_rate_per_minute_%_while_stationary"]=7543, - ["life_regeneration_rate_per_minute_%_while_surrounded"]=7529, - ["life_regeneration_rate_per_minute_%_while_using_flask"]=7544, - ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7545, + ["life_regeneration_rate_per_minute_%_while_affected_by_damaging_ailment"]=7533, + ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7534, + ["life_regeneration_rate_per_minute_%_while_moving"]=7548, + ["life_regeneration_rate_per_minute_%_while_stationary"]=7549, + ["life_regeneration_rate_per_minute_%_while_surrounded"]=7535, + ["life_regeneration_rate_per_minute_%_while_using_flask"]=7550, + ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7551, ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2853, ["life_regeneration_rate_per_minute_per_level"]=2730, - ["life_regeneration_rate_per_minute_while_on_low_life"]=7546, + ["life_regeneration_rate_per_minute_while_on_low_life"]=7552, ["life_reserved_by_stat_only_for_midnight_bargain_and_infernalist_%"]=2215, ["light_radius_+%"]=1094, - ["light_radius_+%_per_10_tribute"]=7550, + ["light_radius_+%_per_10_tribute"]=7556, ["light_radius_+%_while_phased"]=2313, ["light_radius_additive_modifiers_apply_to_area_%_value"]=2303, ["light_radius_additive_modifiers_apply_to_damage"]=2304, - ["light_radius_increases_apply_to_accuracy"]=7551, - ["light_radius_increases_apply_to_area_of_effect"]=7552, + ["light_radius_increases_apply_to_accuracy"]=7557, + ["light_radius_increases_apply_to_area_of_effect"]=7558, ["light_radius_scales_with_energy_shield"]=2527, - ["lightning_ailment_duration_+%"]=7553, - ["lightning_ailment_effect_+%"]=7555, - ["lightning_ailment_effect_+%_against_chilled_enemies"]=7554, - ["lightning_and_chaos_damage_resistance_%"]=7556, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7557, + ["lightning_ailment_duration_+%"]=7559, + ["lightning_ailment_effect_+%"]=7561, + ["lightning_ailment_effect_+%_against_chilled_enemies"]=7560, + ["lightning_and_chaos_damage_resistance_%"]=7562, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7563, ["lightning_arrow_damage_+%"]=3357, ["lightning_arrow_radius_+%"]=3510, - ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7558, - ["lightning_conduit_area_of_effect_+%"]=7559, - ["lightning_conduit_cast_speed_+%"]=7560, - ["lightning_conduit_damage_+%"]=7561, + ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7564, + ["lightning_conduit_area_of_effect_+%"]=7565, + ["lightning_conduit_cast_speed_+%"]=7566, + ["lightning_conduit_damage_+%"]=7567, ["lightning_critical_strike_chance_+%"]=1402, ["lightning_critical_strike_multiplier_+"]=1424, ["lightning_damage_%_taken_from_mana_before_life"]=3846, ["lightning_damage_+%"]=899, - ["lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds"]=7562, + ["lightning_damage_+%_if_lightning_infusion_collected_last_8_seconds"]=7568, ["lightning_damage_+%_per_10_intelligence"]=3809, ["lightning_damage_+%_per_frenzy_charge"]=2705, - ["lightning_damage_+%_per_lightning_resistance_above_75"]=7566, - ["lightning_damage_+%_per_rage"]=7563, - ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7567, - ["lightning_damage_+%_while_affected_by_wrath"]=7568, - ["lightning_damage_+%_while_ignited"]=7564, + ["lightning_damage_+%_per_lightning_resistance_above_75"]=7572, + ["lightning_damage_+%_per_rage"]=7569, + ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7573, + ["lightning_damage_+%_while_affected_by_wrath"]=7574, + ["lightning_damage_+%_while_ignited"]=7570, ["lightning_damage_can_chill"]=2659, ["lightning_damage_can_freeze"]=2666, - ["lightning_damage_can_ignite"]=7565, + ["lightning_damage_can_ignite"]=7571, ["lightning_damage_cannot_shock"]=2672, - ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7569, + ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7575, ["lightning_damage_resistance_+%"]=1516, ["lightning_damage_resistance_is_%"]=1514, ["lightning_damage_taken_%_as_cold"]=2252, ["lightning_damage_taken_%_as_fire"]=2250, - ["lightning_damage_taken_+"]=7571, + ["lightning_damage_taken_+"]=7577, ["lightning_damage_taken_+%"]=3112, - ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7570, + ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7576, ["lightning_damage_to_return_to_melee_attacker"]=1961, ["lightning_damage_to_return_when_hit"]=1966, - ["lightning_damage_with_attack_skills_+%"]=7572, - ["lightning_damage_with_spell_skills_+%"]=7573, + ["lightning_damage_with_attack_skills_+%"]=7578, + ["lightning_damage_with_spell_skills_+%"]=7579, ["lightning_dot_multiplier_+"]=1227, - ["lightning_explosion_mine_aura_effect_+%"]=7574, - ["lightning_explosion_mine_damage_+%"]=7575, - ["lightning_explosion_mine_throwing_speed_+%"]=7576, - ["lightning_exposure_effect_+%"]=7577, - ["lightning_exposure_on_hit_magnitude"]=7578, + ["lightning_explosion_mine_aura_effect_+%"]=7580, + ["lightning_explosion_mine_damage_+%"]=7581, + ["lightning_explosion_mine_throwing_speed_+%"]=7582, + ["lightning_exposure_effect_+%"]=7583, + ["lightning_exposure_on_hit_magnitude"]=7584, ["lightning_golem_damage_+%"]=3398, ["lightning_golem_elemental_resistances_%"]=3673, ["lightning_hit_and_dot_damage_%_taken_as_cold"]=2253, ["lightning_hit_and_dot_damage_%_taken_as_fire"]=2251, - ["lightning_hit_damage_+%_vs_chilled_enemies"]=7579, + ["lightning_hit_damage_+%_vs_chilled_enemies"]=7585, ["lightning_penetration_%_while_on_low_mana"]=746, - ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7580, - ["lightning_resist_unaffected_by_area_penalties"]=7581, - ["lightning_resistance_does_not_apply_to_lighting_damage"]=7582, - ["lightning_skill_additional_chain_chance_%"]=7583, - ["lightning_skill_additional_chains"]=7584, - ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7585, + ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7586, + ["lightning_resist_unaffected_by_area_penalties"]=7587, + ["lightning_resistance_does_not_apply_to_lighting_damage"]=7588, + ["lightning_skill_additional_chain_chance_%"]=7589, + ["lightning_skill_additional_chains"]=7590, + ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7591, ["lightning_skill_gem_level_+"]=986, - ["lightning_skill_stun_threshold_+%"]=7586, - ["lightning_skills_chance_to_poison_on_hit_%"]=7587, + ["lightning_skill_stun_threshold_+%"]=7592, + ["lightning_skills_chance_to_poison_on_hit_%"]=7593, ["lightning_spell_skill_gem_level_+"]=987, ["lightning_strike_additional_pierce"]=3645, - ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7588, + ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7594, ["lightning_strike_damage_+%"]=3341, ["lightning_strike_num_of_additional_projectiles"]=3636, ["lightning_tendrils_critical_strike_chance_+%"]=3791, ["lightning_tendrils_damage_+%"]=3342, ["lightning_tendrils_radius_+%"]=3503, - ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7589, - ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7590, - ["lightning_tower_trap_additional_number_of_beams"]=7591, - ["lightning_tower_trap_cast_speed_+%"]=7592, - ["lightning_tower_trap_cooldown_speed_+%"]=7593, - ["lightning_tower_trap_damage_+%"]=7594, - ["lightning_tower_trap_duration_+%"]=7595, - ["lightning_tower_trap_throwing_speed_+%"]=7596, + ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7595, + ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7596, + ["lightning_tower_trap_additional_number_of_beams"]=7597, + ["lightning_tower_trap_cast_speed_+%"]=7598, + ["lightning_tower_trap_cooldown_speed_+%"]=7599, + ["lightning_tower_trap_damage_+%"]=7600, + ["lightning_tower_trap_duration_+%"]=7601, + ["lightning_tower_trap_throwing_speed_+%"]=7602, ["lightning_trap_additional_pierce"]=3646, ["lightning_trap_cooldown_speed_+%"]=3142, ["lightning_trap_damage_+%"]=3140, - ["lightning_trap_lightning_resistance_penetration_%"]=7597, + ["lightning_trap_lightning_resistance_penetration_%"]=7603, ["lightning_trap_number_of_additional_projectiles"]=3141, - ["lightning_trap_shock_effect_+%"]=7598, + ["lightning_trap_shock_effect_+%"]=7604, ["lightning_warp_cast_speed_+%"]=3567, ["lightning_warp_damage_+%"]=3358, ["lightning_warp_duration_+%"]=3624, ["lightning_weakness_ignores_hexproof"]=2409, - ["lineage_support_gem_limit_+"]=7599, - ["link_buff_effect_+%_on_animate_guardian"]=7600, - ["link_effect_+%_when_50%_expired"]=7601, - ["link_grace_period_8_second_override"]=7602, - ["link_skill_buff_effect_+%"]=7603, - ["link_skill_buff_effect_+%_if_linked_target_recently"]=7604, - ["link_skill_cast_speed_+%"]=7605, - ["link_skill_duration_+%"]=7606, - ["link_skill_gem_level_+"]=7607, - ["link_skill_link_target_cannot_die_for_X_seconds"]=7608, - ["link_skill_lose_no_experience_on_link_target_death"]=7609, - ["link_skill_mana_cost_+%"]=7610, - ["link_skills_can_target_animate_guardian"]=7611, - ["link_skills_can_target_minions"]=7612, - ["link_skills_grant_damage_+%"]=7613, - ["link_skills_grant_damage_taken_+%"]=7614, - ["link_skills_grant_redirect_curses_to_link_source"]=7615, - ["link_to_X_additional_random_allies"]=7616, - ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7617, + ["lineage_support_gem_limit_+"]=7605, + ["link_buff_effect_+%_on_animate_guardian"]=7606, + ["link_effect_+%_when_50%_expired"]=7607, + ["link_grace_period_8_second_override"]=7608, + ["link_skill_buff_effect_+%"]=7609, + ["link_skill_buff_effect_+%_if_linked_target_recently"]=7610, + ["link_skill_cast_speed_+%"]=7611, + ["link_skill_duration_+%"]=7612, + ["link_skill_gem_level_+"]=7613, + ["link_skill_link_target_cannot_die_for_X_seconds"]=7614, + ["link_skill_lose_no_experience_on_link_target_death"]=7615, + ["link_skill_mana_cost_+%"]=7616, + ["link_skills_can_target_animate_guardian"]=7617, + ["link_skills_can_target_minions"]=7618, + ["link_skills_grant_damage_+%"]=7619, + ["link_skills_grant_damage_taken_+%"]=7620, + ["link_skills_grant_redirect_curses_to_link_source"]=7621, + ["link_to_X_additional_random_allies"]=7622, + ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7623, ["local_%_chance_to_gain_flask_charge_on_kill"]=1095, - ["local_%_chance_to_gain_flask_charge_when_hit"]=7618, + ["local_%_chance_to_gain_flask_charge_when_hit"]=7624, ["local_%_chance_to_trigger_molten_shower_on_hit_with_this_weapon_per_25_strength"]=505, - ["local_+%_weapon_range"]=7619, - ["local_X_additional_chains"]=7620, + ["local_+%_weapon_range"]=7625, + ["local_X_additional_chains"]=7626, ["local_accuracy_rating"]=859, ["local_accuracy_rating_+%"]=1792, - ["local_accuracy_rating_+%_per_2%_quality"]=7621, - ["local_additional_attack_chain_chance_%"]=7622, + ["local_accuracy_rating_+%_per_2%_quality"]=7627, + ["local_additional_attack_chain_chance_%"]=7628, ["local_additional_block_chance_%"]=862, ["local_additional_charm_slots"]=1013, - ["local_additional_vivisection_random_keystone_index"]=10698, - ["local_aggravate_bleeding_on_hit_chance_%"]=7623, + ["local_additional_vivisection_random_keystone_index"]=10715, + ["local_aggravate_bleeding_on_hit_chance_%"]=7629, ["local_aggravating_bleeds_also_causes_you_to_aggravate_ignites"]=4272, - ["local_all_attributes_+%_per_rune_or_soul_core"]=7626, - ["local_all_attributes_+_per_rune_or_soul_core"]=7624, - ["local_all_attributes_-_per_level"]=7625, - ["local_all_damage_can_chill"]=7627, - ["local_all_damage_can_electrocute"]=7628, - ["local_all_damage_can_freeze"]=7629, - ["local_all_damage_can_pin"]=7630, + ["local_all_attributes_+%_per_rune_or_soul_core"]=7632, + ["local_all_attributes_+_per_rune_or_soul_core"]=7630, + ["local_all_attributes_-_per_level"]=7631, + ["local_all_damage_can_chill"]=7633, + ["local_all_damage_can_electrocute"]=7634, + ["local_all_damage_can_freeze"]=7635, + ["local_all_damage_can_pin"]=7636, ["local_all_damage_can_poison"]=2275, - ["local_always_crit_heavy_stunned_enemies"]=7631, - ["local_always_freeze_on_full_life"]=7632, + ["local_always_crit_heavy_stunned_enemies"]=7637, + ["local_always_freeze_on_full_life"]=7638, ["local_always_heavy_stun_on_full_life"]=1160, ["local_always_hit"]=1803, - ["local_always_maim_on_crit"]=7633, - ["local_apply_X_armour_break_on_crit"]=7634, - ["local_apply_X_armour_break_on_hit"]=7635, - ["local_apply_X_armour_break_on_stun"]=7636, - ["local_apply_elemental_exposure_on_full_armour_break"]=7637, - ["local_apply_extra_herald_mod_when_synthesised"]=10656, - ["local_area_of_effect_+%_per_4%_quality"]=7638, + ["local_always_maim_on_crit"]=7639, + ["local_apply_X_armour_break_on_crit"]=7640, + ["local_apply_X_armour_break_on_hit"]=7641, + ["local_apply_X_armour_break_on_stun"]=7642, + ["local_apply_elemental_exposure_on_full_armour_break"]=7643, + ["local_apply_extra_herald_mod_when_synthesised"]=10672, + ["local_area_of_effect_+%_per_4%_quality"]=7644, ["local_armour_and_energy_shield_+%"]=875, ["local_armour_and_evasion_+%"]=874, ["local_armour_and_evasion_and_energy_shield_+%"]=878, - ["local_armour_break_damage_%_dealt_as_armour_break"]=7639, - ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7640, + ["local_armour_break_damage_%_dealt_as_armour_break"]=7645, + ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7646, ["local_attack_cast_movement_speed_+%_during_flask_effect"]=827, ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=828, - ["local_attack_damage_+%_if_item_corrupted"]=7641, + ["local_attack_damage_+%_if_item_corrupted"]=7647, ["local_attack_maximum_added_physical_damage_per_3_levels"]=1234, ["local_attack_minimum_added_physical_damage_per_3_levels"]=1234, ["local_attack_speed_+%"]=970, - ["local_attack_speed_+%_per_8%_quality"]=7642, - ["local_attacks_cannot_be_blocked"]=7643, - ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7644, - ["local_attacks_have_added_max_cold_damage_equal_to_%_of_maximum_mana"]=7645, - ["local_attacks_have_added_min_cold_damage_equal_to_%_of_maximum_mana"]=7645, - ["local_attacks_impale_on_hit_%_chance"]=7646, - ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7647, - ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7648, + ["local_attack_speed_+%_per_8%_quality"]=7648, + ["local_attacks_cannot_be_blocked"]=7649, + ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7650, + ["local_attacks_have_added_max_cold_damage_equal_to_%_of_maximum_mana"]=7651, + ["local_attacks_have_added_min_cold_damage_equal_to_%_of_maximum_mana"]=7651, + ["local_attacks_impale_on_hit_%_chance"]=7652, + ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7653, + ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7654, ["local_attacks_with_this_weapon_elemental_damage_+%"]=2702, ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2703, ["local_attribute_requirements_+%"]=972, @@ -241436,18 +241718,18 @@ return { ["local_avoid_freeze_%_during_flask_effect"]=756, ["local_avoid_ignite_%_during_flask_effect"]=757, ["local_avoid_shock_%_during_flask_effect"]=758, - ["local_base_chaos_damage_resistance_%_per_rune_or_soul_core"]=7649, + ["local_base_chaos_damage_resistance_%_per_rune_or_soul_core"]=7655, ["local_base_evasion_rating"]=865, - ["local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core"]=7650, - ["local_base_maximum_life_+_per_rune_or_soul_core"]=7651, - ["local_base_maximum_mana_+_per_rune_or_soul_core"]=7652, + ["local_base_life_regeneration_rate_per_minute_+_per_rune_or_soul_core"]=7656, + ["local_base_maximum_life_+_per_rune_or_soul_core"]=7657, + ["local_base_maximum_mana_+_per_rune_or_soul_core"]=7658, ["local_base_physical_damage_reduction_rating"]=864, - ["local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core"]=7653, + ["local_base_self_critical_strike_multiplier_-%_per_rune_or_soul_core"]=7659, ["local_base_stun_duration_+%"]=1078, - ["local_bleed_on_critical_strike_chance_%"]=7654, + ["local_bleed_on_critical_strike_chance_%"]=7660, ["local_bleed_on_hit"]=2285, ["local_bleeding_effect_+%"]=840, - ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7655, + ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7661, ["local_block_chance_+%"]=863, ["local_can_have_additional_crafted_mods"]=54, ["local_can_only_deal_damage_with_this_weapon"]=2508, @@ -241461,53 +241743,53 @@ return { ["local_can_socket_x_emerald_jewels_exclude_disallowed_types"]=100, ["local_can_socket_x_ruby_jewels_exclude_disallowed_types"]=100, ["local_can_socket_x_sapphire_jewels_exclude_disallowed_types"]=100, - ["local_cannot_be_thrown"]=7656, + ["local_cannot_be_thrown"]=7662, ["local_cannot_be_used_with_chaos_innoculation"]=841, ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4609, - ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10772, - ["local_chance_to_bleed_on_crit_50%"]=7657, + ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10789, + ["local_chance_to_bleed_on_crit_50%"]=7663, ["local_chance_to_bleed_on_hit_%"]=2288, ["local_chance_to_bleed_on_hit_25%"]=2286, ["local_chance_to_bleed_on_hit_50%"]=2287, ["local_chance_to_blind_on_hit_%"]=2037, - ["local_chance_to_gain_onslaught_on_killing_blow_%"]=7658, - ["local_chance_to_intimidate_on_hit_%"]=7659, + ["local_chance_to_gain_onslaught_on_killing_blow_%"]=7664, + ["local_chance_to_intimidate_on_hit_%"]=7665, ["local_chance_to_poison_on_hit_%_during_flask_effect"]=759, ["local_chaos_damage_taken_per_minute_during_flask_effect"]=822, - ["local_chaos_penetration_%"]=7660, + ["local_chaos_penetration_%"]=7666, ["local_charges_added_+%"]=1096, ["local_charges_used_+%"]=1097, ["local_charm_duration_+%"]=952, - ["local_charm_effect_+%"]=7661, - ["local_charm_slots"]=4796, + ["local_charm_effect_+%"]=7667, + ["local_charm_slots"]=4797, ["local_charm_trigger_when_cursed"]=709, - ["local_chill_on_hit_ms_if_in_off_hand"]=7662, + ["local_chill_on_hit_ms_if_in_off_hand"]=7668, ["local_cold_penetration_%"]=3462, - ["local_cold_resistance_%_per_2%_quality"]=7663, - ["local_concoction_can_consume_sulphur_flasks"]=7664, + ["local_cold_resistance_%_per_2%_quality"]=7669, + ["local_concoction_can_consume_sulphur_flasks"]=7670, ["local_connectivity_of_sockets_+%"]=1685, ["local_consecrate_ground_on_flask_use_radius"]=670, ["local_critical_strike_chance"]=968, ["local_critical_strike_chance_+%"]=1384, - ["local_critical_strike_chance_+%_if_item_corrupted"]=7665, - ["local_critical_strike_chance_+%_per_4%_quality"]=7666, + ["local_critical_strike_chance_+%_if_item_corrupted"]=7671, + ["local_critical_strike_chance_+%_per_4%_quality"]=7672, ["local_critical_strike_multiplier_+"]=969, - ["local_crits_have_culling_strike"]=7667, - ["local_crossbow_no_ammo_skills_and_give_alternate_grenade_default_attack"]=7668, - ["local_crush_on_hit"]=7669, - ["local_cull_frozen_enemies_on_hit"]=7670, - ["local_culling_strike"]=7671, - ["local_culling_strike_if_crit_recently"]=7672, - ["local_culling_strike_vs_bleeding_enemies"]=7673, - ["local_damage_+%_if_item_corrupted"]=7674, - ["local_damage_roll_always_min_or_max"]=7675, - ["local_damage_taken_+%_if_item_corrupted"]=7676, - ["local_destroy_corpses_with_critical_strikes"]=7677, - ["local_dexterity_per_2%_quality"]=7678, + ["local_crits_have_culling_strike"]=7673, + ["local_crossbow_no_ammo_skills_and_give_alternate_grenade_default_attack"]=7674, + ["local_crush_on_hit"]=7675, + ["local_cull_frozen_enemies_on_hit"]=7676, + ["local_culling_strike"]=7677, + ["local_culling_strike_if_crit_recently"]=7678, + ["local_culling_strike_vs_bleeding_enemies"]=7679, + ["local_damage_+%_if_item_corrupted"]=7680, + ["local_damage_roll_always_min_or_max"]=7681, + ["local_damage_taken_+%_if_item_corrupted"]=7682, + ["local_destroy_corpses_with_critical_strikes"]=7683, + ["local_dexterity_per_2%_quality"]=7684, ["local_dexterity_requirement_+"]=842, ["local_dexterity_requirement_+%"]=843, ["local_disable_gem_experience_gain"]=1682, - ["local_disable_rare_mod_on_hit_%_chance"]=7679, + ["local_disable_rare_mod_on_hit_%_chance"]=7685, ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=577, ["local_display_aura_allies_have_culling_strike"]=2337, ["local_display_aura_allies_have_increased_item_rarity_+%"]=1489, @@ -241530,13 +241812,13 @@ return { ["local_display_cast_primal_aegis_on_gain_skill"]=585, ["local_display_cast_summon_arbalists_on_gain_skill"]=586, ["local_display_cast_triggerbots_on_gain_skill"]=587, - ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7680, - ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7681, - ["local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds"]=7682, - ["local_display_fire_and_cold_resist_debuff"]=7683, + ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7686, + ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7687, + ["local_display_every_10_seconds_non_skill_physical_damage_%_to_gain_as_fire_for_3_seconds"]=7688, + ["local_display_fire_and_cold_resist_debuff"]=7689, ["local_display_fire_burst_on_hit_%"]=588, ["local_display_gain_fragile_growth_each_second"]=4082, - ["local_display_gain_power_charge_on_spending_mana"]=7684, + ["local_display_gain_power_charge_on_spending_mana"]=7690, ["local_display_grant_level_x_petrification_statue"]=524, ["local_display_grant_level_x_snipe_skill"]=77, ["local_display_grants_level_X_envy"]=512, @@ -241578,7 +241860,7 @@ return { ["local_display_grants_skill_flammability_level"]=492, ["local_display_grants_skill_frostbite_level"]=495, ["local_display_grants_skill_frostblink_level"]=482, - ["local_display_grants_skill_frostbolt_level"]=7685, + ["local_display_grants_skill_frostbolt_level"]=7691, ["local_display_grants_skill_gluttony_of_elements_level"]=503, ["local_display_grants_skill_grace_level"]=509, ["local_display_grants_skill_haste_level"]=497, @@ -241619,43 +241901,43 @@ return { ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3122, ["local_display_illusory_warp_level"]=484, ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1490, - ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7961, + ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7967, ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3071, ["local_display_manifest_dancing_dervish_disables_weapons"]=3070, ["local_display_minions_grant_onslaught"]=3072, - ["local_display_mod_aura_mana_regeration_rate_+%"]=7686, + ["local_display_mod_aura_mana_regeration_rate_+%"]=7692, ["local_display_molten_burst_on_melee_hit_%"]=590, - ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7687, - ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7688, - ["local_display_nearby_allies_critical_strike_multiplier_+"]=7689, - ["local_display_nearby_allies_extra_damage_rolls"]=7690, - ["local_display_nearby_allies_have_fortify"]=7691, + ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7693, + ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7694, + ["local_display_nearby_allies_critical_strike_multiplier_+"]=7695, + ["local_display_nearby_allies_extra_damage_rolls"]=7696, + ["local_display_nearby_allies_have_fortify"]=7697, ["local_display_nearby_enemies_all_resistances_%"]=2759, ["local_display_nearby_enemies_are_blinded"]=3118, - ["local_display_nearby_enemies_are_chilled"]=7692, - ["local_display_nearby_enemies_are_covered_in_ash"]=7693, + ["local_display_nearby_enemies_are_chilled"]=7698, + ["local_display_nearby_enemies_are_covered_in_ash"]=7699, ["local_display_nearby_enemies_are_crushed"]=3119, - ["local_display_nearby_enemies_are_intimidated"]=7694, - ["local_display_nearby_enemies_cannot_crit"]=7695, + ["local_display_nearby_enemies_are_intimidated"]=7700, + ["local_display_nearby_enemies_cannot_crit"]=7701, ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3123, ["local_display_nearby_enemies_flask_charges_granted_+%"]=3124, - ["local_display_nearby_enemies_have_fire_exposure"]=7696, + ["local_display_nearby_enemies_have_fire_exposure"]=7702, ["local_display_nearby_enemies_have_malediction"]=3120, ["local_display_nearby_enemies_movement_speed_+%"]=3125, ["local_display_nearby_enemies_scorched"]=3121, ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3126, ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3881, ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2915, - ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7697, - ["local_display_nearby_enemy_cold_damage_resistance_%"]=7698, - ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7699, - ["local_display_nearby_enemy_fire_damage_resistance_%"]=7700, - ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7701, - ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7702, - ["local_display_nearby_enemy_physical_damage_taken_+%"]=7703, + ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7703, + ["local_display_nearby_enemy_cold_damage_resistance_%"]=7704, + ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7705, + ["local_display_nearby_enemy_fire_damage_resistance_%"]=7706, + ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7707, + ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7708, + ["local_display_nearby_enemy_physical_damage_taken_+%"]=7709, ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4105, ["local_display_raise_spider_on_kill_%_chance"]=591, - ["local_display_self_crushed"]=7704, + ["local_display_self_crushed"]=7710, ["local_display_socketed_attack_damage_+%_final"]=428, ["local_display_socketed_attacks_additional_critical_strike_chance"]=429, ["local_display_socketed_attacks_critical_strike_multiplier_+"]=430, @@ -241967,40 +242249,40 @@ return { ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=636, ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=622, ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=624, - ["local_display_trigger_summon_infernal_familiar_when_allocated"]=7705, + ["local_display_trigger_summon_infernal_familiar_when_allocated"]=7711, ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=623, ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=625, ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=626, ["local_display_trigger_void_sphere_on_kill_%_chance"]=627, - ["local_display_triggers_corpse_cloud_on_12_units_travelled"]=7706, - ["local_display_triggers_level_x_detonation_on_off_hand_hit"]=7707, - ["local_display_triggers_level_x_ember_fusillade_on_spell_cast"]=7708, - ["local_display_triggers_level_x_gas_cloud_on_main_hand_hit"]=7709, - ["local_display_triggers_level_x_lightning_bolt_on_critical_strike"]=7710, - ["local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin"]=7711, + ["local_display_triggers_corpse_cloud_on_12_units_travelled"]=7712, + ["local_display_triggers_level_x_detonation_on_off_hand_hit"]=7713, + ["local_display_triggers_level_x_ember_fusillade_on_spell_cast"]=7714, + ["local_display_triggers_level_x_gas_cloud_on_main_hand_hit"]=7715, + ["local_display_triggers_level_x_lightning_bolt_on_critical_strike"]=7716, + ["local_display_triggers_level_x_spark_on_killing_shocked_enemy_with_enemy_location_as_origin"]=7717, ["local_display_use_level_X_abyssal_cry_on_hit"]=628, ["local_double_damage_to_chilled_enemies"]=3459, - ["local_double_damage_with_attacks"]=7712, - ["local_double_damage_with_attacks_chance_%"]=7713, - ["local_double_hit_damage_stun_build_up"]=7714, - ["local_edict_declaration_gain_per_mod_disabled"]=7715, - ["local_elemental_damage_+%_per_2%_quality"]=7716, + ["local_double_damage_with_attacks"]=7718, + ["local_double_damage_with_attacks_chance_%"]=7719, + ["local_double_hit_damage_stun_build_up"]=7720, + ["local_edict_declaration_gain_per_mod_disabled"]=7721, + ["local_elemental_damage_+%_per_2%_quality"]=7722, ["local_elemental_penetration_%"]=3460, ["local_energy_shield"]=867, ["local_energy_shield_+%"]=873, - ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7717, + ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7723, ["local_evasion_and_energy_shield_+%"]=876, ["local_evasion_rating_+%"]=872, - ["local_evasion_rating_and_energy_shield"]=7718, + ["local_evasion_rating_and_energy_shield"]=7724, ["local_explicit_elemental_damage_mod_effect_+%"]=71, ["local_explicit_minion_mod_effect_+%"]=72, ["local_explicit_mod_effect_+%"]=75, ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=73, - ["local_explode_on_kill_with_crit_%_physical_damage_to_deal"]=7719, + ["local_explode_on_kill_with_crit_%_physical_damage_to_deal"]=7725, ["local_extra_max_charges"]=1098, ["local_extra_socket"]=1680, ["local_fire_penetration_%"]=3461, - ["local_fire_resistance_%_per_2%_quality"]=7720, + ["local_fire_resistance_%_per_2%_quality"]=7726, ["local_flask_accuracy_rating_+%_during_effect"]=739, ["local_flask_adaptations_apply_to_all_elements_during_effect"]=738, ["local_flask_additional_physical_damage_reduction_%"]=760, @@ -242148,16 +242430,16 @@ return { ["local_flask_use_on_travel_skill_used"]=732, ["local_flask_use_on_using_a_life_flask"]=733, ["local_flask_vaal_souls_gained_per_minute_during_effect"]=788, - ["local_flask_ward_regeneration_per_minute_%_during_flask_effect"]=7721, + ["local_flask_ward_regeneration_per_minute_%_during_flask_effect"]=7727, ["local_flask_zealots_oath"]=835, - ["local_force_corruption_outcome_two_enchants"]=7722, - ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7723, - ["local_gain_X_rage_on_hit"]=7724, - ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7725, - ["local_gain_shrine_buff_every_10_seconds"]=7726, + ["local_force_corruption_outcome_two_enchants"]=7728, + ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7729, + ["local_gain_X_rage_on_hit"]=7730, + ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7731, + ["local_gain_shrine_buff_every_10_seconds"]=7732, ["local_gem_experience_gain_+%"]=1683, ["local_gem_level_+"]=142, - ["local_global_armour_evasion_energy_shield_+%_per_rune_or_soul_core"]=7727, + ["local_global_armour_evasion_energy_shield_+%_per_rune_or_soul_core"]=7733, ["local_grant_eldritch_battery_during_flask_effect"]=836, ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4097, ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2767, @@ -242172,120 +242454,120 @@ return { ["local_has_X_abyss_sockets"]=80, ["local_has_X_sockets"]=81, ["local_has_no_sockets"]=79, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes"]=7728, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity"]=7729, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence"]=7730, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_strength"]=7731, - ["local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute"]=7732, - ["local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%"]=7733, - ["local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%"]=7734, - ["local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%"]=7735, - ["local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%"]=7736, - ["local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%"]=7737, - ["local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%"]=7738, - ["local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%"]=7739, - ["local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%"]=7740, - ["local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%"]=7741, - ["local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%"]=7742, - ["local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%"]=7743, - ["local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%"]=7744, - ["local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%"]=7745, - ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_1"]=7746, - ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_2"]=7747, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_all_attributes"]=7734, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_dexterity"]=7735, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_intelligence"]=7736, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_strength"]=7737, + ["local_historic_abyss_jewel_conquered_attribute_passives_grant_tribute"]=7738, + ["local_historic_abyss_jewel_conquered_small_passives_grant_ailment_threshold_+%"]=7739, + ["local_historic_abyss_jewel_conquered_small_passives_grant_armour_rating_+%"]=7740, + ["local_historic_abyss_jewel_conquered_small_passives_grant_attack_damage_+%"]=7741, + ["local_historic_abyss_jewel_conquered_small_passives_grant_chaos_damage_+%"]=7742, + ["local_historic_abyss_jewel_conquered_small_passives_grant_elemental_damage_+%"]=7743, + ["local_historic_abyss_jewel_conquered_small_passives_grant_energy_shield_+%"]=7744, + ["local_historic_abyss_jewel_conquered_small_passives_grant_evasion_rating_+%"]=7745, + ["local_historic_abyss_jewel_conquered_small_passives_grant_life_regen_rate_+%"]=7746, + ["local_historic_abyss_jewel_conquered_small_passives_grant_mana_regen_rate_+%"]=7747, + ["local_historic_abyss_jewel_conquered_small_passives_grant_minions_deal_increased_damage_+%"]=7748, + ["local_historic_abyss_jewel_conquered_small_passives_grant_physical_damage_+%"]=7749, + ["local_historic_abyss_jewel_conquered_small_passives_grant_spell_damage_+%"]=7750, + ["local_historic_abyss_jewel_conquered_small_passives_grant_stun_threshold_+%"]=7751, + ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_1"]=7752, + ["local_historic_jewel_override_1_conquored_notable_to_passive_hash_2"]=7753, ["local_hit_causes_monster_flee_%"]=1801, ["local_hit_damage_+%_vs_frozen_enemies"]=4055, ["local_hit_damage_+%_vs_ignited_enemies"]=4054, ["local_hit_damage_+%_vs_shocked_enemies"]=4056, ["local_hit_damage_stun_multiplier_+%"]=1076, ["local_hits_always_inflict_elemental_ailments"]=4053, - ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7748, - ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7749, - ["local_hits_with_this_weapon_ignore_poison_limit"]=7750, - ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7751, - ["local_idols_gain_additional_socketable_mods"]=7752, - ["local_ignite_effect_+%_final_with_this_weapon"]=7753, - ["local_immune_to_curses_if_item_corrupted"]=7754, + ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7754, + ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7755, + ["local_hits_with_this_weapon_ignore_poison_limit"]=7756, + ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7757, + ["local_idols_gain_additional_socketable_mods"]=7758, + ["local_ignite_effect_+%_final_with_this_weapon"]=7759, + ["local_immune_to_curses_if_item_corrupted"]=7760, ["local_implicit_mod_cannot_be_changed"]=49, ["local_implicit_stat_magnitude_+%"]=76, - ["local_inflict_exposure_on_hit_%_chance"]=7755, - ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7756, - ["local_inflict_x_stacks_of_gruelling_madness_on_hit"]=7757, - ["local_intelligence_per_2%_quality"]=7758, + ["local_inflict_exposure_on_hit_%_chance"]=7761, + ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7762, + ["local_inflict_x_stacks_of_gruelling_madness_on_hit"]=7763, + ["local_intelligence_per_2%_quality"]=7764, ["local_intelligence_requirement_+"]=844, ["local_intelligence_requirement_+%"]=845, - ["local_is_alternate_tree_jewel"]=10657, + ["local_is_alternate_tree_jewel"]=10673, ["local_is_max_quality"]=640, - ["local_is_survival_jewel"]=10658, + ["local_is_survival_jewel"]=10674, ["local_item_additional_skill_slots"]=82, ["local_item_allow_modification_while_corrupted"]=38, - ["local_item_benefit_socketable_as_if_body_armour"]=7759, - ["local_item_benefit_socketable_as_if_boots"]=7760, - ["local_item_benefit_socketable_as_if_gloves"]=7761, - ["local_item_benefit_socketable_as_if_helmet"]=7762, - ["local_item_benefit_socketable_as_if_shield"]=7763, - ["local_item_can_be_instilled"]=10782, + ["local_item_benefit_socketable_as_if_body_armour"]=7765, + ["local_item_benefit_socketable_as_if_boots"]=7766, + ["local_item_benefit_socketable_as_if_gloves"]=7767, + ["local_item_benefit_socketable_as_if_helmet"]=7768, + ["local_item_benefit_socketable_as_if_shield"]=7769, + ["local_item_can_be_instilled"]=10799, ["local_item_can_have_x_additional_enchantments"]=40, - ["local_item_can_roll_all_influences"]=7764, + ["local_item_can_roll_all_influences"]=7770, ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2365, - ["local_item_found_rarity_+%_per_rune_or_soul_core"]=7765, + ["local_item_found_rarity_+%_per_rune_or_soul_core"]=7771, ["local_item_implicit_modifier_limit"]=41, - ["local_item_quality_+"]=7766, - ["local_item_sell_price_doubled"]=7767, - ["local_item_stats_are_doubled_in_breach"]=7768, + ["local_item_quality_+"]=7772, + ["local_item_sell_price_doubled"]=7773, + ["local_item_stats_are_doubled_in_breach"]=7774, ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=36, - ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7769, - ["local_jewel_can_allocate_passives_from_dex_start"]=7770, - ["local_jewel_can_allocate_passives_from_dexint_start"]=7771, - ["local_jewel_can_allocate_passives_from_int_start"]=7772, - ["local_jewel_can_allocate_passives_from_str_start"]=7773, - ["local_jewel_can_allocate_passives_from_strdex_start"]=7774, - ["local_jewel_can_allocate_passives_from_strint_start"]=7775, - ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7776, - ["local_jewel_disable_combust_with_40_strength_in_radius"]=7777, - ["local_jewel_display_radius_change"]=7778, - ["local_jewel_expansion_jewels_count"]=7779, - ["local_jewel_expansion_jewels_count_override"]=7780, - ["local_jewel_expansion_keystone_disciple_of_kitava"]=7781, - ["local_jewel_expansion_keystone_hollow_palm_technique"]=7782, - ["local_jewel_expansion_keystone_kineticism"]=7783, - ["local_jewel_expansion_keystone_lone_messenger"]=7784, - ["local_jewel_expansion_keystone_natures_patience"]=7785, - ["local_jewel_expansion_keystone_pitfighter"]=7786, - ["local_jewel_expansion_keystone_secrets_of_suffering"]=7787, - ["local_jewel_expansion_keystone_veterans_awareness"]=7788, + ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7775, + ["local_jewel_can_allocate_passives_from_dex_start"]=7776, + ["local_jewel_can_allocate_passives_from_dexint_start"]=7777, + ["local_jewel_can_allocate_passives_from_int_start"]=7778, + ["local_jewel_can_allocate_passives_from_str_start"]=7779, + ["local_jewel_can_allocate_passives_from_strdex_start"]=7780, + ["local_jewel_can_allocate_passives_from_strint_start"]=7781, + ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7782, + ["local_jewel_disable_combust_with_40_strength_in_radius"]=7783, + ["local_jewel_display_radius_change"]=7784, + ["local_jewel_expansion_jewels_count"]=7785, + ["local_jewel_expansion_jewels_count_override"]=7786, + ["local_jewel_expansion_keystone_disciple_of_kitava"]=7787, + ["local_jewel_expansion_keystone_hollow_palm_technique"]=7788, + ["local_jewel_expansion_keystone_kineticism"]=7789, + ["local_jewel_expansion_keystone_lone_messenger"]=7790, + ["local_jewel_expansion_keystone_natures_patience"]=7791, + ["local_jewel_expansion_keystone_pitfighter"]=7792, + ["local_jewel_expansion_keystone_secrets_of_suffering"]=7793, + ["local_jewel_expansion_keystone_veterans_awareness"]=7794, ["local_jewel_expansion_passive_node_count"]=4133, - ["local_jewel_expansion_passive_node_index"]=7789, - ["local_jewel_fireball_cannot_ignite"]=7790, - ["local_jewel_fireball_chance_to_scorch_%"]=7791, - ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7793, - ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7792, - ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7795, - ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7794, - ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7796, + ["local_jewel_expansion_passive_node_index"]=7795, + ["local_jewel_fireball_cannot_ignite"]=7796, + ["local_jewel_fireball_chance_to_scorch_%"]=7797, + ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7799, + ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7798, + ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7801, + ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7800, + ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7802, ["local_jewel_nearby_passives_dex_to_int"]=2808, ["local_jewel_nearby_passives_dex_to_str"]=2807, ["local_jewel_nearby_passives_int_to_dex"]=2810, ["local_jewel_nearby_passives_int_to_str"]=2809, ["local_jewel_nearby_passives_str_to_dex"]=2805, ["local_jewel_nearby_passives_str_to_int"]=2806, - ["local_jewel_notable_passive_in_radius_effect_+%"]=7797, - ["local_jewel_notables_in_radius_grant_base_projectile_speed_+%"]=7798, - ["local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%"]=7799, - ["local_jewel_notables_in_radius_grant_curse_effect_+%"]=7800, - ["local_jewel_small_and_notable_passive_in_radius_effect_+%"]=7801, - ["local_jewel_small_passive_in_radius_effect_+%"]=7802, - ["local_jewel_small_passives_in_radius_grant_evasion_rating_+%"]=7803, - ["local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%"]=7804, - ["local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7805, - ["local_jewel_transform_damage_increases_from_cold_fire_to_lightning"]=7806, - ["local_jewel_transform_damage_increases_from_cold_lightning_to_fire"]=7807, - ["local_jewel_transform_damage_increases_from_fire_lightning_to_cold"]=7808, + ["local_jewel_notable_passive_in_radius_effect_+%"]=7803, + ["local_jewel_notables_in_radius_grant_base_projectile_speed_+%"]=7804, + ["local_jewel_notables_in_radius_grant_base_skill_area_of_effect_+%"]=7805, + ["local_jewel_notables_in_radius_grant_curse_effect_+%"]=7806, + ["local_jewel_small_and_notable_passive_in_radius_effect_+%"]=7807, + ["local_jewel_small_passive_in_radius_effect_+%"]=7808, + ["local_jewel_small_passives_in_radius_grant_evasion_rating_+%"]=7809, + ["local_jewel_small_passives_in_radius_grant_maximum_energy_shield_+%"]=7810, + ["local_jewel_small_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7811, + ["local_jewel_transform_damage_increases_from_cold_fire_to_lightning"]=7812, + ["local_jewel_transform_damage_increases_from_cold_lightning_to_fire"]=7813, + ["local_jewel_transform_damage_increases_from_fire_lightning_to_cold"]=7814, ["local_jewel_variable_ring_radius_value"]=39, - ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7809, + ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7815, ["local_knockback"]=1439, ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2451, ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2452, - ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7810, + ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7816, ["local_left_ring_slot_curse_effect_on_self_+%"]=2453, ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2506, ["local_left_ring_slot_energy_shield"]=2468, @@ -242296,40 +242578,40 @@ return { ["local_left_ring_slot_maximum_mana"]=2467, ["local_left_ring_slot_minion_damage_taken_+%"]=2458, ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2450, - ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7811, - ["local_left_ring_slot_projectiles_from_spells_fork"]=7812, + ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7817, + ["local_left_ring_slot_projectiles_from_spells_fork"]=7818, ["local_left_ring_slot_skill_effect_duration_+%"]=2459, - ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7813, + ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7819, ["local_level_requirement_-"]=846, ["local_life_and_mana_gain_per_target"]=1529, ["local_life_gain_per_target"]=1065, - ["local_life_gain_per_target_vs_blinded_enemies"]=7814, - ["local_life_gain_per_target_while_leeching"]=7815, + ["local_life_gain_per_target_vs_blinded_enemies"]=7820, + ["local_life_gain_per_target_while_leeching"]=7821, ["local_life_leech_from_physical_damage_permyriad"]=1063, ["local_life_leech_is_instant"]=2342, - ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=10430, + ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=10444, ["local_lightning_penetration_%"]=3463, - ["local_lightning_resistance_%_per_2%_quality"]=7816, + ["local_lightning_resistance_%_per_2%_quality"]=7822, ["local_maim_on_hit"]=3810, - ["local_maim_on_hit_%"]=7817, + ["local_maim_on_hit_%"]=7823, ["local_mana_gain_per_target"]=1532, ["local_mana_leech_from_physical_damage_permyriad"]=1069, ["local_max_charges_+%"]=1099, ["local_maximum_added_chaos_damage"]=1315, ["local_maximum_added_cold_damage"]=857, - ["local_maximum_added_cold_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7818, + ["local_maximum_added_cold_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7824, ["local_maximum_added_fire_damage"]=856, ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4564, ["local_maximum_added_lightning_damage"]=858, - ["local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7819, + ["local_maximum_added_lightning_damage_equal_to_total_monster_power_of_enemies_hit_in_past_20_seconds_up_to_X"]=7825, ["local_maximum_added_physical_damage"]=855, ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4571, - ["local_maximum_energy_shield_+%_if_item_corrupted"]=7820, - ["local_maximum_life_+%_if_item_corrupted"]=7822, - ["local_maximum_life_+%_per_rune_or_soul_core"]=7823, - ["local_maximum_life_per_2%_quality"]=7821, - ["local_maximum_mana_+%_per_rune_or_soul_core"]=7825, - ["local_maximum_mana_per_2%_quality"]=7824, + ["local_maximum_energy_shield_+%_if_item_corrupted"]=7826, + ["local_maximum_life_+%_if_item_corrupted"]=7828, + ["local_maximum_life_+%_per_rune_or_soul_core"]=7829, + ["local_maximum_life_per_2%_quality"]=7827, + ["local_maximum_mana_+%_per_rune_or_soul_core"]=7831, + ["local_maximum_mana_per_2%_quality"]=7830, ["local_maximum_prefixes_allowed_+"]=42, ["local_maximum_quality_+"]=639, ["local_maximum_quality_is_%"]=638, @@ -242342,28 +242624,28 @@ return { ["local_minimum_added_lightning_damage"]=858, ["local_minimum_added_physical_damage"]=855, ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4571, - ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7826, - ["local_movement_speed_+%_if_item_corrupted"]=7827, + ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7832, + ["local_movement_speed_+%_if_item_corrupted"]=7833, ["local_no_attribute_requirements"]=847, ["local_no_critical_strike_multiplier"]=1408, ["local_no_critical_strike_multiplier_during_flask_effect"]=789, ["local_no_energy_shield"]=848, ["local_non_skill_physical_damage_%_to_gain_as_each_element_with_attacks_while_have_this_two_handed_hand_weapon"]=3932, - ["local_non_unique_item_explicit_prefix_mod_magnitudes_+%"]=7828, - ["local_non_unique_item_explicit_suffix_mod_magnitudes_+%"]=7829, + ["local_non_unique_item_explicit_prefix_mod_magnitudes_+%"]=7834, + ["local_non_unique_item_explicit_suffix_mod_magnitudes_+%"]=7835, ["local_number_of_bloodworms_to_spawn_on_flask_use"]=707, ["local_one_socket_each_colour_only"]=87, ["local_physical_damage_%_to_convert_to_a_random_element"]=4052, ["local_physical_damage_+%"]=854, ["local_physical_damage_reduction_rating_+%"]=870, - ["local_physical_damage_roll_always_min_or_max"]=7830, + ["local_physical_damage_roll_always_min_or_max"]=7836, ["local_poison_duration_+%_during_flask_effect"]=790, ["local_poison_effect_+%"]=849, - ["local_poison_on_critical_strike_chance_%"]=7831, + ["local_poison_on_critical_strike_chance_%"]=7837, ["local_poison_on_hit"]=2274, - ["local_poison_on_hit_%"]=7832, - ["local_prefix_effect_+%"]=7833, - ["local_projectile_speed_+%"]=7834, + ["local_poison_on_hit_%"]=7838, + ["local_prefix_effect_+%"]=7839, + ["local_projectile_speed_+%"]=7840, ["local_quality_does_not_increase_damage"]=649, ["local_quality_does_not_increase_defences"]=650, ["local_quantity_of_sockets_+%"]=1684, @@ -242376,15 +242658,15 @@ return { ["local_recharge_on_demon_killed"]=647, ["local_recharge_on_take_crit"]=648, ["local_reload_speed_+%"]=971, - ["local_requirements_%_to_convert_to_dexterity"]=7835, - ["local_requirements_%_to_convert_to_intelligence"]=7836, - ["local_requirements_%_to_convert_to_strength"]=7837, - ["local_resist_all_elements_%_if_item_corrupted"]=7838, - ["local_resist_all_elements_+%_per_rune_or_soul_core"]=7839, + ["local_requirements_%_to_convert_to_dexterity"]=7841, + ["local_requirements_%_to_convert_to_intelligence"]=7842, + ["local_requirements_%_to_convert_to_strength"]=7843, + ["local_resist_all_elements_%_if_item_corrupted"]=7844, + ["local_resist_all_elements_+%_per_rune_or_soul_core"]=7845, ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2460, ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2447, ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2461, - ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7840, + ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7846, ["local_right_ring_slot_curse_effect_on_self_+%"]=2462, ["local_right_ring_slot_energy_shield"]=2449, ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2463, @@ -242392,16 +242674,16 @@ return { ["local_right_ring_slot_maximum_mana"]=2448, ["local_right_ring_slot_minion_damage_taken_+%"]=2465, ["local_right_ring_slot_no_mana_regeneration"]=2446, - ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7841, + ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7847, ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2507, - ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7842, + ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7848, ["local_right_ring_slot_skill_effect_duration_+%"]=2466, - ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7843, - ["local_ring_attack_speed_+%_final"]=7844, - ["local_ring_burning_damage_+%_final"]=7845, + ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7849, + ["local_ring_attack_speed_+%_final"]=7850, + ["local_ring_burning_damage_+%_final"]=7851, ["local_ring_disable_other_ring"]=1497, ["local_ring_duplicate_other_ring"]=2631, - ["local_ring_nova_spells_area_of_effect_+%_final"]=7846, + ["local_ring_nova_spells_area_of_effect_+%_final"]=7852, ["local_rune_effect_+%"]=200, ["local_self_bleed_duration_+%_during_flask_effect"]=791, ["local_self_chill_effect_+%_during_flask_effect"]=792, @@ -242410,9 +242692,9 @@ return { ["local_self_ignite_duration_+%_during_flask_effect"]=795, ["local_self_poison_duration_+%_during_flask_effect"]=796, ["local_self_shock_effect_+%_during_flask_effect"]=797, - ["local_shield_double_stun_threshold_while_active_blocking"]=7847, + ["local_shield_double_stun_threshold_while_active_blocking"]=7853, ["local_smoke_ground_on_flask_use_radius"]=688, - ["local_socketable_%_maximum_weapon_damage_to_gain_as_maximum_ward"]=7848, + ["local_socketable_%_maximum_weapon_damage_to_gain_as_maximum_ward"]=7854, ["local_socketed_abyss_jewel_effect_+%"]=201, ["local_socketed_active_skill_gem_level_+"]=174, ["local_socketed_active_skill_gem_quality_+"]=185, @@ -242469,20 +242751,20 @@ return { ["local_soul_core_gain_benefits_from_gloves_as_well"]=103, ["local_soul_core_gain_benefits_from_helmet_as_well"]=104, ["local_soul_core_gain_benefits_from_shield_as_well"]=105, - ["local_spell_damage_+%_if_item_corrupted"]=7849, - ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7850, + ["local_spell_damage_+%_if_item_corrupted"]=7855, + ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7856, ["local_spirit"]=880, ["local_spirit_+%"]=881, - ["local_spirit_+_per_rune_or_soul_core"]=7851, + ["local_spirit_+_per_rune_or_soul_core"]=7857, ["local_strength_and_intelligence_requirement_+"]=850, - ["local_strength_per_2%_quality"]=7852, + ["local_strength_per_2%_quality"]=7858, ["local_strength_requirement_+"]=851, ["local_strength_requirement_+%"]=852, - ["local_stun_threshold_+_per_rune_or_soul_core"]=7853, + ["local_stun_threshold_+_per_rune_or_soul_core"]=7859, ["local_stun_threshold_reduction_+%"]=2302, - ["local_suffix_effect_+%"]=7854, + ["local_suffix_effect_+%"]=7860, ["local_support_gem_max_skill_level_requirement_to_support"]=2601, - ["local_tablet_make_maps_in_radius_available"]=7855, + ["local_tablet_make_maps_in_radius_available"]=7861, ["local_unique_attacks_cast_socketed_lightning_spells_%"]=629, ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=630, ["local_unique_chaos_damage_does_not_damage_energy_shield_extra_hard_during_flask_effect"]=752, @@ -242507,38 +242789,38 @@ return { ["local_unique_flask_elemental_damage_%_to_gain_as_chaos_while_healing"]=807, ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=830, ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=831, - ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7856, - ["local_unique_flask_gain_%_of_current_ward_as_guard_when_flask_effect_ends"]=7857, + ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7862, + ["local_unique_flask_gain_%_of_current_ward_as_guard_when_flask_effect_ends"]=7863, ["local_unique_flask_instantly_recovers_%_maximum_life"]=668, ["local_unique_flask_item_quantity_+%_while_healing"]=808, ["local_unique_flask_item_rarity_+%_while_healing"]=809, ["local_unique_flask_kiaras_determination"]=810, - ["local_unique_flask_life_loss_%_per_minute_while_you_have_no_runic_ward_during_flask_effect"]=7858, - ["local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds"]=7859, + ["local_unique_flask_life_loss_%_per_minute_while_you_have_no_runic_ward_during_flask_effect"]=7864, + ["local_unique_flask_life_recovered_above_effective_life_is_instead_added_as_guard_for_X_seconds"]=7865, ["local_unique_flask_light_radius_+%_while_healing"]=811, - ["local_unique_flask_mana_flask_recovery_can_overcap_mana_during_flask_effect"]=7860, - ["local_unique_flask_maximum_rage_is_doubled_during_effect"]=7861, + ["local_unique_flask_mana_flask_recovery_can_overcap_mana_during_flask_effect"]=7866, + ["local_unique_flask_maximum_rage_is_doubled_during_effect"]=7867, ["local_unique_flask_no_mana_cost_while_healing"]=812, - ["local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect"]=7862, + ["local_unique_flask_nova_with_chaos_damage_equal_to_%_mana_spent_during_flask_effect"]=7868, ["local_unique_flask_physical_damage_%_to_gain_as_chaos_while_healing"]=813, ["local_unique_flask_physical_damage_%_to_gain_as_cold_while_healing"]=750, ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=749, - ["local_unique_flask_recover_all_mana_on_use"]=7863, + ["local_unique_flask_recover_all_mana_on_use"]=7869, ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=814, - ["local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends"]=7864, + ["local_unique_flask_take_chaos_damage_equal_to_current_mana_%_when_flask_effect_ends"]=7870, ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=815, ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=816, ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=817, ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=818, ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=819, ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=820, - ["local_unique_flask_ward_gained_as_guard_duration_ms_when_flask_effect_ends"]=7857, + ["local_unique_flask_ward_gained_as_guard_duration_ms_when_flask_effect_ends"]=7863, ["local_unique_hungry_loop_has_consumed_gem"]=115, ["local_unique_hungry_loop_number_of_gems_to_consume"]=115, ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2822, ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2823, ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2824, - ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7865, + ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7871, ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2909, ["local_unique_jewel_additional_life_per_X_int_in_radius"]=2885, ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2902, @@ -242549,129 +242831,129 @@ return { ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2907, ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2990, ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2999, - ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7866, - ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7867, - ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7868, - ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7869, - ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7870, - ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7871, - ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7872, - ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7873, - ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7874, + ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7872, + ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7873, + ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7874, + ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7875, + ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7876, + ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7877, + ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7878, + ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7879, + ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7880, ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2825, ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2886, ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2887, ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2875, ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3075, ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3074, - ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7875, + ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7881, ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2899, ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2878, - ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7876, + ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7882, ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2995, - ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7877, + ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7883, ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2910, ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2876, ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2889, - ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7878, - ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7879, - ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7880, - ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7881, - ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7882, + ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7884, + ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7885, + ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7886, + ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7887, + ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7888, ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2968, - ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7883, - ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7884, - ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7885, - ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7886, - ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7887, - ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7888, - ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7889, - ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7890, - ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7891, - ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7892, - ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7893, - ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7894, - ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7895, + ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7889, + ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7890, + ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7891, + ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7892, + ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7893, + ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7894, + ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7895, + ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7896, + ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7897, + ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7898, + ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7899, + ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7900, + ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7901, ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2879, ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2903, ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3076, ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3077, ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2874, - ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7896, - ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7897, + ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7902, + ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7903, ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2898, - ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7898, - ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7899, - ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7900, + ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7904, + ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7905, + ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7906, ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2987, ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2986, ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2897, ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3083, ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3082, - ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7901, - ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7902, - ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7903, - ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7904, - ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7925, + ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7907, + ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7908, + ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7909, + ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7910, + ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7931, ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2906, - ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7905, + ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7911, ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2966, ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3078, - ["local_unique_jewel_grants_x_empty_passives"]=7906, + ["local_unique_jewel_grants_x_empty_passives"]=7912, ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2993, ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2992, ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2969, - ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7907, - ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7908, - ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7909, + ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7913, + ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7914, + ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7915, ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2843, ["local_unique_jewel_life_increases_applies_to_energy_shield"]=2880, ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2888, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7910, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7911, - ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7912, - ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7913, - ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7914, - ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7915, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7916, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7917, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7916, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7917, + ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7918, + ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7919, + ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7920, + ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7921, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7922, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7923, ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2911, ["local_unique_jewel_melee_applies_to_bow"]=2821, - ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7918, - ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7919, + ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7924, + ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7925, ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2904, - ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7920, + ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7926, ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=838, - ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7921, - ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7922, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10684, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10685, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10686, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10684, + ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7927, + ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7928, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10701, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10702, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10703, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10701, ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2884, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7924, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_rare_jewel_socketed"]=7923, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7930, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_rare_jewel_socketed"]=7929, ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2826, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10687, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10687, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10704, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10704, ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2901, ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2896, ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2900, ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2877, ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2905, ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3079, - ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7926, + ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7932, ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3080, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7927, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7933, ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3081, - ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7928, - ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7929, - ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7930, + ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7934, + ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7935, + ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7936, ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2967, - ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7931, - ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7932, + ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7937, + ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7938, ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2908, - ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7933, + ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7939, ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2813, ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2890, ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2984, @@ -242681,65 +242963,65 @@ return { ["local_unique_jewel_with_70_dex_physical_damage_to_gain_as_chaos_%"]=2844, ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2845, ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2831, - ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7934, - ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7935, + ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7940, + ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7941, ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=821, - ["local_unique_mages_legacy_1"]=7936, - ["local_unique_mages_legacy_2"]=7937, - ["local_unique_mages_legacy_3"]=7938, - ["local_unique_mages_legacy_4"]=7939, - ["local_unique_mages_legacy_effect_+%_per_duplicate_mages_legacy"]=7940, + ["local_unique_mages_legacy_1"]=7942, + ["local_unique_mages_legacy_2"]=7943, + ["local_unique_mages_legacy_3"]=7944, + ["local_unique_mages_legacy_4"]=7945, + ["local_unique_mages_legacy_effect_+%_per_duplicate_mages_legacy"]=7946, ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=833, ["local_unique_regen_es_from_removed_life_duration_ms"]=2895, ["local_unique_remove_life_and_regen_es_from_removed_life"]=2895, ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=834, ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3477, - ["local_vivisection_random_keystone_index"]=10697, + ["local_vivisection_random_keystone_index"]=10714, ["local_ward"]=869, ["local_ward_+%"]=879, - ["local_weapon_accuracy_is_unaffected_by_distance"]=7941, + ["local_weapon_accuracy_is_unaffected_by_distance"]=7947, ["local_weapon_base_crit_chance_permyriad_override"]=3490, - ["local_weapon_damage_%_to_gain_as_daze_build_up"]=7942, - ["local_weapon_daze_chance_%"]=7943, + ["local_weapon_damage_%_to_gain_as_daze_build_up"]=7948, + ["local_weapon_daze_chance_%"]=7949, ["local_weapon_enemy_phys_reduction_%_penalty"]=1210, ["local_weapon_no_physical_damage"]=854, ["local_weapon_range_+"]=2531, - ["local_weapon_range_+_per_10%_quality"]=7944, + ["local_weapon_range_+_per_10%_quality"]=7950, ["local_weapon_roll_crits_twice"]=1380, ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=633, ["local_weapon_uses_both_hands"]=839, ["local_withered_on_hit_for_2_seconds_%_chance"]=4095, - ["lose_%_of_es_on_crit"]=7954, - ["lose_%_of_infernal_flame_on_reaching_max"]=7945, - ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7955, - ["lose_%_of_life_loss_over_4_seconds_instead"]=7946, - ["lose_%_of_life_on_crit"]=7956, - ["lose_%_of_mana_when_you_use_an_attack_skill"]=7957, - ["lose_%_of_max_infernal_flame_per_minute"]=7947, + ["lose_%_of_es_on_crit"]=7960, + ["lose_%_of_infernal_flame_on_reaching_max"]=7951, + ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7961, + ["lose_%_of_life_loss_over_4_seconds_instead"]=7952, + ["lose_%_of_life_on_crit"]=7962, + ["lose_%_of_mana_when_you_use_an_attack_skill"]=7963, + ["lose_%_of_max_infernal_flame_per_minute"]=7953, ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3187, ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4078, ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4079, - ["lose_adrenaline_on_losing_flame_touched"]=7948, - ["lose_all_charges_on_starting_movement"]=7949, + ["lose_adrenaline_on_losing_flame_touched"]=7954, + ["lose_all_charges_on_starting_movement"]=7955, ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=3954, ["lose_all_endurance_charges_when_reaching_maximum"]=2538, - ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7950, + ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7956, ["lose_all_fragile_regrowth_when_hit"]=4086, - ["lose_all_power_charges_on_block"]=7951, + ["lose_all_power_charges_on_block"]=7957, ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3308, - ["lose_all_rage_on_reaching_maximum_rage"]=7952, - ["lose_all_tailwind_when_hit"]=7953, + ["lose_all_rage_on_reaching_maximum_rage"]=7958, + ["lose_all_tailwind_when_hit"]=7959, ["lose_endurance_charge_on_kill_%"]=2428, ["lose_endurance_charges_on_rampage_end"]=3004, ["lose_frenzy_charge_on_kill_%"]=2430, - ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7958, + ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7964, ["lose_power_charge_on_kill_%"]=2432, ["lose_soul_eater_souls_on_flask_use"]=3149, ["lose_spirit_charges_on_savage_hit_taken"]=4069, - ["lose_x_life_when_you_use_skill"]=7959, - ["lose_x_mana_when_you_use_skill"]=7960, - ["low_life_threshold_%_override"]=7962, - ["low_mana_threshold_%_override"]=7963, + ["lose_x_life_when_you_use_skill"]=7965, + ["lose_x_mana_when_you_use_skill"]=7966, + ["low_life_threshold_%_override"]=7968, + ["low_mana_threshold_%_override"]=7969, ["mace_accuracy_rating"]=1776, ["mace_accuracy_rating_+%"]=1364, ["mace_attack_speed_+%"]=1347, @@ -242747,489 +243029,488 @@ return { ["mace_critical_strike_multiplier_+"]=1410, ["mace_damage_+%"]=1273, ["mace_elemental_damage_+%"]=1886, - ["mace_hit_damage_stun_multiplier_+%"]=7964, - ["mace_skill_base_physical_damage_%_to_convert_to_cold"]=7965, - ["mace_slam_aftershock_chance_%"]=7966, - ["mace_strike_melee_splash_chance_%"]=7967, + ["mace_hit_damage_stun_multiplier_+%"]=7970, + ["mace_skill_base_physical_damage_%_to_convert_to_cold"]=7971, + ["mace_slam_aftershock_chance_%"]=7972, + ["mace_strike_melee_splash_chance_%"]=7973, ["magic_charm_effect_+%"]=2529, ["magic_items_drop_identified"]=3833, - ["magic_monster_dropped_item_rarity_+%"]=7968, + ["magic_monster_dropped_item_rarity_+%"]=7974, ["magma_orb_damage_+%"]=3343, ["magma_orb_num_of_additional_projectiles_in_chain"]=3642, - ["magma_orb_number_of_additional_projectiles"]=7969, + ["magma_orb_number_of_additional_projectiles"]=7975, ["magma_orb_radius_+%"]=3504, - ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7970, + ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7976, ["maim_bleeding_enemies_on_hit_%"]=3047, - ["maim_chance_+%"]=7971, - ["maim_effect_+%"]=7972, - ["maim_enemy_on_full_armour_break"]=7973, - ["maim_on_crit_%_with_attacks"]=7974, - ["maim_on_hit_%"]=7975, + ["maim_chance_+%"]=7977, + ["maim_effect_+%"]=7978, + ["maim_enemy_on_full_armour_break"]=7979, + ["maim_on_crit_%_with_attacks"]=7980, + ["maim_on_hit_%"]=7981, ["maim_on_hit_%_vs_poisoned_enemies"]=3027, - ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7976, - ["main_hand_attack_speed_+%_final"]=7977, + ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7982, + ["main_hand_attack_speed_+%_final"]=7983, ["main_hand_attacks_with_this_weapon_maximum_added_physical_damage_per_1%_block_chance"]=2700, ["main_hand_attacks_with_this_weapon_minimum_added_physical_damage_per_1%_block_chance"]=2700, ["main_hand_base_weapon_attack_duration_ms"]=24, - ["main_hand_claw_life_gain_on_hit"]=7978, - ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7979, - ["main_hand_damage_+%_while_dual_wielding"]=7980, + ["main_hand_claw_life_gain_on_hit"]=7984, + ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7985, + ["main_hand_damage_+%_while_dual_wielding"]=7986, ["main_hand_maximum_attack_distance"]=28, ["main_hand_minimum_attack_distance"]=26, ["main_hand_quality"]=21, ["main_hand_weapon_type"]=13, - ["malediction_on_hit"]=7981, - ["malevolence_mana_reservation_efficiency_+%"]=7983, - ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7982, - ["mamba_strike_area_of_effect_+%"]=7984, - ["mamba_strike_damage_+%"]=7985, - ["mamba_strike_duration_+%"]=7986, - ["mana_%_gained_on_block"]=8010, - ["mana_%_to_gain_as_armour"]=7987, + ["malediction_on_hit"]=7987, + ["malevolence_mana_reservation_efficiency_+%"]=7989, + ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7988, + ["mamba_strike_area_of_effect_+%"]=7990, + ["mamba_strike_damage_+%"]=7991, + ["mamba_strike_duration_+%"]=7992, + ["mana_%_gained_on_block"]=8016, + ["mana_%_to_gain_as_armour"]=7993, ["mana_%_to_gain_as_energy_shield"]=1455, ["mana_%_to_gain_as_energy_shield_at_devotion_threshold"]=1456, ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3114, - ["mana_cost_+%_for_channelling_skills"]=7990, - ["mana_cost_+%_for_trap_and_mine_skills"]=7991, - ["mana_cost_+%_for_trap_skills"]=7992, + ["mana_cost_+%_for_channelling_skills"]=7996, + ["mana_cost_+%_for_trap_and_mine_skills"]=7997, + ["mana_cost_+%_for_trap_skills"]=7998, ["mana_cost_+%_on_consecrated_ground"]=3263, ["mana_cost_+%_on_totemified_aura_skills"]=2862, - ["mana_cost_+%_per_10_devotion"]=7993, + ["mana_cost_+%_per_10_devotion"]=7999, ["mana_cost_+%_per_200_mana_spent_recently"]=4029, ["mana_cost_+%_when_on_low_life"]=1660, ["mana_cost_+%_while_not_low_mana"]=2838, ["mana_cost_+%_while_on_full_energy_shield"]=1659, ["mana_cost_-%_per_endurance_charge"]=3002, - ["mana_cost_efficiency_+%_if_dodge_rolled_recently"]=7988, - ["mana_cost_efficiency_+%_if_not_dodge_rolled_recently"]=7989, - ["mana_degeneration_%_per_minute_not_in_grace"]=7994, - ["mana_degeneration_per_minute"]=7995, - ["mana_degeneration_per_minute_%"]=7996, + ["mana_cost_efficiency_+%_if_dodge_rolled_recently"]=7994, + ["mana_cost_efficiency_+%_if_not_dodge_rolled_recently"]=7995, + ["mana_degeneration_%_per_minute_not_in_grace"]=8000, + ["mana_degeneration_per_minute"]=8001, + ["mana_degeneration_per_minute_%"]=8002, ["mana_degeneration_per_minute_not_in_grace"]=1472, - ["mana_flask_charges_gained_+%"]=7997, - ["mana_flask_effects_not_removed_at_full_mana"]=7998, - ["mana_flask_recovery_is_instant_while_on_low_mana"]=7999, - ["mana_flasks_gain_X_charges_every_3_seconds"]=8000, + ["mana_flask_charges_gained_+%"]=8003, + ["mana_flask_effects_not_removed_at_full_mana"]=8004, + ["mana_flask_recovery_is_instant_while_on_low_mana"]=8005, + ["mana_flasks_gain_X_charges_every_3_seconds"]=8006, ["mana_gain_per_target"]=1531, - ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=8001, - ["mana_gained_on_attack_hit_vs_cursed_enemies"]=8002, + ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=8007, + ["mana_gained_on_attack_hit_vs_cursed_enemies"]=8008, ["mana_gained_on_block"]=1544, - ["mana_gained_on_cull"]=8003, + ["mana_gained_on_cull"]=8009, ["mana_gained_on_enemy_death_per_level"]=2741, ["mana_gained_on_hitting_taunted_enemy"]=1567, - ["mana_gained_on_spell_hit"]=8004, - ["mana_gained_on_spell_hit_vs_cursed_enemies"]=8005, + ["mana_gained_on_spell_hit"]=8010, + ["mana_gained_on_spell_hit_vs_cursed_enemies"]=8011, ["mana_gained_when_hit"]=2503, - ["mana_leech_also_recovers_based_on_other_damage_types"]=8006, - ["mana_leech_amount_+%_if_crit_recently"]=8007, - ["mana_leech_applies_recovery_to_energy_shield_also"]=8008, + ["mana_leech_also_recovers_based_on_other_damage_types"]=8012, + ["mana_leech_amount_+%_if_crit_recently"]=8013, + ["mana_leech_applies_recovery_to_energy_shield_also"]=8014, ["mana_leech_is_instant_on_critical"]=3991, ["mana_leech_rate_+%_per_equipped_corrupted_item"]=2854, - ["mana_per_level"]=8009, - ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=8011, - ["mana_recovery_from_regeneration_is_not_applied"]=8012, + ["mana_per_level"]=8015, + ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=8017, + ["mana_recovery_from_regeneration_is_not_applied"]=8018, ["mana_recovery_rate_+%"]=1474, - ["mana_recovery_rate_+%_if_havent_killed_recently"]=8016, - ["mana_recovery_rate_+%_per_10_tribute"]=8013, - ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=8014, - ["mana_recovery_rate_+%_while_affected_by_clarity"]=8017, - ["mana_recovery_rate_+%_while_companion_in_presence"]=8015, + ["mana_recovery_rate_+%_if_havent_killed_recently"]=8022, + ["mana_recovery_rate_+%_per_10_tribute"]=8019, + ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=8020, + ["mana_recovery_rate_+%_while_affected_by_clarity"]=8023, + ["mana_recovery_rate_+%_while_companion_in_presence"]=8021, ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3758, ["mana_regeneration_rate_+%"]=1067, ["mana_regeneration_rate_+%_during_flask_effect"]=2928, - ["mana_regeneration_rate_+%_final_from_caster_weapon_runic_ward_socketable"]=8018, - ["mana_regeneration_rate_+%_if_crit_recently"]=8035, - ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=8036, - ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=8037, - ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=8038, - ["mana_regeneration_rate_+%_on_full_life"]=8019, + ["mana_regeneration_rate_+%_final_from_caster_weapon_runic_ward_socketable"]=8024, + ["mana_regeneration_rate_+%_if_crit_recently"]=8041, + ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=8042, + ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=8043, + ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=8044, + ["mana_regeneration_rate_+%_on_full_life"]=8025, ["mana_regeneration_rate_+%_per_fragile_regrowth"]=4085, ["mana_regeneration_rate_+%_per_power_charge"]=1749, - ["mana_regeneration_rate_+%_per_raised_spectre"]=8039, - ["mana_regeneration_rate_+%_while_moving"]=8040, - ["mana_regeneration_rate_+%_while_not_on_low_mana"]=8020, + ["mana_regeneration_rate_+%_per_raised_spectre"]=8045, + ["mana_regeneration_rate_+%_while_moving"]=8046, + ["mana_regeneration_rate_+%_while_not_on_low_mana"]=8026, ["mana_regeneration_rate_+%_while_phasing"]=2311, - ["mana_regeneration_rate_+%_while_shapeshifted"]=8021, + ["mana_regeneration_rate_+%_while_shapeshifted"]=8027, ["mana_regeneration_rate_+%_while_shocked"]=2312, ["mana_regeneration_rate_+%_while_stationary"]=4010, - ["mana_regeneration_rate_+%_while_surrounded"]=8022, + ["mana_regeneration_rate_+%_while_surrounded"]=8028, ["mana_regeneration_rate_per_minute_%"]=1470, - ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=8027, - ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=8028, - ["mana_regeneration_rate_per_minute_%_per_active_totem"]=8029, + ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=8033, + ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=8034, + ["mana_regeneration_rate_per_minute_%_per_active_totem"]=8035, ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1473, - ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=8023, - ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=8024, - ["mana_regeneration_rate_per_minute_per_10_devotion"]=8025, - ["mana_regeneration_rate_per_minute_per_power_charge"]=8026, - ["mana_regeneration_rate_per_minute_while_dual_wielding"]=8030, - ["mana_regeneration_rate_per_minute_while_holding_shield"]=8031, - ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=8032, - ["mana_regeneration_rate_per_minute_while_wielding_staff"]=8033, - ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=8034, - ["mana_reservation_+%_per_250_total_attributes"]=8046, - ["mana_reservation_+%_with_curse_skills"]=8047, - ["mana_reservation_+%_with_skills_that_throw_mines"]=8041, - ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=8042, - ["mana_reservation_efficiency_+%_per_250_total_attributes"]=8045, + ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=8029, + ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=8030, + ["mana_regeneration_rate_per_minute_per_10_devotion"]=8031, + ["mana_regeneration_rate_per_minute_per_power_charge"]=8032, + ["mana_regeneration_rate_per_minute_while_dual_wielding"]=8036, + ["mana_regeneration_rate_per_minute_while_holding_shield"]=8037, + ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=8038, + ["mana_regeneration_rate_per_minute_while_wielding_staff"]=8039, + ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=8040, + ["mana_reservation_+%_per_250_total_attributes"]=8052, + ["mana_reservation_+%_with_curse_skills"]=8053, + ["mana_reservation_+%_with_skills_that_throw_mines"]=8047, + ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=8048, + ["mana_reservation_efficiency_+%_per_250_total_attributes"]=8051, ["mana_reservation_efficiency_-2%_per_1"]=1981, - ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=8043, - ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=8044, - ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=8048, - ["manabond_damage_+%"]=8049, - ["manabond_lightning_penetration_%_while_on_low_mana"]=8050, - ["manabond_skill_area_of_effect_+%"]=8051, - ["manifest_a_fragment_of_divinity_in_your_presence_every_4_seconds"]=8052, - ["manifest_dancing_dervish_number_of_additional_copies"]=8053, - ["map_X_bestiary_packs_are_harvest_beasts"]=8054, - ["map_abyss_%_chance_chasm_spawns_at_least_magic_monsters"]=8055, - ["map_abyss_%_chance_path_spawns_at_least_magic_monsters"]=8056, - ["map_abyss_depths_chance_+%"]=8057, - ["map_abyss_exile_interaction_chance_+%"]=8058, + ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=8049, + ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=8050, + ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=8054, + ["manabond_damage_+%"]=8055, + ["manabond_lightning_penetration_%_while_on_low_mana"]=8056, + ["manabond_skill_area_of_effect_+%"]=8057, + ["manifest_a_fragment_of_divinity_in_your_presence_every_4_seconds"]=8058, + ["manifest_dancing_dervish_number_of_additional_copies"]=8059, + ["map_X_bestiary_packs_are_harvest_beasts"]=8060, + ["map_abyss_%_chance_chasm_spawns_at_least_magic_monsters"]=8061, + ["map_abyss_%_chance_path_spawns_at_least_magic_monsters"]=8062, + ["map_abyss_depths_chance_+%"]=8063, + ["map_abyss_exile_interaction_chance_+%"]=8064, ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=116, - ["map_abyss_monster_experience_+%"]=8059, - ["map_abyss_monster_lichborn_modifier_chance_+%"]=8060, - ["map_abyss_monster_potency_+%"]=8061, - ["map_abyss_monster_spawn_amount_+%"]=8062, - ["map_abyss_monsters_enhanced_per_chasm_closed"]=8063, - ["map_abyss_no_reward_chance_+%"]=8064, - ["map_abyss_num_additional_rare_monsters"]=8065, - ["map_abyss_overrun_extra_pits"]=8066, - ["map_abyss_overrun_no_monsters"]=8067, - ["map_abyss_pits_spread_apart"]=8068, - ["map_add_irradiation_instead_of_completing"]=8069, + ["map_abyss_monster_experience_+%"]=8065, + ["map_abyss_monster_potency_+%"]=8066, + ["map_abyss_monster_spawn_amount_+%"]=8067, + ["map_abyss_monsters_enhanced_per_chasm_closed"]=8068, + ["map_abyss_no_reward_chance_+%"]=8069, + ["map_abyss_num_additional_rare_monsters"]=8070, + ["map_abyss_overrun_extra_pits"]=8071, + ["map_abyss_overrun_no_monsters"]=8072, + ["map_abyss_pits_spread_apart"]=8073, + ["map_add_irradiation_instead_of_completing"]=8074, ["map_additional_number_of_packs_to_choose"]=2066, ["map_additional_player_maximum_resistances_%"]=2135, - ["map_additional_rare_in_rare_pack_chance_+%"]=8070, - ["map_additional_red_beasts"]=8071, - ["map_adds_X_extra_synthesis_mods"]=8072, - ["map_adds_X_extra_synthesis_special_mods"]=8073, + ["map_additional_rare_in_rare_pack_chance_+%"]=8075, + ["map_additional_red_beasts"]=8076, + ["map_adds_X_extra_synthesis_mods"]=8077, + ["map_adds_X_extra_synthesis_special_mods"]=8078, ["map_addtional_magic_chest_amount"]=2009, ["map_addtional_rare_chest_amount"]=2010, - ["map_affliction_encounter_boss_chance_+%"]=8074, - ["map_affliction_encounter_monster_depth_+%"]=8075, - ["map_affliction_pack_size_+%"]=8076, - ["map_affliction_reward_kills_+%"]=8077, - ["map_affliction_reward_progress_on_kill_+%"]=8078, - ["map_affliction_secondary_wave_acceleration_+%"]=8079, - ["map_affliction_secondary_wave_delay_ms_+"]=8080, - ["map_affliction_secondary_wave_delay_seconds_+"]=8081, + ["map_affliction_encounter_boss_chance_+%"]=8079, + ["map_affliction_encounter_monster_depth_+%"]=8080, + ["map_affliction_pack_size_+%"]=8081, + ["map_affliction_reward_kills_+%"]=8082, + ["map_affliction_reward_progress_on_kill_+%"]=8083, + ["map_affliction_secondary_wave_acceleration_+%"]=8084, + ["map_affliction_secondary_wave_delay_ms_+"]=8085, + ["map_affliction_secondary_wave_delay_seconds_+"]=8086, ["map_all_items_drop_as_gold"]=2013, ["map_allow_shrines"]=2422, - ["map_also_count_as_desert_biome"]=8082, - ["map_also_count_as_forest_biome"]=8083, - ["map_also_count_as_grass_biome"]=8084, - ["map_also_count_as_mountain_biome"]=8085, - ["map_also_count_as_swamp_biome"]=8086, - ["map_also_count_as_water_biome"]=8087, + ["map_also_count_as_desert_biome"]=8087, + ["map_also_count_as_forest_biome"]=8088, + ["map_also_count_as_grass_biome"]=8089, + ["map_also_count_as_mountain_biome"]=8090, + ["map_also_count_as_swamp_biome"]=8091, + ["map_also_count_as_water_biome"]=8092, ["map_always_has_weather"]=2421, ["map_ambush_chests"]=2415, - ["map_area_contains_arcanists_strongbox"]=8089, - ["map_area_contains_avatar_of_ambush"]=8090, - ["map_area_contains_avatar_of_anarchy"]=8091, - ["map_area_contains_avatar_of_beyond"]=8092, - ["map_area_contains_avatar_of_bloodlines"]=8093, - ["map_area_contains_avatar_of_breach"]=8094, - ["map_area_contains_avatar_of_domination"]=8095, - ["map_area_contains_avatar_of_essence"]=8096, - ["map_area_contains_avatar_of_invasion"]=8097, - ["map_area_contains_avatar_of_nemesis"]=8098, - ["map_area_contains_avatar_of_onslaught"]=8099, - ["map_area_contains_avatar_of_perandus"]=8100, - ["map_area_contains_avatar_of_prophecy"]=8101, - ["map_area_contains_avatar_of_rampage"]=8102, - ["map_area_contains_avatar_of_talisman"]=8103, - ["map_area_contains_avatar_of_tempest"]=8104, - ["map_area_contains_avatar_of_torment"]=8105, - ["map_area_contains_avatar_of_warbands"]=8106, - ["map_area_contains_cartographers_strongbox"]=8107, - ["map_area_contains_currency_chest"]=8108, - ["map_area_contains_gemcutters_strongbox"]=8109, - ["map_area_contains_jewellery_chest"]=8110, - ["map_area_contains_map_chest"]=8111, - ["map_area_contains_metamorphs"]=8112, - ["map_area_contains_perandus_coin_chest"]=8113, - ["map_area_contains_rituals"]=8114, - ["map_area_contains_tormented_embezzler"]=8115, - ["map_area_contains_tormented_seditionist"]=8116, - ["map_area_contains_tormented_vaal_cultist"]=8117, - ["map_area_contains_unique_item_chest"]=8118, - ["map_area_contains_unique_strongbox"]=8119, - ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=8120, - ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=8121, - ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=8122, - ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=8123, - ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=8124, - ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=8125, - ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=8126, - ["map_area_contains_x_rare_monsters_with_inner_treasure"]=8235, - ["map_area_ritual_additional_chance_%"]=8127, - ["map_atlas_influence_type"]=8088, - ["map_atlas_node_has_abyss"]=8128, - ["map_atlas_node_has_breach"]=8129, - ["map_atlas_node_has_delirium"]=8130, - ["map_atlas_node_has_incursion"]=8131, - ["map_atlas_node_has_ritual"]=8132, + ["map_area_contains_arcanists_strongbox"]=8094, + ["map_area_contains_avatar_of_ambush"]=8095, + ["map_area_contains_avatar_of_anarchy"]=8096, + ["map_area_contains_avatar_of_beyond"]=8097, + ["map_area_contains_avatar_of_bloodlines"]=8098, + ["map_area_contains_avatar_of_breach"]=8099, + ["map_area_contains_avatar_of_domination"]=8100, + ["map_area_contains_avatar_of_essence"]=8101, + ["map_area_contains_avatar_of_invasion"]=8102, + ["map_area_contains_avatar_of_nemesis"]=8103, + ["map_area_contains_avatar_of_onslaught"]=8104, + ["map_area_contains_avatar_of_perandus"]=8105, + ["map_area_contains_avatar_of_prophecy"]=8106, + ["map_area_contains_avatar_of_rampage"]=8107, + ["map_area_contains_avatar_of_talisman"]=8108, + ["map_area_contains_avatar_of_tempest"]=8109, + ["map_area_contains_avatar_of_torment"]=8110, + ["map_area_contains_avatar_of_warbands"]=8111, + ["map_area_contains_cartographers_strongbox"]=8112, + ["map_area_contains_currency_chest"]=8113, + ["map_area_contains_gemcutters_strongbox"]=8114, + ["map_area_contains_jewellery_chest"]=8115, + ["map_area_contains_map_chest"]=8116, + ["map_area_contains_metamorphs"]=8117, + ["map_area_contains_perandus_coin_chest"]=8118, + ["map_area_contains_rituals"]=8119, + ["map_area_contains_tormented_embezzler"]=8120, + ["map_area_contains_tormented_seditionist"]=8121, + ["map_area_contains_tormented_vaal_cultist"]=8122, + ["map_area_contains_unique_item_chest"]=8123, + ["map_area_contains_unique_strongbox"]=8124, + ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=8125, + ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=8126, + ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=8127, + ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=8128, + ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=8129, + ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=8130, + ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=8131, + ["map_area_contains_x_rare_monsters_with_inner_treasure"]=8240, + ["map_area_ritual_additional_chance_%"]=8132, + ["map_atlas_influence_type"]=8093, + ["map_atlas_node_has_abyss"]=8133, + ["map_atlas_node_has_breach"]=8134, + ["map_atlas_node_has_delirium"]=8135, + ["map_atlas_node_has_incursion"]=8136, + ["map_atlas_node_has_ritual"]=8137, ["map_base_ground_desecration_damage_to_deal_per_minute"]=2083, ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2076, ["map_base_ground_fire_damage_to_deal_per_minute"]=2075, - ["map_bestiary_monster_damage_+%_final"]=8133, - ["map_bestiary_monster_life_+%_final"]=8134, - ["map_betrayal_intelligence_+%"]=8135, - ["map_beyond_demon_always_elite"]=8136, - ["map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge"]=8137, - ["map_beyond_monster_difficulty_tankiness_+%_per_portal_merge"]=8137, - ["map_beyond_portal_chance_+%"]=8138, - ["map_beyond_portal_spawn_additional_demon_%_chance"]=8139, + ["map_bestiary_monster_damage_+%_final"]=8138, + ["map_bestiary_monster_life_+%_final"]=8139, + ["map_betrayal_intelligence_+%"]=8140, + ["map_beyond_demon_always_elite"]=8141, + ["map_beyond_from_league_item_rarity_+%_permyriad_per_portal_merge"]=8142, + ["map_beyond_monster_difficulty_tankiness_+%_per_portal_merge"]=8142, + ["map_beyond_portal_chance_+%"]=8143, + ["map_beyond_portal_spawn_additional_demon_%_chance"]=8144, ["map_beyond_rules"]=2424, - ["map_blight_chest_%_chance_for_additional_drop"]=8140, - ["map_blight_chests_repeat_drops_count"]=8141, - ["map_blight_encounter_spawn_rate_+%"]=8142, - ["map_blight_lane_additional_chest_chance_%"]=8143, - ["map_blight_lane_additional_chests"]=8144, - ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=8145, - ["map_blight_tower_cost_+%"]=8146, - ["map_blight_tower_cost_doubled"]=8147, - ["map_blight_up_to_X_additional_bosses"]=8148, - ["map_blighted_map_encounter_duration_-_sec"]=8149, - ["map_bloodline_packs_drop_x_additional_currency_items"]=8150, - ["map_bloodline_packs_drop_x_additional_rare_items"]=8151, - ["map_blueprint_drop_revealed_chance_%"]=8152, - ["map_boss_accompanied_by_bodyguards"]=8153, - ["map_boss_accompanied_by_harbinger"]=8154, + ["map_blight_chest_%_chance_for_additional_drop"]=8145, + ["map_blight_chests_repeat_drops_count"]=8146, + ["map_blight_encounter_spawn_rate_+%"]=8147, + ["map_blight_lane_additional_chest_chance_%"]=8148, + ["map_blight_lane_additional_chests"]=8149, + ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=8150, + ["map_blight_tower_cost_+%"]=8151, + ["map_blight_tower_cost_doubled"]=8152, + ["map_blight_up_to_X_additional_bosses"]=8153, + ["map_blighted_map_encounter_duration_-_sec"]=8154, + ["map_bloodline_packs_drop_x_additional_currency_items"]=8155, + ["map_bloodline_packs_drop_x_additional_rare_items"]=8156, + ["map_blueprint_drop_revealed_chance_%"]=8157, + ["map_boss_accompanied_by_bodyguards"]=8158, + ["map_boss_accompanied_by_harbinger"]=8159, ["map_boss_area_of_effect_+%"]=2201, ["map_boss_attack_and_cast_speed_+%"]=2199, ["map_boss_damage_+%"]=2193, ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2194, - ["map_boss_dropped_item_quantity_+%"]=8155, - ["map_boss_dropped_unique_items_+"]=8156, + ["map_boss_dropped_item_quantity_+%"]=8160, + ["map_boss_dropped_unique_items_+"]=8161, ["map_boss_drops_additional_conqueror_map"]=2196, - ["map_boss_drops_additional_currency_shards"]=8157, + ["map_boss_drops_additional_currency_shards"]=8162, ["map_boss_drops_additional_elder_guardian_map"]=2197, ["map_boss_drops_additional_shaper_guardian_map"]=2198, - ["map_boss_drops_corrupted_items"]=8158, - ["map_boss_drops_x_additional_vaal_items"]=8163, - ["map_boss_experience_+%_final"]=8159, - ["map_boss_is_possessed"]=8160, - ["map_boss_item_rarity_+%"]=8161, + ["map_boss_drops_corrupted_items"]=8163, + ["map_boss_drops_x_additional_vaal_items"]=8168, + ["map_boss_experience_+%_final"]=8164, + ["map_boss_is_possessed"]=8165, + ["map_boss_item_rarity_+%"]=8166, ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2195, ["map_boss_maximum_life_+%"]=2200, - ["map_boss_surrounded_by_tormented_spirits"]=8162, - ["map_breach_%_chance_for_1_additional_breach"]=8164, - ["map_breach_%_chance_for_3_additional_breach"]=8165, - ["map_breach_X_additional_rare_monsters"]=8166, - ["map_breach_additional_monster_potency_skill"]=8167, - ["map_breach_additional_rare_mod_skill"]=8168, - ["map_breach_additional_rare_spawner_skill"]=8169, - ["map_breach_additional_sacrifice_for_buff_skill"]=8170, - ["map_breach_additional_sacrifice_for_rarity_skill"]=8171, - ["map_breach_additional_upgrade_zone_skill"]=8172, - ["map_breach_chance_to_be_esh_+%"]=8173, - ["map_breach_chance_to_be_tul_+%"]=8174, - ["map_breach_chance_to_be_uul_netol_+%"]=8175, - ["map_breach_chance_to_be_xoph_+%"]=8176, + ["map_boss_surrounded_by_tormented_spirits"]=8167, + ["map_breach_%_chance_for_1_additional_breach"]=8169, + ["map_breach_%_chance_for_3_additional_breach"]=8170, + ["map_breach_X_additional_rare_monsters"]=8171, + ["map_breach_additional_monster_potency_skill"]=8172, + ["map_breach_additional_rare_mod_skill"]=8173, + ["map_breach_additional_rare_spawner_skill"]=8174, + ["map_breach_additional_sacrifice_for_buff_skill"]=8175, + ["map_breach_additional_sacrifice_for_rarity_skill"]=8176, + ["map_breach_additional_upgrade_zone_skill"]=8177, + ["map_breach_chance_to_be_esh_+%"]=8178, + ["map_breach_chance_to_be_tul_+%"]=8179, + ["map_breach_chance_to_be_uul_netol_+%"]=8180, + ["map_breach_chance_to_be_xoph_+%"]=8181, ["map_breach_hands_are_small"]=106, - ["map_breach_has_boss"]=8177, - ["map_breach_has_large_chest"]=8178, - ["map_breach_minimum_radius"]=8179, - ["map_breach_monster_potency_+%"]=8180, - ["map_breach_monster_quantity_+%"]=8181, - ["map_breach_monster_splinter_quantity_+%"]=8182, + ["map_breach_has_boss"]=8182, + ["map_breach_has_large_chest"]=8183, + ["map_breach_minimum_radius"]=8184, + ["map_breach_monster_potency_+%"]=8185, + ["map_breach_monster_quantity_+%"]=8186, + ["map_breach_monster_splinter_quantity_+%"]=8187, ["map_breach_monsters_damage_+%"]=137, ["map_breach_monsters_life_+%"]=129, - ["map_breach_number_of_magic_packs_+%"]=8183, + ["map_breach_number_of_magic_packs_+%"]=8188, ["map_breach_rules"]=2416, ["map_breach_size_+%"]=123, ["map_breach_splinters_drop_as_stones_permyriad"]=124, ["map_breach_time_passed_+%"]=117, - ["map_breach_type_override"]=8184, - ["map_breaches_num_additional_chests_to_spawn"]=8185, - ["map_chance_for_4_additional_abysses_%"]=8186, - ["map_chance_for_area_%_to_contain_harvest"]=8187, + ["map_breach_type_override"]=8189, + ["map_breaches_num_additional_chests_to_spawn"]=8190, + ["map_chance_for_4_additional_abysses_%"]=8191, + ["map_chance_for_area_%_to_contain_harvest"]=8192, ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=125, - ["map_chance_to_not_consume_sextant_use_%"]=8188, + ["map_chance_to_not_consume_sextant_use_%"]=8193, ["map_chest_item_quantity_+%"]=2202, ["map_chest_item_rarity_+%"]=2203, - ["map_chest_item_rarity_+%_final"]=8189, - ["map_chests_all_magic_or_rare"]=8190, - ["map_construct_monster_potency_+%"]=8191, - ["map_contains_+_portals"]=8192, - ["map_contains_abyss_boss"]=8193, - ["map_contains_abyss_depths"]=8194, - ["map_contains_abyss_depths_with_no_boss"]=8195, - ["map_contains_additional_breaches"]=8196, - ["map_contains_additional_chrysalis_talisman"]=8197, - ["map_contains_additional_clutching_talisman"]=8198, - ["map_contains_additional_fangjaw_talisman"]=8199, - ["map_contains_additional_mandible_talisman"]=8200, - ["map_contains_additional_packs_of_chaos_monsters"]=8201, - ["map_contains_additional_packs_of_cold_monsters"]=8202, - ["map_contains_additional_packs_of_fire_monsters"]=8203, - ["map_contains_additional_packs_of_lightning_monsters"]=8204, - ["map_contains_additional_packs_of_physical_monsters"]=8205, - ["map_contains_additional_packs_of_vaal_monsters"]=8206, - ["map_contains_additional_three_rat_talisman"]=8207, - ["map_contains_additional_tormented_betrayers"]=8208, - ["map_contains_additional_tormented_graverobbers"]=8209, - ["map_contains_additional_tormented_heretics"]=8210, - ["map_contains_additional_unique_talisman"]=8211, - ["map_contains_additional_writhing_talisman"]=8212, - ["map_contains_breach"]=8213, + ["map_chest_item_rarity_+%_final"]=8194, + ["map_chests_all_magic_or_rare"]=8195, + ["map_construct_monster_potency_+%"]=8196, + ["map_contains_+_portals"]=8197, + ["map_contains_abyss_boss"]=8198, + ["map_contains_abyss_depths"]=8199, + ["map_contains_abyss_depths_with_no_boss"]=8200, + ["map_contains_additional_breaches"]=8201, + ["map_contains_additional_chrysalis_talisman"]=8202, + ["map_contains_additional_clutching_talisman"]=8203, + ["map_contains_additional_fangjaw_talisman"]=8204, + ["map_contains_additional_mandible_talisman"]=8205, + ["map_contains_additional_packs_of_chaos_monsters"]=8206, + ["map_contains_additional_packs_of_cold_monsters"]=8207, + ["map_contains_additional_packs_of_fire_monsters"]=8208, + ["map_contains_additional_packs_of_lightning_monsters"]=8209, + ["map_contains_additional_packs_of_physical_monsters"]=8210, + ["map_contains_additional_packs_of_vaal_monsters"]=8211, + ["map_contains_additional_three_rat_talisman"]=8212, + ["map_contains_additional_tormented_betrayers"]=8213, + ["map_contains_additional_tormented_graverobbers"]=8214, + ["map_contains_additional_tormented_heretics"]=8215, + ["map_contains_additional_unique_talisman"]=8216, + ["map_contains_additional_writhing_talisman"]=8217, + ["map_contains_breach"]=8218, ["map_contains_buried_treasure"]=2011, - ["map_contains_chayula_breach"]=8214, - ["map_contains_citadel"]=8215, - ["map_contains_cleansed_boss"]=8216, - ["map_contains_corrupted_strongbox"]=8217, - ["map_contains_creeping_agony"]=8218, - ["map_contains_keepers_of_the_trove_bloodline_pack"]=8219, - ["map_contains_master"]=8220, - ["map_contains_nevalis_monkey"]=8221, - ["map_contains_perandus_boss"]=8222, - ["map_contains_talisman_boss_with_higher_tier"]=8223, - ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=8224, - ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=8224, - ["map_contains_uul_netol_breach"]=8225, - ["map_contains_wealthy_pack"]=8226, - ["map_contains_x_additional_animated_weapon_packs"]=8227, - ["map_contains_x_additional_healing_packs"]=8228, - ["map_contains_x_additional_magic_packs"]=8229, - ["map_contains_x_additional_normal_packs"]=8230, - ["map_contains_x_additional_packs_on_their_own_team"]=8231, - ["map_contains_x_additional_packs_that_convert_on_death"]=8232, + ["map_contains_chayula_breach"]=8219, + ["map_contains_citadel"]=8220, + ["map_contains_cleansed_boss"]=8221, + ["map_contains_corrupted_strongbox"]=8222, + ["map_contains_creeping_agony"]=8223, + ["map_contains_keepers_of_the_trove_bloodline_pack"]=8224, + ["map_contains_master"]=8225, + ["map_contains_nevalis_monkey"]=8226, + ["map_contains_perandus_boss"]=8227, + ["map_contains_talisman_boss_with_higher_tier"]=8228, + ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=8229, + ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=8229, + ["map_contains_uul_netol_breach"]=8230, + ["map_contains_wealthy_pack"]=8231, + ["map_contains_x_additional_animated_weapon_packs"]=8232, + ["map_contains_x_additional_healing_packs"]=8233, + ["map_contains_x_additional_magic_packs"]=8234, + ["map_contains_x_additional_normal_packs"]=8235, + ["map_contains_x_additional_packs_on_their_own_team"]=8236, + ["map_contains_x_additional_packs_that_convert_on_death"]=8237, ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=2012, - ["map_contains_x_additional_poison_packs"]=8233, - ["map_contains_x_additional_rare_packs"]=8234, - ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8236, - ["map_cowards_trial_extra_ghosts"]=8237, - ["map_cowards_trial_extra_oriath_citizens"]=8238, - ["map_cowards_trial_extra_phantasms"]=8239, - ["map_cowards_trial_extra_raging_spirits"]=8240, - ["map_cowards_trial_extra_rhoas"]=8241, - ["map_cowards_trial_extra_skeleton_cannons"]=8242, - ["map_cowards_trial_extra_zombies"]=8243, - ["map_custom_league_damage_taken_+%_final"]=8244, - ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8246, - ["map_damage_+%_per_poison_stack"]=8245, - ["map_damage_taken_+%_from_beyond_monsters"]=8247, - ["map_damage_taken_while_stationary_+%"]=8248, - ["map_damage_while_stationary_+%"]=8249, - ["map_death_and_taxes_boss_drops_additional_currency"]=8250, - ["map_delirium_additional_reward_type_chance_%"]=8251, - ["map_delirium_doodads_+%_final"]=8252, - ["map_delirium_fog_never_dissipates"]=8253, - ["map_delirium_splinter_stack_size_+%"]=8254, - ["map_delve_rules"]=8255, + ["map_contains_x_additional_poison_packs"]=8238, + ["map_contains_x_additional_rare_packs"]=8239, + ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8241, + ["map_cowards_trial_extra_ghosts"]=8242, + ["map_cowards_trial_extra_oriath_citizens"]=8243, + ["map_cowards_trial_extra_phantasms"]=8244, + ["map_cowards_trial_extra_raging_spirits"]=8245, + ["map_cowards_trial_extra_rhoas"]=8246, + ["map_cowards_trial_extra_skeleton_cannons"]=8247, + ["map_cowards_trial_extra_zombies"]=8248, + ["map_custom_league_damage_taken_+%_final"]=8249, + ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8251, + ["map_damage_+%_per_poison_stack"]=8250, + ["map_damage_taken_+%_from_beyond_monsters"]=8252, + ["map_damage_taken_while_stationary_+%"]=8253, + ["map_damage_while_stationary_+%"]=8254, + ["map_death_and_taxes_boss_drops_additional_currency"]=8255, + ["map_delirium_additional_reward_type_chance_%"]=8256, + ["map_delirium_doodads_+%_final"]=8257, + ["map_delirium_fog_never_dissipates"]=8258, + ["map_delirium_splinter_stack_size_+%"]=8259, + ["map_delve_rules"]=8260, ["map_display_area_contains_unbridged_gaps_to_cross"]=2064, - ["map_display_strongbox_monsters_are_enraged"]=8257, + ["map_display_strongbox_monsters_are_enraged"]=8262, ["map_display_unique_boss_drops_X_maps"]=2104, - ["map_divination_card_drop_chance_+%"]=8258, - ["map_doesnt_consume_sextant_use"]=8259, - ["map_downgrade_pack_to_magic_%_chance"]=8260, - ["map_dropped_maps_are_corrupted_with_8_mods"]=8261, - ["map_dropped_maps_are_duplicated_chance_permillage"]=8262, + ["map_divination_card_drop_chance_+%"]=8263, + ["map_doesnt_consume_sextant_use"]=8264, + ["map_downgrade_pack_to_magic_%_chance"]=8265, + ["map_dropped_maps_are_corrupted_with_8_mods"]=8266, + ["map_dropped_maps_are_duplicated_chance_permillage"]=8267, ["map_duplicate_all_rare_monsters"]=2014, - ["map_duplicate_captured_beasts_chance_%"]=8263, + ["map_duplicate_captured_beasts_chance_%"]=8268, ["map_duplicate_essence_monsters_with_shrieking_essence"]=138, - ["map_duplicate_x_rare_monsters"]=8264, - ["map_duplicate_x_synthesised_rare_monsters"]=8265, - ["map_elder_boss_variation"]=8266, - ["map_elder_rare_chance_+%"]=8267, + ["map_duplicate_x_rare_monsters"]=8269, + ["map_duplicate_x_synthesised_rare_monsters"]=8270, + ["map_elder_boss_variation"]=8271, + ["map_elder_rare_chance_+%"]=8272, ["map_elemental_weakness_curse_zones"]=2127, - ["map_endgame_affliction_reward_1"]=8268, - ["map_endgame_affliction_reward_2"]=8269, - ["map_endgame_affliction_reward_3"]=8270, - ["map_endgame_affliction_reward_4"]=8271, - ["map_endgame_affliction_reward_5"]=8272, - ["map_endgame_affliction_reward_6"]=8273, - ["map_endgame_affliction_reward_7"]=8274, - ["map_endgame_affliction_reward_8"]=8275, - ["map_endgame_affliction_reward_9"]=8276, - ["map_endgame_fog_depth"]=8277, + ["map_endgame_affliction_reward_1"]=8273, + ["map_endgame_affliction_reward_2"]=8274, + ["map_endgame_affliction_reward_3"]=8275, + ["map_endgame_affliction_reward_4"]=8276, + ["map_endgame_affliction_reward_5"]=8277, + ["map_endgame_affliction_reward_6"]=8278, + ["map_endgame_affliction_reward_7"]=8279, + ["map_endgame_affliction_reward_8"]=8280, + ["map_endgame_affliction_reward_9"]=8281, + ["map_endgame_fog_depth"]=8282, ["map_enfeeble_curse_zones"]=2123, - ["map_equipment_drops_identified"]=8278, - ["map_essence_abyss_chance_+%"]=8279, + ["map_equipment_drops_identified"]=8283, + ["map_essence_abyss_chance_+%"]=8284, ["map_essence_corruption_cannot_release_monsters"]=130, - ["map_essence_monolith_contains_additional_essence_of_corruption"]=8280, - ["map_essence_monolith_contains_essence_of_corruption_%"]=8281, - ["map_essence_monsters_are_corrupted"]=8282, + ["map_essence_monolith_contains_additional_essence_of_corruption"]=8285, + ["map_essence_monolith_contains_essence_of_corruption_%"]=8286, + ["map_essence_monsters_are_corrupted"]=8287, ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=140, - ["map_essence_monsters_have_additional_essences"]=8283, - ["map_essence_monsters_higher_tier"]=8284, + ["map_essence_monsters_have_additional_essences"]=8288, + ["map_essence_monsters_higher_tier"]=8289, ["map_essences_are_1_tier_higher_chance_%"]=126, ["map_essences_contains_rogue_exiles"]=118, - ["map_expedition2_remnant_generation_has_x_lucky_rolls"]=8285, - ["map_expedition2_remnants_have_at_least_x_slots"]=8286, - ["map_expedition_artifact_quantity_+%"]=8287, - ["map_expedition_chest_double_drops_chance_%"]=8288, - ["map_expedition_chest_marker_count_+"]=8289, - ["map_expedition_common_chest_marker_count_+"]=8290, - ["map_expedition_elite_marker_count_+%"]=8291, - ["map_expedition_encounter_additional_chance_%"]=8292, - ["map_expedition_epic_chest_marker_count_+"]=8293, - ["map_expedition_explosion_radius_+%"]=8294, - ["map_expedition_explosives_+%"]=8295, - ["map_expedition_extra_relic_suffix_chance_%"]=8296, - ["map_expedition_league"]=8297, - ["map_expedition_maximum_placement_distance_+%"]=8298, - ["map_expedition_monster_spawn_with_half_life"]=8299, - ["map_expedition_number_of_monster_markers_+%"]=8300, - ["map_expedition_rare_monsters_+%"]=8301, - ["map_expedition_relic_mod_effect_+%"]=8302, - ["map_expedition_relics_+"]=8303, - ["map_expedition_relics_+%"]=8304, - ["map_expedition_saga_contains_boss"]=8305, - ["map_expedition_twinned_elites"]=8306, - ["map_expedition_uncommon_chest_marker_count_+"]=8307, - ["map_expedition_vendor_reroll_currency_quantity_+%"]=8308, - ["map_expedition_x_extra_relic_suffixes"]=8309, + ["map_expedition2_remnant_generation_has_x_lucky_rolls"]=8290, + ["map_expedition2_remnants_have_at_least_x_slots"]=8291, + ["map_expedition_artifact_quantity_+%"]=8292, + ["map_expedition_chest_double_drops_chance_%"]=8293, + ["map_expedition_chest_marker_count_+"]=8294, + ["map_expedition_common_chest_marker_count_+"]=8295, + ["map_expedition_elite_marker_count_+%"]=8296, + ["map_expedition_encounter_additional_chance_%"]=8297, + ["map_expedition_epic_chest_marker_count_+"]=8298, + ["map_expedition_explosion_radius_+%"]=8299, + ["map_expedition_explosives_+%"]=8300, + ["map_expedition_extra_relic_suffix_chance_%"]=8301, + ["map_expedition_league"]=8302, + ["map_expedition_maximum_placement_distance_+%"]=8303, + ["map_expedition_monster_spawn_with_half_life"]=8304, + ["map_expedition_number_of_monster_markers_+%"]=8305, + ["map_expedition_rare_monsters_+%"]=8306, + ["map_expedition_relic_mod_effect_+%"]=8307, + ["map_expedition_relics_+"]=8308, + ["map_expedition_relics_+%"]=8309, + ["map_expedition_saga_contains_boss"]=8310, + ["map_expedition_twinned_elites"]=8311, + ["map_expedition_uncommon_chest_marker_count_+"]=8312, + ["map_expedition_vendor_reroll_currency_quantity_+%"]=8313, + ["map_expedition_x_extra_relic_suffixes"]=8314, ["map_experience_gain_+%"]=2015, ["map_extra_gold_piles_chance_%"]=2016, - ["map_extra_monoliths"]=8310, - ["map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%"]=8311, - ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8312, - ["map_first_strongbox_contains_x_additional_rare_monsters"]=8313, - ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8314, - ["map_fishy_effect_0"]=8256, - ["map_fishy_effect_1"]=8256, - ["map_fishy_effect_2"]=8256, - ["map_fishy_effect_3"]=8256, + ["map_extra_monoliths"]=8315, + ["map_final_boss_map_key_of_at_least_same_tier_as_current_map_drop_chance_%"]=8316, + ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8317, + ["map_first_strongbox_contains_x_additional_rare_monsters"]=8318, + ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8319, + ["map_fishy_effect_0"]=8261, + ["map_fishy_effect_1"]=8261, + ["map_fishy_effect_2"]=8261, + ["map_fishy_effect_3"]=8261, ["map_fixed_seed"]=2089, - ["map_flask_charges_recovered_per_3_seconds_%"]=8315, - ["map_force_side_area"]=8316, + ["map_flask_charges_recovered_per_3_seconds_%"]=8320, + ["map_force_side_area"]=8321, ["map_force_stone_circle"]=2113, - ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8317, - ["map_gauntlet_unique_monster_life_+%"]=8318, + ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8322, + ["map_gauntlet_unique_monster_life_+%"]=8323, ["map_gold_+%"]=2017, - ["map_grants_players_level_20_dash_skill"]=8319, - ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8320, - ["map_ground_haste_action_speed_+%"]=8321, + ["map_grants_players_level_20_dash_skill"]=8324, + ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8325, + ["map_ground_haste_action_speed_+%"]=8326, ["map_ground_ice"]=2077, ["map_ground_ice_base_magnitude"]=2078, ["map_ground_lightning"]=2079, ["map_ground_lightning_base_magnitude"]=2081, ["map_ground_mana_siphoning"]=2080, ["map_ground_tar_movement_speed_+%"]=2082, - ["map_harbinger_additional_currency_shard_stack_chance_%"]=8322, + ["map_harbinger_additional_currency_shard_stack_chance_%"]=8327, ["map_harbinger_cooldown_speed_+%"]=107, - ["map_harbinger_portal_drops_additional_fragments"]=8323, - ["map_harbingers_drops_additional_currency_shards"]=8324, - ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8325, - ["map_harvest_double_lifeforce_dropped"]=8326, - ["map_harvest_monster_life_+%_final_from_sextant"]=8327, + ["map_harbinger_portal_drops_additional_fragments"]=8328, + ["map_harbingers_drops_additional_currency_shards"]=8329, + ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8330, + ["map_harvest_double_lifeforce_dropped"]=8331, + ["map_harvest_monster_life_+%_final_from_sextant"]=8332, ["map_harvest_seed_t2_upgrade_%_chance"]=127, ["map_harvest_seed_t3_upgrade_%_chance"]=131, - ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8328, + ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8333, ["map_harvest_seeds_are_at_least_t2"]=119, ["map_has_X_seconds_between_waves"]=2205, ["map_has_X_waves_of_monsters"]=2204, - ["map_has_monoliths"]=8329, - ["map_has_x%_quality"]=8330, - ["map_heist_contract_additional_reveals_granted"]=8331, - ["map_heist_contract_chest_no_rewards_%_chance"]=8332, - ["map_heist_contract_npc_items_cannot_drop"]=8333, - ["map_heist_contract_primary_target_value_+%_final"]=8334, - ["map_heist_monster_life_+%_final_from_sextant"]=8335, - ["map_heist_npc_perks_effect_+%_final"]=8336, + ["map_has_monoliths"]=8334, + ["map_has_x%_quality"]=8335, + ["map_heist_contract_additional_reveals_granted"]=8336, + ["map_heist_contract_chest_no_rewards_%_chance"]=8337, + ["map_heist_contract_npc_items_cannot_drop"]=8338, + ["map_heist_contract_primary_target_value_+%_final"]=8339, + ["map_heist_monster_life_+%_final_from_sextant"]=8340, + ["map_heist_npc_perks_effect_+%_final"]=8341, ["map_hellscape_additional_boss"]=1120, ["map_hellscape_blood_consumed_+%_final"]=1102, ["map_hellscape_fire_damage_taken_when_switching"]=1108, @@ -243270,94 +243551,94 @@ return { ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1144, ["map_hellscape_rare_monster_drop_additional_unique_item"]=1145, ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1146, - ["map_hellscaping_speed_+%"]=7154, - ["map_humanoid_monster_potency_+%"]=8337, - ["map_imprisoned_monsters_action_speed_+%"]=8338, - ["map_imprisoned_monsters_damage_+%"]=8339, - ["map_imprisoned_monsters_damage_taken_+%"]=8340, - ["map_invasion_bosses_are_twinned"]=8341, - ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8342, - ["map_invasion_bosses_dropped_items_are_fully_linked"]=8343, - ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8344, + ["map_hellscaping_speed_+%"]=7159, + ["map_humanoid_monster_potency_+%"]=8342, + ["map_imprisoned_monsters_action_speed_+%"]=8343, + ["map_imprisoned_monsters_damage_+%"]=8344, + ["map_imprisoned_monsters_damage_taken_+%"]=8345, + ["map_invasion_bosses_are_twinned"]=8346, + ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8347, + ["map_invasion_bosses_dropped_items_are_fully_linked"]=8348, + ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8349, ["map_invasion_monster_packs"]=2418, - ["map_invasion_monsters_guarded_by_x_magic_packs"]=8345, + ["map_invasion_monsters_guarded_by_x_magic_packs"]=8350, ["map_is_branchy"]=2058, - ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8346, + ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8351, ["map_item_drop_quantity_+%"]=31, ["map_item_drop_rarity_+%"]=32, - ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8347, + ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8352, ["map_item_level_override"]=837, - ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8348, + ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8353, ["map_items_drop_corrupted"]=2800, ["map_items_drop_corrupted_%"]=2801, - ["map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds"]=8349, - ["map_labyrinth_izaro_area_of_effect_+%"]=8350, - ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8351, - ["map_labyrinth_izaro_damage_+%"]=8352, - ["map_labyrinth_izaro_life_+%"]=8353, - ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8354, - ["map_labyrinth_monsters_damage_+%"]=8355, - ["map_labyrinth_monsters_life_+%"]=8356, - ["map_leaguestone_area_contains_x_additional_leaguestones"]=8357, - ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8358, - ["map_leaguestone_contains_warband_leader"]=8359, - ["map_leaguestone_explicit_warband_type_override"]=8360, - ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8361, - ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8362, - ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8363, - ["map_leaguestone_monolith_contains_essence_type"]=8364, - ["map_leaguestone_override_base_num_breaches"]=8365, - ["map_leaguestone_override_base_num_invasion_bosses"]=8366, - ["map_leaguestone_override_base_num_monoliths"]=8367, - ["map_leaguestone_override_base_num_perandus_chests"]=8368, - ["map_leaguestone_override_base_num_prophecy_coins"]=8369, - ["map_leaguestone_override_base_num_rogue_exiles"]=8370, - ["map_leaguestone_override_base_num_shrines"]=8371, - ["map_leaguestone_override_base_num_strongboxes"]=8372, - ["map_leaguestone_override_base_num_talismans"]=8373, - ["map_leaguestone_override_base_num_tormented_spirits"]=8374, - ["map_leaguestone_override_base_num_warband_packs"]=8375, - ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8376, - ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8377, - ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8378, - ["map_leaguestone_shrine_monster_rarity_override"]=8379, - ["map_leaguestone_shrine_override_type"]=8380, - ["map_leaguestone_strongboxes_rarity_override"]=8381, - ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8383, - ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8384, - ["map_leaguestone_x_monsters_spawn_abaxoth"]=8385, - ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8386, - ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8387, - ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8388, - ["map_legion_league_extra_spawns"]=8389, - ["map_legion_league_force_general"]=8390, - ["map_legion_league_force_war_chest"]=8391, - ["map_legion_monster_life_+%_final_from_sextant"]=8392, - ["map_legion_monster_splinter_emblem_drops_duplicated"]=8393, - ["map_level_+"]=8394, - ["map_logbook_expedition_remnants_+"]=8395, - ["map_logbook_expedition_remnants_+%"]=8396, - ["map_logbook_has_at_least_1_expedition2_remnant_with_a_power_rune"]=8397, - ["map_logbook_has_at_least_1_expedition2_remnant_with_at_least_x_slots"]=8398, + ["map_killing_rare_monsters_pauses_delirium_mirror_timer_for_x_seconds"]=8354, + ["map_labyrinth_izaro_area_of_effect_+%"]=8355, + ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8356, + ["map_labyrinth_izaro_damage_+%"]=8357, + ["map_labyrinth_izaro_life_+%"]=8358, + ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8359, + ["map_labyrinth_monsters_damage_+%"]=8360, + ["map_labyrinth_monsters_life_+%"]=8361, + ["map_leaguestone_area_contains_x_additional_leaguestones"]=8362, + ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8363, + ["map_leaguestone_contains_warband_leader"]=8364, + ["map_leaguestone_explicit_warband_type_override"]=8365, + ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8366, + ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8367, + ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8368, + ["map_leaguestone_monolith_contains_essence_type"]=8369, + ["map_leaguestone_override_base_num_breaches"]=8370, + ["map_leaguestone_override_base_num_invasion_bosses"]=8371, + ["map_leaguestone_override_base_num_monoliths"]=8372, + ["map_leaguestone_override_base_num_perandus_chests"]=8373, + ["map_leaguestone_override_base_num_prophecy_coins"]=8374, + ["map_leaguestone_override_base_num_rogue_exiles"]=8375, + ["map_leaguestone_override_base_num_shrines"]=8376, + ["map_leaguestone_override_base_num_strongboxes"]=8377, + ["map_leaguestone_override_base_num_talismans"]=8378, + ["map_leaguestone_override_base_num_tormented_spirits"]=8379, + ["map_leaguestone_override_base_num_warband_packs"]=8380, + ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8381, + ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8382, + ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8383, + ["map_leaguestone_shrine_monster_rarity_override"]=8384, + ["map_leaguestone_shrine_override_type"]=8385, + ["map_leaguestone_strongboxes_rarity_override"]=8386, + ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8388, + ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8389, + ["map_leaguestone_x_monsters_spawn_abaxoth"]=8390, + ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8391, + ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8392, + ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8393, + ["map_legion_league_extra_spawns"]=8394, + ["map_legion_league_force_general"]=8395, + ["map_legion_league_force_war_chest"]=8396, + ["map_legion_monster_life_+%_final_from_sextant"]=8397, + ["map_legion_monster_splinter_emblem_drops_duplicated"]=8398, + ["map_level_+"]=8399, + ["map_logbook_expedition_remnants_+"]=8400, + ["map_logbook_expedition_remnants_+%"]=8401, + ["map_logbook_has_at_least_1_expedition2_remnant_with_a_power_rune"]=8402, + ["map_logbook_has_at_least_1_expedition2_remnant_with_at_least_x_slots"]=8403, ["map_magic_chest_amount_+%"]=2018, - ["map_magic_items_drop_as_normal"]=8399, + ["map_magic_items_drop_as_normal"]=8404, ["map_magic_monster_life_regeneration_rate_per_minute_%"]=3959, - ["map_magic_monster_potency_+%"]=8400, - ["map_magic_monsters_are_maimed"]=8401, - ["map_magic_monsters_damage_taken_+%"]=8402, + ["map_magic_monster_potency_+%"]=8405, + ["map_magic_monsters_are_maimed"]=8406, + ["map_magic_monsters_damage_taken_+%"]=8407, ["map_magic_pack_size_+%"]=2019, - ["map_metamorph_all_metamorphs_have_rewards"]=8403, - ["map_metamorph_boss_drops_additional_itemised_organs"]=8404, - ["map_metamorph_catalyst_drops_duplicated"]=8405, - ["map_metamorph_itemised_boss_min_rewards"]=8406, - ["map_metamorph_itemised_boss_more_difficult"]=8407, - ["map_metamorph_life_+%_final_from_sextant"]=8408, - ["map_metamorphosis_league"]=8409, + ["map_metamorph_all_metamorphs_have_rewards"]=8408, + ["map_metamorph_boss_drops_additional_itemised_organs"]=8409, + ["map_metamorph_catalyst_drops_duplicated"]=8410, + ["map_metamorph_itemised_boss_min_rewards"]=8411, + ["map_metamorph_itemised_boss_more_difficult"]=8412, + ["map_metamorph_life_+%_final_from_sextant"]=8413, + ["map_metamorphosis_league"]=8414, ["map_minimap_revealed"]=2090, - ["map_monolith_chance_%"]=8411, - ["map_monolith_chance_+%"]=8410, - ["map_monster_add_x_grasping_vines_on_hit"]=8426, - ["map_monster_additional_abyssal_monolithic_slug_packs"]=8412, + ["map_monolith_chance_%"]=8416, + ["map_monolith_chance_+%"]=8415, + ["map_monster_add_x_grasping_vines_on_hit"]=8431, + ["map_monster_additional_abyssal_monolithic_slug_packs"]=8417, ["map_monster_additional_baron_packs"]=2020, ["map_monster_additional_beasts_packs"]=2021, ["map_monster_additional_beasts_packs_rare"]=2022, @@ -243365,38 +243646,38 @@ return { ["map_monster_additional_doryani_packs"]=2024, ["map_monster_additional_ezomyte_packs"]=2025, ["map_monster_additional_faridun_packs"]=2026, - ["map_monster_additional_incursion_ChainedBeastBoss_packs"]=8413, - ["map_monster_additional_incursion_SoulCoreQuadrilla_packs"]=8414, - ["map_monster_additional_incursion_SoulcoreFusedSkeleton_packs"]=8415, - ["map_monster_additional_incursion_VaalColossusBoss_packs"]=8416, - ["map_monster_additional_incursion_VaalSentinelBoss_packs"]=8417, - ["map_monster_additional_incursion_VaalSunPriestBoss_packs"]=8418, + ["map_monster_additional_incursion_ChainedBeastBoss_packs"]=8418, + ["map_monster_additional_incursion_SoulCoreQuadrilla_packs"]=8419, + ["map_monster_additional_incursion_SoulcoreFusedSkeleton_packs"]=8420, + ["map_monster_additional_incursion_VaalColossusBoss_packs"]=8421, + ["map_monster_additional_incursion_VaalSentinelBoss_packs"]=8422, + ["map_monster_additional_incursion_VaalSunPriestBoss_packs"]=8423, ["map_monster_additional_perennial_packs"]=2027, - ["map_monster_additional_sanctified_packs"]=8419, + ["map_monster_additional_sanctified_packs"]=8424, ["map_monster_additional_undead_packs"]=2028, ["map_monster_additional_vaal_packs"]=2029, - ["map_monster_and_player_onslaught_effect_+%"]=8420, + ["map_monster_and_player_onslaught_effect_+%"]=8425, ["map_monster_armour_evasion_energy_shield_+%"]=2613, - ["map_monster_attack_cast_and_movement_speed_+%"]=8421, - ["map_monster_beyond_portal_chance_+%"]=8422, - ["map_monster_curse_effect_on_self_+%"]=8423, - ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8424, - ["map_monster_damage_taken_+%_while_possessed"]=8425, + ["map_monster_attack_cast_and_movement_speed_+%"]=8426, + ["map_monster_beyond_portal_chance_+%"]=8427, + ["map_monster_curse_effect_on_self_+%"]=8428, + ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8429, + ["map_monster_damage_taken_+%_while_possessed"]=8430, ["map_monster_drop_higher_level_gear"]=3300, - ["map_monster_item_rarity_+%_final"]=8427, + ["map_monster_item_rarity_+%_final"]=8432, ["map_monster_melee_attacks_apply_random_curses"]=2183, ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2184, ["map_monster_no_drops"]=2191, - ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8428, + ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8433, ["map_monster_skills_chain_X_additional_times"]=2186, - ["map_monster_slain_experience_+%"]=8430, + ["map_monster_slain_experience_+%"]=8435, ["map_monster_tre_+%"]=2030, ["map_monster_unaffected_by_shock"]=2144, ["map_monsters_%_all_damage_to_gain_as_chaos"]=2176, ["map_monsters_%_all_damage_to_gain_as_cold"]=2172, ["map_monsters_%_all_damage_to_gain_as_fire"]=2170, ["map_monsters_%_all_damage_to_gain_as_lightning"]=2174, - ["map_monsters_%_chance_to_inflict_status_ailments"]=8482, + ["map_monsters_%_chance_to_inflict_status_ailments"]=8487, ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2169, ["map_monsters_%_physical_damage_to_convert_to_cold"]=2167, ["map_monsters_%_physical_damage_to_convert_to_fire"]=2166, @@ -243405,195 +243686,195 @@ return { ["map_monsters_%_physical_damage_to_gain_as_cold"]=2173, ["map_monsters_%_physical_damage_to_gain_as_fire"]=2171, ["map_monsters_%_physical_damage_to_gain_as_lightning"]=2175, - ["map_monsters_accuracy_rating_+%"]=8431, - ["map_monsters_action_speed_-%"]=8432, - ["map_monsters_add_endurance_charge_on_hit_%"]=8433, - ["map_monsters_add_frenzy_charge_on_hit_%"]=8434, - ["map_monsters_add_power_charge_on_hit_%"]=8435, - ["map_monsters_additional_chaos_resistance"]=8436, + ["map_monsters_accuracy_rating_+%"]=8436, + ["map_monsters_action_speed_-%"]=8437, + ["map_monsters_add_endurance_charge_on_hit_%"]=8438, + ["map_monsters_add_frenzy_charge_on_hit_%"]=8439, + ["map_monsters_add_power_charge_on_hit_%"]=8440, + ["map_monsters_additional_chaos_resistance"]=8441, ["map_monsters_additional_cold_resistance"]=2161, - ["map_monsters_additional_dexterity_ratio_%_for_evasion"]=8437, - ["map_monsters_additional_elemental_resistance"]=8438, + ["map_monsters_additional_dexterity_ratio_%_for_evasion"]=8442, + ["map_monsters_additional_elemental_resistance"]=8443, ["map_monsters_additional_fire_resistance"]=2160, ["map_monsters_additional_lightning_resistance"]=2162, - ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8439, + ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8444, ["map_monsters_additional_number_of_projecitles"]=2159, ["map_monsters_additional_physical_damage_reduction"]=2163, - ["map_monsters_additional_strength_ratio_%_for_armour"]=8440, - ["map_monsters_ailment_threshold_+%"]=8441, - ["map_monsters_all_damage_can_chill"]=8442, - ["map_monsters_all_damage_can_freeze"]=8443, - ["map_monsters_all_damage_can_ignite"]=8444, - ["map_monsters_all_damage_can_poison"]=8445, - ["map_monsters_all_damage_can_shock"]=8446, - ["map_monsters_always_crit"]=8447, - ["map_monsters_always_hit"]=8448, - ["map_monsters_always_ignite"]=8449, - ["map_monsters_are_converted_on_kill"]=8450, + ["map_monsters_additional_strength_ratio_%_for_armour"]=8445, + ["map_monsters_ailment_threshold_+%"]=8446, + ["map_monsters_all_damage_can_chill"]=8447, + ["map_monsters_all_damage_can_freeze"]=8448, + ["map_monsters_all_damage_can_ignite"]=8449, + ["map_monsters_all_damage_can_poison"]=8450, + ["map_monsters_all_damage_can_shock"]=8451, + ["map_monsters_always_crit"]=8452, + ["map_monsters_always_hit"]=8453, + ["map_monsters_always_ignite"]=8454, + ["map_monsters_are_converted_on_kill"]=8455, ["map_monsters_are_hexproof"]=2189, ["map_monsters_are_immune_to_curses"]=2188, ["map_monsters_area_of_effect_+%"]=2140, - ["map_monsters_armour_break_physical_damage_%_dealt_as_armour_break"]=8451, + ["map_monsters_armour_break_physical_damage_%_dealt_as_armour_break"]=8456, ["map_monsters_attack_speed_+%"]=2155, - ["map_monsters_attacks_inflict_bleeding_on_hit"]=8472, + ["map_monsters_attacks_inflict_bleeding_on_hit"]=8477, ["map_monsters_avoid_ailments_%"]=2145, ["map_monsters_avoid_elemental_ailments_%"]=2146, ["map_monsters_avoid_freeze_and_chill_%"]=2141, ["map_monsters_avoid_ignite_%"]=2142, - ["map_monsters_avoid_poison_bleed_impale_%"]=8452, + ["map_monsters_avoid_poison_bleed_impale_%"]=8457, ["map_monsters_avoid_shock_%"]=2143, - ["map_monsters_base_bleed_duration_+%"]=8453, - ["map_monsters_base_block_%"]=8454, - ["map_monsters_base_chance_to_freeze_%"]=8455, - ["map_monsters_base_chance_to_shock_%"]=8456, - ["map_monsters_base_poison_duration_+%"]=8457, + ["map_monsters_base_bleed_duration_+%"]=8458, + ["map_monsters_base_block_%"]=8459, + ["map_monsters_base_chance_to_freeze_%"]=8460, + ["map_monsters_base_chance_to_shock_%"]=8461, + ["map_monsters_base_poison_duration_+%"]=8462, ["map_monsters_base_self_critical_strike_multiplier_-%"]=3316, ["map_monsters_cannot_be_leeched_from"]=2149, ["map_monsters_cannot_be_stunned"]=2164, - ["map_monsters_cannot_be_taunted"]=8458, + ["map_monsters_cannot_be_taunted"]=8463, ["map_monsters_cast_speed_+%"]=2156, - ["map_monsters_chance_to_blind_on_hit_%"]=8459, - ["map_monsters_chance_to_impale_%"]=8460, - ["map_monsters_chance_to_inflict_bleeding_%"]=8461, - ["map_monsters_chance_to_inflict_brittle_%"]=8462, - ["map_monsters_chance_to_inflict_sapped_%"]=8463, - ["map_monsters_chance_to_poison_on_hit_%"]=8464, - ["map_monsters_chance_to_scorch_%"]=8465, + ["map_monsters_chance_to_blind_on_hit_%"]=8464, + ["map_monsters_chance_to_impale_%"]=8465, + ["map_monsters_chance_to_inflict_bleeding_%"]=8466, + ["map_monsters_chance_to_inflict_brittle_%"]=8467, + ["map_monsters_chance_to_inflict_sapped_%"]=8468, + ["map_monsters_chance_to_poison_on_hit_%"]=8469, + ["map_monsters_chance_to_scorch_%"]=8470, ["map_monsters_critical_strike_chance_+%"]=2147, ["map_monsters_critical_strike_multiplier_+"]=2148, ["map_monsters_curse_effect_+%"]=2190, - ["map_monsters_curse_effect_on_self_+%_final"]=8466, + ["map_monsters_curse_effect_on_self_+%_final"]=8471, ["map_monsters_damage_+%"]=2152, - ["map_monsters_damage_taken_+%"]=8467, + ["map_monsters_damage_taken_+%"]=8472, ["map_monsters_drop_ground_fire_on_death_base_radius"]=2187, - ["map_monsters_drop_no_equipment"]=8468, - ["map_monsters_elemental_ailment_chance_+%"]=8469, - ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8470, + ["map_monsters_drop_no_equipment"]=8473, + ["map_monsters_elemental_ailment_chance_+%"]=8474, + ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8475, ["map_monsters_energy_shield_leech_resistance_permyriad"]=3989, - ["map_monsters_freeze_duration_+%"]=8471, + ["map_monsters_freeze_duration_+%"]=8476, ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2180, ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2179, ["map_monsters_gain_x_power_charges_every_20_seconds"]=2181, - ["map_monsters_global_poison_on_hit"]=8473, + ["map_monsters_global_poison_on_hit"]=8478, ["map_monsters_have_onslaught"]=2153, - ["map_monsters_hit_damage_freeze_multiplier_+%"]=8474, - ["map_monsters_hit_damage_stun_multiplier_+%"]=8475, - ["map_monsters_ignite_chance_+%"]=8476, - ["map_monsters_ignite_duration_+%"]=8477, + ["map_monsters_hit_damage_freeze_multiplier_+%"]=8479, + ["map_monsters_hit_damage_stun_multiplier_+%"]=8480, + ["map_monsters_ignite_chance_+%"]=8481, + ["map_monsters_ignite_duration_+%"]=8482, ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2182, ["map_monsters_life_+%"]=2139, ["map_monsters_life_leech_resistance_permyriad"]=2150, - ["map_monsters_maim_on_hit_%_chance"]=8478, + ["map_monsters_maim_on_hit_%_chance"]=8483, ["map_monsters_mana_leech_resistance_permyriad"]=2151, - ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8479, + ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8484, ["map_monsters_movement_speed_+%"]=2154, - ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8480, - ["map_monsters_penetrate_elemental_resistances_%"]=8481, + ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8485, + ["map_monsters_penetrate_elemental_resistances_%"]=8486, ["map_monsters_physical_damage_%_to_gain_as_random_element"]=2178, ["map_monsters_poison_on_hit"]=2165, - ["map_monsters_reduce_enemy_chaos_resistance_%"]=8483, - ["map_monsters_reduce_enemy_cold_resistance_%"]=8484, - ["map_monsters_reduce_enemy_fire_resistance_%"]=8485, - ["map_monsters_reduce_enemy_lightning_resistance_%"]=8486, + ["map_monsters_reduce_enemy_chaos_resistance_%"]=8488, + ["map_monsters_reduce_enemy_cold_resistance_%"]=8489, + ["map_monsters_reduce_enemy_fire_resistance_%"]=8490, + ["map_monsters_reduce_enemy_lightning_resistance_%"]=8491, ["map_monsters_reflect_%_elemental_damage"]=2158, ["map_monsters_reflect_%_physical_damage"]=2157, ["map_monsters_reflect_curses"]=2185, - ["map_monsters_remove_%_of_mana_on_hit"]=8489, - ["map_monsters_remove_charges_on_hit_%"]=8487, - ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8488, - ["map_monsters_shock_chance_+%"]=8490, - ["map_monsters_shock_effect_+%"]=8491, - ["map_monsters_skill_speed_+%"]=8429, - ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8492, - ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8493, - ["map_monsters_steal_charges"]=8494, - ["map_monsters_stun_threshold_+%"]=8495, - ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8496, - ["map_monsters_unaffected_by_curses"]=8497, - ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8498, - ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8499, - ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8500, - ["map_monstrous_treasure_no_monsters"]=8501, - ["map_movement_velocity_+%_per_poison_stack"]=8502, - ["map_natural_rare_monsters_have_soul_eater"]=8503, - ["map_natural_rare_monsters_have_x_additional_abyssal_modifiers"]=8504, - ["map_nemesis_dropped_items_+"]=8505, - ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8506, - ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8507, - ["map_no_experience"]=8558, - ["map_no_magic_items_drop"]=8508, - ["map_no_rare_items_drop"]=8509, + ["map_monsters_remove_%_of_mana_on_hit"]=8494, + ["map_monsters_remove_charges_on_hit_%"]=8492, + ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8493, + ["map_monsters_shock_chance_+%"]=8495, + ["map_monsters_shock_effect_+%"]=8496, + ["map_monsters_skill_speed_+%"]=8434, + ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8497, + ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8498, + ["map_monsters_steal_charges"]=8499, + ["map_monsters_stun_threshold_+%"]=8500, + ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8501, + ["map_monsters_unaffected_by_curses"]=8502, + ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8503, + ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8504, + ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8505, + ["map_monstrous_treasure_no_monsters"]=8506, + ["map_movement_velocity_+%_per_poison_stack"]=8507, + ["map_natural_rare_monsters_have_soul_eater"]=8508, + ["map_natural_rare_monsters_have_x_additional_abyssal_modifiers"]=8509, + ["map_nemesis_dropped_items_+"]=8510, + ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8511, + ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8512, + ["map_no_experience"]=8563, + ["map_no_magic_items_drop"]=8513, + ["map_no_rare_items_drop"]=8514, ["map_no_refills_in_town"]=2091, - ["map_no_stashes"]=8510, - ["map_no_uniques_drop_randomly"]=8511, - ["map_no_vendors"]=8512, + ["map_no_stashes"]=8515, + ["map_no_uniques_drop_randomly"]=8516, + ["map_no_vendors"]=8517, ["map_non_unique_equipment_drops_as_sell_price"]=2799, - ["map_non_unique_items_drop_normal"]=8513, - ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8514, + ["map_non_unique_items_drop_normal"]=8518, + ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8519, ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2116, - ["map_normal_items_drop_as_magic"]=8515, + ["map_normal_items_drop_as_magic"]=8520, ["map_normal_monster_life_regeneration_rate_per_minute_%"]=3958, - ["map_normal_monster_potency_+%"]=8516, - ["map_nuke_everything"]=8517, - ["map_num_extra_abysses"]=8518, - ["map_num_extra_blights_"]=8519, - ["map_num_extra_gloom_shrines"]=8520, - ["map_num_extra_harbingers"]=8521, + ["map_normal_monster_potency_+%"]=8521, + ["map_nuke_everything"]=8522, + ["map_num_extra_abysses"]=8523, + ["map_num_extra_blights_"]=8524, + ["map_num_extra_gloom_shrines"]=8525, + ["map_num_extra_harbingers"]=8526, ["map_num_extra_invasion_bosses"]=2419, - ["map_num_extra_resonating_shrines"]=8522, + ["map_num_extra_resonating_shrines"]=8527, ["map_num_extra_shrines"]=2107, - ["map_num_extra_stone_circles"]=8523, + ["map_num_extra_stone_circles"]=8528, ["map_num_extra_strongboxes"]=2115, - ["map_number_of_additional_mods"]=8524, - ["map_number_of_additional_prefixes"]=8525, - ["map_number_of_additional_silver_coin_drops"]=8526, - ["map_number_of_additional_suffixes"]=8527, + ["map_number_of_additional_mods"]=8529, + ["map_number_of_additional_prefixes"]=8530, + ["map_number_of_additional_silver_coin_drops"]=8531, + ["map_number_of_additional_suffixes"]=8532, ["map_number_of_harbinger_portals"]=88, - ["map_on_complete_drop_x_additional_maps"]=8528, - ["map_owner_sulphite_gained_+%"]=8529, - ["map_packs_are_abomination_monsters"]=8530, + ["map_on_complete_drop_x_additional_maps"]=8533, + ["map_owner_sulphite_gained_+%"]=8534, + ["map_packs_are_abomination_monsters"]=8535, ["map_packs_are_animals"]=2097, ["map_packs_are_bandits"]=2095, - ["map_packs_are_blackguards"]=8531, + ["map_packs_are_blackguards"]=8536, ["map_packs_are_demons"]=2098, - ["map_packs_are_ghosts"]=8532, + ["map_packs_are_ghosts"]=8537, ["map_packs_are_goatmen"]=2096, ["map_packs_are_humanoids"]=2099, - ["map_packs_are_kitava"]=8533, - ["map_packs_are_lunaris"]=8534, + ["map_packs_are_kitava"]=8538, + ["map_packs_are_lunaris"]=8539, ["map_packs_are_sea_witches_and_spawn"]=2100, ["map_packs_are_skeletons"]=2094, - ["map_packs_are_solaris"]=8535, - ["map_packs_are_spiders"]=8536, + ["map_packs_are_solaris"]=8540, + ["map_packs_are_spiders"]=8541, ["map_packs_are_str_mission_totems"]=2093, ["map_packs_are_totems"]=2092, ["map_packs_are_undead_and_necromancers"]=2101, - ["map_packs_are_vaal"]=8537, + ["map_packs_are_vaal"]=8542, ["map_packs_fire_projectiles"]=2102, ["map_packs_have_pop_up_traps"]=3951, - ["map_perandus_guards_are_rare"]=8538, - ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8539, - ["map_player_accuracy_rating_+%_final"]=8540, + ["map_perandus_guards_are_rare"]=8543, + ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8544, + ["map_player_accuracy_rating_+%_final"]=8545, ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1115, - ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8541, + ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8546, ["map_player_base_chaos_damage_taken_per_minute"]=2117, ["map_player_block_chance_%_in_hellscape"]=1116, - ["map_player_buff_time_passed_+%_only_buff_category"]=8542, - ["map_player_cannot_block_attacks"]=8543, + ["map_player_buff_time_passed_+%_only_buff_category"]=8547, + ["map_player_cannot_block_attacks"]=8548, ["map_player_cannot_expose"]=2119, - ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8544, - ["map_player_charges_gained_+%"]=8545, - ["map_player_cooldown_speed_+%_final"]=8546, + ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8549, + ["map_player_charges_gained_+%"]=8550, + ["map_player_cooldown_speed_+%_final"]=8551, ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2936, - ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8547, - ["map_player_curse_effect_on_self_+%"]=8548, - ["map_player_damage_+%_vs_breach_monsters"]=8549, - ["map_player_damage_taken_+%_vs_breach_monsters"]=8550, - ["map_player_damage_taken_+%_while_rampaging"]=8551, - ["map_player_death_mark_on_rare_unique_kill_ms"]=8552, - ["map_player_disable_soul_gain_prevention"]=8553, + ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8552, + ["map_player_curse_effect_on_self_+%"]=8553, + ["map_player_damage_+%_vs_breach_monsters"]=8554, + ["map_player_damage_taken_+%_vs_breach_monsters"]=8555, + ["map_player_damage_taken_+%_while_rampaging"]=8556, + ["map_player_death_mark_on_rare_unique_kill_ms"]=8557, + ["map_player_disable_soul_gain_prevention"]=8558, ["map_player_es_loss_per_second_in_hellscape"]=1117, - ["map_player_flask_recovery_is_instant"]=8554, + ["map_player_flask_recovery_is_instant"]=8559, ["map_player_global_armour_evasion_energy_shield_+%_final_from_sanctum_boon"]=2614, ["map_player_has_blood_magic_keystone"]=2118, ["map_player_has_chaos_inoculation_keystone"]=2120, @@ -243607,526 +243888,526 @@ return { ["map_player_has_level_X_silence"]=2133, ["map_player_has_level_X_temporal_chains"]=2124, ["map_player_has_level_X_vulnerability"]=2121, - ["map_player_has_random_level_X_curse_every_10_seconds"]=8555, - ["map_player_life_and_es_recovery_speed_+%_final"]=8556, + ["map_player_has_random_level_X_curse_every_10_seconds"]=8560, + ["map_player_life_and_es_recovery_speed_+%_final"]=8561, ["map_player_life_loss_per_second_in_hellscape"]=1118, - ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8557, - ["map_player_lose_no_experience_on_death"]=8558, - ["map_player_maximum_life_and_es_+%_final_from_sanctum_curse"]=8559, - ["map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse"]=8560, + ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8562, + ["map_player_lose_no_experience_on_death"]=8563, + ["map_player_maximum_life_and_es_+%_final_from_sanctum_curse"]=8564, + ["map_player_movement_speed_+%_final_if_damaged_by_a_hit_recently_from_sanctum_curse"]=8565, ["map_player_movement_speed_+%_final_in_hellscape"]=1119, - ["map_player_movement_velocity_+%"]=8561, + ["map_player_movement_velocity_+%"]=8566, ["map_player_no_regeneration"]=2134, - ["map_player_non_curse_aura_effect_+%"]=8562, - ["map_player_onslaught_on_kill_%"]=8563, + ["map_player_non_curse_aura_effect_+%"]=8567, + ["map_player_onslaught_on_kill_%"]=8568, ["map_player_projectile_damage_+%_final"]=2137, - ["map_player_shrine_buff_effect_on_self_+%"]=8564, - ["map_player_shrine_effect_duration_+%"]=8565, - ["map_player_soul_eater_souls_stolen_on_rare_kill"]=8566, - ["map_player_speed_+%_final_per_recent_skill_use"]=8567, + ["map_player_shrine_buff_effect_on_self_+%"]=8569, + ["map_player_shrine_effect_duration_+%"]=8570, + ["map_player_soul_eater_souls_stolen_on_rare_kill"]=8571, + ["map_player_speed_+%_final_per_recent_skill_use"]=8572, ["map_player_status_recovery_speed_+%"]=2136, ["map_players_additional_number_of_projectiles"]=2159, - ["map_players_and_monsters_chaos_damage_taken_+%"]=8568, - ["map_players_and_monsters_cold_damage_taken_+%"]=8569, - ["map_players_and_monsters_critical_strike_chance_+%"]=8570, - ["map_players_and_monsters_curses_are_reflected"]=8571, - ["map_players_and_monsters_damage_+%_per_curse"]=8572, - ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8573, - ["map_players_and_monsters_fire_damage_taken_+%"]=8574, - ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8575, - ["map_players_and_monsters_have_resolute_technique"]=8576, - ["map_players_and_monsters_lightning_damage_taken_+%"]=8577, - ["map_players_and_monsters_movement_speed_+%"]=8578, - ["map_players_and_monsters_physical_damage_taken_+%"]=8579, - ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8580, - ["map_players_armour_+%_final"]=8581, - ["map_players_block_chance_+%"]=8582, - ["map_players_cannot_gain_endurance_charges"]=8583, - ["map_players_cannot_gain_flask_charges"]=8584, - ["map_players_cannot_gain_frenzy_charges"]=8585, - ["map_players_cannot_gain_power_charges"]=8586, - ["map_players_cannot_take_reflected_damage"]=8587, - ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8588, - ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8589, - ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8590, - ["map_players_gain_onslaught_during_flask_effect"]=8591, + ["map_players_and_monsters_chaos_damage_taken_+%"]=8573, + ["map_players_and_monsters_cold_damage_taken_+%"]=8574, + ["map_players_and_monsters_critical_strike_chance_+%"]=8575, + ["map_players_and_monsters_curses_are_reflected"]=8576, + ["map_players_and_monsters_damage_+%_per_curse"]=8577, + ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8578, + ["map_players_and_monsters_fire_damage_taken_+%"]=8579, + ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8580, + ["map_players_and_monsters_have_resolute_technique"]=8581, + ["map_players_and_monsters_lightning_damage_taken_+%"]=8582, + ["map_players_and_monsters_movement_speed_+%"]=8583, + ["map_players_and_monsters_physical_damage_taken_+%"]=8584, + ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8585, + ["map_players_armour_+%_final"]=8586, + ["map_players_block_chance_+%"]=8587, + ["map_players_cannot_gain_endurance_charges"]=8588, + ["map_players_cannot_gain_flask_charges"]=8589, + ["map_players_cannot_gain_frenzy_charges"]=8590, + ["map_players_cannot_gain_power_charges"]=8591, + ["map_players_cannot_take_reflected_damage"]=8592, + ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8593, + ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8594, + ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8595, + ["map_players_gain_onslaught_during_flask_effect"]=8596, ["map_players_gain_rampage_stacks"]=2423, - ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8592, + ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8597, ["map_players_gain_rare_monster_mods_on_kill_ms"]=3145, ["map_players_gain_soul_eater_on_rare_kill_ms"]=3147, - ["map_players_have_decay_rarity_buff"]=8593, - ["map_players_have_point_blank"]=8594, - ["map_players_movement_skills_cooldown_speed_+%"]=8595, - ["map_players_movement_speed_+%"]=8596, - ["map_players_no_regeneration_including_es"]=8597, - ["map_players_resist_all_%"]=8598, - ["map_players_skill_area_of_effect_+%_final"]=8599, - ["map_portals_do_not_expire"]=8600, - ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8601, - ["map_possessed_monsters_drop_map_chance_%"]=8602, - ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8603, - ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8604, - ["map_possessed_monsters_drop_unique_chance_%"]=8605, - ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8606, - ["map_prefix_mod_effect_+%_final"]=8607, + ["map_players_have_decay_rarity_buff"]=8598, + ["map_players_have_point_blank"]=8599, + ["map_players_movement_skills_cooldown_speed_+%"]=8600, + ["map_players_movement_speed_+%"]=8601, + ["map_players_no_regeneration_including_es"]=8602, + ["map_players_resist_all_%"]=8603, + ["map_players_skill_area_of_effect_+%_final"]=8604, + ["map_portals_do_not_expire"]=8605, + ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8606, + ["map_possessed_monsters_drop_map_chance_%"]=8607, + ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8608, + ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8609, + ["map_possessed_monsters_drop_unique_chance_%"]=8610, + ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8611, + ["map_prefix_mod_effect_+%_final"]=8612, ["map_projectile_speed_+%"]=2138, - ["map_rampage_time_+%"]=8608, - ["map_random_unique_monster_is_possessed"]=8609, - ["map_random_zana_mod"]=8610, - ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8611, - ["map_rare_breach_monsters_drop_additional_shards"]=8612, + ["map_rampage_time_+%"]=8613, + ["map_random_unique_monster_is_possessed"]=8614, + ["map_random_zana_mod"]=8615, + ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8616, + ["map_rare_breach_monsters_drop_additional_shards"]=8617, ["map_rare_chest_amount_+%"]=2031, - ["map_rare_monster_additional_modifier_chance_%_with_rollover"]=8613, + ["map_rare_monster_additional_modifier_chance_%_with_rollover"]=8618, ["map_rare_monster_life_regeneration_rate_per_minute_%"]=3960, - ["map_rare_monster_num_additional_modifiers"]=8614, - ["map_rare_monster_potency_+%"]=8615, - ["map_rare_monsters_are_hindered"]=8616, - ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8617, - ["map_rare_monsters_drop_x_additional_rare_items"]=8618, - ["map_rare_monsters_have_inner_treasure"]=8619, - ["map_reliquary_set"]=8620, - ["map_ritual_additional_reward_rerolls"]=8621, - ["map_ritual_contains_alphas_howl"]=8622, - ["map_ritual_contains_astramentis"]=8623, - ["map_ritual_contains_chaos_orbs"]=8624, - ["map_ritual_contains_defiance_of_destiny"]=8625, - ["map_ritual_contains_divine_orbs"]=8626, - ["map_ritual_contains_dream_fragments"]=8627, - ["map_ritual_contains_exalted_orbs"]=8628, - ["map_ritual_contains_greater_augmentation"]=8629, - ["map_ritual_contains_greater_chaos"]=8630, - ["map_ritual_contains_greater_exalt"]=8631, - ["map_ritual_contains_greater_omen_annulment"]=8632, - ["map_ritual_contains_greater_regal"]=8633, - ["map_ritual_contains_greater_transmutation"]=8634, - ["map_ritual_contains_headhunter"]=8635, - ["map_ritual_contains_kalandras_touch"]=8636, - ["map_ritual_contains_mageblood"]=8637, - ["map_ritual_contains_omen_amelioration"]=8638, - ["map_ritual_contains_omen_blessed"]=8639, - ["map_ritual_contains_omen_chance"]=8640, - ["map_ritual_contains_omen_corruption"]=8641, - ["map_ritual_contains_omen_dextral_annulment"]=8642, - ["map_ritual_contains_omen_dextral_crystallisation"]=8643, - ["map_ritual_contains_omen_dextral_erasure"]=8644, - ["map_ritual_contains_omen_dextral_exaltation"]=8645, - ["map_ritual_contains_omen_sanctification"]=8646, - ["map_ritual_contains_omen_sinistral_annulment"]=8647, - ["map_ritual_contains_omen_sinistral_crystallisation"]=8648, - ["map_ritual_contains_omen_sinistral_erasure"]=8649, - ["map_ritual_contains_omen_sinistral_exaltation"]=8650, - ["map_ritual_contains_omen_whittling"]=8651, - ["map_ritual_contains_orbs_of_annulment"]=8652, - ["map_ritual_contains_orbs_of_chance"]=8653, - ["map_ritual_contains_original_sin"]=8654, - ["map_ritual_contains_perfect_augmentation"]=8655, - ["map_ritual_contains_perfect_chaos"]=8656, - ["map_ritual_contains_perfect_exalt"]=8657, - ["map_ritual_contains_perfect_regal"]=8658, - ["map_ritual_contains_perfect_transmutation"]=8659, - ["map_ritual_contains_queen_of_the_forest"]=8660, - ["map_ritual_contains_yoke_of_suffering"]=8661, - ["map_ritual_defer_reward_tribute_cost_+%"]=8662, - ["map_ritual_deferred_rewards_are_offered_again_+%_sooner"]=8663, - ["map_ritual_magic_monsters_+%"]=8664, - ["map_ritual_number_of_free_rerolls"]=8665, - ["map_ritual_offered_and_defer_rewards_tribute_cost_+%"]=8666, - ["map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute"]=8667, - ["map_ritual_omen_chance_+%"]=8668, - ["map_ritual_rare_monsters_+%"]=8669, - ["map_ritual_rewards_reroll_cost_+%_final"]=8670, - ["map_ritual_tribute_+%"]=8671, - ["map_ritual_uber_rune_type_weighting_+%"]=8672, - ["map_ritual_unlimited_reward_rerolls"]=8673, - ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8674, - ["map_rogue_exile_chance_%"]=8676, - ["map_rogue_exile_chance_+%"]=8675, - ["map_rogue_exile_drop_skill_gem_with_quality"]=8677, - ["map_rogue_exiles_are_doubled"]=8678, - ["map_rogue_exiles_damage_+%"]=8679, - ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8680, - ["map_rogue_exiles_drop_x_additional_jewels"]=8681, - ["map_rogue_exiles_dropped_items_are_corrupted"]=8682, - ["map_rogue_exiles_dropped_items_are_duplicated"]=8683, - ["map_rogue_exiles_dropped_items_are_fully_linked"]=8684, - ["map_rogue_exiles_maximum_life_+%"]=8685, - ["map_shaper_rare_chance_+%"]=8686, - ["map_shrine_chance_%"]=8688, - ["map_shrine_chance_+%"]=8687, - ["map_shrine_monster_life_+%_final"]=8689, + ["map_rare_monster_num_additional_modifiers"]=8619, + ["map_rare_monster_potency_+%"]=8620, + ["map_rare_monsters_are_hindered"]=8621, + ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8622, + ["map_rare_monsters_drop_x_additional_rare_items"]=8623, + ["map_rare_monsters_have_inner_treasure"]=8624, + ["map_reliquary_set"]=8625, + ["map_ritual_additional_reward_rerolls"]=8626, + ["map_ritual_contains_alphas_howl"]=8627, + ["map_ritual_contains_astramentis"]=8628, + ["map_ritual_contains_chaos_orbs"]=8629, + ["map_ritual_contains_defiance_of_destiny"]=8630, + ["map_ritual_contains_divine_orbs"]=8631, + ["map_ritual_contains_dream_fragments"]=8632, + ["map_ritual_contains_exalted_orbs"]=8633, + ["map_ritual_contains_greater_augmentation"]=8634, + ["map_ritual_contains_greater_chaos"]=8635, + ["map_ritual_contains_greater_exalt"]=8636, + ["map_ritual_contains_greater_omen_annulment"]=8637, + ["map_ritual_contains_greater_regal"]=8638, + ["map_ritual_contains_greater_transmutation"]=8639, + ["map_ritual_contains_headhunter"]=8640, + ["map_ritual_contains_kalandras_touch"]=8641, + ["map_ritual_contains_mageblood"]=8642, + ["map_ritual_contains_omen_amelioration"]=8643, + ["map_ritual_contains_omen_blessed"]=8644, + ["map_ritual_contains_omen_chance"]=8645, + ["map_ritual_contains_omen_corruption"]=8646, + ["map_ritual_contains_omen_dextral_annulment"]=8647, + ["map_ritual_contains_omen_dextral_crystallisation"]=8648, + ["map_ritual_contains_omen_dextral_erasure"]=8649, + ["map_ritual_contains_omen_dextral_exaltation"]=8650, + ["map_ritual_contains_omen_sanctification"]=8651, + ["map_ritual_contains_omen_sinistral_annulment"]=8652, + ["map_ritual_contains_omen_sinistral_crystallisation"]=8653, + ["map_ritual_contains_omen_sinistral_erasure"]=8654, + ["map_ritual_contains_omen_sinistral_exaltation"]=8655, + ["map_ritual_contains_omen_whittling"]=8656, + ["map_ritual_contains_orbs_of_annulment"]=8657, + ["map_ritual_contains_orbs_of_chance"]=8658, + ["map_ritual_contains_original_sin"]=8659, + ["map_ritual_contains_perfect_augmentation"]=8660, + ["map_ritual_contains_perfect_chaos"]=8661, + ["map_ritual_contains_perfect_exalt"]=8662, + ["map_ritual_contains_perfect_regal"]=8663, + ["map_ritual_contains_perfect_transmutation"]=8664, + ["map_ritual_contains_queen_of_the_forest"]=8665, + ["map_ritual_contains_yoke_of_suffering"]=8666, + ["map_ritual_defer_reward_tribute_cost_+%"]=8667, + ["map_ritual_deferred_rewards_are_offered_again_+%_sooner"]=8668, + ["map_ritual_magic_monsters_+%"]=8669, + ["map_ritual_number_of_free_rerolls"]=8670, + ["map_ritual_offered_and_defer_rewards_tribute_cost_+%"]=8671, + ["map_ritual_offered_rewards_from_rerolls_have_permyriad_chance_to_cost_no_tribute"]=8672, + ["map_ritual_omen_chance_+%"]=8673, + ["map_ritual_rare_monsters_+%"]=8674, + ["map_ritual_rewards_reroll_cost_+%_final"]=8675, + ["map_ritual_tribute_+%"]=8676, + ["map_ritual_uber_rune_type_weighting_+%"]=8677, + ["map_ritual_unlimited_reward_rerolls"]=8678, + ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8679, + ["map_rogue_exile_chance_%"]=8681, + ["map_rogue_exile_chance_+%"]=8680, + ["map_rogue_exile_drop_skill_gem_with_quality"]=8682, + ["map_rogue_exiles_are_doubled"]=8683, + ["map_rogue_exiles_damage_+%"]=8684, + ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8685, + ["map_rogue_exiles_drop_x_additional_jewels"]=8686, + ["map_rogue_exiles_dropped_items_are_corrupted"]=8687, + ["map_rogue_exiles_dropped_items_are_duplicated"]=8688, + ["map_rogue_exiles_dropped_items_are_fully_linked"]=8689, + ["map_rogue_exiles_maximum_life_+%"]=8690, + ["map_shaper_rare_chance_+%"]=8691, + ["map_shrine_chance_%"]=8693, + ["map_shrine_chance_+%"]=8692, + ["map_shrine_monster_life_+%_final"]=8694, ["map_shrines_are_darkshrines"]=2108, - ["map_shrines_drop_x_currency_items_on_activation"]=8690, - ["map_shrines_grant_a_random_additional_effect"]=8691, - ["map_simulacrum_reward_level_+"]=8692, + ["map_shrines_drop_x_currency_items_on_activation"]=8695, + ["map_shrines_grant_a_random_additional_effect"]=8696, + ["map_simulacrum_reward_level_+"]=8697, ["map_size_+%"]=2048, - ["map_spawn_abysses"]=8693, - ["map_spawn_affliction_mirror"]=8694, - ["map_spawn_bestiary_encounters"]=8695, + ["map_spawn_abysses"]=8698, + ["map_spawn_affliction_mirror"]=8699, + ["map_spawn_bestiary_encounters"]=8700, ["map_spawn_betrayals"]=2417, - ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8696, - ["map_spawn_cadiro_%_chance"]=8697, + ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8701, + ["map_spawn_cadiro_%_chance"]=8702, ["map_spawn_exile_per_area_%"]=2414, ["map_spawn_extra_exiles"]=2105, - ["map_spawn_extra_perandus_chests"]=8698, + ["map_spawn_extra_perandus_chests"]=8703, ["map_spawn_extra_talismans"]=2112, ["map_spawn_extra_torment_spirits"]=2114, ["map_spawn_extra_warbands"]=2106, ["map_spawn_harbingers"]=2109, - ["map_spawn_heist_smugglers_cache"]=8699, - ["map_spawn_incursion_encounters"]=8700, + ["map_spawn_heist_smugglers_cache"]=8704, + ["map_spawn_incursion_encounters"]=8705, ["map_spawn_perandus_chests"]=2111, ["map_spawn_talismans"]=2110, ["map_spawn_tormented_spirits"]=2420, ["map_spawn_two_bosses"]=2192, - ["map_spawn_x_additional_heist_smugglers_caches"]=8701, - ["map_spawn_x_random_map_bosses"]=8702, - ["map_stone_circle_chance_+%"]=8703, - ["map_storm_area_of_effect_+%"]=8704, + ["map_spawn_x_additional_heist_smugglers_caches"]=8706, + ["map_spawn_x_random_map_bosses"]=8707, + ["map_stone_circle_chance_+%"]=8708, + ["map_storm_area_of_effect_+%"]=8709, ["map_strongbox_chain_length"]=108, - ["map_strongbox_chance_%"]=8705, - ["map_strongbox_chance_+%"]=8706, - ["map_strongbox_items_dropped_are_mirrored"]=8707, - ["map_strongbox_monsters_attack_speed_+%"]=8708, + ["map_strongbox_chance_%"]=8710, + ["map_strongbox_chance_+%"]=8711, + ["map_strongbox_items_dropped_are_mirrored"]=8712, + ["map_strongbox_monsters_attack_speed_+%"]=8713, ["map_strongbox_monsters_damage_+%"]=139, - ["map_strongbox_monsters_item_quantity_+%"]=8709, + ["map_strongbox_monsters_item_quantity_+%"]=8714, ["map_strongbox_monsters_life_+%"]=132, ["map_strongboxes_additional_pack_chance_%"]=128, - ["map_strongboxes_are_corrupted"]=8710, - ["map_strongboxes_at_least_rare"]=8711, - ["map_strongboxes_drop_x_additional_rare_items"]=8712, - ["map_strongboxes_minimum_rarity"]=8713, - ["map_strongboxes_vaal_orb_drop_chance_%"]=8382, - ["map_suffix_mod_effect_+%_final"]=8714, - ["map_synthesis_league"]=8715, - ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8716, - ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8717, - ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8718, - ["map_synthesis_spawn_additional_magic_ambush_chest"]=8719, - ["map_synthesis_spawn_additional_normal_ambush_chest"]=8720, - ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8721, - ["map_synthesis_spawn_additional_rare_ambush_chest"]=8722, - ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8723, - ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8724, - ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8725, - ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8726, - ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8727, - ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8728, - ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8729, - ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8730, - ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8731, - ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8732, - ["map_synthesised_magic_monster_drop_additional_currency"]=8733, - ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8734, - ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8735, - ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8736, - ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8737, - ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8738, - ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8739, - ["map_synthesised_magic_monster_map_drop_chance_+%"]=8740, - ["map_synthesised_magic_monster_slain_experience_+%"]=8741, - ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8742, - ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8743, - ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8744, - ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8745, - ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8746, - ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8747, - ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8748, - ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8749, - ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8750, - ["map_synthesised_monster_dropped_item_quantity_+%"]=8751, - ["map_synthesised_monster_dropped_item_rarity_+%"]=8752, - ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8753, - ["map_synthesised_monster_items_drop_corrupted_%"]=8754, - ["map_synthesised_monster_map_drop_chance_+%"]=8755, - ["map_synthesised_monster_pack_size_+%"]=8756, - ["map_synthesised_monster_slain_experience_+%"]=8757, - ["map_synthesised_monster_unique_item_drop_chance_+%"]=8758, - ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8759, - ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8760, - ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8761, - ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8762, - ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8763, - ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8764, - ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8765, - ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8766, - ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8767, - ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8768, - ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8769, - ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8770, - ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8771, - ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8772, - ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8773, - ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8774, - ["map_synthesised_rare_monster_drop_additional_currency"]=8775, - ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8776, - ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8777, - ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8778, - ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8779, - ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8780, - ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8781, - ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8782, - ["map_synthesised_rare_monster_map_drop_chance_+%"]=8783, - ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8784, - ["map_synthesised_rare_monster_slain_experience_+%"]=8785, - ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8786, - ["map_talismans_dropped_as_rare"]=8787, - ["map_talismans_higher_tier"]=8788, - ["map_tempest_area_of_effect_+%_visible"]=8789, + ["map_strongboxes_are_corrupted"]=8715, + ["map_strongboxes_at_least_rare"]=8716, + ["map_strongboxes_drop_x_additional_rare_items"]=8717, + ["map_strongboxes_minimum_rarity"]=8718, + ["map_strongboxes_vaal_orb_drop_chance_%"]=8387, + ["map_suffix_mod_effect_+%_final"]=8719, + ["map_synthesis_league"]=8720, + ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8721, + ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8722, + ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8723, + ["map_synthesis_spawn_additional_magic_ambush_chest"]=8724, + ["map_synthesis_spawn_additional_normal_ambush_chest"]=8725, + ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8726, + ["map_synthesis_spawn_additional_rare_ambush_chest"]=8727, + ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8728, + ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8729, + ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8730, + ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8731, + ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8732, + ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8733, + ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8734, + ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8735, + ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8736, + ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8737, + ["map_synthesised_magic_monster_drop_additional_currency"]=8738, + ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8739, + ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8740, + ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8741, + ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8742, + ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8743, + ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8744, + ["map_synthesised_magic_monster_map_drop_chance_+%"]=8745, + ["map_synthesised_magic_monster_slain_experience_+%"]=8746, + ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8747, + ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8748, + ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8749, + ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8750, + ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8751, + ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8752, + ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8753, + ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8754, + ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8755, + ["map_synthesised_monster_dropped_item_quantity_+%"]=8756, + ["map_synthesised_monster_dropped_item_rarity_+%"]=8757, + ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8758, + ["map_synthesised_monster_items_drop_corrupted_%"]=8759, + ["map_synthesised_monster_map_drop_chance_+%"]=8760, + ["map_synthesised_monster_pack_size_+%"]=8761, + ["map_synthesised_monster_slain_experience_+%"]=8762, + ["map_synthesised_monster_unique_item_drop_chance_+%"]=8763, + ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8764, + ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8765, + ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8766, + ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8767, + ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8768, + ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8769, + ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8770, + ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8771, + ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8772, + ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8773, + ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8774, + ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8775, + ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8776, + ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8777, + ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8778, + ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8779, + ["map_synthesised_rare_monster_drop_additional_currency"]=8780, + ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8781, + ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8782, + ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8783, + ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8784, + ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8785, + ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8786, + ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8787, + ["map_synthesised_rare_monster_map_drop_chance_+%"]=8788, + ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8789, + ["map_synthesised_rare_monster_slain_experience_+%"]=8790, + ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8791, + ["map_talismans_dropped_as_rare"]=8792, + ["map_talismans_higher_tier"]=8793, + ["map_tempest_area_of_effect_+%_visible"]=8794, ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2088, ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2084, - ["map_tempest_corruption_weight"]=8790, + ["map_tempest_corruption_weight"]=8795, ["map_tempest_display_prefix"]=33, ["map_tempest_display_suffix"]=34, - ["map_tempest_frequency_+%"]=8791, + ["map_tempest_frequency_+%"]=8796, ["map_tempest_ground_ice"]=2085, ["map_tempest_ground_lightning"]=2086, ["map_tempest_ground_tar_movement_speed_+%"]=2087, - ["map_tempest_radiant_weight"]=8792, + ["map_tempest_radiant_weight"]=8797, ["map_temporal_chains_curse_zones"]=2125, - ["map_tormented_spirit_chance_%"]=8793, - ["map_tormented_spirit_chance_+%"]=8794, - ["map_tormented_spirits_drop_x_additional_rare_items"]=8795, - ["map_tormented_spirits_duration_+%"]=8796, - ["map_tormented_spirits_movement_speed_+%"]=8797, - ["map_tower_augment_quantity_+%"]=8798, - ["map_uber_map_player_damage_cycle"]=8799, - ["map_unique_boss_drops_divination_cards"]=8800, - ["map_unique_boss_num_additional_modifiers"]=8801, - ["map_unique_item_drop_chance_+%"]=8802, - ["map_unique_monster_num_additional_modifiers"]=8803, - ["map_unique_monster_potency_+%"]=8804, - ["map_unique_monsters_drop_corrupted_items"]=8805, - ["map_upgrade_pack_to_magic_%_chance"]=8806, - ["map_upgrade_pack_to_rare_%_chance"]=8807, - ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8808, - ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8809, - ["map_vaal_monster_items_drop_corrupted_%"]=8810, - ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8811, - ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8812, - ["map_vaal_temple_spawn_additional_vaal_vessels"]=8813, - ["map_vaal_vessel_drop_X_divination_cards"]=8814, - ["map_vaal_vessel_drop_X_fossils"]=8815, - ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8816, - ["map_vaal_vessel_drop_X_mortal_fragments"]=8817, - ["map_vaal_vessel_drop_X_prophecies"]=8818, - ["map_vaal_vessel_drop_X_rare_temple_items"]=8819, - ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8820, - ["map_vaal_vessel_drop_X_vaal_orbs"]=8821, - ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8822, - ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8823, - ["map_vaal_vessel_item_drop_quantity_+%"]=8824, - ["map_vaal_vessel_item_drop_rarity_+%"]=8825, - ["map_verisium_drop_chance_+%"]=8826, - ["map_warbands_packs_have_additional_elites"]=8827, - ["map_warbands_packs_have_additional_grunts"]=8828, - ["map_warbands_packs_have_additional_supports"]=8829, - ["map_watchstone_additional_packs_of_elder_monsters"]=8830, - ["map_watchstone_additional_packs_of_shaper_monsters"]=8831, - ["map_watchstone_monsters_damage_+%_final"]=8832, - ["map_watchstone_monsters_life_+%_final"]=8833, + ["map_tormented_spirit_chance_%"]=8798, + ["map_tormented_spirit_chance_+%"]=8799, + ["map_tormented_spirits_drop_x_additional_rare_items"]=8800, + ["map_tormented_spirits_duration_+%"]=8801, + ["map_tormented_spirits_movement_speed_+%"]=8802, + ["map_tower_augment_quantity_+%"]=8803, + ["map_uber_map_player_damage_cycle"]=8804, + ["map_unique_boss_drops_divination_cards"]=8805, + ["map_unique_boss_num_additional_modifiers"]=8806, + ["map_unique_item_drop_chance_+%"]=8807, + ["map_unique_monster_num_additional_modifiers"]=8808, + ["map_unique_monster_potency_+%"]=8809, + ["map_unique_monsters_drop_corrupted_items"]=8810, + ["map_upgrade_pack_to_magic_%_chance"]=8811, + ["map_upgrade_pack_to_rare_%_chance"]=8812, + ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8813, + ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8814, + ["map_vaal_monster_items_drop_corrupted_%"]=8815, + ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8816, + ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8817, + ["map_vaal_temple_spawn_additional_vaal_vessels"]=8818, + ["map_vaal_vessel_drop_X_divination_cards"]=8819, + ["map_vaal_vessel_drop_X_fossils"]=8820, + ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8821, + ["map_vaal_vessel_drop_X_mortal_fragments"]=8822, + ["map_vaal_vessel_drop_X_prophecies"]=8823, + ["map_vaal_vessel_drop_X_rare_temple_items"]=8824, + ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8825, + ["map_vaal_vessel_drop_X_vaal_orbs"]=8826, + ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8827, + ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8828, + ["map_vaal_vessel_item_drop_quantity_+%"]=8829, + ["map_vaal_vessel_item_drop_rarity_+%"]=8830, + ["map_verisium_stack_size_+%"]=8831, + ["map_warbands_packs_have_additional_elites"]=8832, + ["map_warbands_packs_have_additional_grunts"]=8833, + ["map_warbands_packs_have_additional_supports"]=8834, + ["map_watchstone_additional_packs_of_elder_monsters"]=8835, + ["map_watchstone_additional_packs_of_shaper_monsters"]=8836, + ["map_watchstone_monsters_damage_+%_final"]=8837, + ["map_watchstone_monsters_life_+%_final"]=8838, ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=133, ["map_weapon_and_shields_drop_fractured_%_chance"]=134, ["map_weapon_and_shields_drop_fully_linked_%_chance"]=135, ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=136, ["map_weapons_drop_animated"]=2802, - ["maps_with_powerful_bosses_additional_essence_+"]=8834, - ["maps_with_powerful_bosses_additional_shrine_+"]=8835, - ["maps_with_powerful_bosses_additional_spirit_+"]=8836, - ["maps_with_powerful_bosses_additional_strongbox_+"]=8837, - ["marauder_hidden_ascendancy_damage_+%_final"]=8838, - ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8839, + ["maps_with_powerful_bosses_additional_essence_+"]=8839, + ["maps_with_powerful_bosses_additional_shrine_+"]=8840, + ["maps_with_powerful_bosses_additional_spirit_+"]=8841, + ["maps_with_powerful_bosses_additional_strongbox_+"]=8842, + ["marauder_hidden_ascendancy_damage_+%_final"]=8843, + ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8844, ["mark_effect_+%"]=2402, - ["mark_grants_%_max_glory_to_random_skill_on_activate"]=8840, - ["mark_skill_duration_+%"]=8841, - ["mark_skill_gem_level_+"]=8842, - ["mark_skill_mana_cost_+%"]=8843, + ["mark_grants_%_max_glory_to_random_skill_on_activate"]=8845, + ["mark_skill_duration_+%"]=8846, + ["mark_skill_gem_level_+"]=8847, + ["mark_skill_mana_cost_+%"]=8848, ["mark_use_speed_+%"]=1970, - ["marked_enemies_cannot_deal_critical_strikes"]=8844, - ["marked_enemies_cannot_regenerate_life"]=8845, - ["marked_enemy_accuracy_rating_+%"]=8846, - ["marked_enemy_damage_taken_+%"]=8847, - ["marked_or_cursed_enemy_damage_taken_+%"]=8848, - ["marks_avoid_consumption_when_first_activated"]=8849, - ["marks_you_inflict_remain_after_death"]=8850, - ["master_of_elements_evasion_rating_+%_final"]=8851, - ["maven_fight_layout_override"]=8852, + ["marked_enemies_cannot_deal_critical_strikes"]=8849, + ["marked_enemies_cannot_regenerate_life"]=8850, + ["marked_enemy_accuracy_rating_+%"]=8851, + ["marked_enemy_damage_taken_+%"]=8852, + ["marked_or_cursed_enemy_damage_taken_+%"]=8853, + ["marks_avoid_consumption_when_first_activated"]=8854, + ["marks_you_inflict_remain_after_death"]=8855, + ["master_of_elements_evasion_rating_+%_final"]=8856, + ["maven_fight_layout_override"]=8857, ["max_adaptations_+"]=1442, - ["max_chance_to_block_attacks_if_not_blocked_recently"]=8853, + ["max_chance_to_block_attacks_if_not_blocked_recently"]=8858, ["max_charged_attack_stacks"]=3896, ["max_endurance_charges"]=1583, - ["max_fortification_+1_per_5"]=8854, - ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10659, - ["max_fortification_while_focused_+1_per_5"]=8855, - ["max_fortification_while_stationary_+1_per_5"]=8856, + ["max_fortification_+1_per_5"]=8859, + ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10675, + ["max_fortification_while_focused_+1_per_5"]=8860, + ["max_fortification_while_stationary_+1_per_5"]=8861, ["max_frenzy_charges"]=1588, ["max_life_%_as_mana"]=1451, ["max_life_%_as_spirit"]=1440, - ["max_mana_increases_apply_to_effect_of_arcane_surge_on_self"]=8857, + ["max_mana_increases_apply_to_effect_of_arcane_surge_on_self"]=8862, ["max_power_charges"]=1593, - ["max_puppet_master_stacks_+"]=8858, - ["max_rage_+_if_glory_skill_used_in_last_20_seconds"]=8859, - ["max_rage_+_per_glory_skill_used_in_last_6_seconds"]=8860, - ["max_steel_ammo"]=8861, + ["max_puppet_master_stacks_+"]=8863, + ["max_rage_+_if_glory_skill_used_in_last_20_seconds"]=8864, + ["max_rage_+_per_glory_skill_used_in_last_6_seconds"]=8865, + ["max_steel_ammo"]=8866, ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1596, - ["maximum_added_chaos_damage_if_have_crit_recently"]=8972, - ["maximum_added_chaos_damage_per_curse_on_enemy"]=8973, - ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8974, - ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8975, - ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8976, - ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8977, - ["maximum_added_cold_damage_if_have_crit_recently"]=8978, + ["maximum_added_chaos_damage_if_have_crit_recently"]=8977, + ["maximum_added_chaos_damage_per_curse_on_enemy"]=8978, + ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8979, + ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8980, + ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8981, + ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8982, + ["maximum_added_cold_damage_if_have_crit_recently"]=8983, ["maximum_added_cold_damage_per_frenzy_charge"]=3942, - ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8979, - ["maximum_added_cold_damage_to_attacks_per_20_dexterity"]=8980, - ["maximum_added_cold_damage_vs_chilled_enemies"]=8981, - ["maximum_added_cold_damage_while_affected_by_hatred"]=8982, - ["maximum_added_cold_damage_while_you_have_avians_might"]=8983, + ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8984, + ["maximum_added_cold_damage_to_attacks_per_20_dexterity"]=8985, + ["maximum_added_cold_damage_vs_chilled_enemies"]=8986, + ["maximum_added_cold_damage_while_affected_by_hatred"]=8987, + ["maximum_added_cold_damage_while_you_have_avians_might"]=8988, ["maximum_added_fire_attack_damage_per_active_buff"]=1237, ["maximum_added_fire_damage_if_blocked_recently"]=3944, - ["maximum_added_fire_damage_if_have_crit_recently"]=8984, - ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8985, + ["maximum_added_fire_damage_if_have_crit_recently"]=8989, + ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8990, ["maximum_added_fire_damage_per_active_buff"]=1239, - ["maximum_added_fire_damage_per_endurance_charge"]=8986, - ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8987, + ["maximum_added_fire_damage_per_endurance_charge"]=8991, + ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8992, ["maximum_added_fire_damage_to_attacks_per_25_strength"]=1845, - ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8988, + ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8993, ["maximum_added_fire_damage_vs_ignited_enemies"]=1236, ["maximum_added_fire_spell_damage_per_active_buff"]=1238, - ["maximum_added_lightning_damage_if_have_crit_recently"]=8989, - ["maximum_added_lightning_damage_per_10_int"]=8862, - ["maximum_added_lightning_damage_per_power_charge"]=8990, - ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8991, - ["maximum_added_lightning_damage_to_attacks_per_20_intelligence"]=8992, - ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8993, - ["maximum_added_lightning_damage_while_you_have_avians_might"]=8994, - ["maximum_added_physical_damage_if_have_crit_recently"]=8995, - ["maximum_added_physical_damage_per_endurance_charge"]=8996, - ["maximum_added_physical_damage_per_impaled_on_enemy"]=8997, + ["maximum_added_lightning_damage_if_have_crit_recently"]=8994, + ["maximum_added_lightning_damage_per_10_int"]=8867, + ["maximum_added_lightning_damage_per_power_charge"]=8995, + ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8996, + ["maximum_added_lightning_damage_to_attacks_per_20_intelligence"]=8997, + ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8998, + ["maximum_added_lightning_damage_while_you_have_avians_might"]=8999, + ["maximum_added_physical_damage_if_have_crit_recently"]=9000, + ["maximum_added_physical_damage_per_endurance_charge"]=9001, + ["maximum_added_physical_damage_per_impaled_on_enemy"]=9002, ["maximum_added_physical_damage_vs_bleeding_enemies"]=2299, ["maximum_added_physical_damage_vs_frozen_enemies"]=1235, - ["maximum_added_physical_damage_vs_poisoned_enemies"]=8998, - ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=8999, - ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=9000, - ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=9001, + ["maximum_added_physical_damage_vs_poisoned_enemies"]=9003, + ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=9004, + ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=9005, + ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=9006, ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1591, ["maximum_arrow_fire_damage_added_for_each_pierce"]=4460, - ["maximum_blitz_charges"]=8863, - ["maximum_block_modifiers_apply_to_maximum_resistances_instead"]=8864, + ["maximum_blitz_charges"]=8868, + ["maximum_block_modifiers_apply_to_maximum_resistances_instead"]=8869, ["maximum_blood_scythe_charges"]=4039, ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1586, - ["maximum_caltrops_allowed"]=8865, - ["maximum_challenger_charges"]=8866, - ["maximum_chance_to_evade_is_50%"]=8867, + ["maximum_caltrops_allowed"]=8870, + ["maximum_challenger_charges"]=8871, + ["maximum_chance_to_evade_is_50%"]=8872, ["maximum_chaos_damage_to_return_to_melee_attacker"]=1958, - ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8869, - ["maximum_cold_damage_resistance_+%_while_shapeshifted"]=8868, + ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8874, + ["maximum_cold_damage_resistance_+%_while_shapeshifted"]=8873, ["maximum_cold_damage_to_return_to_melee_attacker"]=1956, - ["maximum_cold_infusion_stacks"]=8870, - ["maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed"]=8871, - ["maximum_cold_resistance_+1_per_X_corresponding_support"]=8872, + ["maximum_cold_infusion_stacks"]=8875, + ["maximum_cold_resistance_+%_if_at_least_5_blue_supports_socketed"]=8876, + ["maximum_cold_resistance_+1_per_X_corresponding_support"]=8877, ["maximum_critical_strike_chance"]=2533, - ["maximum_critical_strike_chance_is_%_from_support_garukhans_resolve"]=8873, - ["maximum_darkness_+%"]=8874, + ["maximum_critical_strike_chance_is_%_from_support_garukhans_resolve"]=8878, + ["maximum_darkness_+%"]=8879, ["maximum_divine_charges"]=4072, - ["maximum_divinity_+%"]=8875, - ["maximum_divinity_+%_per_equipped_corrupted_item"]=8876, - ["maximum_elemental_resistance_+%_of_each_elemental_damage_type_youve_been_hit_with_recently"]=8877, - ["maximum_endurance_charges_+_if_you_have_at_least_100_tribute"]=8878, - ["maximum_endurance_charges_+_while_affected_by_determination"]=8879, + ["maximum_divinity_+%"]=8880, + ["maximum_divinity_+%_per_equipped_corrupted_item"]=8881, + ["maximum_elemental_resistance_+%_of_each_elemental_damage_type_youve_been_hit_with_recently"]=8882, + ["maximum_endurance_charges_+_if_you_have_at_least_100_tribute"]=8883, + ["maximum_endurance_charges_+_while_affected_by_determination"]=8884, ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1584, ["maximum_energy_shield_%_lost_on_kill"]=1542, ["maximum_energy_shield_+%"]=910, ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1477, - ["maximum_energy_shield_+%_per_10_tribute"]=8880, - ["maximum_energy_shield_+1_per_x_body_armour_evasion_rating"]=8881, + ["maximum_energy_shield_+%_per_10_tribute"]=8885, + ["maximum_energy_shield_+1_per_x_body_armour_evasion_rating"]=8886, ["maximum_energy_shield_+_per_100_life_reserved"]=1452, ["maximum_energy_shield_+_per_5_armour_on_shield"]=4062, ["maximum_energy_shield_+_per_5_strength"]=3475, ["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=1453, - ["maximum_energy_shield_from_body_armour_+%"]=8882, + ["maximum_energy_shield_from_body_armour_+%"]=8887, ["maximum_es_+%_per_equipped_corrupted_item"]=2850, ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2782, - ["maximum_fanaticism_charges"]=8883, - ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8886, - ["maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance"]=8884, - ["maximum_fire_damage_resistance_+%_while_shapeshifted"]=8885, + ["maximum_fanaticism_charges"]=8888, + ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8891, + ["maximum_fire_damage_resistance_+%_per_40%_uncapped_fire_damage_resistance"]=8889, + ["maximum_fire_damage_resistance_+%_while_shapeshifted"]=8890, ["maximum_fire_damage_to_return_to_melee_attacker"]=1955, - ["maximum_fire_infusion_stacks"]=8887, - ["maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed"]=8888, - ["maximum_fire_resistance_+1_per_X_corresponding_support"]=8889, - ["maximum_frenzy_charges_+_if_you_have_at_least_100_tribute"]=8890, - ["maximum_frenzy_charges_+_while_affected_by_grace"]=8891, + ["maximum_fire_infusion_stacks"]=8892, + ["maximum_fire_resistance_+%_if_at_least_5_red_supports_socketed"]=8893, + ["maximum_fire_resistance_+1_per_X_corresponding_support"]=8894, + ["maximum_frenzy_charges_+_if_you_have_at_least_100_tribute"]=8895, + ["maximum_frenzy_charges_+_while_affected_by_grace"]=8896, ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1589, - ["maximum_frenzy_power_endurance_charges"]=8892, - ["maximum_guard_is_based_on_energy_shield"]=8893, - ["maximum_intensify_stacks"]=8895, + ["maximum_frenzy_power_endurance_charges"]=8897, + ["maximum_guard_is_based_on_energy_shield"]=8898, + ["maximum_intensify_stacks"]=8900, ["maximum_life_%_lost_on_kill"]=1540, ["maximum_life_%_to_convert_to_armour_per_1%_chaos_resistance"]=1457, - ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8903, - ["maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute"]=8896, + ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8908, + ["maximum_life_%_to_convert_to_maximum_energy_shield_per_20_tribute"]=8901, ["maximum_life_%_to_convert_to_twice_as_much_armour_per_1%_chaos_resistance"]=1458, - ["maximum_life_%_to_gain_as_armour"]=8904, + ["maximum_life_%_to_gain_as_armour"]=8909, ["maximum_life_%_to_gain_as_maximum_energy_shield"]=1459, ["maximum_life_+%"]=913, ["maximum_life_+%_and_fire_resistance_-%"]=1475, - ["maximum_life_+%_final_from_caster_weapon_runic_ward_socketable"]=8897, - ["maximum_life_+%_for_corpses_you_create"]=8905, - ["maximum_life_+%_if_10_red_supports_socketed"]=8898, - ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8906, - ["maximum_life_+%_if_you_have_at_least_100_tribute"]=8899, - ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8907, + ["maximum_life_+%_final_from_caster_weapon_runic_ward_socketable"]=8902, + ["maximum_life_+%_for_corpses_you_create"]=8910, + ["maximum_life_+%_if_10_red_supports_socketed"]=8903, + ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8911, + ["maximum_life_+%_if_you_have_at_least_100_tribute"]=8904, + ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8912, ["maximum_life_+%_per_equipped_corrupted_item"]=2849, ["maximum_life_+%_per_stackable_unique_jewel"]=3840, ["maximum_life_mana_and_energy_shield_+%"]=3984, - ["maximum_life_per_10_dexterity"]=8900, - ["maximum_life_per_10_intelligence"]=8901, + ["maximum_life_per_10_dexterity"]=8905, + ["maximum_life_per_10_intelligence"]=8906, ["maximum_life_per_10_levels"]=2546, - ["maximum_life_per_2%_increased_item_found_rarity"]=8902, + ["maximum_life_per_2%_increased_item_found_rarity"]=8907, ["maximum_life_per_equipped_elder_item"]=4022, ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2781, - ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8909, - ["maximum_lightning_damage_resistance_+%_while_shapeshifted"]=8908, + ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8914, + ["maximum_lightning_damage_resistance_+%_while_shapeshifted"]=8913, ["maximum_lightning_damage_to_return_on_block"]=2392, ["maximum_lightning_damage_to_return_to_melee_attacker"]=1957, - ["maximum_lightning_infusion_stacks"]=8910, - ["maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed"]=8911, - ["maximum_lightning_resistance_+1_per_X_corresponding_support"]=8912, + ["maximum_lightning_infusion_stacks"]=8915, + ["maximum_lightning_resistance_+%_if_at_least_5_green_supports_socketed"]=8916, + ["maximum_lightning_resistance_+1_per_X_corresponding_support"]=8917, ["maximum_mana_%_gained_on_kill"]=1541, ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=1460, ["maximum_mana_+%"]=918, ["maximum_mana_+%_and_cold_resistance_-%"]=1476, - ["maximum_mana_+%_if_10_blue_supports_socketed"]=8913, - ["maximum_mana_+%_if_you_have_at_least_100_tribute"]=8914, - ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8915, - ["maximum_number_of_blades_left_in_ground"]=8916, - ["maximum_physical_attack_damage_on_crit_+%_final"]=8917, + ["maximum_mana_+%_if_10_blue_supports_socketed"]=8918, + ["maximum_mana_+%_if_you_have_at_least_100_tribute"]=8919, + ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8920, + ["maximum_number_of_blades_left_in_ground"]=8921, + ["maximum_physical_attack_damage_on_crit_+%_final"]=8922, ["maximum_physical_damage_reduction_%"]=1444, - ["maximum_physical_damage_reduction_is_50%"]=8918, + ["maximum_physical_damage_reduction_is_50%"]=8923, ["maximum_physical_damage_to_reflect_to_self_on_attack"]=1953, ["maximum_physical_damage_to_return_on_block"]=2391, ["maximum_physical_damage_to_return_to_melee_attacker"]=1954, - ["maximum_power_and_endurance_charges_+"]=8919, + ["maximum_power_and_endurance_charges_+"]=8924, ["maximum_power_and_frenzy_charges_+"]=1594, - ["maximum_power_charges_+_if_you_have_at_least_100_tribute"]=8920, - ["maximum_power_charges_+_while_affected_by_discipline"]=8921, - ["maximum_rage"]=9627, - ["maximum_rage_+_while_shapeshifted"]=8922, - ["maximum_rage_+_while_wielding_axe"]=8923, - ["maximum_rage_per_50_tribute"]=8924, - ["maximum_rage_per_equipped_one_handed_sword"]=8925, - ["maximum_random_movement_velocity_+%_when_hit"]=8926, + ["maximum_power_charges_+_if_you_have_at_least_100_tribute"]=8925, + ["maximum_power_charges_+_while_affected_by_discipline"]=8926, + ["maximum_rage"]=9635, + ["maximum_rage_+_while_shapeshifted"]=8927, + ["maximum_rage_+_while_wielding_axe"]=8928, + ["maximum_rage_per_50_tribute"]=8929, + ["maximum_rage_per_equipped_one_handed_sword"]=8930, + ["maximum_random_movement_velocity_+%_when_hit"]=8931, ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4065, - ["maximum_virulence_stacks"]=8927, + ["maximum_virulence_stacks"]=8932, ["maximum_void_arrows"]=4040, - ["maximum_volatility_allowed"]=8928, + ["maximum_volatility_allowed"]=8933, ["maximum_ward_+%"]=915, ["melee_ancestor_totem_damage_+%"]=3328, ["melee_ancestor_totem_elemental_resistance_%"]=3794, ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3496, ["melee_ancestor_totem_placement_speed_+%"]=3661, - ["melee_attack_deal_thorns_damage_chance_%_on_hit"]=10282, - ["melee_attack_number_of_spirit_strikes"]=8929, - ["melee_attack_skills_additional_totems_allowed"]=8930, + ["melee_attack_deal_thorns_damage_chance_%_on_hit"]=10296, + ["melee_attack_number_of_spirit_strikes"]=8934, + ["melee_attack_skills_additional_totems_allowed"]=8935, ["melee_attack_speed_+%"]=1337, ["melee_attacks_number_of_additional_projectiles"]=3873, ["melee_attacks_usable_without_mana_cost"]=2480, @@ -244134,63 +244415,63 @@ return { ["melee_cold_damage_+%_while_fortify_is_active"]=2042, ["melee_cold_damage_+%_while_holding_shield"]=1756, ["melee_critical_strike_chance_+%"]=1399, - ["melee_critical_strike_chance_+%_if_warcried_recently"]=8931, - ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8932, + ["melee_critical_strike_chance_+%_if_warcried_recently"]=8936, + ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8937, ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1421, ["melee_damage_+%"]=1211, - ["melee_damage_+%_at_close_range"]=8936, - ["melee_damage_+%_during_flask_effect"]=8937, - ["melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently"]=8933, + ["melee_damage_+%_at_close_range"]=8941, + ["melee_damage_+%_during_flask_effect"]=8942, + ["melee_damage_+%_if_youve_dealt_projectile_attack_hit_recently"]=8938, ["melee_damage_+%_per_endurance_charge"]=3853, - ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8938, + ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8943, ["melee_damage_+%_vs_burning_enemies"]=1216, ["melee_damage_+%_vs_frozen_enemies"]=1212, - ["melee_damage_+%_vs_heavy_stunned_enemies"]=8939, - ["melee_damage_+%_vs_immobilised_enemies"]=8934, + ["melee_damage_+%_vs_heavy_stunned_enemies"]=8944, + ["melee_damage_+%_vs_immobilised_enemies"]=8939, ["melee_damage_+%_vs_shocked_enemies"]=1214, ["melee_damage_+%_when_on_full_life"]=2436, ["melee_damage_+%_while_fortified"]=3923, - ["melee_damage_+%_with_spears_while_surrounded"]=8935, + ["melee_damage_+%_with_spears_while_surrounded"]=8940, ["melee_damage_taken_%_to_deal_to_attacker"]=2502, ["melee_damage_taken_+%"]=2534, ["melee_damage_vs_bleeding_enemies_+%"]=2297, ["melee_fire_damage_+%"]=1752, ["melee_fire_damage_+%_while_holding_shield"]=1755, - ["melee_hit_damage_stun_multiplier_+%"]=8940, - ["melee_hit_damage_stun_multiplier_+%_final_from_ot"]=8941, - ["melee_hits_grant_rampage_stacks"]=10689, - ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8942, + ["melee_hit_damage_stun_multiplier_+%"]=8945, + ["melee_hit_damage_stun_multiplier_+%_final_from_ot"]=8946, + ["melee_hits_grant_rampage_stacks"]=10706, + ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8947, ["melee_physical_damage_+%"]=1751, - ["melee_physical_damage_+%_per_10_dexterity"]=8943, - ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8944, + ["melee_physical_damage_+%_per_10_dexterity"]=8948, + ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8949, ["melee_physical_damage_+%_vs_ignited_enemies"]=3995, ["melee_physical_damage_+%_while_fortify_is_active"]=2043, ["melee_physical_damage_+%_while_holding_shield"]=1754, ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2265, ["melee_range_+"]=2338, - ["melee_range_+_while_at_least_5_enemies_nearby"]=8945, - ["melee_range_+_while_dual_wielding"]=8947, + ["melee_range_+_while_at_least_5_enemies_nearby"]=8950, + ["melee_range_+_while_dual_wielding"]=8952, ["melee_range_+_while_unarmed"]=2832, - ["melee_range_+_while_wielding_shield"]=8946, - ["melee_range_+_with_axe"]=8948, - ["melee_range_+_with_claw"]=8949, - ["melee_range_+_with_dagger"]=8950, - ["melee_range_+_with_flail"]=8951, - ["melee_range_+_with_mace"]=8952, - ["melee_range_+_with_one_handed"]=8953, - ["melee_range_+_with_spear"]=8954, - ["melee_range_+_with_staff"]=8955, - ["melee_range_+_with_sword"]=8956, - ["melee_range_+_with_two_handed"]=8957, + ["melee_range_+_while_wielding_shield"]=8951, + ["melee_range_+_with_axe"]=8953, + ["melee_range_+_with_claw"]=8954, + ["melee_range_+_with_dagger"]=8955, + ["melee_range_+_with_flail"]=8956, + ["melee_range_+_with_mace"]=8957, + ["melee_range_+_with_one_handed"]=8958, + ["melee_range_+_with_spear"]=8959, + ["melee_range_+_with_staff"]=8960, + ["melee_range_+_with_sword"]=8961, + ["melee_range_+_with_two_handed"]=8962, ["melee_skill_gem_level_+"]=990, - ["melee_skills_area_of_effect_+%"]=8958, + ["melee_skills_area_of_effect_+%"]=8963, ["melee_splash"]=1161, - ["melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently"]=8959, - ["melee_strike_skill_strike_previous_location"]=8960, + ["melee_strike_range_+_if_youve_dealt_projectile_attack_hit_recently"]=8964, + ["melee_strike_skill_strike_previous_location"]=8965, ["melee_weapon_critical_strike_multiplier_+"]=1419, - ["melee_weapon_range_+_if_you_have_killed_recently"]=8961, - ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8962, - ["melee_weapon_range_+_while_fortified"]=8963, + ["melee_weapon_range_+_if_you_have_killed_recently"]=8966, + ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8967, + ["melee_weapon_range_+_while_fortified"]=8968, ["memory_line_abyss_scourge_spawn_boss_chance_%"]=109, ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=120, ["memory_line_big_harvest"]=110, @@ -244209,180 +244490,180 @@ return { ["memory_line_number_of_strongboxes"]=95, ["memory_line_player_is_harbinger"]=96, ["memory_line_strongboxes_chance_to_be_operatives_%"]=122, - ["mine_%_chance_to_detonate_twice"]=8969, - ["mine_area_damage_+%_if_detonated_mine_recently"]=8964, - ["mine_area_of_effect_+%"]=8965, - ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8966, + ["mine_%_chance_to_detonate_twice"]=8974, + ["mine_area_damage_+%_if_detonated_mine_recently"]=8969, + ["mine_area_of_effect_+%"]=8970, + ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8971, ["mine_arming_speed_+%"]=3904, - ["mine_aura_effect_+%"]=8967, + ["mine_aura_effect_+%"]=8972, ["mine_critical_strike_chance_+%"]=1395, ["mine_critical_strike_multiplier_+"]=1422, ["mine_damage_+%"]=1178, ["mine_damage_penetrates_%_elemental_resistance"]=2567, ["mine_detonation_is_instant"]=2565, ["mine_detonation_radius_+%"]=1690, - ["mine_detonation_speed_+%"]=8968, + ["mine_detonation_speed_+%"]=8973, ["mine_duration_+%"]=1687, ["mine_extra_uses"]=2790, ["mine_laying_speed_+%"]=1692, ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3189, - ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8970, - ["mines_invulnerable"]=8971, + ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8975, + ["mines_invulnerable"]=8976, ["mines_invulnerable_for_duration_ms"]=2570, - ["minimum_added_chaos_damage_if_have_crit_recently"]=8972, - ["minimum_added_chaos_damage_per_curse_on_enemy"]=8973, - ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8974, - ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8975, - ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8976, - ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8977, - ["minimum_added_cold_damage_if_have_crit_recently"]=8978, + ["minimum_added_chaos_damage_if_have_crit_recently"]=8977, + ["minimum_added_chaos_damage_per_curse_on_enemy"]=8978, + ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8979, + ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8980, + ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8981, + ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8982, + ["minimum_added_cold_damage_if_have_crit_recently"]=8983, ["minimum_added_cold_damage_per_frenzy_charge"]=3942, - ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8979, - ["minimum_added_cold_damage_to_attacks_per_20_dexterity"]=8980, - ["minimum_added_cold_damage_vs_chilled_enemies"]=8981, - ["minimum_added_cold_damage_while_affected_by_hatred"]=8982, - ["minimum_added_cold_damage_while_you_have_avians_might"]=8983, + ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8984, + ["minimum_added_cold_damage_to_attacks_per_20_dexterity"]=8985, + ["minimum_added_cold_damage_vs_chilled_enemies"]=8986, + ["minimum_added_cold_damage_while_affected_by_hatred"]=8987, + ["minimum_added_cold_damage_while_you_have_avians_might"]=8988, ["minimum_added_fire_attack_damage_per_active_buff"]=1237, ["minimum_added_fire_damage_if_blocked_recently"]=3944, - ["minimum_added_fire_damage_if_have_crit_recently"]=8984, - ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8985, + ["minimum_added_fire_damage_if_have_crit_recently"]=8989, + ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8990, ["minimum_added_fire_damage_per_active_buff"]=1239, - ["minimum_added_fire_damage_per_endurance_charge"]=8986, - ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8987, + ["minimum_added_fire_damage_per_endurance_charge"]=8991, + ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8992, ["minimum_added_fire_damage_to_attacks_per_25_strength"]=1845, - ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8988, + ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8993, ["minimum_added_fire_damage_vs_ignited_enemies"]=1236, ["minimum_added_fire_spell_damage_per_active_buff"]=1238, - ["minimum_added_lightning_damage_if_have_crit_recently"]=8989, - ["minimum_added_lightning_damage_per_power_charge"]=8990, - ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8991, - ["minimum_added_lightning_damage_to_attacks_per_20_intelligence"]=8992, - ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8993, - ["minimum_added_lightning_damage_while_you_have_avians_might"]=8994, - ["minimum_added_physical_damage_if_have_crit_recently"]=8995, - ["minimum_added_physical_damage_per_endurance_charge"]=8996, - ["minimum_added_physical_damage_per_impaled_on_enemy"]=8997, + ["minimum_added_lightning_damage_if_have_crit_recently"]=8994, + ["minimum_added_lightning_damage_per_power_charge"]=8995, + ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8996, + ["minimum_added_lightning_damage_to_attacks_per_20_intelligence"]=8997, + ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8998, + ["minimum_added_lightning_damage_while_you_have_avians_might"]=8999, + ["minimum_added_physical_damage_if_have_crit_recently"]=9000, + ["minimum_added_physical_damage_per_endurance_charge"]=9001, + ["minimum_added_physical_damage_per_impaled_on_enemy"]=9002, ["minimum_added_physical_damage_vs_bleeding_enemies"]=2299, ["minimum_added_physical_damage_vs_frozen_enemies"]=1235, - ["minimum_added_physical_damage_vs_poisoned_enemies"]=8998, - ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=8999, - ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=9000, - ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=9001, + ["minimum_added_physical_damage_vs_poisoned_enemies"]=9003, + ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=9004, + ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=9005, + ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=9006, ["minimum_arrow_fire_damage_added_for_each_pierce"]=4460, ["minimum_chaos_damage_to_return_to_melee_attacker"]=1958, ["minimum_cold_damage_to_return_to_melee_attacker"]=1956, - ["minimum_endurance_charges_at_devotion_threshold"]=9002, + ["minimum_endurance_charges_at_devotion_threshold"]=9007, ["minimum_endurance_charges_per_stackable_unique_jewel"]=3841, - ["minimum_endurance_charges_while_on_low_life_+"]=9003, + ["minimum_endurance_charges_while_on_low_life_+"]=9008, ["minimum_fire_damage_to_return_to_melee_attacker"]=1955, - ["minimum_frenzy_charges_at_devotion_threshold"]=9004, + ["minimum_frenzy_charges_at_devotion_threshold"]=9009, ["minimum_frenzy_charges_per_stackable_unique_jewel"]=3842, - ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=9005, - ["minimum_frenzy_power_endurance_charges"]=9006, + ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=9010, + ["minimum_frenzy_power_endurance_charges"]=9011, ["minimum_lightning_damage_to_return_on_block"]=2392, ["minimum_lightning_damage_to_return_to_melee_attacker"]=1957, - ["minimum_physical_attack_damage_on_crit_+%_final"]=9007, + ["minimum_physical_attack_damage_on_crit_+%_final"]=9012, ["minimum_physical_damage_to_reflect_to_self_on_attack"]=1953, ["minimum_physical_damage_to_return_on_block"]=2391, ["minimum_physical_damage_to_return_to_melee_attacker"]=1954, - ["minimum_power_charges_at_devotion_threshold"]=9008, + ["minimum_power_charges_at_devotion_threshold"]=9013, ["minimum_power_charges_per_stackable_unique_jewel"]=3843, - ["minimum_power_charges_while_on_low_life_+"]=9009, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=9091, - ["minion_1%_accuracy_rating_+%_per_X_player_dexterity"]=9010, - ["minion_1%_area_of_effect_+%_per_X_player_dexterity"]=9011, - ["minion_1%_damage_+%_per_X_player_strength"]=9012, - ["minion_accuracy_rating"]=9013, - ["minion_accuracy_rating_+%"]=9015, - ["minion_accuracy_rating_per_10_devotion"]=9014, - ["minion_actor_scale_+%"]=9016, - ["minion_additional_base_critical_strike_chance"]=9017, + ["minimum_power_charges_while_on_low_life_+"]=9014, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=9096, + ["minion_1%_accuracy_rating_+%_per_X_player_dexterity"]=9015, + ["minion_1%_area_of_effect_+%_per_X_player_dexterity"]=9016, + ["minion_1%_damage_+%_per_X_player_strength"]=9017, + ["minion_accuracy_rating"]=9018, + ["minion_accuracy_rating_+%"]=9020, + ["minion_accuracy_rating_per_10_devotion"]=9019, + ["minion_actor_scale_+%"]=9021, + ["minion_additional_base_critical_strike_chance"]=9022, ["minion_additional_physical_damage_reduction_%"]=2046, - ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=9018, - ["minion_armour_break_physical_damage_%_dealt_as_armour_break"]=9019, - ["minion_attack_added_cold_damage_as_%_parent_maximum_life"]=9020, - ["minion_attack_and_cast_speed_+%"]=9022, - ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=9023, - ["minion_attack_and_cast_speed_+%_per_10_devotion"]=9024, - ["minion_attack_and_cast_speed_+%_per_50_tribute"]=9021, + ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=9023, + ["minion_armour_break_physical_damage_%_dealt_as_armour_break"]=9024, + ["minion_attack_added_cold_damage_as_%_parent_maximum_life"]=9025, + ["minion_attack_and_cast_speed_+%"]=9027, + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=9028, + ["minion_attack_and_cast_speed_+%_per_10_devotion"]=9029, + ["minion_attack_and_cast_speed_+%_per_50_tribute"]=9026, ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=3009, - ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=9025, - ["minion_attack_hits_knockback_chance_%"]=9026, + ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=9030, + ["minion_attack_hits_knockback_chance_%"]=9031, ["minion_attack_maximum_added_physical_damage"]=3466, ["minion_attack_minimum_added_physical_damage"]=3466, ["minion_attack_speed_+%"]=2688, - ["minion_attack_speed_+%_per_50_dex"]=9029, - ["minion_attack_speed_+%_per_five_rage"]=9027, - ["minion_attack_speed_+%_per_rage"]=9028, - ["minion_attacks_chance_to_blind_on_hit_%"]=9030, + ["minion_attack_speed_+%_per_50_dex"]=9034, + ["minion_attack_speed_+%_per_five_rage"]=9032, + ["minion_attack_speed_+%_per_rage"]=9033, + ["minion_attacks_chance_to_blind_on_hit_%"]=9035, ["minion_attacks_chance_to_taunt_on_hit_%"]=3152, - ["minion_base_damaging_ailment_effect_+%"]=9031, - ["minion_base_maximum_cold_damage_resistance_%"]=9032, - ["minion_base_maximum_fire_damage_resistance_%"]=9033, - ["minion_base_maximum_lightning_damage_resistance_%"]=9034, + ["minion_base_damaging_ailment_effect_+%"]=9036, + ["minion_base_maximum_cold_damage_resistance_%"]=9037, + ["minion_base_maximum_fire_damage_resistance_%"]=9038, + ["minion_base_maximum_lightning_damage_resistance_%"]=9039, ["minion_base_physical_damage_%_to_convert_to_chaos"]=1735, ["minion_base_physical_damage_%_to_convert_to_cold"]=1730, ["minion_base_physical_damage_%_to_convert_to_fire"]=1728, ["minion_base_physical_damage_%_to_convert_to_lightning"]=1732, ["minion_bleed_on_hit_with_attacks_%"]=2295, ["minion_block_%"]=2685, - ["minion_cannot_crit"]=9035, + ["minion_cannot_crit"]=9040, ["minion_cast_speed_+%"]=2689, ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3160, ["minion_chance_to_apply_gruelling_madness_on_hit_%"]=2925, - ["minion_chance_to_deal_double_damage_%"]=9036, - ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=9037, - ["minion_chance_to_fire_1_additional_projectile_%_with_rollover"]=9038, - ["minion_chance_to_freeze_%"]=9039, + ["minion_chance_to_deal_double_damage_%"]=9041, + ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=9042, + ["minion_chance_to_fire_1_additional_projectile_%_with_rollover"]=9043, + ["minion_chance_to_freeze_%"]=9044, ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3106, - ["minion_chance_to_gain_power_charge_on_hit_%"]=9040, - ["minion_chance_to_impale_on_attack_hit_%"]=9041, - ["minion_chance_to_shock_%"]=9042, + ["minion_chance_to_gain_power_charge_on_hit_%"]=9045, + ["minion_chance_to_impale_on_attack_hit_%"]=9046, + ["minion_chance_to_shock_%"]=9047, ["minion_chaos_resistance_%"]=2692, ["minion_cold_damage_resistance_%"]=3865, - ["minion_command_skill_cooldown_speed_+%"]=9043, - ["minion_command_skill_skill_speed_+%"]=9044, - ["minion_commanded_skill_damage_+%"]=9046, - ["minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence"]=9045, - ["minion_cooldown_recovery_+%"]=9048, - ["minion_cooldown_recovery_+%_per_10_tribute"]=9047, - ["minion_critical_strike_chance_+%"]=9049, - ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=9050, - ["minion_critical_strike_multiplier_+"]=9051, + ["minion_command_skill_cooldown_speed_+%"]=9048, + ["minion_command_skill_skill_speed_+%"]=9049, + ["minion_commanded_skill_damage_+%"]=9051, + ["minion_commanded_skill_damage_+%_per_different_persistent_minion_in_presence"]=9050, + ["minion_cooldown_recovery_+%"]=9053, + ["minion_cooldown_recovery_+%_per_10_tribute"]=9052, + ["minion_critical_strike_chance_+%"]=9054, + ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=9055, + ["minion_critical_strike_multiplier_+"]=9056, ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=3844, ["minion_damage_+%"]=1744, - ["minion_damage_+%_if_enemy_hit_recently"]=9058, + ["minion_damage_+%_if_enemy_hit_recently"]=9063, ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1745, - ["minion_damage_+%_per_10_tribute"]=9052, + ["minion_damage_+%_per_10_tribute"]=9057, ["minion_damage_+%_per_5_dex"]=1747, ["minion_damage_+%_per_active_spectre"]=3011, - ["minion_damage_+%_per_different_command_skills_used_in_last_15_seconds"]=9053, - ["minion_damage_+%_per_rage"]=9054, - ["minion_damage_+%_vs_abyssal_monsters"]=9059, - ["minion_damage_+%_while_affected_by_a_herald"]=9060, - ["minion_damage_+%_while_you_have_at_least_two_different_active_offerings"]=9055, - ["minion_damage_against_ignited_enemies_+%"]=9056, + ["minion_damage_+%_per_different_command_skills_used_in_last_15_seconds"]=9058, + ["minion_damage_+%_per_rage"]=9059, + ["minion_damage_+%_vs_abyssal_monsters"]=9064, + ["minion_damage_+%_while_affected_by_a_herald"]=9065, + ["minion_damage_+%_while_you_have_at_least_two_different_active_offerings"]=9060, + ["minion_damage_against_ignited_enemies_+%"]=9061, ["minion_damage_increases_and_reductions_also_affects_you"]=4001, - ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=9057, - ["minion_damage_taken_%_recouped_as_their_life"]=9061, - ["minion_damage_taken_+%"]=9062, - ["minion_deal_no_non_cold_damage"]=9063, - ["minion_demon_add_fury_charge_on_hit_%"]=9064, - ["minion_demon_attack_speed_+%_per_fury_charge"]=9065, - ["minion_demon_damage_+%_final_per_fury_charge"]=9066, - ["minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range"]=9067, - ["minion_demon_life_loss_%_per_minute_per_fury_charge"]=9068, - ["minion_demon_maximum_fury_charges"]=9069, + ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=9062, + ["minion_damage_taken_%_recouped_as_their_life"]=9066, + ["minion_damage_taken_+%"]=9067, + ["minion_deal_no_non_cold_damage"]=9068, + ["minion_demon_add_fury_charge_on_hit_%"]=9069, + ["minion_demon_attack_speed_+%_per_fury_charge"]=9070, + ["minion_demon_damage_+%_final_per_fury_charge"]=9071, + ["minion_demon_gain_fury_charge_when_allied_minion_dies_in_x_range"]=9072, + ["minion_demon_life_loss_%_per_minute_per_fury_charge"]=9073, + ["minion_demon_maximum_fury_charges"]=9074, ["minion_duration_+%_per_active_zombie"]=3010, ["minion_elemental_resistance_%"]=2691, - ["minion_elemental_resistance_30%"]=9070, + ["minion_elemental_resistance_30%"]=9075, ["minion_energy_shield_delay_-%"]=4089, - ["minion_evasion_rating_+%"]=9071, - ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=9072, - ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=9073, - ["minion_fire_damage_resistance_%"]=9074, + ["minion_evasion_rating_+%"]=9076, + ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=9077, + ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=9078, + ["minion_fire_damage_resistance_%"]=9079, ["minion_flask_charges_used_+%"]=1947, - ["minion_global_always_hit"]=9075, + ["minion_global_always_hit"]=9080, ["minion_global_maximum_added_chaos_damage"]=3467, ["minion_global_maximum_added_cold_damage"]=3468, ["minion_global_maximum_added_fire_damage"]=3469, @@ -244393,108 +244674,108 @@ return { ["minion_global_minimum_added_fire_damage"]=3469, ["minion_global_minimum_added_lightning_damage"]=3470, ["minion_global_minimum_added_physical_damage"]=3471, - ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=9076, - ["minion_hit_damage_immobilisation_multiplier_+%"]=9077, - ["minion_hit_damage_stun_multiplier_+%"]=9078, + ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=9081, + ["minion_hit_damage_immobilisation_multiplier_+%"]=9082, + ["minion_hit_damage_stun_multiplier_+%"]=9083, ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4090, - ["minion_larger_aggro_radius"]=10683, - ["minion_life_increased_by_overcapped_fire_resistance"]=9079, + ["minion_larger_aggro_radius"]=10700, + ["minion_life_increased_by_overcapped_fire_resistance"]=9084, ["minion_life_recovery_rate_+%"]=1549, ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=3012, ["minion_life_regeneration_rate_per_minute_%"]=2690, - ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=9080, - ["minion_life_regeneration_rate_per_second"]=9081, + ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=9085, + ["minion_life_regeneration_rate_per_second"]=9086, ["minion_lightning_damage_resistance_%"]=3866, - ["minion_maim_on_hit_%"]=9082, - ["minion_malediction_on_hit"]=9083, - ["minion_maximum_all_elemental_resistances_%"]=9084, + ["minion_maim_on_hit_%"]=9087, + ["minion_malediction_on_hit"]=9088, + ["minion_maximum_all_elemental_resistances_%"]=9089, ["minion_maximum_energy_shield_+%"]=1551, ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4087, ["minion_maximum_life_%_to_gain_as_maximum_energy_shield"]=1461, ["minion_maximum_life_+%"]=1050, ["minion_maximum_mana_+%"]=1550, - ["minion_melee_damage_+%"]=9085, - ["minion_melee_splash"]=9086, - ["minion_minimum_power_charges"]=9087, + ["minion_melee_damage_+%"]=9090, + ["minion_melee_splash"]=9091, + ["minion_minimum_power_charges"]=9092, ["minion_movement_speed_+%"]=1552, - ["minion_movement_speed_+%_per_50_dex"]=9088, - ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=9089, - ["minion_no_critical_strike_multiplier"]=9090, + ["minion_movement_speed_+%_per_50_dex"]=9093, + ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=9094, + ["minion_no_critical_strike_multiplier"]=9095, ["minion_no_extra_bleeding_damage_while_moving"]=2934, ["minion_physical_damage_%_to_gain_as_cold"]=3867, - ["minion_physical_damage_%_to_gain_as_fire"]=9092, - ["minion_physical_damage_%_to_gain_as_lightning"]=9093, + ["minion_physical_damage_%_to_gain_as_fire"]=9097, + ["minion_physical_damage_%_to_gain_as_lightning"]=9098, ["minion_physical_damage_reduction_rating"]=2686, - ["minion_physical_hit_and_dot_damage_%_taken_as_lightning"]=9094, - ["minion_projectile_speed_+%"]=9095, - ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=9097, - ["minion_raging_spirit_maximum_life_+%"]=9096, - ["minion_recover_%_maximum_life_on_minion_death"]=9098, + ["minion_physical_hit_and_dot_damage_%_taken_as_lightning"]=9099, + ["minion_projectile_speed_+%"]=9100, + ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=9102, + ["minion_raging_spirit_maximum_life_+%"]=9101, + ["minion_recover_%_maximum_life_on_minion_death"]=9103, ["minion_recover_%_of_maximum_life_on_block"]=2817, ["minion_recover_X_life_on_block"]=1547, - ["minion_reservation_+%"]=9100, - ["minion_resistances_equal_yours"]=9101, - ["minion_resummon_speed_+%"]=9104, - ["minion_resummon_speed_+%_if_all_active_minions_are_companions"]=9102, - ["minion_resummon_speed_+%_if_you_have_at_least_100_tribute"]=9103, + ["minion_reservation_+%"]=9105, + ["minion_resistances_equal_yours"]=9106, + ["minion_resummon_speed_+%"]=9109, + ["minion_resummon_speed_+%_if_all_active_minions_are_companions"]=9107, + ["minion_resummon_speed_+%_if_you_have_at_least_100_tribute"]=9108, ["minion_skill_area_of_effect_+%"]=2783, ["minion_skill_gem_level_+"]=996, - ["minion_skill_mana_cost_+%"]=9105, - ["minion_skill_physical_damage_%_to_convert_to_fire"]=9106, - ["minion_spells_chance_to_hinder_on_hit_%"]=9107, - ["minion_stun_threshold_reduction_+%"]=9108, - ["minion_summoned_recently_attack_and_cast_speed_+%"]=9109, - ["minion_summoned_recently_cannot_be_damaged"]=9110, - ["minion_summoned_recently_movement_speed_+%"]=9111, - ["minion_undead_minions_are_demons_instead"]=9112, + ["minion_skill_mana_cost_+%"]=9110, + ["minion_skill_physical_damage_%_to_convert_to_fire"]=9111, + ["minion_spells_chance_to_hinder_on_hit_%"]=9112, + ["minion_stun_threshold_reduction_+%"]=9113, + ["minion_summoned_recently_attack_and_cast_speed_+%"]=9114, + ["minion_summoned_recently_cannot_be_damaged"]=9115, + ["minion_summoned_recently_movement_speed_+%"]=9116, + ["minion_undead_minions_are_demons_instead"]=9117, ["minions_%_chance_to_blind_on_hit"]=3832, - ["minions_accuracy_is_equal_to_yours"]=9113, - ["minions_are_gigantic"]=9114, - ["minions_are_gigantic_if_have_revived_recently"]=9115, - ["minions_attacks_overwhelm_%_physical_damage_reduction"]=9116, + ["minions_accuracy_is_equal_to_yours"]=9118, + ["minions_are_gigantic"]=9119, + ["minions_are_gigantic_if_have_revived_recently"]=9120, + ["minions_attacks_overwhelm_%_physical_damage_reduction"]=9121, ["minions_cannot_be_blinded"]=3831, - ["minions_cannot_be_damaged_after_summoned_ms"]=9117, + ["minions_cannot_be_damaged_after_summoned_ms"]=9122, ["minions_cannot_die_while_affected_by_life_flask"]=1945, - ["minions_cannot_taunt_enemies"]=9118, - ["minions_chance_to_intimidate_on_hit_%"]=9119, + ["minions_cannot_taunt_enemies"]=9123, + ["minions_chance_to_intimidate_on_hit_%"]=9124, ["minions_chance_to_poison_on_hit_%"]=2924, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=9120, - ["minions_gain_your_dexterity"]=9121, - ["minions_gain_your_strength"]=9122, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=9125, + ["minions_gain_your_dexterity"]=9126, + ["minions_gain_your_strength"]=9127, ["minions_get_amulet_stats_instead_of_you"]=1950, - ["minions_go_crazy_on_crit_ms"]=9123, + ["minions_go_crazy_on_crit_ms"]=9128, ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=3058, - ["minions_have_%_chance_to_inflict_wither_on_hit"]=9124, - ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=9125, + ["minions_have_%_chance_to_inflict_wither_on_hit"]=9129, + ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=9130, ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=1908, - ["minions_have_unholy_might"]=9126, - ["minions_hits_can_only_kill_ignited_enemies"]=9127, - ["minions_in_presence_have_onslaught_while_you_are_on_low_ward"]=9128, - ["minions_lose_%_life_when_following_commands_per_10_tribute"]=9129, - ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=9130, - ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=9131, - ["minions_recover_%_maximum_life_when_you_focus"]=9132, - ["minions_reflected_damage_taken_+%"]=9133, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=9134, + ["minions_have_unholy_might"]=9131, + ["minions_hits_can_only_kill_ignited_enemies"]=9132, + ["minions_in_presence_have_onslaught_while_you_are_on_low_ward"]=9133, + ["minions_lose_%_life_when_following_commands_per_10_tribute"]=9134, + ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=9135, + ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=9136, + ["minions_recover_%_maximum_life_when_you_focus"]=9137, + ["minions_reflected_damage_taken_+%"]=9138, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=9139, ["minions_use_parents_flasks_on_summon"]=1943, - ["mirage_archer_duration_+%"]=9135, + ["mirage_archer_duration_+%"]=9140, ["mirage_archers_do_not_attach"]=4098, ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3560, ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3422, ["mirror_arrow_cooldown_speed_+%"]=3578, - ["missing_life_%_gained_as_life_before_hit"]=9136, - ["mod_granted_passive_hash"]=9137, - ["mod_granted_passive_hash_2"]=9138, - ["mod_granted_passive_hash_3"]=9139, - ["mod_granted_passive_hash_4"]=9140, - ["mod_granted_passive_hash_essence"]=9141, + ["missing_life_%_gained_as_life_before_hit"]=9141, + ["mod_granted_passive_hash"]=9142, + ["mod_granted_passive_hash_2"]=9143, + ["mod_granted_passive_hash_3"]=9144, + ["mod_granted_passive_hash_4"]=9145, + ["mod_granted_passive_hash_essence"]=9146, ["modifiers_to_attributes_instead_apply_to_ascendance"]=1170, ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3281, ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3282, ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3280, - ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=9142, + ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=9147, ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3301, - ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=9143, + ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=9148, ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1585, ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1590, ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1595, @@ -244502,15 +244783,15 @@ return { ["modifiers_to_minion_damage_also_affect_you"]=3451, ["modifiers_to_minion_life_regeneration_also_affect_you"]=3454, ["modifiers_to_minion_movement_speed_also_affect_you"]=3455, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=9144, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=9149, ["molten_shell_buff_effect_+%"]=3705, ["molten_shell_damage_+%"]=3410, - ["molten_shell_duration_+%"]=9145, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=9146, - ["molten_strike_chain_count_+"]=9148, + ["molten_shell_duration_+%"]=9150, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=9151, + ["molten_strike_chain_count_+"]=9153, ["molten_strike_damage_+%"]=3344, ["molten_strike_num_of_additional_projectiles"]=3637, - ["molten_strike_projectiles_chain_when_impacting_ground"]=9147, + ["molten_strike_projectiles_chain_when_impacting_ground"]=9152, ["molten_strike_radius_+%"]=3506, ["monster_base_block_%"]=1148, ["monster_dropped_item_quantity_+%"]=20, @@ -244518,195 +244799,196 @@ return { ["monster_life_+%_final_from_map"]=1466, ["monster_life_+%_final_from_rarity"]=1465, ["monster_slain_experience_+%"]=18, - ["monsters_in_your_presence_have_additional_power_equal_to_their_gruelling_madness_stacks"]=9151, - ["mortar_barrage_mine_damage_+%"]=9152, - ["mortar_barrage_mine_num_projectiles"]=9153, - ["mortar_barrage_mine_throwing_speed_+%"]=9155, - ["mortar_barrage_mine_throwing_speed_halved_+%"]=9154, - ["movement_attack_skills_attack_speed_+%"]=9156, - ["movement_skills_cooldown_speed_+%"]=9157, - ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=9158, + ["monsters_in_your_presence_have_additional_power_equal_to_their_gruelling_madness_stacks"]=9156, + ["mortar_barrage_mine_damage_+%"]=9157, + ["mortar_barrage_mine_num_projectiles"]=9158, + ["mortar_barrage_mine_throwing_speed_+%"]=9160, + ["mortar_barrage_mine_throwing_speed_halved_+%"]=9159, + ["movement_attack_skills_attack_speed_+%"]=9161, + ["movement_skills_cooldown_speed_+%"]=9162, + ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=9163, ["movement_skills_cost_no_mana"]=3185, - ["movement_skills_deal_no_physical_damage"]=9159, + ["movement_skills_deal_no_physical_damage"]=9164, ["movement_skills_mana_cost_+%"]=3859, - ["movement_speed_+%_against_bloodlusting_enemies"]=10680, + ["movement_speed_+%_against_bloodlusting_enemies"]=10697, ["movement_speed_+%_during_flask_effect"]=2929, ["movement_speed_+%_for_4_seconds_on_block"]=3049, - ["movement_speed_+%_if_10_green_supports_socketed"]=9160, - ["movement_speed_+%_if_below_100_dexterity"]=9161, - ["movement_speed_+%_if_crit_recently"]=9179, - ["movement_speed_+%_if_enemy_hit_recently"]=9180, - ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=9181, + ["movement_speed_+%_if_10_green_supports_socketed"]=9165, + ["movement_speed_+%_if_below_100_dexterity"]=9166, + ["movement_speed_+%_if_crit_recently"]=9184, + ["movement_speed_+%_if_enemy_hit_recently"]=9185, + ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=9186, ["movement_speed_+%_if_enemy_killed_recently"]=3931, - ["movement_speed_+%_if_have_not_taken_damage_recently"]=9182, - ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=9183, + ["movement_speed_+%_if_have_not_taken_damage_recently"]=9187, + ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=9188, ["movement_speed_+%_if_pierced_recently"]=3883, - ["movement_speed_+%_if_pinned_enemy_recently"]=9162, - ["movement_speed_+%_if_placed_trap_or_mine_recently"]=9163, - ["movement_speed_+%_if_used_a_mark_recently"]=9184, + ["movement_speed_+%_if_pinned_enemy_recently"]=9167, + ["movement_speed_+%_if_placed_trap_or_mine_recently"]=9168, + ["movement_speed_+%_if_used_a_mark_recently"]=9189, ["movement_speed_+%_if_used_a_warcry_recently"]=3857, ["movement_speed_+%_on_throwing_trap"]=2556, - ["movement_speed_+%_per_5_rage"]=9164, - ["movement_speed_+%_per_chest_opened_recently"]=9185, - ["movement_speed_+%_per_endurance_charge"]=9186, - ["movement_speed_+%_per_nearby_corpse"]=9165, - ["movement_speed_+%_per_nearby_enemy"]=9187, - ["movement_speed_+%_per_poison_up_to_50%"]=9188, - ["movement_speed_+%_per_power_charge"]=9189, - ["movement_speed_+%_while_affected_by_ailment"]=9166, - ["movement_speed_+%_while_affected_by_grace"]=9190, - ["movement_speed_+%_while_bleeding"]=9191, - ["movement_speed_+%_while_dual_wielding"]=9192, + ["movement_speed_+%_per_5_rage"]=9169, + ["movement_speed_+%_per_chest_opened_recently"]=9190, + ["movement_speed_+%_per_endurance_charge"]=9191, + ["movement_speed_+%_per_nearby_corpse"]=9170, + ["movement_speed_+%_per_nearby_enemy"]=9192, + ["movement_speed_+%_per_poison_up_to_50%"]=9193, + ["movement_speed_+%_per_power_charge"]=9194, + ["movement_speed_+%_while_affected_by_ailment"]=9171, + ["movement_speed_+%_while_affected_by_grace"]=9195, + ["movement_speed_+%_while_bleeding"]=9196, + ["movement_speed_+%_while_dual_wielding"]=9197, ["movement_speed_+%_while_fortified"]=3050, - ["movement_speed_+%_while_holding_shield"]=9193, + ["movement_speed_+%_while_holding_shield"]=9198, ["movement_speed_+%_while_not_affected_by_status_ailments"]=3041, - ["movement_speed_+%_while_not_using_flask"]=9194, - ["movement_speed_+%_while_off_hand_is_empty"]=9195, - ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=9196, - ["movement_speed_+%_while_on_burning_ground"]=9197, - ["movement_speed_+%_while_poisoned"]=9198, - ["movement_speed_+%_while_surrounded"]=9167, - ["movement_speed_+%_while_using_charm"]=9199, - ["movement_speed_+%_while_you_have_cats_stealth"]=9200, - ["movement_speed_+%_while_you_have_energy_shield"]=9201, - ["movement_speed_+%_while_you_have_storm_barrier_support"]=9202, - ["movement_speed_+%_while_you_have_two_linked_targets"]=9168, + ["movement_speed_+%_while_not_using_flask"]=9199, + ["movement_speed_+%_while_off_hand_is_empty"]=9200, + ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=9201, + ["movement_speed_+%_while_on_burning_ground"]=9202, + ["movement_speed_+%_while_poisoned"]=9203, + ["movement_speed_+%_while_surrounded"]=9172, + ["movement_speed_+%_while_using_charm"]=9204, + ["movement_speed_+%_while_you_have_cats_stealth"]=9205, + ["movement_speed_+%_while_you_have_energy_shield"]=9206, + ["movement_speed_+%_while_you_have_storm_barrier_support"]=9207, + ["movement_speed_+%_while_you_have_two_linked_targets"]=9173, ["movement_speed_bonus_when_throwing_trap_ms"]=2556, ["movement_speed_cannot_be_reduced_below_base"]=2938, - ["movement_speed_is_equal_to_highest_linked_party_member"]=9169, - ["movement_speed_is_only_base_+1%_per_x_evasion_rating"]=9170, - ["movement_speed_penalty_+%_while_performing_action"]=9172, - ["movement_speed_penalty_+%_while_performing_attacks"]=9173, - ["movement_speed_penalty_+%_while_performing_chaos_skills"]=9174, - ["movement_speed_penalty_+%_while_performing_cold_skills"]=9175, - ["movement_speed_penalty_+%_while_performing_fire_skills"]=9176, - ["movement_speed_penalty_+%_while_performing_lightning_skills"]=9177, - ["movement_speed_penalty_+%_while_performing_spells"]=9178, + ["movement_speed_is_equal_to_highest_linked_party_member"]=9174, + ["movement_speed_is_only_base_+1%_per_x_evasion_rating"]=9175, + ["movement_speed_penalty_+%_while_performing_action"]=9177, + ["movement_speed_penalty_+%_while_performing_attacks"]=9178, + ["movement_speed_penalty_+%_while_performing_chaos_skills"]=9179, + ["movement_speed_penalty_+%_while_performing_cold_skills"]=9180, + ["movement_speed_penalty_+%_while_performing_fire_skills"]=9181, + ["movement_speed_penalty_+%_while_performing_lightning_skills"]=9182, + ["movement_speed_penalty_+%_while_performing_spells"]=9183, ["movement_velocity_+%_on_full_energy_shield"]=2738, ["movement_velocity_+%_per_frenzy_charge"]=1581, - ["movement_velocity_+%_per_poison_stack"]=9203, + ["movement_velocity_+%_per_poison_stack"]=9208, ["movement_velocity_+%_per_shock"]=2587, - ["movement_velocity_+%_per_totem"]=9205, + ["movement_velocity_+%_per_totem"]=9210, ["movement_velocity_+%_when_on_full_life"]=1579, ["movement_velocity_+%_when_on_low_life"]=1578, ["movement_velocity_+%_when_on_shocked_ground"]=1909, - ["movement_velocity_+%_while_at_maximum_power_charges"]=9206, - ["movement_velocity_+%_while_chilled"]=9207, + ["movement_velocity_+%_while_at_maximum_power_charges"]=9211, + ["movement_velocity_+%_while_chilled"]=9212, ["movement_velocity_+%_while_cursed"]=2425, ["movement_velocity_+%_while_ignited"]=2586, ["movement_velocity_+%_while_phasing"]=2413, - ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=9204, + ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=9209, ["movement_velocity_+1%_per_X_evasion_rating"]=2471, ["movement_velocity_while_not_hit_+%"]=2964, - ["multishot_empowered_central_projectile_drops_feathered_ground_for_duration_ms"]=9208, - ["nearby_allies_have_onslaught"]=9209, - ["nearby_enemies_all_exposure_%_while_phasing"]=9210, - ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=9211, - ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=9212, - ["nearby_enemies_are_crushed_while_you_have_X_rage"]=9213, - ["nearby_enemies_are_intimidated_while_you_have_rage"]=9214, + ["multishot_empowered_central_projectile_drops_feathered_ground_for_duration_ms"]=9213, + ["nearby_allies_have_onslaught"]=9214, + ["nearby_enemies_all_exposure_%_while_phasing"]=9215, + ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=9216, + ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=9217, + ["nearby_enemies_are_crushed_while_you_have_X_rage"]=9218, + ["nearby_enemies_are_intimidated_while_you_have_rage"]=9219, ["nearby_enemies_chilled_on_block"]=3940, - ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9216, - ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9217, - ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9218, - ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9219, + ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9221, + ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9222, + ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9223, + ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9224, ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3194, - ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9220, - ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9221, - ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9222, - ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9223, - ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9224, - ["necrotic_footprints_from_item"]=9225, + ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9225, + ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9226, + ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9227, + ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9228, + ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9229, + ["necrotic_footprints_from_item"]=9230, ["never_freeze"]=2367, ["never_freeze_or_chill"]=2368, ["never_ignite"]=2366, - ["never_ignite_chill_freeze_shock"]=9226, + ["never_ignite_chill_freeze_shock"]=9231, ["never_shock"]=2369, ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2893, ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2892, ["next_attack_is_ancestrally_boosted_for_x_seconds_on_heavy_stunning_unique_or_rare_enemy"]=2209, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9227, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9232, ["no_critical_strike_multiplier"]=1429, ["no_energy_shield"]=1929, ["no_energy_shield_recharge_or_regeneration"]=2469, ["no_evasion_rating"]=1930, ["no_extra_bleeding_damage_while_moving"]=2935, - ["no_inherent_chance_to_block_while_dual_wielding"]=9228, - ["no_inherent_mana_regeneration"]=9229, - ["no_inherent_rage_loss"]=9230, + ["no_inherent_chance_to_block_while_dual_wielding"]=9233, + ["no_inherent_mana_regeneration"]=9234, + ["no_inherent_rage_loss"]=9235, ["no_life_regeneration"]=2044, ["no_mana_regeneration"]=2045, - ["no_mana_regeneration_if_not_crit_recently"]=9231, + ["no_mana_regeneration_if_not_crit_recently"]=9236, ["no_maximum_power_charges"]=2775, - ["no_movement_penalty_while_shield_is_raised"]=9232, + ["no_movement_penalty_while_shield_is_raised"]=9237, ["no_physical_damage_reduction_rating"]=1928, - ["non_aura_hexes_gain_20%_effect_per_second"]=9233, - ["non_channelling_attack_added_lightning_damage_%_maximum_mana"]=9234, - ["non_channelling_spells_cost_x%_of_your_energy_shield"]=9235, - ["non_channelling_spells_deal_x%_more_damage"]=9236, - ["non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit"]=9237, + ["non_aura_hexes_gain_20%_effect_per_second"]=9238, + ["non_channelling_attack_added_lightning_damage_%_maximum_mana"]=9239, + ["non_channelling_spells_cost_x%_of_your_energy_shield"]=9240, + ["non_channelling_spells_deal_x%_more_damage"]=9241, + ["non_channelling_spells_x%_chance_to_double_mana_cost_and_always_crit"]=9242, ["non_critical_damage_multiplier_+%"]=2509, - ["non_critical_strikes_deal_no_damage"]=9238, + ["non_critical_strikes_deal_no_damage"]=9243, ["non_critical_strikes_penetrate_elemental_resistances_%"]=3266, ["non_curse_aura_effect_+%"]=3275, - ["non_curse_aura_effect_+%_per_10_devotion"]=9239, - ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9240, - ["non_cursed_enemies_you_curse_gain_x_withered_stacks"]=9241, - ["non_damaging_ailment_effect_+%"]=9242, - ["non_damaging_ailment_effect_+%_on_self"]=9243, - ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9244, + ["non_curse_aura_effect_+%_per_10_devotion"]=9244, + ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9245, + ["non_cursed_enemies_you_curse_gain_x_withered_stacks"]=9246, + ["non_damaging_ailment_effect_+%"]=9247, + ["non_damaging_ailment_effect_+%_on_self"]=9248, + ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9249, ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=4023, - ["non_damaging_ailment_effect_+%_per_10_devotion"]=9245, - ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9246, - ["non_damaging_ailments_as_though_damage_+%_final"]=9247, - ["non_damaging_ailments_reflected_to_self"]=9248, + ["non_damaging_ailment_effect_+%_per_10_devotion"]=9250, + ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9251, + ["non_damaging_ailments_as_though_damage_+%_final"]=9252, + ["non_damaging_ailments_reflected_to_self"]=9253, ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=4028, - ["non_piercing_projectiles_critical_strike_chance_+%"]=9249, - ["non_projectile_chaining_lightning_skill_additional_chains"]=9250, - ["non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost"]=9251, - ["non_skill_all_damage_1%_to_gain_as_fire_+_per_%_attack_block_chance"]=9252, - ["non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed"]=9253, - ["non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed"]=9254, - ["non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed"]=9255, - ["non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed"]=9256, + ["non_piercing_projectiles_critical_strike_chance_+%"]=9254, + ["non_projectile_chaining_lightning_skill_additional_chains"]=9255, + ["non_skill_all_damage_%_to_gain_as_chaos_per_3_life_cost"]=9256, + ["non_skill_all_damage_%_to_gain_as_fire_+_per_1%_attack_block_chance"]=9257, + ["non_skill_all_damage_%_to_gain_as_fire_+_per_2%_attack_block_chance"]=9258, + ["non_skill_attack_skills_all_damage_%_to_gain_as_chaos_while_you_unarmed"]=9259, + ["non_skill_attack_skills_all_damage_%_to_gain_as_cold_while_you_unarmed"]=9260, + ["non_skill_attack_skills_all_damage_%_to_gain_as_fire_while_you_unarmed"]=9261, + ["non_skill_attack_skills_all_damage_%_to_gain_as_lightning_while_you_unarmed"]=9262, ["non_skill_base_all_damage_%_to_gain_as_chaos"]=1696, - ["non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion"]=9257, - ["non_skill_base_all_damage_%_to_gain_as_chaos_while_missing_ward"]=9258, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=9259, - ["non_skill_base_all_damage_%_to_gain_as_chaos_with_spells"]=9260, + ["non_skill_base_all_damage_%_to_gain_as_chaos_per_active_undead_minion"]=9263, + ["non_skill_base_all_damage_%_to_gain_as_chaos_while_missing_ward"]=9264, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_attacks"]=9265, + ["non_skill_base_all_damage_%_to_gain_as_chaos_with_spells"]=9266, ["non_skill_base_all_damage_%_to_gain_as_cold"]=890, - ["non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning"]=9282, - ["non_skill_base_all_damage_%_to_gain_as_cold_if_youve_reverted_recently"]=9261, - ["non_skill_base_all_damage_%_to_gain_as_cold_while_missing_ward"]=9262, - ["non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill"]=9263, - ["non_skill_base_all_damage_%_to_gain_as_cold_while_shapeshifted"]=9264, + ["non_skill_base_all_damage_%_to_gain_as_cold_fire_lightning"]=9288, + ["non_skill_base_all_damage_%_to_gain_as_cold_if_youve_reverted_recently"]=9267, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_missing_ward"]=9268, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_on_ground_ice_chill"]=9269, + ["non_skill_base_all_damage_%_to_gain_as_cold_while_shapeshifted"]=9270, ["non_skill_base_all_damage_%_to_gain_as_cold_with_attacks"]=891, - ["non_skill_base_all_damage_%_to_gain_as_cold_with_empowered_attacks"]=9265, + ["non_skill_base_all_damage_%_to_gain_as_cold_with_empowered_attacks"]=9271, ["non_skill_base_all_damage_%_to_gain_as_cold_with_spells"]=892, ["non_skill_base_all_damage_%_to_gain_as_fire"]=887, - ["non_skill_base_all_damage_%_to_gain_as_fire_if_youve_reverted_recently"]=9266, - ["non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds"]=9267, - ["non_skill_base_all_damage_%_to_gain_as_fire_per_endurance_charge_consumed_recently"]=9268, - ["non_skill_base_all_damage_%_to_gain_as_fire_while_missing_ward"]=9269, - ["non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn"]=9270, - ["non_skill_base_all_damage_%_to_gain_as_fire_while_shapeshifted"]=9271, + ["non_skill_base_all_damage_%_to_gain_as_fire_if_youve_reverted_recently"]=9272, + ["non_skill_base_all_damage_%_to_gain_as_fire_per_different_grenade_type_fired_in_past_8_seconds"]=9273, + ["non_skill_base_all_damage_%_to_gain_as_fire_per_endurance_charge_consumed_recently"]=9274, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_missing_ward"]=9275, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_on_ground_fire_burn"]=9276, + ["non_skill_base_all_damage_%_to_gain_as_fire_while_shapeshifted"]=9277, ["non_skill_base_all_damage_%_to_gain_as_fire_with_attacks"]=889, ["non_skill_base_all_damage_%_to_gain_as_fire_with_spells"]=888, ["non_skill_base_all_damage_%_to_gain_as_lightning"]=893, - ["non_skill_base_all_damage_%_to_gain_as_lightning_if_youve_reverted_recently"]=9272, - ["non_skill_base_all_damage_%_to_gain_as_lightning_per_50_ward_cost"]=9273, - ["non_skill_base_all_damage_%_to_gain_as_lightning_while_missing_ward"]=9274, - ["non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock"]=9275, - ["non_skill_base_all_damage_%_to_gain_as_lightning_while_shapeshifted"]=9276, - ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=9283, + ["non_skill_base_all_damage_%_to_gain_as_lightning_if_youve_reverted_recently"]=9278, + ["non_skill_base_all_damage_%_to_gain_as_lightning_per_50_ward_cost"]=9279, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_missing_ward"]=9280, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_on_ground_lightning_shock"]=9281, + ["non_skill_base_all_damage_%_to_gain_as_lightning_while_shapeshifted"]=9282, + ["non_skill_base_all_damage_%_to_gain_as_lightning_with_attacks"]=9289, ["non_skill_base_all_damage_%_to_gain_as_lightning_with_spells"]=894, ["non_skill_base_all_damage_%_to_gain_as_physical"]=1695, - ["non_skill_base_all_damage_%_to_gain_as_physical_per_10%_missing_mana_permyriad"]=9277, + ["non_skill_base_all_damage_%_to_gain_as_physical_per_10%_missing_mana_permyriad"]=9283, ["non_skill_base_all_damage_%_to_gain_as_physical_with_attacks"]=886, - ["non_skill_base_all_damage_%_to_gain_as_random_element"]=9278, - ["non_skill_base_all_damage_%_to_gain_as_random_element_per_socketed_rune"]=9279, - ["non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted"]=9280, - ["non_skill_base_all_damage_%_to_gain_as_random_element_with_attacks"]=9281, + ["non_skill_base_all_damage_%_to_gain_as_random_element"]=9284, + ["non_skill_base_all_damage_%_to_gain_as_random_element_per_socketed_rune"]=9285, + ["non_skill_base_all_damage_%_to_gain_as_random_element_while_shapeshifted"]=9286, + ["non_skill_base_all_damage_%_to_gain_as_random_element_with_attacks"]=9287, ["non_skill_base_cold_damage_%_to_convert_to_chaos"]=1741, ["non_skill_base_cold_damage_%_to_convert_to_fire"]=1739, ["non_skill_base_cold_damage_%_to_convert_to_lightning"]=1740, @@ -244714,20 +244996,20 @@ return { ["non_skill_base_cold_damage_%_to_gain_as_fire"]=1707, ["non_skill_base_cold_damage_%_to_gain_as_lightning"]=1521, ["non_skill_base_cold_damage_%_to_gain_as_physical"]=1706, - ["non_skill_base_elemental_damage_%_to_convert_to_chaos"]=9290, - ["non_skill_base_elemental_damage_%_to_convert_to_cold"]=9291, - ["non_skill_base_elemental_damage_%_to_convert_to_fire"]=9292, - ["non_skill_base_elemental_damage_%_to_convert_to_lightning"]=9293, + ["non_skill_base_elemental_damage_%_to_convert_to_chaos"]=9296, + ["non_skill_base_elemental_damage_%_to_convert_to_cold"]=9297, + ["non_skill_base_elemental_damage_%_to_convert_to_fire"]=9298, + ["non_skill_base_elemental_damage_%_to_convert_to_lightning"]=9299, ["non_skill_base_elemental_damage_%_to_gain_as_chaos"]=1712, - ["non_skill_base_elemental_damage_%_to_gain_as_cold"]=9284, - ["non_skill_base_elemental_damage_%_to_gain_as_cold_if_cold_infusion_collected_last_8_seconds"]=9285, - ["non_skill_base_elemental_damage_%_to_gain_as_fire"]=9286, - ["non_skill_base_elemental_damage_%_to_gain_as_fire_if_fire_infusion_collected_last_8_seconds"]=9287, - ["non_skill_base_elemental_damage_%_to_gain_as_lightning"]=9288, - ["non_skill_base_elemental_damage_%_to_gain_as_lightning_if_lightning_infusion_collected_last_8_seconds"]=9289, + ["non_skill_base_elemental_damage_%_to_gain_as_cold"]=9290, + ["non_skill_base_elemental_damage_%_to_gain_as_cold_if_cold_infusion_collected_last_8_seconds"]=9291, + ["non_skill_base_elemental_damage_%_to_gain_as_fire"]=9292, + ["non_skill_base_elemental_damage_%_to_gain_as_fire_if_fire_infusion_collected_last_8_seconds"]=9293, + ["non_skill_base_elemental_damage_%_to_gain_as_lightning"]=9294, + ["non_skill_base_elemental_damage_%_to_gain_as_lightning_if_lightning_infusion_collected_last_8_seconds"]=9295, ["non_skill_base_fire_damage_%_to_convert_to_chaos"]=1742, - ["non_skill_base_fire_damage_%_to_convert_to_cold"]=9294, - ["non_skill_base_fire_damage_%_to_convert_to_lightning"]=9295, + ["non_skill_base_fire_damage_%_to_convert_to_cold"]=9300, + ["non_skill_base_fire_damage_%_to_convert_to_lightning"]=9301, ["non_skill_base_fire_damage_%_to_gain_as_chaos"]=1711, ["non_skill_base_fire_damage_%_to_gain_as_lightning"]=1709, ["non_skill_base_fire_damage_%_to_gain_as_physical"]=1710, @@ -244740,139 +245022,140 @@ return { ["non_skill_base_lightning_damage_%_to_gain_as_physical"]=1702, ["non_skill_base_non_chaos_damage_%_to_gain_as_chaos"]=1713, ["non_skill_base_physical_damage_%_to_convert_to_chaos"]=1734, - ["non_skill_base_physical_damage_%_to_convert_to_chaos_per_level"]=9300, + ["non_skill_base_physical_damage_%_to_convert_to_chaos_per_level"]=9306, ["non_skill_base_physical_damage_%_to_convert_to_cold"]=1729, - ["non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=9310, + ["non_skill_base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=9316, ["non_skill_base_physical_damage_%_to_convert_to_fire"]=1726, - ["non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=9312, + ["non_skill_base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=9318, ["non_skill_base_physical_damage_%_to_convert_to_lightning"]=1731, - ["non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=9314, + ["non_skill_base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=9320, ["non_skill_base_physical_damage_%_to_convert_to_random_element"]=1733, ["non_skill_base_physical_damage_%_to_gain_as_chaos"]=1701, ["non_skill_base_physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3184, ["non_skill_base_physical_damage_%_to_gain_as_chaos_with_attacks"]=1314, ["non_skill_base_physical_damage_%_to_gain_as_cold"]=1699, - ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies"]=9296, - ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies"]=9297, + ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_dazed_enemies"]=9302, + ["non_skill_base_physical_damage_%_to_gain_as_cold_vs_shocked_enemies"]=9303, ["non_skill_base_physical_damage_%_to_gain_as_fire"]=1698, ["non_skill_base_physical_damage_%_to_gain_as_lightning"]=1700, - ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies"]=9298, - ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies"]=9299, + ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_chilled_enemies"]=9304, + ["non_skill_base_physical_damage_%_to_gain_as_lightning_vs_dazed_enemies"]=9305, ["non_skill_base_physical_damage_%_to_gain_as_random_element"]=2709, - ["non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge"]=9303, - ["non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy"]=9301, - ["non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies"]=9302, + ["non_skill_cold_damage_%_to_gain_as_chaos_per_frenzy_charge"]=9309, + ["non_skill_cold_damage_%_to_gain_as_fire_per_1%_chill_effect_on_enemy"]=9307, + ["non_skill_cold_damage_%_to_gain_as_fire_vs_frozen_enemies"]=9308, ["non_skill_elemental_damage_%_to_gain_as_chaos_per_shaper_item_equipped"]=4025, - ["non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge"]=9304, - ["non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=9305, - ["non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge"]=9306, - ["non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies"]=9307, + ["non_skill_fire_damage_%_to_gain_as_chaos_per_endurance_charge"]=9310, + ["non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=9311, + ["non_skill_lightning_damage_%_to_gain_as_chaos_per_power_charge"]=9312, + ["non_skill_lightning_damage_%_to_gain_as_cold_vs_chilled_enemies"]=9313, ["non_skill_non_chaos_damage_%_to_gain_as_chaos_per_curse_on_target_on_kill_for_4_seconds"]=3456, - ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9309, - ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9311, + ["non_skill_physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9315, + ["non_skill_physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9317, ["non_skill_physical_damage_%_to_convert_to_fire_vs_ignited_enemies"]=1940, - ["non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10770, + ["non_skill_physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10787, ["non_skill_physical_damage_%_to_convert_to_fire_with_bear_skills"]=1727, - ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9313, - ["non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped"]=9308, + ["non_skill_physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9319, + ["non_skill_physical_damage_%_to_gain_as_chaos_per_elder_item_equipped"]=9314, ["non_skill_physical_damage_%_to_gain_as_chaos_vs_bleeding_enemies"]=3914, - ["non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies"]=9315, + ["non_skill_physical_damage_%_to_gain_as_chaos_vs_poisoned_enemies"]=9321, ["non_skill_physical_damage_%_to_gain_as_cold_with_attacks"]=3473, - ["non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge"]=9316, - ["non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger"]=9317, - ["non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently"]=9318, - ["non_skill_physical_damage_%_to_gain_as_fire_per_rage"]=9319, + ["non_skill_physical_damage_%_to_gain_as_each_element_per_spirit_charge"]=9322, + ["non_skill_physical_damage_%_to_gain_as_fire_damage_while_affected_by_anger"]=9323, + ["non_skill_physical_damage_%_to_gain_as_fire_if_have_crit_recently"]=9324, + ["non_skill_physical_damage_%_to_gain_as_fire_per_rage"]=9325, ["non_skill_physical_damage_%_to_gain_as_fire_with_attacks"]=3472, - ["non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath"]=9320, + ["non_skill_physical_damage_%_to_gain_as_lightning_damage_while_affected_by_wrath"]=9326, ["non_skill_physical_damage_%_to_gain_as_lightning_with_attacks"]=3474, - ["non_skill_physical_damage_%_to_gain_as_random_element_while_ignited"]=9321, - ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained"]=9322, - ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain"]=9323, - ["non_skill_unarmed_damage_to_gain_as_fire_1%_per_X_intelligence"]=9326, - ["non_travel_attack_skill_repeat_count"]=9327, + ["non_skill_physical_damage_%_to_gain_as_random_element_while_ignited"]=9327, + ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_if_chained"]=9328, + ["non_skill_projectile_non_chaos_damage_%_to_gain_as_chaos_per_chain"]=9329, + ["non_skill_unarmed_damage_to_gain_as_fire_1%_per_X_intelligence"]=9332, + ["non_travel_attack_skill_repeat_count"]=9333, ["non_unique_flask_effect_+%"]=2530, - ["non_unique_life_flasks_always_applied_with_no_instant_recovery_only_to_you"]=9328, - ["normal_monster_dropped_item_quantity_+%"]=9329, - ["notable_knockback_distance_+%_final_for_blocked_hits"]=9330, - ["nova_spells_cast_at_target_location"]=9331, - ["num_additional_skill_slots"]=9332, - ["num_cascade_aftershocks_every_third_slam"]=9333, - ["num_charm_slots"]=9334, - ["num_charm_slots_+_if_you_have_at_least_100_tribute"]=9335, + ["non_unique_life_flasks_always_applied_with_no_instant_recovery_only_to_you"]=9334, + ["normal_monster_dropped_item_quantity_+%"]=9335, + ["notable_knockback_distance_+%_final_for_blocked_hits"]=9336, + ["nova_skill_gem_level_+"]=9337, + ["nova_spells_cast_at_target_location"]=9338, + ["num_additional_skill_slots"]=9339, + ["num_cascade_aftershocks_every_third_slam"]=9340, + ["num_charm_slots"]=9341, + ["num_charm_slots_+_if_you_have_at_least_100_tribute"]=9342, ["num_of_additional_chains_at_max_frenzy_charges"]=1605, ["number_of_additional_arrows"]=1014, - ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9336, - ["number_of_additional_banners_allowed"]=9337, - ["number_of_additional_chains_for_projectiles_while_phasing"]=9338, - ["number_of_additional_chains_for_spell_projectiles"]=9339, + ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9343, + ["number_of_additional_banners_allowed"]=9344, + ["number_of_additional_chains_for_projectiles_while_phasing"]=9345, + ["number_of_additional_chains_for_spell_projectiles"]=9346, ["number_of_additional_clones"]=2840, ["number_of_additional_curses_allowed"]=1933, ["number_of_additional_curses_allowed_on_self"]=1934, - ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9340, - ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9341, - ["number_of_additional_ignites_allowed"]=9342, + ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9347, + ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9348, + ["number_of_additional_ignites_allowed"]=9349, ["number_of_additional_mines_to_place"]=3258, - ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9343, - ["number_of_additional_mines_to_place_with_at_least_500_int"]=9344, - ["number_of_additional_poison_stacks"]=9345, - ["number_of_additional_poison_stacks_if_you_have_at_least_100_tribute"]=9346, + ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9350, + ["number_of_additional_mines_to_place_with_at_least_500_int"]=9351, + ["number_of_additional_poison_stacks"]=9352, + ["number_of_additional_poison_stacks_if_you_have_at_least_100_tribute"]=9353, ["number_of_additional_projectiles"]=1575, - ["number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw"]=9347, - ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9348, - ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9349, + ["number_of_additional_projectiles_if_last_movement_skill_was_retreating_throw"]=9354, + ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9355, + ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9356, ["number_of_additional_remote_mines_allowed"]=2004, ["number_of_additional_totems_allowed"]=2002, ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3315, ["number_of_additional_traps_allowed"]=2003, - ["number_of_additional_traps_to_throw"]=9350, - ["number_of_animated_weapons_allowed"]=9351, - ["number_of_broken_faces"]=9353, + ["number_of_additional_traps_to_throw"]=9357, + ["number_of_animated_weapons_allowed"]=9358, + ["number_of_broken_faces"]=9360, ["number_of_chains"]=1572, ["number_of_crab_charges_lost_when_hit"]=4035, - ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9354, - ["number_of_golems_allowed_with_3_primordial_jewels"]=9355, + ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9361, + ["number_of_golems_allowed_with_3_primordial_jewels"]=9362, ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2983, - ["number_of_poison_cloud_allowed"]=9356, - ["number_of_projectiles_+%_final_from_skill"]=9357, - ["number_of_raging_spirits_is_limited_to_3"]=9358, - ["number_of_skeletons_allowed_per_2_old"]=9359, - ["number_of_support_ghosts_is_limited_to_3"]=9360, - ["number_of_vine_arrow_pod_allowed"]=9361, + ["number_of_poison_cloud_allowed"]=9363, + ["number_of_projectiles_+%_final_from_skill"]=9364, + ["number_of_raging_spirits_is_limited_to_3"]=9365, + ["number_of_skeletons_allowed_per_2_old"]=9366, + ["number_of_support_ghosts_is_limited_to_3"]=9367, + ["number_of_vine_arrow_pod_allowed"]=9368, ["number_of_zombies_allowed_+%"]=2393, - ["number_of_zombies_allowed_+1_per_X_strength"]=9362, + ["number_of_zombies_allowed_+1_per_X_strength"]=9369, ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2841, - ["occultist_chaos_damage_+%_final"]=9363, - ["occultist_cold_damage_+%_final"]=9364, + ["occultist_chaos_damage_+%_final"]=9370, + ["occultist_cold_damage_+%_final"]=9371, ["occultist_immune_to_stun_while_has_energy_shield"]=3445, ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3444, - ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9365, - ["off_hand_apply_ancients_challenge_on_hit"]=10583, - ["off_hand_attack_speed_+%_while_dual_wielding"]=9366, - ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9367, + ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9372, + ["off_hand_apply_ancients_challenge_on_hit"]=10599, + ["off_hand_attack_speed_+%_while_dual_wielding"]=9373, + ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9374, ["off_hand_base_weapon_attack_duration_ms"]=25, - ["off_hand_claw_mana_gain_on_hit"]=9368, - ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9369, - ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9370, - ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9371, + ["off_hand_claw_mana_gain_on_hit"]=9375, + ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9376, + ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9377, + ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9378, ["off_hand_maximum_attack_distance"]=29, ["off_hand_minimum_attack_distance"]=27, ["off_hand_quality"]=22, ["off_hand_weapon_type"]=14, - ["offering_area_of_effect_+%"]=9372, - ["offering_duration_+%"]=9373, - ["offering_life_+%"]=9374, + ["offering_area_of_effect_+%"]=9379, + ["offering_duration_+%"]=9380, + ["offering_life_+%"]=9381, ["offering_spells_effect_+%"]=3743, ["offerings_also_buff_you"]=1162, - ["offerings_cannot_be_damaged_if_created_recently"]=9375, + ["offerings_cannot_be_damaged_if_created_recently"]=9382, ["old_dagger_implicit_critical_strike_chance_+30%"]=1381, ["old_dagger_implicit_critical_strike_chance_+40%"]=1382, ["old_dagger_implicit_critical_strike_chance_+50%"]=1383, - ["on_banner_expiry_recover_%_of_required_glory"]=9376, - ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9377, - ["on_casting_banner_recover_%_of_planted_banner_stages"]=9378, - ["on_kill_effects_occur_twice"]=9379, + ["on_banner_expiry_recover_%_of_required_glory"]=9383, + ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9384, + ["on_casting_banner_recover_%_of_planted_banner_stages"]=9385, + ["on_kill_effects_occur_twice"]=9386, ["on_weapon_global_damage_+%"]=1175, - ["one_handed_attack_ailment_chance_+%"]=9380, + ["one_handed_attack_ailment_chance_+%"]=9387, ["one_handed_attack_speed_+%"]=3048, ["one_handed_melee_accuracy_rating_+%"]=1358, ["one_handed_melee_attack_speed_+%"]=1342, @@ -244889,104 +245172,104 @@ return { ["onslaught_on_vaal_skill_use_duration_ms"]=2693, ["onslaught_time_granted_on_kill_ms"]=2754, ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2755, - ["open_nearby_chests_on_cast_chance_%"]=9381, - ["orb_of_storm_strike_rate_while_channelling_+%"]=9382, - ["orb_of_storms_cast_speed_+%"]=9383, + ["open_nearby_chests_on_cast_chance_%"]=9388, + ["orb_of_storm_strike_rate_while_channelling_+%"]=9389, + ["orb_of_storms_cast_speed_+%"]=9390, ["orb_of_storms_damage_+%"]=3439, - ["orb_skill_limit_+"]=9384, - ["other_rite_maps_gain_ritual_additional_reward_rerolls"]=9385, - ["other_rite_maps_gain_ritual_additional_wildwood_packs"]=9386, - ["other_rite_maps_gain_ritual_number_of_free_rerolls"]=9387, - ["other_rite_maps_gain_ritual_offered_rewards_amount_+%"]=9388, - ["other_rite_maps_gain_ritual_rewards_reroll_cost_+%_final"]=9389, - ["other_rite_maps_gain_ritual_tribute_+%"]=9390, - ["overencumbrance_on_dodge_roll"]=9391, - ["overkill_damage_%_as_physical_to_nearby_enemies"]=9392, - ["override_block_chance_for_allies_in_your_presence"]=9393, + ["orb_skill_limit_+"]=9391, + ["other_rite_maps_gain_ritual_additional_reward_rerolls"]=9392, + ["other_rite_maps_gain_ritual_additional_wildwood_packs"]=9393, + ["other_rite_maps_gain_ritual_number_of_free_rerolls"]=9394, + ["other_rite_maps_gain_ritual_offered_rewards_amount_+%"]=9395, + ["other_rite_maps_gain_ritual_rewards_reroll_cost_+%_final"]=9396, + ["other_rite_maps_gain_ritual_tribute_+%"]=9397, + ["overencumbrance_on_dodge_roll"]=9398, + ["overkill_damage_%_as_physical_to_nearby_enemies"]=9399, + ["override_block_chance_for_allies_in_your_presence"]=9400, ["override_maximum_damage_resistance_%"]=1032, - ["override_weapon_base_critical_strike_chance"]=9394, + ["override_weapon_base_critical_strike_chance"]=9401, ["owl_feather_gain_frequency_+%"]=4122, ["owl_feather_max_bonus_to_stack"]=4121, ["pain_attunement_keystone_critical_strike_multiplier_+%_final"]=1952, - ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9395, - ["pantheon_shakari_self_poison_duration_+%_final"]=9396, - ["parried_magnitude_+%"]=9397, - ["parry_applies_spell_damage_debuff_instead"]=9398, - ["parry_area_of_effect_+%"]=9399, - ["parry_attack_speed_+%_if_youve_parried_recently"]=9400, - ["parry_cannot_be_critically_hit_during_parry"]=9401, - ["parry_damage_+%"]=9402, - ["parry_deal_thorns_damage_chance_%_on_hit"]=10283, - ["parry_evasion_rating_+%_during_parry"]=9403, - ["parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently"]=9404, - ["parry_hit_damage_stun_multiplier_+%"]=9405, - ["parry_modifiers_to_stun_buildup_instead_apply_to_freeze"]=9406, - ["parry_movement_speed_+%_if_youve_parried_recently"]=9407, - ["parry_physical_damage_%_to_convert_to_cold"]=9408, - ["parry_skill_effect_duration_+%"]=9410, - ["parry_skill_effect_duration_+%_per_10_tribute"]=9409, - ["parry_stun_threshold_+%_during_parry"]=9411, - ["parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack"]=9412, - ["parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack"]=9413, - ["passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=9414, + ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9402, + ["pantheon_shakari_self_poison_duration_+%_final"]=9403, + ["parried_magnitude_+%"]=9404, + ["parry_applies_spell_damage_debuff_instead"]=9405, + ["parry_area_of_effect_+%"]=9406, + ["parry_attack_speed_+%_if_youve_parried_recently"]=9407, + ["parry_cannot_be_critically_hit_during_parry"]=9408, + ["parry_damage_+%"]=9409, + ["parry_deal_thorns_damage_chance_%_on_hit"]=10297, + ["parry_evasion_rating_+%_during_parry"]=9410, + ["parry_heavy_stun_poise_decay_rate_+%_if_youve_successfully_parried_recently"]=9411, + ["parry_hit_damage_stun_multiplier_+%"]=9412, + ["parry_modifiers_to_stun_buildup_instead_apply_to_freeze"]=9413, + ["parry_movement_speed_+%_if_youve_parried_recently"]=9414, + ["parry_physical_damage_%_to_convert_to_cold"]=9415, + ["parry_skill_effect_duration_+%"]=9417, + ["parry_skill_effect_duration_+%_per_10_tribute"]=9416, + ["parry_stun_threshold_+%_during_parry"]=9418, + ["parry_successfully_parrying_melee_attack_gives_damage_+%_to_your_next_ranged_attack"]=9419, + ["parry_successfully_parrying_projectile_gives_damage_+%_to_your_next_melee_attack"]=9420, + ["passive_adamant_recovery_notable_additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=9421, ["passive_applies_to_minions"]=2827, - ["passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value"]=9415, - ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9416, - ["passive_mastery_damage_taken_over_time_+%_final"]=9417, - ["passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%"]=9418, - ["passive_mastery_less_projectile_speed_+%_final"]=9419, - ["passive_mastery_less_skill_effect_duration_+%_final"]=9420, - ["passive_mastery_more_projectile_speed_+%_final"]=9421, - ["passive_mastery_more_skill_effect_duration_+%_final"]=9422, - ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9423, + ["passive_energising_deflection_notable_additive_es_recharge_rate_modifiers_also_apply_to_deflection_rating_at_%_value"]=9422, + ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9423, + ["passive_mastery_damage_taken_over_time_+%_final"]=9424, + ["passive_mastery_exposure_you_inflict_has_minimum_resistance_lower_%"]=9425, + ["passive_mastery_less_projectile_speed_+%_final"]=9426, + ["passive_mastery_less_skill_effect_duration_+%_final"]=9427, + ["passive_mastery_more_projectile_speed_+%_final"]=9428, + ["passive_mastery_more_skill_effect_duration_+%_final"]=9429, + ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9430, ["passive_notable_ignite_proliferation_radius"]=1972, ["passive_notable_kaomsblessing_fire_spells_ancestral_boosted_when_you_warcry"]=2210, - ["passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits"]=9424, - ["passive_tree_damage_taken_+%_final_from_hindered_enemies"]=9425, - ["passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies"]=9426, - ["pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x"]=9427, - ["pathfinder_flask_amount_to_recover_+%_final"]=9428, - ["pathfinder_flask_life_to_recover_+%_final"]=9429, + ["passive_overwhelming_strike_hit_damage_stun_multiplier_+%_final_with_crits"]=9431, + ["passive_tree_damage_taken_+%_final_from_hindered_enemies"]=9432, + ["passive_tree_mace_damage_+%_final_vs_heavy_stunned_enemies"]=9433, + ["pathfinder_ascendancy_poison_on_enemies_you_kill_spread_to_enemies_within_x"]=9434, + ["pathfinder_flask_amount_to_recover_+%_final"]=9435, + ["pathfinder_flask_life_to_recover_+%_final"]=9436, ["pathfinder_physical_damage_%_to_gain_as_chaos_if_charges_consumed_from_amethyst_flask"]=4112, - ["pathfinder_poison_duration_+%_final"]=9430, + ["pathfinder_poison_duration_+%_final"]=9437, ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4109, ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4110, ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4111, - ["penance_brand_area_of_effect_+%"]=9431, - ["penance_brand_cast_speed_+%"]=9432, - ["penance_brand_damage_+%"]=9433, + ["penance_brand_area_of_effect_+%"]=9438, + ["penance_brand_cast_speed_+%"]=9439, + ["penance_brand_damage_+%"]=9440, ["penetrate_elemental_resistance_%_per_15_ascendance"]=1172, - ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9434, - ["penetrate_elemental_resistance_%_while_shapeshifted"]=9435, + ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9441, + ["penetrate_elemental_resistance_%_while_shapeshifted"]=9442, ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2756, - ["perandus_double_number_of_coins_found"]=9436, - ["perfect_timing_window_ms_+%"]=9442, - ["permanent_damage_+%_per_second_of_chill"]=9443, - ["permanent_damage_+%_per_second_of_freeze"]=9444, - ["permanent_fire_damage_+%_per_second_of_ignite_up_to_10%"]=9445, + ["perandus_double_number_of_coins_found"]=9443, + ["perfect_timing_window_ms_+%"]=9449, + ["permanent_damage_+%_per_second_of_chill"]=9450, + ["permanent_damage_+%_per_second_of_freeze"]=9451, + ["permanent_fire_damage_+%_per_second_of_ignite_up_to_10%"]=9452, ["permanently_intimidate_enemies_you_hit_on_full_life"]=3927, - ["permanently_intimidate_enemy_on_block"]=9446, - ["petrified_blood_mana_reservation_efficiency_+%"]=9448, - ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9447, - ["petrified_blood_reservation_+%"]=9449, - ["phantasm_refresh_duration_on_hit_vs_unique_%_chance"]=9450, + ["permanently_intimidate_enemy_on_block"]=9453, + ["petrified_blood_mana_reservation_efficiency_+%"]=9455, + ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9454, + ["petrified_blood_reservation_+%"]=9456, + ["phantasm_refresh_duration_on_hit_vs_unique_%_chance"]=9457, ["phase_on_vaal_skill_use_duration_ms"]=2694, ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3707, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9451, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9458, ["phase_run_skill_effect_duration_+%"]=3797, ["phase_through_objects"]=2600, ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3915, ["phasing_for_4_seconds_on_kill_%"]=3178, - ["phasing_if_blocked_recently"]=9452, + ["phasing_if_blocked_recently"]=9459, ["phasing_on_rampage_threshold_ms"]=2737, ["phasing_on_trap_triggered_by_an_enemy_ms"]=3915, ["phylactery_can_only_contain_non_unique_jewel"]=145, ["phylactery_jewel_socket_effect_+%"]=147, - ["phys_cascade_trap_cooldown_speed_+%"]=9453, - ["phys_cascade_trap_damage_+%"]=9454, - ["phys_cascade_trap_duration_+%"]=9455, - ["phys_cascade_trap_number_of_additional_cascades"]=9456, - ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9457, + ["phys_cascade_trap_cooldown_speed_+%"]=9460, + ["phys_cascade_trap_damage_+%"]=9461, + ["phys_cascade_trap_duration_+%"]=9462, + ["phys_cascade_trap_number_of_additional_cascades"]=9463, + ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9464, ["physical_attack_damage_+%"]=1185, ["physical_attack_damage_+%_while_holding_a_shield"]=1190, ["physical_attack_damage_taken_+"]=1983, @@ -244998,23 +245281,23 @@ return { ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3933, ["physical_damage_%_added_as_fire_damage_on_kill"]=2948, ["physical_damage_%_taken_from_mana_before_life"]=3847, - ["physical_damage_%_to_gain_as_fire_vs_heavy_stunned"]=9458, - ["physical_damage_%_to_gain_as_lightning_vs_electrocuted"]=9459, + ["physical_damage_%_to_gain_as_fire_vs_heavy_stunned"]=9465, + ["physical_damage_%_to_gain_as_lightning_vs_electrocuted"]=9466, ["physical_damage_+%"]=1209, ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3906, - ["physical_damage_+%_if_skill_costs_life"]=9464, - ["physical_damage_+%_per_10_rage"]=9465, - ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9460, - ["physical_damage_+%_vs_ignited_enemies"]=9466, + ["physical_damage_+%_if_skill_costs_life"]=9471, + ["physical_damage_+%_per_10_rage"]=9472, + ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9467, + ["physical_damage_+%_vs_ignited_enemies"]=9473, ["physical_damage_+%_vs_poisoned_enemies"]=2728, - ["physical_damage_+%_while_affected_by_herald_of_blood"]=9461, - ["physical_damage_+%_while_affected_by_herald_of_purity"]=9467, + ["physical_damage_+%_while_affected_by_herald_of_blood"]=9468, + ["physical_damage_+%_while_affected_by_herald_of_purity"]=9474, ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3909, ["physical_damage_+%_while_frozen"]=3073, ["physical_damage_+%_while_life_leeching"]=1199, - ["physical_damage_+%_while_shapeshifted"]=9462, - ["physical_damage_+%_while_you_have_resolute_technique"]=10768, - ["physical_damage_+%_with_axes_swords"]=9468, + ["physical_damage_+%_while_shapeshifted"]=9469, + ["physical_damage_+%_while_you_have_resolute_technique"]=10785, + ["physical_damage_+%_with_axes_swords"]=9475, ["physical_damage_can_chill"]=2661, ["physical_damage_can_freeze"]=2662, ["physical_damage_can_ignite_freeze_shock"]=2663, @@ -245026,31 +245309,31 @@ return { ["physical_damage_over_time_+%"]=1192, ["physical_damage_over_time_multiplier_+_with_attacks"]=1222, ["physical_damage_over_time_per_10_dexterity_+%"]=3493, - ["physical_damage_over_time_taken_+%_while_moving"]=9463, + ["physical_damage_over_time_taken_+%_while_moving"]=9470, ["physical_damage_per_endurance_charge_+%"]=1902, - ["physical_damage_prevented_recouped_as_life_%"]=9469, - ["physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute"]=9470, - ["physical_damage_reduction_%_at_devotion_threshold"]=9471, - ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9480, + ["physical_damage_prevented_recouped_as_life_%"]=9476, + ["physical_damage_prevented_recouped_as_life_%_if_you_have_at_least_100_tribute"]=9477, + ["physical_damage_reduction_%_at_devotion_threshold"]=9478, + ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9487, ["physical_damage_reduction_%_per_endurance_charge"]=2047, - ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9473, - ["physical_damage_reduction_%_per_nearby_enemy"]=9482, - ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9475, + ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9480, + ["physical_damage_reduction_%_per_nearby_enemy"]=9489, + ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9482, ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3742, ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3172, - ["physical_damage_reduction_percent_per_frenzy_charge"]=9472, - ["physical_damage_reduction_percent_per_power_charge"]=9474, + ["physical_damage_reduction_percent_per_frenzy_charge"]=9479, + ["physical_damage_reduction_percent_per_power_charge"]=9481, ["physical_damage_reduction_rating_%_while_not_moving"]=4007, ["physical_damage_reduction_rating_+%"]=906, - ["physical_damage_reduction_rating_+%_per_10_tribute"]=9476, - ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9481, + ["physical_damage_reduction_rating_+%_per_10_tribute"]=9483, + ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9488, ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3293, ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2597, ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2561, - ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9477, - ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9478, + ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9484, + ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9485, ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4063, - ["physical_damage_reduction_rating_per_endurance_charge"]=9479, + ["physical_damage_reduction_rating_per_endurance_charge"]=9486, ["physical_damage_reduction_rating_per_level"]=2545, ["physical_damage_reduction_rating_while_frozen"]=2584, ["physical_damage_taken_%_as_chaos"]=2236, @@ -245065,23 +245348,23 @@ return { ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=2227, ["physical_damage_taken_+"]=1984, ["physical_damage_taken_+%"]=1990, - ["physical_damage_taken_+%_from_hits"]=9483, + ["physical_damage_taken_+%_from_hits"]=9490, ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3910, ["physical_damage_taken_+%_while_frozen"]=2585, ["physical_damage_taken_+%_while_moving"]=4009, ["physical_damage_taken_+_per_level"]=1985, ["physical_damage_taken_+_vs_beasts"]=2699, ["physical_damage_taken_on_minion_death"]=2786, - ["physical_damage_taken_recouped_as_life_%"]=9484, + ["physical_damage_taken_recouped_as_life_%"]=9491, ["physical_damage_to_return_to_melee_attacker"]=929, ["physical_damage_to_return_when_hit"]=1963, ["physical_damage_while_dual_wielding_+%"]=1242, - ["physical_damage_with_attack_skills_+%"]=9485, - ["physical_damage_with_spell_skills_+%"]=9486, + ["physical_damage_with_attack_skills_+%"]=9492, + ["physical_damage_with_spell_skills_+%"]=9493, ["physical_dot_multiplier_+"]=1221, - ["physical_dot_multiplier_+_if_crit_recently"]=9487, - ["physical_dot_multiplier_+_if_spent_life_recently"]=9488, - ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9489, + ["physical_dot_multiplier_+_if_crit_recently"]=9494, + ["physical_dot_multiplier_+_if_spent_life_recently"]=9495, + ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9496, ["physical_hit_and_dot_damage_%_taken_as_chaos"]=2237, ["physical_hit_and_dot_damage_%_taken_as_cold"]=2233, ["physical_hit_and_dot_damage_%_taken_as_fire"]=2224, @@ -245090,475 +245373,476 @@ return { ["physical_mace_damage_+%"]=1274, ["physical_ranged_attack_damage_taken_+"]=1995, ["physical_reflect_damage_taken_+%"]=2505, - ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9490, + ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9497, ["physical_skill_gem_level_+"]=980, - ["physical_spell_damage_can_pin_on_critical_hit"]=9491, + ["physical_spell_damage_can_pin_on_critical_hit"]=9498, ["physical_spell_skill_gem_level_+"]=1500, ["physical_staff_damage_+%"]=1261, ["physical_sword_damage_+%"]=1282, ["physical_wand_damage_+%"]=1287, ["physical_weapon_damage_+%_per_10_str"]=2349, ["piercing_attacks_cause_bleeding"]=3143, - ["piercing_projectiles_critical_strike_chance_+%"]=9492, - ["pin_almost_pinned_enemies"]=9493, - ["pin_duration_+%"]=9494, - ["pin_stops_enemies"]=9495, - ["pinned_enemies_cannot_crit"]=9496, - ["pinned_enemies_cannot_evade_your_attacks"]=9497, - ["placed_banner_attack_damage_+%"]=9498, + ["piercing_projectiles_critical_strike_chance_+%"]=9499, + ["pin_almost_pinned_enemies"]=9500, + ["pin_duration_+%"]=9501, + ["pin_stops_enemies"]=9502, + ["pinned_enemies_cannot_crit"]=9503, + ["pinned_enemies_cannot_evade_your_attacks"]=9504, + ["placed_banner_attack_damage_+%"]=9505, ["placing_traps_cooldown_recovery_+%"]=3174, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9499, - ["plague_bearer_maximum_stored_poison_damage_+%"]=9500, - ["plague_bearer_movement_speed_+%_while_infecting"]=9501, - ["plague_bearer_poison_effect_+%_while_infecting"]=9502, - ["plant_skill_armour_break_amount_+%_when_wet"]=9503, - ["plant_skill_damage_+%"]=9504, - ["plant_skill_effect_duration_+%"]=9505, - ["player_can_be_touched_by_tormented_spirits"]=9506, - ["player_far_shot"]=10754, - ["player_gain_rampage_stacks"]=10690, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9506, + ["plague_bearer_maximum_stored_poison_damage_+%"]=9507, + ["plague_bearer_movement_speed_+%_while_infecting"]=9508, + ["plague_bearer_poison_effect_+%_while_infecting"]=9509, + ["plant_skill_armour_break_amount_+%_when_wet"]=9510, + ["plant_skill_damage_+%"]=9511, + ["plant_skill_effect_duration_+%"]=9512, + ["plant_skill_gem_level_+"]=9513, + ["player_can_be_touched_by_tormented_spirits"]=9514, + ["player_far_shot"]=10771, + ["player_gain_rampage_stacks"]=10707, ["player_is_harbinger_spawn_pack_on_kill_chance"]=114, - ["poison_as_though_dealing_X_damage_on_block"]=9507, - ["poison_chance_+%"]=9508, + ["poison_as_though_dealing_X_damage_on_block"]=9515, + ["poison_chance_+%"]=9516, ["poison_cursed_enemies_on_hit"]=3884, - ["poison_duration_+%_against_slowed_enemies"]=9509, - ["poison_duration_+%_if_consumed_frenzy_charge_recently"]=9510, - ["poison_duration_+%_per_poison_applied_recently"]=9511, - ["poison_duration_+%_per_power_charge"]=9512, - ["poison_duration_+%_with_over_150_intelligence"]=9513, - ["poison_effect_+%_per_frenzy_charge"]=9517, - ["poison_effect_+%_vs_bleeding_enemies"]=9518, - ["poison_effect_+%_vs_non_poisoned_enemies"]=9514, - ["poison_effect_+%_with_spells"]=9519, - ["poison_effect_+100%_final_chance_during_flask_effect"]=9515, - ["poison_on_critical_strike"]=9520, + ["poison_duration_+%_against_slowed_enemies"]=9517, + ["poison_duration_+%_if_consumed_frenzy_charge_recently"]=9518, + ["poison_duration_+%_per_poison_applied_recently"]=9519, + ["poison_duration_+%_per_power_charge"]=9520, + ["poison_duration_+%_with_over_150_intelligence"]=9521, + ["poison_effect_+%_per_frenzy_charge"]=9525, + ["poison_effect_+%_vs_bleeding_enemies"]=9526, + ["poison_effect_+%_vs_non_poisoned_enemies"]=9522, + ["poison_effect_+%_with_spells"]=9527, + ["poison_effect_+100%_final_chance_during_flask_effect"]=9523, + ["poison_on_critical_strike"]=9528, ["poison_on_critical_strike_with_bow"]=1377, ["poison_on_critical_strike_with_dagger"]=1374, ["poison_on_hit_during_flask_effect_%"]=3033, ["poison_on_melee_critical_strike_%"]=2557, ["poison_on_melee_hit"]=3929, - ["poison_reflected_to_self"]=9521, - ["poison_time_passed_+%"]=9522, - ["poisonous_concoction_damage_+%"]=9523, - ["poisonous_concoction_flask_charges_consumed_+%"]=9524, - ["poisonous_concoction_skill_area_of_effect_+%"]=9525, - ["poisons_you_inflict_can_stack_infintely"]=9526, - ["portal_alternate_destination_chance_permyriad"]=9527, + ["poison_reflected_to_self"]=9529, + ["poison_time_passed_+%"]=9530, + ["poisonous_concoction_damage_+%"]=9531, + ["poisonous_concoction_flask_charges_consumed_+%"]=9532, + ["poisonous_concoction_skill_area_of_effect_+%"]=9533, + ["poisons_you_inflict_can_stack_infintely"]=9534, + ["portal_alternate_destination_chance_permyriad"]=9535, ["power_charge_duration_+%"]=1905, - ["power_charge_duration_+%_final"]=9528, + ["power_charge_duration_+%_final"]=9536, ["power_charge_on_block_%_chance"]=3939, - ["power_charge_on_kill_percent_chance_while_holding_shield"]=9529, - ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9530, + ["power_charge_on_kill_percent_chance_while_holding_shield"]=9537, + ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9538, ["power_frenzy_or_endurance_charge_on_kill_%"]=3317, ["power_only_conduit"]=2036, ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3660, ["power_siphon_attack_speed_+%"]=3557, ["power_siphon_damage_+%"]=3370, - ["power_siphon_number_of_additional_projectiles"]=9531, + ["power_siphon_number_of_additional_projectiles"]=9539, ["precision_aura_effect_+%"]=3093, - ["precision_mana_reservation_+%"]=9536, - ["precision_mana_reservation_-50%_final"]=9535, - ["precision_mana_reservation_efficiency_+%"]=9534, - ["precision_mana_reservation_efficiency_+100%"]=9533, - ["precision_mana_reservation_efficiency_-2%_per_1"]=9532, - ["precision_reserves_no_mana"]=9537, + ["precision_mana_reservation_+%"]=9544, + ["precision_mana_reservation_-50%_final"]=9543, + ["precision_mana_reservation_efficiency_+%"]=9542, + ["precision_mana_reservation_efficiency_+100%"]=9541, + ["precision_mana_reservation_efficiency_-2%_per_1"]=9540, + ["precision_reserves_no_mana"]=9545, ["presence_area_+%"]=1093, - ["presence_area_+%_per_10_tribute"]=9538, + ["presence_area_+%_per_10_tribute"]=9546, ["prevent_monster_heal"]=1675, ["prevent_monster_heal_duration_+%"]=1676, - ["prevent_projectile_chaining_%_chance"]=9539, - ["pride_aura_effect_+%"]=9540, - ["pride_chance_to_deal_double_damage_%"]=9541, - ["pride_chance_to_impale_with_attacks_%"]=9542, - ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9543, - ["pride_mana_reservation_+%"]=9546, - ["pride_mana_reservation_efficiency_+%"]=9545, - ["pride_mana_reservation_efficiency_-2%_per_1"]=9544, - ["pride_physical_damage_+%"]=9547, - ["pride_reserves_no_mana"]=9548, - ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9549, - ["primalist_charm_charges_gained_+%_final"]=9550, - ["primordial_altar_burning_ground_on_death_%"]=9149, - ["primordial_altar_chilled_ground_on_death_%"]=9150, - ["primordial_jewel_count"]=10660, - ["prismatic_rain_beam_frequency_+%"]=9551, - ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9552, - ["projectile_ailment_chance_+%"]=9553, - ["projectile_all_damage_%_to_gain_as_instilling_type"]=9554, + ["prevent_projectile_chaining_%_chance"]=9547, + ["pride_aura_effect_+%"]=9548, + ["pride_chance_to_deal_double_damage_%"]=9549, + ["pride_chance_to_impale_with_attacks_%"]=9550, + ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9551, + ["pride_mana_reservation_+%"]=9554, + ["pride_mana_reservation_efficiency_+%"]=9553, + ["pride_mana_reservation_efficiency_-2%_per_1"]=9552, + ["pride_physical_damage_+%"]=9555, + ["pride_reserves_no_mana"]=9556, + ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9557, + ["primalist_charm_charges_gained_+%_final"]=9558, + ["primordial_altar_burning_ground_on_death_%"]=9154, + ["primordial_altar_chilled_ground_on_death_%"]=9155, + ["primordial_jewel_count"]=10676, + ["prismatic_rain_beam_frequency_+%"]=9559, + ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9560, + ["projectile_ailment_chance_+%"]=9561, + ["projectile_all_damage_%_to_gain_as_instilling_type"]=9562, ["projectile_attack_damage_+%"]=1763, - ["projectile_attack_damage_+%_during_flask_effect"]=9555, + ["projectile_attack_damage_+%_during_flask_effect"]=9563, ["projectile_attack_damage_+%_per_200_accuracy"]=4002, ["projectile_attack_damage_+%_with_at_least_200_dex"]=4050, - ["projectile_attack_damage_+%_with_claw_or_dagger"]=9556, - ["projectile_attack_range_+%"]=9557, + ["projectile_attack_damage_+%_with_claw_or_dagger"]=9564, + ["projectile_attack_range_+%"]=9565, ["projectile_attack_skill_critical_strike_chance_+%"]=4011, - ["projectile_attack_skill_critical_strike_multiplier_+"]=9558, - ["projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving"]=9559, + ["projectile_attack_skill_critical_strike_multiplier_+"]=9566, + ["projectile_attacks_%_chance_to_fire_2_additional_projectiles_while_moving"]=9567, ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=4012, ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=4013, ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=4014, ["projectile_base_number_of_targets_to_pierce"]=1573, ["projectile_chain_from_terrain_chance_%"]=1606, - ["projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9560, - ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=9561, - ["projectile_chance_to_fork_%"]=9562, - ["projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player"]=9563, + ["projectile_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9568, + ["projectile_chance_to_chain_1_extra_time_from_terrain_%"]=9569, + ["projectile_chance_to_fork_%"]=9570, + ["projectile_chance_to_piece_vs_enemies_within_3m_distance_of_player"]=9571, ["projectile_damage_+%"]=1762, - ["projectile_damage_+%_against_heavy_stunned_enemies"]=9564, - ["projectile_damage_+%_if_youve_dealt_melee_hit_recently"]=9565, - ["projectile_damage_+%_in_blood_stance"]=10089, + ["projectile_damage_+%_against_heavy_stunned_enemies"]=9572, + ["projectile_damage_+%_if_youve_dealt_melee_hit_recently"]=9573, + ["projectile_damage_+%_in_blood_stance"]=10100, ["projectile_damage_+%_max_as_distance_travelled_increases"]=3760, - ["projectile_damage_+%_max_before_distance_increase"]=9569, - ["projectile_damage_+%_per_16_dexterity"]=9570, - ["projectile_damage_+%_per_chain"]=9571, - ["projectile_damage_+%_per_pierced_enemy"]=9572, + ["projectile_damage_+%_max_before_distance_increase"]=9577, + ["projectile_damage_+%_per_16_dexterity"]=9578, + ["projectile_damage_+%_per_chain"]=9579, + ["projectile_damage_+%_per_pierced_enemy"]=9580, ["projectile_damage_+%_per_power_charge"]=2439, - ["projectile_damage_+%_per_remaining_chain"]=9573, - ["projectile_damage_+%_vs_chained_enemy"]=9574, - ["projectile_damage_+%_vs_enemies_further_than_6m_distance"]=9566, - ["projectile_damage_+%_vs_enemies_within_2m_distance"]=9567, - ["projectile_damage_+%_vs_nearby_enemies"]=9575, - ["projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you"]=9568, + ["projectile_damage_+%_per_remaining_chain"]=9581, + ["projectile_damage_+%_vs_chained_enemy"]=9582, + ["projectile_damage_+%_vs_enemies_further_than_6m_distance"]=9574, + ["projectile_damage_+%_vs_enemies_within_2m_distance"]=9575, + ["projectile_damage_+%_vs_nearby_enemies"]=9583, + ["projectile_damage_+%_with_spears_while_there_no_enemies_surrounding_you"]=9576, ["projectile_damage_modifiers_apply_to_skill_dot"]=2488, ["projectile_damage_taken_+%"]=2535, - ["projectile_daze_chance_%_vs_enemies_further_than_6m"]=9576, + ["projectile_daze_chance_%_vs_enemies_further_than_6m"]=9584, ["projectile_freeze_chance_%"]=2499, - ["projectile_hit_damage_stun_multiplier_+%"]=9577, - ["projectile_number_to_split"]=9578, + ["projectile_hit_damage_stun_multiplier_+%"]=9585, + ["projectile_number_to_split"]=9586, ["projectile_return_%_chance"]=2602, ["projectile_shock_chance_%"]=2500, ["projectile_skill_gem_level_+"]=992, ["projectile_speed_+%_per_frenzy_charge"]=2438, ["projectile_speed_+%_with_crossbow_skills"]=1577, - ["projectile_speed_+%_with_daggers"]=9579, - ["projectile_spell_cooldown_modifier_ms"]=9580, + ["projectile_speed_+%_with_daggers"]=9587, + ["projectile_spell_cooldown_modifier_ms"]=9588, ["projectile_weakness_curse_effect_+%"]=3690, ["projectile_weakness_duration_+%"]=3601, - ["projectiles_always_pierce_you"]=9581, - ["projectiles_crit_chance_+%_for_each_time_they_have_pierced"]=9582, + ["projectiles_always_pierce_you"]=9589, + ["projectiles_crit_chance_+%_for_each_time_they_have_pierced"]=9590, ["projectiles_fork"]=3290, - ["projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently"]=9583, - ["projectiles_from_spells_cannot_pierce"]=9584, - ["projectiles_from_spells_fork"]=9585, - ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9586, - ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9587, - ["projectiles_pierce_all_nearby_targets"]=9588, - ["projectiles_pierce_enemies_with_fully_broken_armour"]=9589, - ["projectiles_pierce_while_phasing"]=9590, - ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9591, + ["projectiles_fork_chance_%_if_youve_dealt_melee_hit_recently"]=9591, + ["projectiles_from_spells_cannot_pierce"]=9592, + ["projectiles_from_spells_fork"]=9593, + ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9594, + ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9595, + ["projectiles_pierce_all_nearby_targets"]=9596, + ["projectiles_pierce_enemies_with_fully_broken_armour"]=9597, + ["projectiles_pierce_while_phasing"]=9598, + ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9599, ["projectiles_return"]=2602, - ["protective_link_duration_+%"]=9592, - ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9593, + ["protective_link_duration_+%"]=9600, + ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9601, ["puncture_damage_+%"]=3359, ["puncture_duration_+%"]=3593, ["puncture_maim_on_hit_%_chance"]=3655, ["punishment_curse_effect_+%"]=3697, ["punishment_duration_+%"]=3604, ["punishment_ignores_hexproof"]=2410, - ["punishment_no_reservation"]=9594, - ["puppet_master_does_not_expire_while_you_have_archon_of_undeath"]=9595, - ["puppet_master_duration_+%"]=9596, - ["puppet_master_effect_+%"]=9597, - ["purge_damage_+%"]=9598, - ["purge_duration_+%"]=9599, - ["purge_expose_resist_%_matching_highest_element_damage"]=9600, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9601, + ["punishment_no_reservation"]=9602, + ["puppet_master_does_not_expire_while_you_have_archon_of_undeath"]=9603, + ["puppet_master_duration_+%"]=9604, + ["puppet_master_effect_+%"]=9605, + ["purge_damage_+%"]=9606, + ["purge_duration_+%"]=9607, + ["purge_expose_resist_%_matching_highest_element_damage"]=9608, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9609, ["purity_of_elements_aura_effect_+%"]=3085, ["purity_of_elements_mana_reservation_+%"]=3719, - ["purity_of_elements_mana_reservation_efficiency_+%"]=9603, - ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9602, - ["purity_of_elements_reserves_no_mana"]=9604, + ["purity_of_elements_mana_reservation_efficiency_+%"]=9611, + ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9610, + ["purity_of_elements_reserves_no_mana"]=9612, ["purity_of_fire_aura_effect_+%"]=3086, ["purity_of_fire_mana_reservation_+%"]=3720, - ["purity_of_fire_mana_reservation_efficiency_+%"]=9606, - ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9605, - ["purity_of_fire_reserves_no_mana"]=9607, + ["purity_of_fire_mana_reservation_efficiency_+%"]=9614, + ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9613, + ["purity_of_fire_reserves_no_mana"]=9615, ["purity_of_ice_aura_effect_+%"]=3087, ["purity_of_ice_mana_reservation_+%"]=3716, - ["purity_of_ice_mana_reservation_efficiency_+%"]=9609, - ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9608, - ["purity_of_ice_reserves_no_mana"]=9610, + ["purity_of_ice_mana_reservation_efficiency_+%"]=9617, + ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9616, + ["purity_of_ice_reserves_no_mana"]=9618, ["purity_of_lightning_aura_effect_+%"]=3088, ["purity_of_lightning_mana_reservation_+%"]=3721, - ["purity_of_lightning_mana_reservation_efficiency_+%"]=9612, - ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9611, - ["purity_of_lightning_reserves_no_mana"]=9613, + ["purity_of_lightning_mana_reservation_efficiency_+%"]=9620, + ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9619, + ["purity_of_lightning_reserves_no_mana"]=9621, ["quality_display_base_number_of_crossbow_bolts_is_gem"]=1012, - ["quality_display_trinity_is_gem"]=10343, + ["quality_display_trinity_is_gem"]=10357, ["quantity_of_items_dropped_by_maimed_enemies_+%"]=3849, ["quarterstaff_accuracy_rating_+%"]=1361, ["quarterstaff_attack_speed_+%"]=1344, ["quarterstaff_critical_strike_chance_+%"]=1390, ["quarterstaff_critical_strike_multiplier_+"]=1416, ["quarterstaff_damage_+%"]=1262, - ["quarterstaff_daze_build_up_+%"]=9614, - ["quarterstaff_hit_damage_freeze_multiplier_+%"]=9615, - ["quarterstaff_hit_damage_stun_multiplier_+%"]=9616, - ["quarterstaff_shock_chance_+%"]=9617, - ["quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges"]=9618, - ["quick_dodge_added_cooldown_count"]=9619, - ["quick_dodge_travel_distance_+%"]=9620, - ["quick_guard_additional_physical_damage_reduction_%"]=9621, - ["quicksilver_flasks_apply_to_nearby_allies"]=9622, - ["quiver_hellscaping_speed_+%"]=7156, - ["quiver_mod_effect_+%"]=9623, - ["quiver_projectiles_pierce_1_additional_target"]=9624, - ["quiver_projectiles_pierce_2_additional_targets"]=9625, - ["quiver_projectiles_pierce_3_additional_targets"]=9626, - ["rage_decay_speed_+%"]=9635, - ["rage_decay_speed_+%_per_10_tribute"]=9636, - ["rage_effects_doubled"]=9629, - ["rage_effects_tripled"]=9628, - ["rage_gained_on_life_flask_use"]=9637, - ["rage_generated_also_granted_to_allies_in_presence"]=9638, - ["rage_grants_spell_damage_instead"]=9639, - ["rage_loss_delay_ms_+"]=9640, - ["rage_loss_delay_recovery_rate_+%"]=9641, - ["rage_slash_sacrifice_rage_%"]=9642, - ["rage_vortex_area_of_effect_+%"]=9643, - ["rage_vortex_damage_+%"]=9644, + ["quarterstaff_daze_build_up_+%"]=9622, + ["quarterstaff_hit_damage_freeze_multiplier_+%"]=9623, + ["quarterstaff_hit_damage_stun_multiplier_+%"]=9624, + ["quarterstaff_shock_chance_+%"]=9625, + ["quarterstaff_skills_that_consume_power_charges_count_as_consuming_x_additional_power_charges"]=9626, + ["quick_dodge_added_cooldown_count"]=9627, + ["quick_dodge_travel_distance_+%"]=9628, + ["quick_guard_additional_physical_damage_reduction_%"]=9629, + ["quicksilver_flasks_apply_to_nearby_allies"]=9630, + ["quiver_hellscaping_speed_+%"]=7161, + ["quiver_mod_effect_+%"]=9631, + ["quiver_projectiles_pierce_1_additional_target"]=9632, + ["quiver_projectiles_pierce_2_additional_targets"]=9633, + ["quiver_projectiles_pierce_3_additional_targets"]=9634, + ["rage_decay_speed_+%"]=9643, + ["rage_decay_speed_+%_per_10_tribute"]=9644, + ["rage_effects_doubled"]=9637, + ["rage_effects_tripled"]=9636, + ["rage_gained_on_life_flask_use"]=9645, + ["rage_generated_also_granted_to_allies_in_presence"]=9646, + ["rage_grants_spell_damage_instead"]=9647, + ["rage_loss_delay_ms_+"]=9648, + ["rage_loss_delay_recovery_rate_+%"]=9649, + ["rage_slash_sacrifice_rage_%"]=9650, + ["rage_vortex_area_of_effect_+%"]=9651, + ["rage_vortex_damage_+%"]=9652, ["raging_spirit_damage_+%"]=3353, - ["raging_spirits_always_ignite"]=9645, - ["raging_spirits_refresh_duration_on_hit_vs_unique_%_chance"]=9646, - ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9647, - ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9648, - ["rain_of_arrows_additional_sequence_chance_%"]=9649, + ["raging_spirits_always_ignite"]=9653, + ["raging_spirits_refresh_duration_on_hit_vs_unique_%_chance"]=9654, + ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9655, + ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9656, + ["rain_of_arrows_additional_sequence_chance_%"]=9657, ["rain_of_arrows_attack_speed_+%"]=3551, ["rain_of_arrows_damage_+%"]=3352, ["rain_of_arrows_radius_+%"]=3508, - ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9650, - ["raise_shield_skill_inflicts_parry_for_duration_ms"]=9651, + ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9658, + ["raise_shield_skill_inflicts_parry_for_duration_ms"]=9659, ["raise_spectre_gem_level_+"]=1502, - ["raise_spectre_mana_cost_+%"]=9652, - ["raise_zombie_does_not_use_corpses"]=9653, + ["raise_spectre_mana_cost_+%"]=9660, + ["raise_zombie_does_not_use_corpses"]=9661, ["raise_zombie_gem_level_+"]=1501, - ["raised_zombie_%_chance_to_taunt"]=9654, - ["raised_zombies_are_usable_as_corpses_when_alive"]=9655, - ["raised_zombies_cover_in_ash_on_hit_%"]=9656, - ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9657, - ["raised_zombies_have_avatar_of_fire"]=9658, + ["raised_zombie_%_chance_to_taunt"]=9662, + ["raised_zombies_are_usable_as_corpses_when_alive"]=9663, + ["raised_zombies_cover_in_ash_on_hit_%"]=9664, + ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9665, + ["raised_zombies_have_avatar_of_fire"]=9666, ["rallying_cry_buff_effect_+%"]=3793, - ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9659, - ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9660, + ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9667, + ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9668, ["rallying_cry_duration_+%"]=3611, - ["rallying_cry_exerts_x_additional_attacks"]=9661, + ["rallying_cry_exerts_x_additional_attacks"]=9669, ["random_curse_on_hit_%"]=2316, - ["random_curse_on_hit_%_against_uncursed_enemies"]=9662, - ["random_curse_when_hit_%_ignoring_curse_limit"]=9663, - ["random_projectile_direction"]=9664, + ["random_curse_on_hit_%_against_uncursed_enemies"]=9670, + ["random_curse_when_hit_%_ignoring_curse_limit"]=9671, + ["random_projectile_direction"]=9672, ["randomly_cursed_when_totems_die_curse_level"]=2354, ["ranged_weapon_physical_damage_+%"]=1764, - ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9665, - ["rapid_assault_attached_spear_limit"]=9666, - ["rare_or_unique_monster_dropped_item_rarity_+%"]=9667, + ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9673, + ["rapid_assault_attached_spear_limit"]=9674, + ["rare_or_unique_monster_dropped_item_rarity_+%"]=9675, ["rarity_of_items_dropped_by_maimed_enemies_+%"]=3850, - ["real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy"]=9668, - ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9669, - ["reapply_enemy_shock_on_consuming_enemy_shock_chance_%"]=9670, + ["real_weapon_attack_added_physical_damage_%_of_weapon_item_accuracy"]=9676, + ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9677, + ["reapply_enemy_shock_on_consuming_enemy_shock_chance_%"]=9678, ["reave_attack_speed_per_reave_stack_+%"]=3652, ["reave_damage_+%"]=3346, ["reave_radius_+%"]=3505, - ["recall_sigil_target_search_range_+%"]=9671, - ["receive_bleeding_chance_%_when_hit"]=9672, - ["receive_bleeding_chance_%_when_hit_by_attack"]=9673, - ["received_attack_hits_have_impale_chance_%"]=9674, + ["recall_sigil_target_search_range_+%"]=9679, + ["receive_bleeding_chance_%_when_hit"]=9680, + ["receive_bleeding_chance_%_when_hit_by_attack"]=9681, + ["received_attack_hits_have_impale_chance_%"]=9682, ["recharge_flasks_on_crit"]=2734, - ["recharge_flasks_on_crit_while_affected_by_precision"]=9675, + ["recharge_flasks_on_crit_while_affected_by_precision"]=9683, ["reckoning_cooldown_speed_+%"]=3574, ["reckoning_damage_+%"]=3411, - ["recoup_%_elemental_damage_as_energy_shield"]=9676, - ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9677, - ["recoup_%_of_damage_taken_from_enemies_with_open_weakness_as_life"]=10678, - ["recoup_%_of_damage_taken_from_enemies_with_open_weakness_as_life_and_energy_shield"]=10679, - ["recoup_effects_apply_over_4_seconds_instead"]=9678, - ["recoup_life_effects_apply_over_3_seconds_instead"]=9679, - ["recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings"]=9705, - ["recoup_speed_+%"]=9681, - ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9682, + ["recoup_%_elemental_damage_as_energy_shield"]=9684, + ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9685, + ["recoup_%_of_damage_taken_from_enemies_with_open_weakness_as_life"]=10695, + ["recoup_%_of_damage_taken_from_enemies_with_open_weakness_as_life_and_energy_shield"]=10696, + ["recoup_effects_apply_over_4_seconds_instead"]=9686, + ["recoup_life_effects_apply_over_3_seconds_instead"]=9687, + ["recoup_life_equal_to_%_of_hit_damage_dealt_to_your_offerings"]=9713, + ["recoup_speed_+%"]=9689, + ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9690, ["recover_%_es_on_kill_per_different_mastery"]=1523, - ["recover_%_life_on_heavy_stunning_rare_or_unique_enemy"]=9683, + ["recover_%_life_on_heavy_stunning_rare_or_unique_enemy"]=9691, ["recover_%_life_on_kill_per_different_mastery"]=1522, - ["recover_%_life_per_endurance_charge_consumed"]=9684, - ["recover_%_life_when_gaining_adrenaline"]=9708, - ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9709, - ["recover_%_life_when_you_create_an_offering"]=9685, - ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9710, - ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9711, + ["recover_%_life_per_endurance_charge_consumed"]=9692, + ["recover_%_life_when_gaining_adrenaline"]=9716, + ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9717, + ["recover_%_life_when_you_create_an_offering"]=9693, + ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9718, + ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9719, ["recover_%_mana_on_kill_per_different_mastery"]=1524, - ["recover_%_mana_when_attached_brand_expires"]=9712, - ["recover_%_mana_when_you_invoke_a_spell"]=9686, - ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9687, + ["recover_%_mana_when_attached_brand_expires"]=9720, + ["recover_%_mana_when_you_invoke_a_spell"]=9694, + ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9695, ["recover_%_maximum_life_on_enemy_ignited"]=3994, ["recover_%_maximum_life_on_flask_use"]=4026, ["recover_%_maximum_life_on_kill"]=1535, - ["recover_%_maximum_life_on_kill_per_50_tribute"]=9688, - ["recover_%_maximum_life_on_killing_chilled_enemy"]=9713, - ["recover_%_maximum_life_on_killing_cursed_enemy"]=9689, - ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9714, - ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9715, + ["recover_%_maximum_life_on_kill_per_50_tribute"]=9696, + ["recover_%_maximum_life_on_killing_chilled_enemy"]=9721, + ["recover_%_maximum_life_on_killing_cursed_enemy"]=9697, + ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9722, + ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9723, ["recover_%_maximum_life_on_mana_flask_use"]=4027, ["recover_%_maximum_life_on_rampage_threshold"]=2723, - ["recover_%_maximum_life_per_glory_consumed"]=9690, + ["recover_%_maximum_life_per_glory_consumed"]=9698, ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2812, - ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9691, - ["recover_%_maximum_life_when_spending_at_least_10_combo"]=9716, - ["recover_%_maximum_mana_on_charm_use"]=9717, + ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9699, + ["recover_%_maximum_life_when_spending_at_least_10_combo"]=9724, + ["recover_%_maximum_mana_on_charm_use"]=9725, ["recover_%_maximum_mana_on_kill"]=1537, - ["recover_%_maximum_mana_on_kill_per_50_tribute"]=9692, + ["recover_%_maximum_mana_on_kill_per_50_tribute"]=9700, ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1538, - ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9693, - ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9718, + ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9701, + ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9726, ["recover_%_maximum_mana_when_enemy_shocked"]=3848, - ["recover_%_maximum_mana_when_spending_at_least_10_combo"]=9719, - ["recover_%_of_life_over_2_seconds_when_you_use_a_command_skill"]=9694, + ["recover_%_maximum_mana_when_spending_at_least_10_combo"]=9727, + ["recover_%_of_life_over_2_seconds_when_you_use_a_command_skill"]=9702, ["recover_%_of_maximum_life_on_block"]=2816, - ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9720, - ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9695, + ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9728, + ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9703, ["recover_10%_of_maximum_mana_on_skill_use_%"]=3188, - ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9696, + ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9704, ["recover_X_life_on_block"]=1546, - ["recover_X_life_on_enemy_ignited"]=9697, - ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9698, - ["recover_X_mana_on_killing_frozen_enemy"]=9699, - ["recover_X_ward_on_block"]=9700, - ["recover_X_ward_on_charm_use"]=9701, - ["recover_energy_shield_%_on_consuming_steel_shard"]=9702, + ["recover_X_life_on_enemy_ignited"]=9705, + ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9706, + ["recover_X_mana_on_killing_frozen_enemy"]=9707, + ["recover_X_ward_on_block"]=9708, + ["recover_X_ward_on_charm_use"]=9709, + ["recover_energy_shield_%_on_consuming_steel_shard"]=9710, ["recover_energy_shield_%_on_kill"]=1536, - ["recover_es_as_well_as_life_from_life_regeneration"]=9703, - ["recover_life_%_on_enemy_death_in_presence"]=9704, - ["recover_mana_%_on_enemy_death_in_presence"]=9706, - ["recover_maximum_life_on_enemy_killed_chance_%"]=9707, - ["recover_permyriad_life_on_skill_use"]=9721, - ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9722, - ["recover_ward_as_well_as_mana_from_mana_regeneration"]=9723, - ["recover_x%_of_maximum_mana_when_you_consume_a_power_charge"]=9724, - ["recover_x%_of_maximum_ward_on_persistent_minion_death"]=9725, - ["reduce_enemy_chaos_resistance_%"]=9726, + ["recover_es_as_well_as_life_from_life_regeneration"]=9711, + ["recover_life_%_on_enemy_death_in_presence"]=9712, + ["recover_mana_%_on_enemy_death_in_presence"]=9714, + ["recover_maximum_life_on_enemy_killed_chance_%"]=9715, + ["recover_permyriad_life_on_skill_use"]=9729, + ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9730, + ["recover_ward_as_well_as_mana_from_mana_regeneration"]=9731, + ["recover_x%_of_maximum_mana_when_you_consume_a_power_charge"]=9732, + ["recover_x%_of_maximum_ward_on_persistent_minion_death"]=9733, + ["reduce_enemy_chaos_resistance_%"]=9734, ["reduce_enemy_chaos_resistance_with_weapons_%"]=3297, - ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9727, + ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9735, ["reduce_enemy_cold_resistance_with_weapons_%"]=3294, ["reduce_enemy_elemental_resistance_%"]=2747, ["reduce_enemy_elemental_resistance_with_weapons_%"]=3304, - ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9728, - ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9729, + ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9736, + ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9737, ["reduce_enemy_fire_resistance_with_weapons_%"]=3295, - ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9730, + ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9738, ["reduce_enemy_lightning_resistance_with_weapons_%"]=3296, - ["reflect_%_of_physical_damage_prevented"]=9731, + ["reflect_%_of_physical_damage_prevented"]=9739, ["reflect_curses"]=2281, ["reflect_damage_taken_+%"]=3938, - ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9732, + ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9740, ["reflect_hexes_chance_%"]=2282, - ["reflect_shocks"]=9733, - ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9734, - ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9735, - ["refresh_endurance_charges_duration_when_hit_chance_%"]=9736, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=9737, + ["reflect_shocks"]=9741, + ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9742, + ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9743, + ["refresh_endurance_charges_duration_when_hit_chance_%"]=9744, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=9745, ["regenerate_%_armour_as_life_over_1_second_on_block"]=2611, - ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9738, - ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9739, - ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9747, - ["regenerate_%_life_over_1_second_when_stunned"]=9740, - ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9748, - ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9749, - ["regenerate_%_of_curse_mana_cost_per_second_while_in_delay"]=9741, - ["regenerate_1_rage_per_x_life_regeneration"]=9742, - ["regenerate_1_rage_per_x_mana_regeneration"]=9743, + ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9746, + ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9747, + ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9755, + ["regenerate_%_life_over_1_second_when_stunned"]=9748, + ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9756, + ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9757, + ["regenerate_%_of_curse_mana_cost_per_second_while_in_delay"]=9749, + ["regenerate_1_rage_per_x_life_regeneration"]=9750, + ["regenerate_1_rage_per_x_mana_regeneration"]=9751, ["regenerate_X_life_over_1_second_on_cast"]=2610, - ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9744, - ["regenerate_energy_shield_instead_of_life"]=9745, - ["regenerate_mana_equal_to_x%_of_life_per_minute"]=9746, - ["regenerate_ward_instead_of_life"]=9750, - ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9751, + ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9752, + ["regenerate_energy_shield_instead_of_life"]=9753, + ["regenerate_mana_equal_to_x%_of_life_per_minute"]=9754, + ["regenerate_ward_instead_of_life"]=9758, + ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9759, ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3682, ["rejuvenation_totem_aura_effect_+%"]=3683, - ["reload_speed_+%"]=9752, - ["remnant_effect_+%"]=9754, - ["remnant_effect_+%_per_10_tribute"]=9753, - ["remnant_pickup_range_+%"]=9756, - ["remnant_pickup_range_+%_if_you_have_at_least_100_tribute"]=9755, - ["remnant_recover_%_life_on_pickup"]=9757, - ["remnant_recover_%_mana_on_pickup"]=9758, - ["remnants_affect_allies_in_presence"]=9759, - ["remove_%_of_mana_on_hit"]=9772, - ["remove_ailments_and_burning_on_gaining_adrenaline"]=9760, - ["remove_all_damaging_ailments_on_warcry"]=9761, + ["reload_speed_+%"]=9760, + ["remnant_effect_+%"]=9762, + ["remnant_effect_+%_per_10_tribute"]=9761, + ["remnant_pickup_range_+%"]=9764, + ["remnant_pickup_range_+%_if_you_have_at_least_100_tribute"]=9763, + ["remnant_recover_%_life_on_pickup"]=9765, + ["remnant_recover_%_mana_on_pickup"]=9766, + ["remnants_affect_allies_in_presence"]=9767, + ["remove_%_of_mana_on_hit"]=9780, + ["remove_ailments_and_burning_on_gaining_adrenaline"]=9768, + ["remove_all_damaging_ailments_on_warcry"]=9769, ["remove_bleed_on_flask_use"]=3110, - ["remove_bleed_on_life_flask_use"]=9762, - ["remove_bleeding_on_warcry"]=9763, - ["remove_chill_and_freeze_on_flask_use"]=9764, + ["remove_bleed_on_life_flask_use"]=9770, + ["remove_bleeding_on_warcry"]=9771, + ["remove_chill_and_freeze_on_flask_use"]=9772, ["remove_corrupted_blood_when_you_use_a_flask"]=3111, - ["remove_curse_on_mana_flask_use"]=9765, - ["remove_damaging_ailment_on_using_command_skill"]=9766, - ["remove_damaging_ailments_on_swapping_stance"]=9767, - ["remove_elemental_ailments_on_curse_cast_%"]=9768, - ["remove_ignite_and_burning_on_flask_use"]=9769, - ["remove_ignite_on_warcry"]=9770, - ["remove_maim_and_hinder_on_flask_use"]=9771, - ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9773, - ["remove_random_ailment_when_you_warcry"]=9774, - ["remove_random_charge_on_hit_%"]=9775, - ["remove_random_elemental_ailment_on_mana_flask_use"]=9776, - ["remove_random_non_elemental_ailment_on_life_flask_use"]=9777, - ["remove_shock_on_flask_use"]=9778, - ["remove_x_curses_after_channelling_for_2_seconds"]=9779, - ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9780, - ["required_enemies_to_be_considered_surrounded_offset"]=9781, - ["reservation_efficiency_+%_of_companion_skills"]=9782, - ["reservation_efficiency_+%_of_herald_skills"]=9783, - ["reservation_efficiency_+%_of_meta_skills"]=9784, - ["reservation_efficiency_+%_of_minion_skills"]=9785, - ["reservation_efficiency_+%_of_non_minion_skills"]=9786, - ["reservation_efficiency_+%_of_remnant_skills"]=9787, - ["reservation_efficiency_+%_of_skeleton_minion_skills"]=9906, - ["reservation_efficiency_+%_of_skills_per_socketed_idol"]=9789, - ["reservation_efficiency_+%_of_undead_minion_skills"]=10402, - ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9788, + ["remove_curse_on_mana_flask_use"]=9773, + ["remove_damaging_ailment_on_using_command_skill"]=9774, + ["remove_damaging_ailments_on_swapping_stance"]=9775, + ["remove_elemental_ailments_on_curse_cast_%"]=9776, + ["remove_ignite_and_burning_on_flask_use"]=9777, + ["remove_ignite_on_warcry"]=9778, + ["remove_maim_and_hinder_on_flask_use"]=9779, + ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9781, + ["remove_random_ailment_when_you_warcry"]=9782, + ["remove_random_charge_on_hit_%"]=9783, + ["remove_random_elemental_ailment_on_mana_flask_use"]=9784, + ["remove_random_non_elemental_ailment_on_life_flask_use"]=9785, + ["remove_shock_on_flask_use"]=9786, + ["remove_x_curses_after_channelling_for_2_seconds"]=9787, + ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9788, + ["required_enemies_to_be_considered_surrounded_offset"]=9789, + ["reservation_efficiency_+%_of_companion_skills"]=9790, + ["reservation_efficiency_+%_of_herald_skills"]=9791, + ["reservation_efficiency_+%_of_meta_skills"]=9792, + ["reservation_efficiency_+%_of_minion_skills"]=9793, + ["reservation_efficiency_+%_of_non_minion_skills"]=9794, + ["reservation_efficiency_+%_of_remnant_skills"]=9795, + ["reservation_efficiency_+%_of_skeleton_minion_skills"]=9914, + ["reservation_efficiency_+%_of_skills_per_socketed_idol"]=9797, + ["reservation_efficiency_+%_of_undead_minion_skills"]=10416, + ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9796, ["reservation_efficiency_-2%_per_1"]=1982, - ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9790, - ["resist_all_%"]=9793, - ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9794, + ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9798, + ["resist_all_%"]=9801, + ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9802, ["resist_all_elements_%_per_10_levels"]=2547, ["resist_all_elements_%_per_endurance_charge"]=1504, ["resist_all_elements_%_per_power_charge"]=1505, - ["resist_all_elements_%_per_socketed_non_idol_augment"]=9791, - ["resist_all_elements_%_per_socketed_rune"]=9792, + ["resist_all_elements_%_per_socketed_non_idol_augment"]=9799, + ["resist_all_elements_%_per_socketed_rune"]=9800, ["resist_all_elements_%_with_200_or_more_strength"]=4049, ["resist_all_elements_+%_while_holding_shield"]=1506, - ["resolute_technique"]=10755, - ["restore_energy_shield_and_mana_when_you_focus_%"]=9795, + ["resolute_technique"]=10772, + ["restore_energy_shield_and_mana_when_you_focus_%"]=9803, ["restore_life_and_mana_on_warcry_%"]=2942, ["restore_life_on_warcry_%"]=2943, - ["returning_projectiles_always_pierce"]=9796, - ["revive_golems_if_killed_by_enemies_ms"]=9797, - ["revive_persistent_minion_%_chance_when_you_use_a_command_skill"]=9798, - ["revive_random_persistent_minion_on_offering_expiration"]=9799, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9800, + ["returning_projectiles_always_pierce"]=9804, + ["revive_golems_if_killed_by_enemies_ms"]=9805, + ["revive_persistent_minion_%_chance_when_you_use_a_command_skill"]=9806, + ["revive_random_persistent_minion_on_offering_expiration"]=9807, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9808, ["righteous_fire_damage_+%"]=3376, ["righteous_fire_radius_+%"]=3516, ["righteous_fire_spell_damage_+%"]=3792, ["riposte_cooldown_speed_+%"]=3579, ["riposte_damage_+%"]=3423, - ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9801, - ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9802, - ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9803, - ["runefathers_boast_maximum_stacks"]=10585, - ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9804, - ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9805, - ["sacrifice_%_life_on_spell_skill"]=9808, - ["sacrifice_%_life_to_gain_as_guard_on_dodge_roll"]=9806, - ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9809, - ["sacrifice_%_maximum_life_to_gain_half_as_much_ward_on_attack"]=9807, - ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9810, - ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9811, - ["sanctify_damage_+%"]=9812, - ["sap_on_critical_strike_with_lightning_skills"]=9813, + ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9809, + ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9810, + ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9811, + ["runefathers_boast_maximum_stacks"]=10601, + ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9812, + ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9813, + ["sacrifice_%_life_on_spell_skill"]=9816, + ["sacrifice_%_life_to_gain_as_guard_on_dodge_roll"]=9814, + ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9817, + ["sacrifice_%_maximum_life_to_gain_half_as_much_ward_on_attack"]=9815, + ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9818, + ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9819, + ["sanctify_damage_+%"]=9820, + ["sap_on_critical_strike_with_lightning_skills"]=9821, ["scion_helmet_skill_maximum_totems_+"]=481, - ["scorch_effect_+%"]=9814, - ["scorch_enemies_in_close_range_on_block"]=9815, - ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9816, - ["scourge_arrow_damage_+%"]=9817, - ["seal_gain_frequency_+%"]=9818, + ["scorch_effect_+%"]=9822, + ["scorch_enemies_in_close_range_on_block"]=9823, + ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9824, + ["scourge_arrow_damage_+%"]=9825, + ["seal_gain_frequency_+%"]=9826, ["searing_bond_damage_+%"]=3371, ["searing_bond_totem_placement_speed_+%"]=3662, ["searing_totem_elemental_resistance_+%"]=3798, @@ -245572,98 +245856,98 @@ return { ["secondary_minimum_base_fire_damage"]=1324, ["secondary_minimum_base_lightning_damage"]=1326, ["secondary_minimum_base_physical_damage"]=1323, - ["secondary_skill_effect_duration_+%"]=9819, - ["seismic_cry_exerted_attack_damage_+%"]=9820, - ["seismic_cry_minimum_power"]=9821, - ["self_bleed_duration_+%"]=9822, - ["self_chaos_damage_taken_per_minute_per_endurance_charge"]=9823, - ["self_chaos_damage_taken_per_minute_while_affected_by_flask"]=9824, + ["secondary_skill_effect_duration_+%"]=9827, + ["seismic_cry_exerted_attack_damage_+%"]=9828, + ["seismic_cry_minimum_power"]=9829, + ["self_bleed_duration_+%"]=9830, + ["self_chaos_damage_taken_per_minute_per_endurance_charge"]=9831, + ["self_chaos_damage_taken_per_minute_while_affected_by_flask"]=9832, ["self_chill_duration_-%"]=1647, - ["self_cold_damage_on_reaching_maximum_power_charges"]=9825, - ["self_critical_strike_multiplier_+%_while_ignited"]=9826, + ["self_cold_damage_on_reaching_maximum_power_charges"]=9833, + ["self_critical_strike_multiplier_+%_while_ignited"]=9834, ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1428, ["self_curse_duration_+%"]=1936, - ["self_curse_duration_+%_per_10_devotion"]=9827, + ["self_curse_duration_+%_per_10_devotion"]=9835, ["self_cursed_with_level_x_vulnerability"]=2873, ["self_elemental_status_duration_-%"]=1646, - ["self_elemental_status_duration_-%_per_10_devotion"]=9828, + ["self_elemental_status_duration_-%_per_10_devotion"]=9836, ["self_freeze_duration_-%"]=1648, ["self_ignite_duration_-%"]=1649, ["self_offering_effect_+%"]=1163, - ["self_physical_damage_on_movement_skill_use"]=9829, - ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9830, + ["self_physical_damage_on_movement_skill_use"]=9837, + ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9838, ["self_poison_duration_+%"]=1091, ["self_take_no_extra_damage_from_critical_strikes"]=3955, - ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9831, - ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9832, - ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9833, - ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9834, - ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9835, - ["self_take_no_extra_damage_from_critical_strikes_while_on_consecrated_ground"]=9836, - ["sentinel_minion_cooldown_speed_+%"]=9837, - ["sentinel_of_purity_damage_+%"]=9838, - ["serpent_strike_maximum_snakes"]=9839, + ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9839, + ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9840, + ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9841, + ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9842, + ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9843, + ["self_take_no_extra_damage_from_critical_strikes_while_on_consecrated_ground"]=9844, + ["sentinel_minion_cooldown_speed_+%"]=9845, + ["sentinel_of_purity_damage_+%"]=9846, + ["serpent_strike_maximum_snakes"]=9847, ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2760, ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2765, - ["shapeshift_slam_skill_aftershock_chance_%"]=9840, - ["share_charges_with_allies_in_your_presence"]=9841, - ["share_combo_across_weapon_sets_and_weapon_types"]=9842, - ["shatter_has_%_chance_to_cover_in_frost"]=9843, - ["shatter_on_kill_if_fully_broken_armour"]=9844, - ["shatter_on_kill_vs_bleeding_enemies"]=9845, - ["shatter_on_kill_vs_poisoned_enemies"]=9846, - ["shattering_steel_%_chance_to_not_consume_ammo"]=9850, - ["shattering_steel_damage_+%"]=9847, - ["shattering_steel_fortify_on_hit_close_range"]=9848, - ["shattering_steel_number_of_additional_projectiles"]=9849, - ["shield_armour_evasion_energy_shield_+%"]=9856, - ["shield_armour_evasion_energy_shield_+%_per_10_devotion"]=9858, - ["shield_armour_evasion_energy_shield_+%_per_25_tribute"]=9857, + ["shapeshift_slam_skill_aftershock_chance_%"]=9848, + ["share_charges_with_allies_in_your_presence"]=9849, + ["share_combo_across_weapon_sets_and_weapon_types"]=9850, + ["shatter_has_%_chance_to_cover_in_frost"]=9851, + ["shatter_on_kill_if_fully_broken_armour"]=9852, + ["shatter_on_kill_vs_bleeding_enemies"]=9853, + ["shatter_on_kill_vs_poisoned_enemies"]=9854, + ["shattering_steel_%_chance_to_not_consume_ammo"]=9858, + ["shattering_steel_damage_+%"]=9855, + ["shattering_steel_fortify_on_hit_close_range"]=9856, + ["shattering_steel_number_of_additional_projectiles"]=9857, + ["shield_armour_evasion_energy_shield_+%"]=9864, + ["shield_armour_evasion_energy_shield_+%_per_10_devotion"]=9866, + ["shield_armour_evasion_energy_shield_+%_per_25_tribute"]=9865, ["shield_attack_speed_+%"]=1352, ["shield_block_%"]=1149, ["shield_charge_attack_speed_+%"]=3553, ["shield_charge_damage_+%"]=3360, ["shield_charge_damage_per_target_hit_+%"]=3768, - ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9851, - ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9852, - ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9852, - ["shield_crush_attack_speed_+%"]=9853, - ["shield_crush_damage_+%"]=9854, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=9855, + ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9859, + ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9860, + ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9860, + ["shield_crush_attack_speed_+%"]=9861, + ["shield_crush_damage_+%"]=9862, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=9863, ["shield_evasion_rating_+%"]=1759, ["shield_maximum_energy_shield_+%"]=1743, ["shield_physical_damage_reduction_rating_+%"]=1760, - ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9859, - ["shock_attackers_for_4_seconds_on_block_%_chance"]=9860, + ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9867, + ["shock_attackers_for_4_seconds_on_block_%_chance"]=9868, ["shock_chance_+%"]=1083, - ["shock_chance_+%_vs_electrocuted_enemies"]=9861, + ["shock_chance_+%_vs_electrocuted_enemies"]=9869, ["shock_duration_+%"]=1637, - ["shock_effect_+%"]=9863, - ["shock_effect_+%_if_consumed_frenzy_charge_recently"]=9864, - ["shock_effect_+%_with_critical_strikes"]=9865, - ["shock_effect_against_cursed_enemies_+%"]=9862, - ["shock_enemies_in_150cm_radius_on_shock_chance_%"]=9866, + ["shock_effect_+%"]=9871, + ["shock_effect_+%_if_consumed_frenzy_charge_recently"]=9872, + ["shock_effect_+%_with_critical_strikes"]=9873, + ["shock_effect_against_cursed_enemies_+%"]=9870, + ["shock_enemies_in_150cm_radius_on_shock_chance_%"]=9874, ["shock_enemies_in_range_X_for_2s_on_killing_shocked_enemy"]=2595, - ["shock_ground_on_using_a_wind_skill"]=9867, - ["shock_magnitude_calculated_from_damage"]=9868, - ["shock_maximum_magnitude_+"]=9870, - ["shock_maximum_magnitude_is_60%"]=9869, + ["shock_ground_on_using_a_wind_skill"]=9875, + ["shock_magnitude_calculated_from_damage"]=9876, + ["shock_maximum_magnitude_+"]=9878, + ["shock_maximum_magnitude_is_60%"]=9877, ["shock_minimum_damage_taken_increase_%"]=4124, - ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9872, + ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9880, ["shock_nova_damage_+%"]=3386, ["shock_nova_radius_+%"]=3529, - ["shock_nova_ring_chance_to_shock_+%"]=9873, + ["shock_nova_ring_chance_to_shock_+%"]=9881, ["shock_nova_ring_damage_+%"]=3676, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9874, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9882, ["shock_prevention_ms_when_shocked"]=2679, - ["shock_self_for_x_ms_when_you_focus"]=9871, - ["shocked_chilled_effect_on_self_+%"]=9875, - ["shocked_effect_on_self_+%"]=9877, - ["shocked_effect_on_self_+%_while_shapeshifted"]=9876, - ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9878, + ["shock_self_for_x_ms_when_you_focus"]=9879, + ["shocked_chilled_effect_on_self_+%"]=9883, + ["shocked_effect_on_self_+%"]=9885, + ["shocked_effect_on_self_+%_while_shapeshifted"]=9884, + ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9886, ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3309, - ["shocked_ground_base_magnitude_override"]=9879, - ["shocked_ground_on_death_%"]=9880, + ["shocked_ground_base_magnitude_override"]=9887, + ["shocked_ground_on_death_%"]=9888, ["shocked_ground_when_hit_%"]=2383, ["shocks_reflected_to_self"]=2558, ["shockwave_slam_attack_speed_+%"]=3559, @@ -245674,272 +245958,275 @@ return { ["shockwave_totem_damage_+%"]=3387, ["shockwave_totem_radius_+%"]=3544, ["should_use_alternate_fortify"]=2040, - ["shrapnel_ballista_num_additional_arrows"]=9881, - ["shrapnel_ballista_num_pierce"]=9882, - ["shrapnel_ballista_projectile_speed_+%"]=9883, - ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9884, + ["shrapnel_ballista_num_additional_arrows"]=9889, + ["shrapnel_ballista_num_pierce"]=9890, + ["shrapnel_ballista_projectile_speed_+%"]=9891, + ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9892, ["shrapnel_shot_damage_+%"]=3427, ["shrapnel_shot_physical_damage_%_to_gain_as_lightning_damage"]=3708, ["shrapnel_shot_radius_+%"]=3531, - ["shrapnel_trap_area_of_effect_+%"]=9886, - ["shrapnel_trap_damage_+%"]=9887, - ["shrapnel_trap_number_of_additional_secondary_explosions"]=9888, + ["shrapnel_trap_area_of_effect_+%"]=9894, + ["shrapnel_trap_damage_+%"]=9895, + ["shrapnel_trap_number_of_additional_secondary_explosions"]=9896, ["shrine_buff_effect_on_self_+%"]=2593, ["shrine_effect_duration_+%"]=2594, ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=3985, ["siege_ballista_attack_speed_+%"]=3558, ["siege_ballista_damage_+%"]=3440, ["siege_ballista_totem_placement_speed_+%"]=3688, - ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9889, - ["sigil_attached_target_damage_+%"]=9890, - ["sigil_attached_target_damage_taken_+%"]=9891, - ["sigil_critical_strike_chance_+%"]=9892, - ["sigil_critical_strike_multiplier_+"]=9893, - ["sigil_damage_+%"]=9894, - ["sigil_damage_+%_per_10_devotion"]=9895, - ["sigil_duration_+%"]=9896, - ["sigil_recall_cooldown_speed_+%"]=9897, - ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9898, - ["sigil_repeat_frequency_+%"]=9899, - ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9900, - ["sigil_target_search_range_+%"]=9901, + ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9897, + ["sigil_attached_target_damage_+%"]=9898, + ["sigil_attached_target_damage_taken_+%"]=9899, + ["sigil_critical_strike_chance_+%"]=9900, + ["sigil_critical_strike_multiplier_+"]=9901, + ["sigil_damage_+%"]=9902, + ["sigil_damage_+%_per_10_devotion"]=9903, + ["sigil_duration_+%"]=9904, + ["sigil_recall_cooldown_speed_+%"]=9905, + ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9906, + ["sigil_repeat_frequency_+%"]=9907, + ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9908, + ["sigil_target_search_range_+%"]=9909, ["silver_flask_display_onslaught"]=3303, - ["silver_footprints_from_item"]=10783, + ["silver_footprints_from_item"]=10800, ["siphon_duration_+%"]=3614, - ["skeletal_chains_area_of_effect_+%"]=9902, - ["skeletal_chains_cast_speed_+%"]=9903, + ["skeletal_chains_area_of_effect_+%"]=9910, + ["skeletal_chains_cast_speed_+%"]=9911, ["skeletal_chains_damage_+%"]=3436, - ["skeleton_attack_speed_+%"]=9904, - ["skeleton_cast_speed_+%"]=9905, + ["skeleton_attack_speed_+%"]=9912, + ["skeleton_cast_speed_+%"]=9913, ["skeleton_duration_+%"]=1562, - ["skeleton_minion_reservation_+%"]=9907, - ["skeleton_movement_speed_+%"]=9908, - ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9910, - ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9909, - ["skeletons_are_permanent_minions"]=9911, + ["skeleton_minion_reservation_+%"]=9915, + ["skeleton_movement_speed_+%"]=9916, + ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9918, + ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9917, + ["skeletons_are_permanent_minions"]=9919, ["skeletons_damage_+%"]=3361, - ["skill_additional_fissure_chance_%"]=9912, + ["skill_additional_fissure_chance_%"]=9920, ["skill_area_of_effect_+%_if_enemy_killed_recently"]=3895, - ["skill_area_of_effect_+%_in_sand_stance"]=10094, + ["skill_area_of_effect_+%_in_sand_stance"]=10105, ["skill_area_of_effect_+%_per_active_mine"]=3180, ["skill_area_of_effect_+%_per_power_charge"]=1892, ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=1893, ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1815, ["skill_area_of_effect_when_unarmed_+%"]=2811, - ["skill_can_see_monster_categories"]=9913, + ["skill_can_see_monster_categories"]=9921, ["skill_cooldown_-%"]=1671, - ["skill_cost_base_life_equal_to_base_mana"]=9914, - ["skill_cost_efficiency_+%_if_consumed_power_charge_recently"]=9915, - ["skill_detonation_time_+%"]=9916, + ["skill_cost_base_life_equal_to_base_mana"]=9922, + ["skill_cost_efficiency_+%_if_consumed_power_charge_recently"]=9923, + ["skill_detonation_time_+%"]=9924, ["skill_effect_duration_+%"]=1669, ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3897, ["skill_effect_duration_+%_per_10_strength"]=1781, - ["skill_effect_duration_+%_per_enemy_frozen_last_8_seconds"]=9917, - ["skill_effect_duration_+%_when_using_shapeshift_skills"]=9918, - ["skill_effect_duration_+%_while_affected_by_malevolence"]=9919, - ["skill_effect_duration_+%_with_bow_skills"]=9920, - ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9921, + ["skill_effect_duration_+%_per_enemy_frozen_last_8_seconds"]=9925, + ["skill_effect_duration_+%_when_using_shapeshift_skills"]=9926, + ["skill_effect_duration_+%_while_affected_by_malevolence"]=9927, + ["skill_effect_duration_+%_with_bow_skills"]=9928, + ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9929, ["skill_effect_duration_per_100_int"]=2842, ["skill_glory_gain_per_2_seconds"]=4134, ["skill_internal_monster_responsiveness_+%"]=1693, ["skill_life_cost_+"]=1664, - ["skill_life_cost_+_with_channelling_skills"]=9922, - ["skill_life_cost_+_with_non_channelling_skills"]=9923, + ["skill_life_cost_+_with_channelling_skills"]=9930, + ["skill_life_cost_+_with_non_channelling_skills"]=9931, ["skill_mana_cost_+"]=1665, ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=4024, - ["skill_mana_cost_+_while_affected_by_clarity"]=9924, - ["skill_mana_cost_+_with_channelling_skills"]=9925, - ["skill_mana_cost_+_with_non_channelling_skills"]=9927, - ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9929, - ["skill_mana_costs_converted_to_life_costs_%_during_life_flask"]=9930, + ["skill_mana_cost_+_while_affected_by_clarity"]=9932, + ["skill_mana_cost_+_with_channelling_skills"]=9933, + ["skill_mana_cost_+_with_non_channelling_skills"]=9935, + ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9937, + ["skill_mana_costs_converted_to_life_costs_%_during_life_flask"]=9938, ["skill_range_+%"]=1694, ["skill_repeat_count"]=1667, ["skill_speed_+%"]=861, - ["skill_speed_+%_against_bloodlusting_enemies"]=10681, - ["skill_speed_+%_if_consumed_frenzy_charge_recently"]=9931, - ["skill_speed_+%_while_on_low_mana"]=9932, - ["skill_speed_+%_while_shapeshifted"]=9933, - ["skill_speed_+%_with_channelling_skills"]=9934, + ["skill_speed_+%_against_bloodlusting_enemies"]=10698, + ["skill_speed_+%_if_consumed_frenzy_charge_recently"]=9939, + ["skill_speed_+%_per_equipped_corrupted_item"]=9940, + ["skill_speed_+%_while_on_low_mana"]=9941, + ["skill_speed_+%_while_shapeshifted"]=9942, + ["skill_speed_+%_with_channelling_skills"]=9943, ["skill_visual_scale_+%"]=23, - ["skills_cost_divinity_instead_of_mana_or_life"]=9935, - ["skills_cost_no_mana_while_focused"]=9936, - ["skills_deal_you_x%_of_mana_cost_as_physical_damage"]=9937, - ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo"]=9938, - ["skills_from_corrupted_gems_cost_life_instead_of_%_mana_cost"]=9939, - ["skills_gain_critical_strike_chance_+%_per_sockted_or_adjacent_blue_support_gem"]=7277, - ["skills_gain_damage_+%_per_sockted_or_adjacent_red_support_gem"]=7275, - ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9940, - ["skills_gain_skill_speed_+%_per_sockted_or_adjacent_green_support_gem"]=7276, - ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9941, - ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9942, - ["skitterbots_mana_reservation_efficiency_+%"]=9944, - ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9943, - ["slam_aftershock_chance_%"]=9945, + ["skills_cost_divinity_instead_of_mana_or_life"]=9944, + ["skills_cost_no_mana_while_focused"]=9945, + ["skills_deal_you_x%_of_mana_cost_as_physical_damage"]=9946, + ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_12_steel_ammo"]=9947, + ["skills_from_corrupted_gems_cost_life_instead_of_%_mana_cost"]=9948, + ["skills_gain_critical_strike_chance_+%_per_sockted_or_adjacent_blue_support_gem"]=7283, + ["skills_gain_damage_+%_per_sockted_or_adjacent_red_support_gem"]=7281, + ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9949, + ["skills_gain_skill_speed_+%_per_sockted_or_adjacent_green_support_gem"]=7282, + ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9950, + ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9951, + ["skitterbots_mana_reservation_efficiency_+%"]=9953, + ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9952, + ["slam_aftershock_chance_%"]=9954, ["slam_ancestor_totem_damage_+%"]=3819, ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3498, ["slam_ancestor_totem_radius_+%"]=3822, - ["slam_skill_area_of_effect_+%"]=9946, + ["slam_skill_area_of_effect_+%"]=9955, + ["slam_skill_gem_level_+"]=9956, ["slams_always_ancestral_slam"]=2211, ["slash_ancestor_totem_damage_+%"]=3820, ["slash_ancestor_totem_elemental_resistance_%"]=2572, ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3497, ["slash_ancestor_totem_radius_+%"]=3821, - ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9947, + ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9957, ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1168, - ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9948, - ["slayer_damage_+%_final_against_unique_enemies"]=9949, - ["slayer_damage_+%_final_from_distance"]=9950, - ["slither_elusive_effect_+%"]=9951, - ["slither_wither_stacks"]=9952, - ["slow_potency_+%_if_you_have_used_a_charm_recently"]=9953, - ["slows_have_no_potency_on_you"]=9954, - ["slows_have_no_potency_on_you_while_missing_ward"]=9955, - ["slows_have_no_potency_on_you_while_sprinting"]=9956, - ["small_passives_effect_+%"]=9957, - ["smite_aura_effect_+%"]=9958, - ["smite_chance_for_lighting_to_strike_extra_target_%"]=9959, - ["smite_damage_+%"]=9960, - ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9961, - ["smoke_cloud_while_stationary_radius"]=9962, + ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9958, + ["slayer_damage_+%_final_against_unique_enemies"]=9959, + ["slayer_damage_+%_final_from_distance"]=9960, + ["slither_elusive_effect_+%"]=9961, + ["slither_wither_stacks"]=9962, + ["slow_potency_+%_if_you_have_used_a_charm_recently"]=9963, + ["slows_have_no_potency_on_you"]=9964, + ["slows_have_no_potency_on_you_while_missing_ward"]=9965, + ["slows_have_no_potency_on_you_while_sprinting"]=9966, + ["small_passives_effect_+%"]=9967, + ["smite_aura_effect_+%"]=9968, + ["smite_chance_for_lighting_to_strike_extra_target_%"]=9969, + ["smite_damage_+%"]=9970, + ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9971, + ["smoke_cloud_while_stationary_radius"]=9972, ["smoke_mine_base_movement_velocity_+%"]=3788, ["smoke_mine_duration_+%"]=3598, - ["snap_damage_+%_final_if_created_from_unique"]=9963, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9965, - ["snapping_adder_damage_+%"]=9964, - ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9966, - ["snipe_attack_speed_+%"]=9967, - ["snipe_damage_+%_final_if_created_from_unique"]=9968, - ["solaris_spear_number_of_pulses"]=9969, - ["solaris_spear_pulse_delay_ms"]=9969, - ["sorcery_ward_+%_strength"]=9970, - ["sorcery_ward_applies_to_physical_chaos"]=9971, - ["soul_eater_maximum_stacks"]=9972, + ["snap_damage_+%_final_if_created_from_unique"]=9973, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9975, + ["snapping_adder_damage_+%"]=9974, + ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9976, + ["snipe_attack_speed_+%"]=9977, + ["snipe_damage_+%_final_if_created_from_unique"]=9978, + ["solaris_spear_number_of_pulses"]=9979, + ["solaris_spear_pulse_delay_ms"]=9979, + ["sorcery_ward_+%_strength"]=9980, + ["sorcery_ward_applies_to_physical_chaos"]=9981, + ["soul_core_cannot_roll_no_outcome_with_corruption"]=10677, + ["soul_eater_maximum_stacks"]=9982, ["soul_eater_on_rare_kill_ms"]=3146, - ["soul_link_duration_+%"]=9973, - ["soulfeast_number_of_secondary_projectiles"]=9974, - ["soulrend_applies_hinder_movement_speed_+%"]=9975, - ["soulrend_damage_+%"]=9976, - ["soulrend_number_of_additional_projectiles"]=9977, + ["soul_link_duration_+%"]=9983, + ["soulfeast_number_of_secondary_projectiles"]=9984, + ["soulrend_applies_hinder_movement_speed_+%"]=9985, + ["soulrend_damage_+%"]=9986, + ["soulrend_number_of_additional_projectiles"]=9987, ["spark_damage_+%"]=3347, ["spark_num_of_additional_projectiles"]=3638, - ["spark_number_of_additional_projectiles"]=9978, + ["spark_number_of_additional_projectiles"]=9988, ["spark_projectile_speed_+%"]=3587, - ["spark_projectiles_nova"]=9979, - ["spark_skill_effect_duration_+%"]=9980, - ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9981, - ["spawn_defender_with_totem"]=9982, + ["spark_projectiles_nova"]=9989, + ["spark_skill_effect_duration_+%"]=9990, + ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9991, + ["spawn_defender_with_totem"]=9992, ["spear_accuracy_rating"]=1778, ["spear_accuracy_rating_+%"]=1368, ["spear_attack_speed_+%"]=1351, ["spear_critical_strike_chance_+%"]=1393, ["spear_critical_strike_multiplier_+"]=1417, ["spear_damage_+%"]=1291, - ["spear_skills_inflict_bloodstone_lance_on_hit"]=9983, - ["spear_throws_consume_frenzy_charge_to_fire_additional_projectiles"]=9984, - ["spectral_helix_damage_+%"]=9985, - ["spectral_helix_projectile_speed_+%"]=9986, - ["spectral_helix_rotations_%"]=9987, - ["spectral_shield_throw_additional_chains"]=9988, - ["spectral_shield_throw_damage_+%"]=9989, - ["spectral_shield_throw_num_of_additional_projectiles"]=9990, - ["spectral_shield_throw_projectile_speed_+%"]=9991, - ["spectral_shield_throw_secondary_projectiles_pierce"]=9992, - ["spectral_shield_throw_shard_projectiles_+%_final"]=9993, - ["spectral_spiral_weapon_base_number_of_bounces"]=9994, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=9995, + ["spear_skills_inflict_bloodstone_lance_on_hit"]=9993, + ["spear_throws_consume_frenzy_charge_to_fire_additional_projectiles"]=9994, + ["spectral_helix_damage_+%"]=9995, + ["spectral_helix_projectile_speed_+%"]=9996, + ["spectral_helix_rotations_%"]=9997, + ["spectral_shield_throw_additional_chains"]=9998, + ["spectral_shield_throw_damage_+%"]=9999, + ["spectral_shield_throw_num_of_additional_projectiles"]=10000, + ["spectral_shield_throw_projectile_speed_+%"]=10001, + ["spectral_shield_throw_secondary_projectiles_pierce"]=10002, + ["spectral_shield_throw_shard_projectiles_+%_final"]=10003, + ["spectral_spiral_weapon_base_number_of_bounces"]=10004, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=10005, ["spectral_throw_damage_+%"]=3348, ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2971, - ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=9996, + ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=10006, ["spectral_throw_projectile_deceleration_+%"]=3653, ["spectral_throw_projectile_speed_+%"]=3588, ["spectre_attack_and_cast_speed_+%"]=3563, ["spectre_damage_+%"]=3173, ["spectre_elemental_resistances_%"]=3668, - ["spectre_maximum_life_+"]=9997, - ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=9999, - ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=10000, - ["spectres_critical_strike_chance_+%"]=10001, - ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=10002, - ["spectres_have_base_duration_ms"]=10003, - ["spell_additional_critical_strike_chance_permyriad"]=10004, - ["spell_ailment_magnitude_+%_per_100_max_life_with_non_channelling_skills"]=10005, - ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=10006, + ["spectre_maximum_life_+"]=10007, + ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=10009, + ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=10010, + ["spectres_critical_strike_chance_+%"]=10011, + ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=10012, + ["spectres_have_base_duration_ms"]=10013, + ["spell_additional_critical_strike_chance_permyriad"]=10014, + ["spell_ailment_magnitude_+%_per_100_max_life_with_non_channelling_skills"]=10015, + ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=10016, ["spell_and_attack_maximum_added_cold_damage"]=1303, ["spell_and_attack_maximum_added_fire_damage"]=1302, ["spell_and_attack_maximum_added_lightning_damage"]=1334, - ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=10006, + ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=10016, ["spell_and_attack_minimum_added_cold_damage"]=1303, ["spell_and_attack_minimum_added_fire_damage"]=1302, ["spell_and_attack_minimum_added_lightning_damage"]=1334, - ["spell_area_damage_+%"]=10007, - ["spell_area_of_effect_+%"]=10008, + ["spell_area_damage_+%"]=10017, + ["spell_area_of_effect_+%"]=10018, ["spell_bow_damage_+%"]=1206, - ["spell_chance_to_deal_double_damage_%"]=10009, + ["spell_chance_to_deal_double_damage_%"]=10019, ["spell_chance_to_shock_frozen_enemies_%"]=2697, ["spell_cold_damage_+%"]=1204, ["spell_crit_bonus_+%_per_spell_crit_recently"]=1007, - ["spell_critical_hit_chance_%_for_lucky_damage"]=10010, + ["spell_critical_hit_chance_%_for_lucky_damage"]=10020, ["spell_critical_strike_chance_+%"]=1002, - ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=10012, - ["spell_critical_strike_chance_+%_per_100_max_life"]=10014, - ["spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills"]=10013, - ["spell_critical_strike_chance_+%_per_100_max_mana_with_non_channelling_skills"]=10011, - ["spell_critical_strike_chance_+%_per_raised_spectre"]=10015, - ["spell_critical_strike_chance_+%_while_dual_wielding"]=5882, - ["spell_critical_strike_chance_+%_while_holding_shield"]=5883, - ["spell_critical_strike_chance_+%_while_wielding_staff"]=5884, - ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5908, - ["spell_critical_strike_multiplier_+_while_holding_shield"]=5909, - ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5910, + ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=10022, + ["spell_critical_strike_chance_+%_per_100_max_life"]=10024, + ["spell_critical_strike_chance_+%_per_100_max_life_with_non_channelling_skills"]=10023, + ["spell_critical_strike_chance_+%_per_100_max_mana_with_non_channelling_skills"]=10021, + ["spell_critical_strike_chance_+%_per_raised_spectre"]=10025, + ["spell_critical_strike_chance_+%_while_dual_wielding"]=5883, + ["spell_critical_strike_chance_+%_while_holding_shield"]=5884, + ["spell_critical_strike_chance_+%_while_wielding_staff"]=5885, + ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5909, + ["spell_critical_strike_multiplier_+_while_holding_shield"]=5910, + ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5911, ["spell_damage_+%"]=895, - ["spell_damage_+%_during_flask_effect"]=10029, - ["spell_damage_+%_during_mana_flask_effect"]=10016, - ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=10017, + ["spell_damage_+%_during_flask_effect"]=10039, + ["spell_damage_+%_during_mana_flask_effect"]=10026, + ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=10027, ["spell_damage_+%_for_4_seconds_on_cast"]=3241, - ["spell_damage_+%_for_each_different_non_instant_attack_youve_used_in_the_past_8_seconds"]=10018, - ["spell_damage_+%_if_have_consumed_infusion_recently"]=10019, - ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=10030, - ["spell_damage_+%_if_have_crit_recently"]=10020, - ["spell_damage_+%_if_minion_died_recently"]=10021, + ["spell_damage_+%_for_each_different_non_instant_attack_youve_used_in_the_past_8_seconds"]=10028, + ["spell_damage_+%_if_have_consumed_infusion_recently"]=10029, + ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=10040, + ["spell_damage_+%_if_have_crit_recently"]=10030, + ["spell_damage_+%_if_minion_died_recently"]=10031, ["spell_damage_+%_if_other_ring_is_elder_item"]=4019, - ["spell_damage_+%_if_you_have_blocked_recently"]=10031, - ["spell_damage_+%_if_youve_reverted_recently"]=10022, - ["spell_damage_+%_per_100_max_life"]=10032, - ["spell_damage_+%_per_100_max_life_with_non_channelling_skills"]=10033, - ["spell_damage_+%_per_100_max_mana_with_non_channelling_skills"]=10023, - ["spell_damage_+%_per_100_maximum_mana"]=10034, + ["spell_damage_+%_if_you_have_blocked_recently"]=10041, + ["spell_damage_+%_if_youve_reverted_recently"]=10032, + ["spell_damage_+%_per_100_max_life"]=10042, + ["spell_damage_+%_per_100_max_life_with_non_channelling_skills"]=10043, + ["spell_damage_+%_per_100_max_mana_with_non_channelling_skills"]=10033, + ["spell_damage_+%_per_100_maximum_mana"]=10044, ["spell_damage_+%_per_10_int"]=2525, - ["spell_damage_+%_per_10_spirit"]=10035, - ["spell_damage_+%_per_10_strength"]=10036, - ["spell_damage_+%_per_16_dex"]=10037, - ["spell_damage_+%_per_16_int"]=10038, - ["spell_damage_+%_per_16_strength"]=10039, + ["spell_damage_+%_per_10_spirit"]=10045, + ["spell_damage_+%_per_10_strength"]=10046, + ["spell_damage_+%_per_16_dex"]=10047, + ["spell_damage_+%_per_16_int"]=10048, + ["spell_damage_+%_per_16_strength"]=10049, ["spell_damage_+%_per_200_mana_spent_recently"]=4030, ["spell_damage_+%_per_5%_block_chance"]=2524, - ["spell_damage_+%_per_500_maximum_mana"]=10024, + ["spell_damage_+%_per_500_maximum_mana"]=10034, ["spell_damage_+%_per_level"]=2733, ["spell_damage_+%_per_power_charge"]=1903, - ["spell_damage_+%_per_rage"]=10025, - ["spell_damage_+%_while_companion_in_presence"]=10026, + ["spell_damage_+%_per_rage"]=10035, + ["spell_damage_+%_while_companion_in_presence"]=10036, ["spell_damage_+%_while_dual_wielding"]=1208, ["spell_damage_+%_while_es_full"]=2834, ["spell_damage_+%_while_holding_shield"]=1207, ["spell_damage_+%_while_no_mana_reserved"]=2836, ["spell_damage_+%_while_not_low_mana"]=2837, - ["spell_damage_+%_while_shocked"]=10040, - ["spell_damage_+%_while_wielding_melee_weapon"]=10027, - ["spell_damage_+%_while_you_have_arcane_surge"]=10041, - ["spell_damage_+%_with_spells_that_cost_life"]=10028, + ["spell_damage_+%_while_shocked"]=10050, + ["spell_damage_+%_while_wielding_melee_weapon"]=10037, + ["spell_damage_+%_while_you_have_arcane_surge"]=10051, + ["spell_damage_+%_with_spells_that_cost_life"]=10038, ["spell_damage_modifiers_apply_to_attack_damage"]=2481, ["spell_damage_modifiers_apply_to_skill_dot"]=2487, ["spell_damage_taken_+%_from_blinded_enemies"]=2963, ["spell_damage_taken_+%_when_on_low_mana"]=2276, - ["spell_elemental_ailment_magnitude_+%"]=10042, + ["spell_elemental_ailment_magnitude_+%"]=10052, ["spell_elemental_damage_+%"]=1826, ["spell_fire_damage_+%"]=1203, - ["spell_hits_against_you_inflict_poison_%"]=10043, - ["spell_impale_magnitude_+%"]=10044, - ["spell_impale_on_crit_%_chance"]=10045, + ["spell_hits_against_you_inflict_poison_%"]=10053, + ["spell_impale_magnitude_+%"]=10054, + ["spell_impale_on_crit_%_chance"]=10055, ["spell_maximum_added_chaos_damage"]=1332, ["spell_maximum_added_chaos_damage_while_dual_wielding"]=1869, ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1870, @@ -245997,50 +246284,51 @@ return { ["spell_minimum_base_lightning_damage"]=1321, ["spell_minimum_base_physical_damage"]=1318, ["spell_physical_damage_+%"]=902, - ["spell_projectile_skills_fire_X_additional_projectiles_in_a_circle"]=10046, + ["spell_projectile_skills_fire_X_additional_projectiles_in_a_circle"]=10056, ["spell_repeat_count"]=1668, - ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=10047, + ["spell_skill_%_chance_to_fire_8_additional_projectiles_in_nova"]=10057, ["spell_skill_gem_level_+"]=974, - ["spell_skill_projectile_speed_+%"]=10048, - ["spell_skills_additional_totems_allowed"]=10049, - ["spell_skills_deal_no_damage"]=10050, - ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=10051, + ["spell_skill_projectile_speed_+%"]=10058, + ["spell_skills_additional_totems_allowed"]=10059, + ["spell_skills_deal_no_damage"]=10060, + ["spell_skills_fire_2_additional_projectiles_final_chance_%"]=10061, ["spell_staff_damage_+%"]=1205, - ["spells_chance_to_hinder_on_hit_%"]=10052, - ["spells_chance_to_knockback_on_hit_%"]=10053, - ["spells_chance_to_poison_on_hit_%"]=10054, - ["spells_cost_life_instead_of_mana_%"]=10055, - ["spells_gain_%_of_damage_as_extra_chaos_per_curse_on_target"]=9324, - ["spells_gain_%_of_damage_as_extra_phys_per_curse_on_target"]=9325, - ["spells_gain_%_physical_damage_if_they_cost_life"]=10056, + ["spells_chance_to_hinder_on_hit_%"]=10062, + ["spells_chance_to_knockback_on_hit_%"]=10063, + ["spells_chance_to_poison_on_hit_%"]=10064, + ["spells_cost_life_instead_of_mana_%"]=10065, + ["spells_gain_%_of_damage_as_extra_chaos_per_curse_on_target"]=9330, + ["spells_gain_%_of_damage_as_extra_phys_per_curse_on_target"]=9331, + ["spells_gain_%_physical_damage_if_they_cost_life"]=10066, ["spells_have_culling_strike"]=2336, - ["spells_have_x%_chance_inflict_withered_on_hit"]=10057, - ["spells_impale_on_hit_%_chance"]=10058, + ["spells_have_x%_chance_inflict_withered_on_hit"]=10067, + ["spells_impale_on_hit_%_chance"]=10068, ["spells_number_of_additional_projectiles"]=4000, - ["spells_penetrates_elemental_resist_%_while_on_low_ward"]=10059, - ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=10061, - ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=10060, - ["spellslinger_cooldown_duration_+%"]=10062, - ["spellslinger_mana_reservation_+%"]=10065, - ["spellslinger_mana_reservation_efficiency_+%"]=10064, - ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=10063, + ["spells_penetrates_elemental_resist_%_while_on_low_ward"]=10069, + ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=10071, + ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=10070, + ["spellslinger_cooldown_duration_+%"]=10072, + ["spellslinger_mana_reservation_+%"]=10075, + ["spellslinger_mana_reservation_efficiency_+%"]=10074, + ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=10073, ["spend_energy_shield_for_costs_before_mana"]=2865, - ["spending_energy_shield_does_not_interrupt_recharge"]=10066, - ["spider_aspect_debuff_duration_+%"]=10067, - ["spider_aspect_skill_area_of_effect_+%"]=10068, - ["spider_aspect_web_interval_ms_override"]=10069, - ["spike_slam_num_spikes"]=10070, + ["spending_energy_shield_does_not_interrupt_recharge"]=10076, + ["spider_aspect_debuff_duration_+%"]=10077, + ["spider_aspect_skill_area_of_effect_+%"]=10078, + ["spider_aspect_web_interval_ms_override"]=10079, + ["spike_slam_num_spikes"]=10080, ["spirit_+%"]=1441, - ["spirit_+%_if_you_have_at_least_100_tribute"]=10071, - ["spirit_+%_per_stackable_unique_jewel"]=10080, - ["spirit_+_if_at_least_200_dexterity"]=10072, - ["spirit_+_if_at_least_200_intelligence"]=10073, - ["spirit_+_if_at_least_200_strength"]=10074, - ["spirit_+_per_2_levels"]=10075, - ["spirit_+_per_empty_charm_slot"]=10076, - ["spirit_does_not_exist"]=10077, - ["spirit_offering_critical_strike_chance_+%"]=10078, - ["spirit_offering_critical_strike_multiplier_+"]=10079, + ["spirit_+%_if_you_have_at_least_100_tribute"]=10081, + ["spirit_+%_per_equipped_corrupted_item"]=10082, + ["spirit_+%_per_stackable_unique_jewel"]=10091, + ["spirit_+_if_at_least_200_dexterity"]=10083, + ["spirit_+_if_at_least_200_intelligence"]=10084, + ["spirit_+_if_at_least_200_strength"]=10085, + ["spirit_+_per_2_levels"]=10086, + ["spirit_+_per_empty_charm_slot"]=10087, + ["spirit_does_not_exist"]=10088, + ["spirit_offering_critical_strike_chance_+%"]=10089, + ["spirit_offering_critical_strike_multiplier_+"]=10090, ["spirit_offering_duration_+%"]=3597, ["spirit_offering_effect_+%"]=1167, ["spirit_offering_physical_damage_%_to_gain_as_chaos"]=3862, @@ -246048,59 +246336,59 @@ return { ["split_arrow_damage_+%"]=3349, ["split_arrow_num_of_additional_projectiles"]=3639, ["split_arrow_number_of_additional_arrows"]=2912, - ["split_arrow_projectiles_fire_in_parallel_x_dist"]=10081, - ["splitting_steel_area_of_effect_+%"]=10083, - ["splitting_steel_damage_+%"]=10084, - ["spread_ignite_from_killed_enemies_range"]=10085, - ["sprint_movement_speed_+%"]=10086, - ["sprint_movement_speed_+%_per_active_persistent_minion"]=10087, + ["split_arrow_projectiles_fire_in_parallel_x_dist"]=10092, + ["splitting_steel_area_of_effect_+%"]=10094, + ["splitting_steel_damage_+%"]=10095, + ["spread_ignite_from_killed_enemies_range"]=10096, + ["sprint_movement_speed_+%"]=10097, + ["sprint_movement_speed_+%_per_active_persistent_minion"]=10098, ["stacking_damage_+%_on_kill_for_4_seconds"]=3313, ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=3042, ["staff_accuracy_rating"]=1775, ["staff_block_%"]=1150, ["staff_elemental_damage_+%"]=1885, ["staff_stun_duration_+%"]=1645, - ["stance_skill_cooldown_speed_+%"]=10091, - ["stance_skill_reservation_+%"]=10093, - ["stance_skills_mana_reservation_efficiency_+%"]=10092, - ["stance_swap_cooldown_modifier_ms"]=10095, - ["start_at_zero_energy_shield"]=10097, - ["start_energy_shield_recharge_when_you_use_a_mana_flask"]=10098, - ["static_strike_additional_number_of_beam_targets"]=10099, + ["stance_skill_cooldown_speed_+%"]=10102, + ["stance_skill_reservation_+%"]=10104, + ["stance_skills_mana_reservation_efficiency_+%"]=10103, + ["stance_swap_cooldown_modifier_ms"]=10106, + ["start_at_zero_energy_shield"]=10108, + ["start_energy_shield_recharge_when_you_use_a_mana_flask"]=10109, + ["static_strike_additional_number_of_beam_targets"]=10110, ["static_strike_damage_+%"]=3372, ["static_strike_duration_+%"]=3621, ["static_strike_radius_+%"]=3512, ["status_ailments_removed_at_low_life"]=3052, - ["status_ailments_you_inflict_duration_+%_while_focused"]=10100, - ["status_ailments_you_inflict_duration_+%_with_bows"]=10101, - ["stealth_+%"]=10102, - ["stealth_+%_if_have_hit_with_claw_recently"]=10103, + ["status_ailments_you_inflict_duration_+%_while_focused"]=10111, + ["status_ailments_you_inflict_duration_+%_with_bows"]=10112, + ["stealth_+%"]=10113, + ["stealth_+%_if_have_hit_with_claw_recently"]=10114, ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4605, - ["steel_steal_area_of_effect_+%"]=10104, - ["steel_steal_cast_speed_+%"]=10105, - ["steel_steal_reflect_damage_+%"]=10106, - ["steelskin_damage_limit_+%"]=10107, - ["stibnite_flask_evasion_rating_+%_final"]=10108, + ["steel_steal_area_of_effect_+%"]=10115, + ["steel_steal_cast_speed_+%"]=10116, + ["steel_steal_reflect_damage_+%"]=10117, + ["steelskin_damage_limit_+%"]=10118, + ["stibnite_flask_evasion_rating_+%_final"]=10119, ["stone_golem_damage_+%"]=3395, ["stone_golem_elemental_resistances_%"]=3670, - ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=10109, - ["stone_skin_maximum_stacks"]=5422, - ["storm_armageddon_sigils_can_target_reaper_minions"]=10110, - ["storm_barrier_effect_+%"]=10111, - ["storm_blade_has_local_attack_speed_+%"]=10112, - ["storm_blade_has_local_lightning_penetration_%"]=10113, - ["storm_blade_quality_chance_to_shock_%"]=10114, - ["storm_blade_quality_local_critical_strike_chance_+%"]=10115, - ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=10116, - ["storm_brand_additional_chain_chance_%"]=10117, - ["storm_brand_attached_target_lightning_penetration_%"]=10118, - ["storm_brand_damage_+%"]=10119, - ["storm_burst_15_%_chance_to_create_additional_orb"]=10120, - ["storm_burst_additional_object_chance_%"]=10121, - ["storm_burst_area_of_effect_+%"]=10122, - ["storm_burst_avoid_interruption_while_casting_%"]=10123, + ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=10120, + ["stone_skin_maximum_stacks"]=5423, + ["storm_armageddon_sigils_can_target_reaper_minions"]=10121, + ["storm_barrier_effect_+%"]=10122, + ["storm_blade_has_local_attack_speed_+%"]=10123, + ["storm_blade_has_local_lightning_penetration_%"]=10124, + ["storm_blade_quality_chance_to_shock_%"]=10125, + ["storm_blade_quality_local_critical_strike_chance_+%"]=10126, + ["storm_blade_quality_non_skill_lightning_damage_%_to_convert_to_chaos_with_attacks"]=10127, + ["storm_brand_additional_chain_chance_%"]=10128, + ["storm_brand_attached_target_lightning_penetration_%"]=10129, + ["storm_brand_damage_+%"]=10130, + ["storm_burst_15_%_chance_to_create_additional_orb"]=10131, + ["storm_burst_additional_object_chance_%"]=10132, + ["storm_burst_area_of_effect_+%"]=10133, + ["storm_burst_avoid_interruption_while_casting_%"]=10134, ["storm_burst_damage_+%"]=3437, - ["storm_burst_number_of_additional_projectiles"]=10124, + ["storm_burst_number_of_additional_projectiles"]=10135, ["storm_call_damage_+%"]=3373, ["storm_call_duration_+%"]=3622, ["storm_call_radius_+%"]=3513, @@ -246108,132 +246396,135 @@ return { ["storm_cloud_charged_damage_+%_final"]=3162, ["storm_cloud_critical_strike_chance_+%"]=3634, ["storm_cloud_radius_+%"]=3540, - ["storm_rain_damage_+%"]=10125, - ["storm_rain_num_additional_arrows"]=10126, - ["storm_skill_limit_+"]=10127, - ["stormbind_skill_area_of_effect_+%"]=10128, - ["stormbind_skill_damage_+%"]=10129, - ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=10130, - ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=10131, - ["stormweaver_chill_effect_+%_final"]=10132, - ["stormweaver_shock_effect_+%_final"]=10133, + ["storm_rain_damage_+%"]=10136, + ["storm_rain_num_additional_arrows"]=10137, + ["storm_skill_gem_level_+"]=10138, + ["storm_skill_limit_+"]=10139, + ["stormbind_skill_area_of_effect_+%"]=10140, + ["stormbind_skill_damage_+%"]=10141, + ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=10142, + ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=10143, + ["stormweaver_chill_effect_+%_final"]=10144, + ["stormweaver_shock_effect_+%_final"]=10145, ["strength_+%"]=1023, ["strength_and_dexterity_+%"]=1026, ["strength_and_intelligence_+%"]=1027, - ["strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills"]=10134, + ["strength_can_satisfy_dexterity_and_intelligence_requirements_of_melee_weapons_and_skills"]=10146, ["strength_inherently_grants_accuracy_instead_of_life"]=1782, ["strength_skill_gem_level_+"]=977, - ["strike_skills_knockback_on_melee_hit"]=10135, - ["strike_skills_used_with_finality_perform_a_final_strike_if_they_have_one"]=10136, - ["stun_and_ailment_threshold_+%_while_surrounded"]=10137, + ["strike_skill_gem_level_+"]=10147, + ["strike_skills_knockback_on_melee_hit"]=10148, + ["strike_skills_used_with_finality_perform_a_final_strike_if_they_have_one"]=10149, + ["stun_and_ailment_threshold_+%_while_surrounded"]=10150, ["stun_duration_+%"]=1769, - ["stun_duration_+%_per_15_strength"]=10139, - ["stun_duration_+%_per_endurance_charge"]=10140, + ["stun_duration_+%_per_15_strength"]=10152, + ["stun_duration_+%_per_endurance_charge"]=10153, ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=3063, ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=3064, - ["stun_duration_on_critical_strike_+%"]=10138, + ["stun_duration_on_critical_strike_+%"]=10151, ["stun_duration_on_self_+%"]=3852, - ["stun_nearby_enemies_when_stunned_chance_%"]=10141, + ["stun_nearby_enemies_when_stunned_chance_%"]=10154, ["stun_recovery_+%_per_frenzy_charge"]=1674, ["stun_threshold_+"]=1085, ["stun_threshold_+%"]=3007, - ["stun_threshold_+%_during_empowered_attacks"]=10142, - ["stun_threshold_+%_for_each_time_hit_recently_up_to_100%"]=10143, - ["stun_threshold_+%_if_stunned_recently"]=10149, - ["stun_threshold_+%_if_youve_shapeshifted_to_animal_recently"]=10144, - ["stun_threshold_+%_per_25_tribute"]=10145, - ["stun_threshold_+%_per_number_of_times_stunned_recently"]=10146, - ["stun_threshold_+%_per_rage"]=10673, - ["stun_threshold_+%_when_not_stunned_recently"]=10157, - ["stun_threshold_+%_when_on_full_life"]=10158, - ["stun_threshold_+%_while_channelling"]=10147, - ["stun_threshold_+%_while_shapeshifted"]=10148, - ["stun_threshold_+_from_%_maximum_energy_shield"]=10155, - ["stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour"]=10150, - ["stun_threshold_+_per_10_maximum_ward"]=10151, - ["stun_threshold_+_per_dexterity"]=10152, - ["stun_threshold_+_per_strength"]=10153, - ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=10154, + ["stun_threshold_+%_during_empowered_attacks"]=10155, + ["stun_threshold_+%_for_each_time_hit_recently_up_to_100%"]=10156, + ["stun_threshold_+%_if_stunned_recently"]=10162, + ["stun_threshold_+%_if_youve_shapeshifted_to_animal_recently"]=10157, + ["stun_threshold_+%_per_25_tribute"]=10158, + ["stun_threshold_+%_per_number_of_times_stunned_recently"]=10159, + ["stun_threshold_+%_per_rage"]=10690, + ["stun_threshold_+%_when_not_stunned_recently"]=10170, + ["stun_threshold_+%_when_on_full_life"]=10171, + ["stun_threshold_+%_while_channelling"]=10160, + ["stun_threshold_+%_while_shapeshifted"]=10161, + ["stun_threshold_+_from_%_maximum_energy_shield"]=10168, + ["stun_threshold_+_from_lowest_of_base_helmet_evasion_rating_and_armour"]=10163, + ["stun_threshold_+_per_10_maximum_ward"]=10164, + ["stun_threshold_+_per_dexterity"]=10165, + ["stun_threshold_+_per_strength"]=10166, + ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=10167, ["stun_threshold_based_on_%_mana_instead_of_life"]=3006, ["stun_threshold_based_on_energy_shield_instead_of_life"]=3945, ["stun_threshold_reduction_+%_while_using_flask"]=2698, - ["stun_threshold_reduction_+%_with_500_or_more_strength"]=10159, + ["stun_threshold_reduction_+%_with_500_or_more_strength"]=10172, ["stuns_have_culling_strike"]=1800, - ["summon_2_totems"]=10160, - ["summon_arbalist_attack_speed_+%"]=10161, - ["summon_arbalist_chains_+"]=10162, - ["summon_arbalist_chance_to_bleed_%"]=10163, - ["summon_arbalist_chance_to_crush_on_hit_%"]=10164, - ["summon_arbalist_chance_to_deal_double_damage_%"]=10165, - ["summon_arbalist_chance_to_freeze_%"]=10180, - ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=10182, - ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=10183, - ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=10184, - ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=10166, - ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=10167, - ["summon_arbalist_chance_to_poison_%"]=10168, - ["summon_arbalist_chance_to_shock_%"]=10181, - ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=10169, - ["summon_arbalist_number_of_additional_projectiles"]=10170, - ["summon_arbalist_number_of_splits"]=10171, - ["summon_arbalist_projectiles_fork"]=10178, - ["summon_arbalist_targets_to_pierce"]=10179, - ["summon_raging_spirit_melee_splash_fire_damage_only"]=10185, - ["summon_reaper_cooldown_speed_+%"]=10186, + ["summon_2_totems"]=10173, + ["summon_arbalist_attack_speed_+%"]=10174, + ["summon_arbalist_chains_+"]=10175, + ["summon_arbalist_chance_to_bleed_%"]=10176, + ["summon_arbalist_chance_to_crush_on_hit_%"]=10177, + ["summon_arbalist_chance_to_deal_double_damage_%"]=10178, + ["summon_arbalist_chance_to_freeze_%"]=10193, + ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=10195, + ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=10196, + ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=10197, + ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=10179, + ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=10180, + ["summon_arbalist_chance_to_poison_%"]=10181, + ["summon_arbalist_chance_to_shock_%"]=10194, + ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=10182, + ["summon_arbalist_number_of_additional_projectiles"]=10183, + ["summon_arbalist_number_of_splits"]=10184, + ["summon_arbalist_projectiles_fork"]=10191, + ["summon_arbalist_targets_to_pierce"]=10192, + ["summon_raging_spirit_melee_splash_fire_damage_only"]=10198, + ["summon_reaper_cooldown_speed_+%"]=10199, ["summon_skeleton_gem_level_+"]=1503, - ["summon_skeletons_additional_warrior_skeleton_%_chance"]=10188, - ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=10187, - ["summon_skeletons_cooldown_modifier_ms"]=10189, + ["summon_skeletons_additional_warrior_skeleton_%_chance"]=10201, + ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=10200, + ["summon_skeletons_cooldown_modifier_ms"]=10202, ["summon_skeletons_num_additional_warrior_skeletons"]=3685, - ["summon_skitterbots_area_of_effect_+%"]=10190, - ["summon_skitterbots_mana_reservation_+%"]=10191, + ["summon_skitterbots_area_of_effect_+%"]=10203, + ["summon_skitterbots_mana_reservation_+%"]=10204, ["summon_totem_cast_speed_+%"]=2384, - ["summoned_arbalist_physical_damage_%_to_convert_to_cold"]=10172, - ["summoned_arbalist_physical_damage_%_to_convert_to_fire"]=10173, - ["summoned_arbalist_physical_damage_%_to_convert_to_lightning"]=10174, - ["summoned_arbalist_physical_damage_%_to_gain_as_cold"]=10175, - ["summoned_arbalist_physical_damage_%_to_gain_as_fire"]=10176, - ["summoned_arbalist_physical_damage_%_to_gain_as_lightning"]=10177, - ["summoned_phantasms_grant_buff"]=10192, - ["summoned_phantasms_have_no_duration"]=10193, + ["summoned_arbalist_physical_damage_%_to_convert_to_cold"]=10185, + ["summoned_arbalist_physical_damage_%_to_convert_to_fire"]=10186, + ["summoned_arbalist_physical_damage_%_to_convert_to_lightning"]=10187, + ["summoned_arbalist_physical_damage_%_to_gain_as_cold"]=10188, + ["summoned_arbalist_physical_damage_%_to_gain_as_fire"]=10189, + ["summoned_arbalist_physical_damage_%_to_gain_as_lightning"]=10190, + ["summoned_phantasms_grant_buff"]=10205, + ["summoned_phantasms_have_no_duration"]=10206, ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3135, ["summoned_raging_spirit_duration_+%"]=3134, - ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=10194, - ["summoned_reaper_damage_+%"]=10195, - ["summoned_reaper_physical_dot_multiplier_+"]=10196, - ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=10197, - ["summoned_skeleton_%_physical_to_chaos"]=10198, + ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=10207, + ["summoned_reaper_damage_+%"]=10208, + ["summoned_reaper_physical_dot_multiplier_+"]=10209, + ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=10210, + ["summoned_skeleton_%_physical_to_chaos"]=10211, ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4096, - ["summoned_skeletons_cover_in_ash_on_hit_%"]=10199, - ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=10200, - ["summoned_skeletons_have_avatar_of_fire"]=10756, - ["summoned_skeletons_hits_cant_be_evaded"]=10201, - ["summoned_skitterbots_cooldown_recovery_+%"]=10202, - ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=10203, + ["summoned_skeletons_cover_in_ash_on_hit_%"]=10212, + ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=10213, + ["summoned_skeletons_have_avatar_of_fire"]=10773, + ["summoned_skeletons_hits_cant_be_evaded"]=10214, + ["summoned_skitterbots_cooldown_recovery_+%"]=10215, + ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=10216, ["sunder_wave_delay_+%"]=3543, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=10204, - ["support_approaching_storms_area_of_effect_+%_final"]=10205, - ["support_approaching_storms_damage_+%_final"]=10206, - ["support_approaching_storms_movement_speed_+%_final"]=10207, - ["support_buffed_heralds_buff_effect_+%_final"]=10208, - ["support_deadly_heralds_buff_effect_+%_final"]=10209, - ["support_deadly_heralds_damage_+%_final"]=10210, - ["support_fast_forward_detonation_time_+%_final"]=10211, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=10217, + ["support_approaching_storms_area_of_effect_+%_final"]=10218, + ["support_approaching_storms_damage_+%_final"]=10219, + ["support_approaching_storms_movement_speed_+%_final"]=10220, + ["support_buffed_heralds_buff_effect_+%_final"]=10221, + ["support_deadly_heralds_buff_effect_+%_final"]=10222, + ["support_deadly_heralds_damage_+%_final"]=10223, + ["support_fast_forward_detonation_time_+%_final"]=10224, ["support_gem_elemental_damage_+%_final"]=3299, ["support_gems_socketed_in_amulet_also_support_body_skills"]=204, ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=205, - ["support_hourglass_damage_+%_final"]=10212, - ["support_jagged_ground_chance_%"]=10213, - ["support_last_gasp_duration_ms"]=10214, - ["support_maimed_enemies_physical_damage_taken_+%"]=10215, + ["support_hourglass_damage_+%_final"]=10225, + ["support_jagged_ground_chance_%"]=10226, + ["support_last_gasp_duration_ms"]=10227, + ["support_maimed_enemies_physical_damage_taken_+%"]=10228, ["support_minion_maximum_life_+%_final"]=1548, - ["support_mirage_archer_base_duration"]=10217, - ["support_slashing_damage_+%_final_from_distance"]=10218, + ["support_mirage_archer_base_duration"]=10230, + ["support_slashing_damage_+%_final_from_distance"]=10231, ["support_slower_projectiles_damage_+%_final"]=2623, + ["support_trigger_mana_flare_on_crit"]=10232, ["supported_active_skill_gem_expereince_gained_+%"]=2674, ["supported_active_skill_gem_quality_%"]=2599, - ["surpassing_chance_%_to_gain_1_puppeteer_stack_on_using_command_skill"]=10219, - ["surrounded_area_of_effect_+%"]=10220, + ["surpassing_chance_%_to_gain_1_puppeteer_stack_on_using_command_skill"]=10233, + ["surrounded_area_of_effect_+%"]=10234, ["sweep_add_endurance_charge_on_hit_%"]=3514, ["sweep_damage_+%"]=3374, ["sweep_knockback_chance_%"]=3663, @@ -246244,52 +246535,52 @@ return { ["sword_critical_strike_chance_+%"]=1388, ["sword_critical_strike_multiplier_+"]=1413, ["sword_damage_+%"]=1283, - ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=10221, - ["synthesis_map_global_mod_values_doubled_on_this_node"]=10222, - ["synthesis_map_global_mod_values_tripled_on_this_node"]=10223, - ["synthesis_map_memories_do_not_collapse_on_this_node"]=10224, - ["synthesis_map_monster_slain_experience_+%_on_this_node"]=10225, - ["synthesis_map_nearby_memories_have_bonus"]=10226, - ["synthesis_map_node_additional_uses_+"]=10227, - ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=10228, - ["synthesis_map_node_grants_additional_global_mod"]=10229, - ["synthesis_map_node_grants_no_global_mod"]=10230, - ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=10231, - ["synthesis_map_node_item_quantity_increases_doubled"]=10232, - ["synthesis_map_node_item_rarity_increases_doubled"]=10233, - ["synthesis_map_node_level_+"]=10234, - ["synthesis_map_node_monsters_drop_no_items"]=10235, - ["synthesis_map_node_pack_size_increases_doubled"]=10236, - ["tactician_spirit_reservation_+%_final_for_permanent_buffs"]=10237, - ["tailwind_effect_on_self_+%"]=10238, - ["tailwind_effect_on_self_+%_per_gale_force"]=10239, - ["tailwind_if_have_crit_recently"]=10240, - ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=10241, + ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=10235, + ["synthesis_map_global_mod_values_doubled_on_this_node"]=10236, + ["synthesis_map_global_mod_values_tripled_on_this_node"]=10237, + ["synthesis_map_memories_do_not_collapse_on_this_node"]=10238, + ["synthesis_map_monster_slain_experience_+%_on_this_node"]=10239, + ["synthesis_map_nearby_memories_have_bonus"]=10240, + ["synthesis_map_node_additional_uses_+"]=10241, + ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=10242, + ["synthesis_map_node_grants_additional_global_mod"]=10243, + ["synthesis_map_node_grants_no_global_mod"]=10244, + ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=10245, + ["synthesis_map_node_item_quantity_increases_doubled"]=10246, + ["synthesis_map_node_item_rarity_increases_doubled"]=10247, + ["synthesis_map_node_level_+"]=10248, + ["synthesis_map_node_monsters_drop_no_items"]=10249, + ["synthesis_map_node_pack_size_increases_doubled"]=10250, + ["tactician_spirit_reservation_+%_final_for_permanent_buffs"]=10251, + ["tailwind_effect_on_self_+%"]=10252, + ["tailwind_effect_on_self_+%_per_gale_force"]=10253, + ["tailwind_if_have_crit_recently"]=10254, + ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=10255, ["take_chaos_damage_from_ignite_instead"]=2263, - ["take_half_area_damage_from_hit_%_chance"]=10242, - ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=10243, - ["take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack"]=10244, - ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=10245, - ["tame_beast_can_target_unique_beasts"]=10246, - ["tame_beasts_unique_damage_+%_final"]=10247, - ["tame_beasts_unique_movement_velocity_+%"]=10248, - ["tame_beasts_unique_skill_speed_+%"]=10249, - ["tamed_beasts_randomly_possessed_every_x_ms"]=10250, + ["take_half_area_damage_from_hit_%_chance"]=10256, + ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=10257, + ["take_physical_damage_equal_to_%_total_unmet_strength_requirements_on_attack"]=10258, + ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=10259, + ["tame_beast_can_target_unique_beasts"]=10260, + ["tame_beasts_unique_damage_+%_final"]=10261, + ["tame_beasts_unique_movement_velocity_+%"]=10262, + ["tame_beasts_unique_skill_speed_+%"]=10263, + ["tamed_beasts_randomly_possessed_every_x_ms"]=10264, ["taunt_duration_+%"]=1565, - ["taunt_on_projectile_hit_chance_%"]=10251, - ["taunted_enemies_by_warcry_damage_taken_+%"]=10252, + ["taunt_on_projectile_hit_chance_%"]=10265, + ["taunted_enemies_by_warcry_damage_taken_+%"]=10266, ["taunted_enemies_chance_to_be_stunned_+%"]=2955, ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3928, ["taunted_enemies_damage_taken_+%"]=2956, - ["tectonic_slam_%_chance_to_do_charged_slam"]=10258, - ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=10253, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=10254, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=10255, - ["tectonic_slam_area_of_effect_+%"]=10256, - ["tectonic_slam_damage_+%"]=10257, - ["tectonic_slam_side_crack_additional_chance_%"]=10260, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=10259, - ["tempest_shield_buff_effect_+%"]=10261, + ["tectonic_slam_%_chance_to_do_charged_slam"]=10272, + ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=10267, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=10268, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=10269, + ["tectonic_slam_area_of_effect_+%"]=10270, + ["tectonic_slam_damage_+%"]=10271, + ["tectonic_slam_side_crack_additional_chance_%"]=10274, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=10273, + ["tempest_shield_buff_effect_+%"]=10275, ["tempest_shield_damage_+%"]=3419, ["tempest_shield_num_of_additional_projectiles_in_chain"]=3709, ["temporal_chains_curse_effect_+%"]=3691, @@ -246298,110 +246589,110 @@ return { ["temporal_chains_gem_level_+"]=2032, ["temporal_chains_ignores_hexproof"]=2411, ["temporal_chains_mana_reservation_+%"]=3730, - ["temporal_chains_no_reservation"]=10262, - ["temporal_rift_cooldown_speed_+%"]=10263, - ["temporary_minion_limit_+"]=10264, - ["thaumaturgy_rotation_active"]=10265, - ["the_wendigo_manifests_every_x_seconds"]=10695, - ["thorns_critical_strike_chance_+%"]=10266, - ["thorns_damage_+%"]=10271, - ["thorns_damage_+%_if_blocked_recently"]=10272, - ["thorns_damage_+%_if_consumed_endurance_charge_recently"]=10267, - ["thorns_damage_+%_per_10_tribute"]=10268, - ["thorns_damage_has_%_chance_to_ignore_armour"]=10269, - ["thorns_damage_is_lucky_against_enemies_with_fully_broken_armour"]=10270, - ["thorns_maximum_base_chaos_damage"]=10274, - ["thorns_maximum_base_cold_damage"]=10275, - ["thorns_maximum_base_fire_damage"]=10276, - ["thorns_maximum_base_lightning_damage"]=10277, - ["thorns_maximum_base_physical_damage"]=10278, - ["thorns_maximum_fire_damage_per_100_life"]=10273, - ["thorns_minimum_base_chaos_damage"]=10274, - ["thorns_minimum_base_cold_damage"]=10275, - ["thorns_minimum_base_fire_damage"]=10276, - ["thorns_minimum_base_lightning_damage"]=10277, - ["thorns_minimum_base_physical_damage"]=10278, - ["thorns_minimum_fire_damage_per_100_life"]=10273, - ["thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute"]=10279, - ["thorns_proc_off_any_hit"]=10280, - ["threshold_jewel_magma_orb_damage_+%_final"]=10284, - ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=10285, - ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=10286, - ["thrown_shield_secondary_projectile_damage_+%_final"]=10287, - ["titan_additional_inventory"]=10288, - ["titan_damage_+%_final_against_heavy_stunned_enemies"]=10289, - ["titan_expanded_main_inventory"]=10290, - ["titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies"]=10291, - ["titan_maximum_life_+%_final"]=10292, - ["tornado_damage_+%"]=10294, - ["tornado_damage_frequency_+%"]=10293, - ["tornado_movement_speed_+%"]=10295, - ["tornado_only_primary_duration_+%"]=10296, + ["temporal_chains_no_reservation"]=10276, + ["temporal_rift_cooldown_speed_+%"]=10277, + ["temporary_minion_limit_+"]=10278, + ["thaumaturgy_rotation_active"]=10279, + ["the_wendigo_manifests_every_x_seconds"]=10712, + ["thorns_critical_strike_chance_+%"]=10280, + ["thorns_damage_+%"]=10285, + ["thorns_damage_+%_if_blocked_recently"]=10286, + ["thorns_damage_+%_if_consumed_endurance_charge_recently"]=10281, + ["thorns_damage_+%_per_10_tribute"]=10282, + ["thorns_damage_has_%_chance_to_ignore_armour"]=10283, + ["thorns_damage_is_lucky_against_enemies_with_fully_broken_armour"]=10284, + ["thorns_maximum_base_chaos_damage"]=10288, + ["thorns_maximum_base_cold_damage"]=10289, + ["thorns_maximum_base_fire_damage"]=10290, + ["thorns_maximum_base_lightning_damage"]=10291, + ["thorns_maximum_base_physical_damage"]=10292, + ["thorns_maximum_fire_damage_per_100_life"]=10287, + ["thorns_minimum_base_chaos_damage"]=10288, + ["thorns_minimum_base_cold_damage"]=10289, + ["thorns_minimum_base_fire_damage"]=10290, + ["thorns_minimum_base_lightning_damage"]=10291, + ["thorns_minimum_base_physical_damage"]=10292, + ["thorns_minimum_fire_damage_per_100_life"]=10287, + ["thorns_proc_chance_%_against_non_melee_hits_if_you_have_at_least_200_tribute"]=10293, + ["thorns_proc_off_any_hit"]=10294, + ["threshold_jewel_magma_orb_damage_+%_final"]=10298, + ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=10299, + ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=10300, + ["thrown_shield_secondary_projectile_damage_+%_final"]=10301, + ["titan_additional_inventory"]=10302, + ["titan_damage_+%_final_against_heavy_stunned_enemies"]=10303, + ["titan_expanded_main_inventory"]=10304, + ["titan_hit_damage_stun_multiplier_+%_final_vs_full_life_enemies"]=10305, + ["titan_maximum_life_+%_final"]=10306, + ["tornado_damage_+%"]=10308, + ["tornado_damage_frequency_+%"]=10307, + ["tornado_movement_speed_+%"]=10309, + ["tornado_only_primary_duration_+%"]=10310, ["tornado_shot_critical_strike_chance_+%"]=3633, ["tornado_shot_damage_+%"]=3379, ["tornado_shot_num_of_secondary_projectiles"]=3641, - ["tornado_skill_area_of_effect_+%"]=10297, + ["tornado_skill_area_of_effect_+%"]=10311, ["total_base_life_regeneration_rate_per_minute_%_granted_to_allies_in_your_presence"]=948, ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3484, ["totem_additional_physical_damage_reduction_%"]=2573, ["totem_aura_enemy_damage_+%_final"]=3486, ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3487, - ["totem_chaos_immunity"]=10299, - ["totem_chaos_resistance_%"]=10300, + ["totem_chaos_immunity"]=10313, + ["totem_chaos_resistance_%"]=10314, ["totem_critical_strike_chance_+%"]=1406, ["totem_critical_strike_multiplier_+"]=1430, ["totem_damage_+%"]=1176, ["totem_damage_+%_final_per_active_totem"]=3448, - ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=10302, - ["totem_damage_+%_per_10_devotion"]=10303, - ["totem_damage_+%_per_active_curse_on_self"]=10301, + ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=10316, + ["totem_damage_+%_per_10_devotion"]=10317, + ["totem_damage_+%_per_active_curse_on_self"]=10315, ["totem_duration_+%"]=1561, ["totem_elemental_resistance_%"]=2571, ["totem_energy_shield_+%"]=1559, ["totem_fire_immunity"]=1499, - ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=10304, + ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=10318, ["totem_life_+%"]=1557, ["totem_mana_+%"]=1558, ["totem_maximum_all_elemental_resistances_%"]=480, - ["totem_maximum_energy_shield"]=10305, + ["totem_maximum_energy_shield"]=10319, ["totem_number_of_additional_projectiles"]=2835, - ["totem_only_uses_skill_when_owner_attacks"]=10306, - ["totem_placement_range_+%"]=10307, + ["totem_only_uses_skill_when_owner_attacks"]=10320, + ["totem_placement_range_+%"]=10321, ["totem_range_+%"]=1560, ["totem_skill_area_of_effect_+%"]=2387, ["totem_skill_attack_speed_+%"]=2386, ["totem_skill_cast_speed_+%"]=2385, ["totem_skill_gem_level_+"]=997, - ["totem_spells_damage_+%"]=10308, + ["totem_spells_damage_+%"]=10322, ["totemified_skills_taunt_on_hit_%"]=3150, - ["totems_action_speed_cannot_be_modified_below_base"]=10298, + ["totems_action_speed_cannot_be_modified_below_base"]=10312, ["totems_attack_speed_+%_per_active_totem"]=3870, ["totems_cannot_be_stunned"]=2818, ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=3043, - ["totems_explode_on_death_for_%_life_as_physical"]=10309, - ["totems_nearby_enemies_damage_taken_+%"]=10310, - ["totems_regenerate_%_life_per_minute"]=10311, + ["totems_explode_on_death_for_%_life_as_physical"]=10323, + ["totems_nearby_enemies_damage_taken_+%"]=10324, + ["totems_regenerate_%_life_per_minute"]=10325, ["totems_resist_all_elements_+%_per_active_totem"]=3854, ["totems_spells_cast_speed_+%_per_active_totem"]=3858, - ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=10312, - ["tower_add_abyss_to_X_maps"]=10313, - ["tower_add_breach_to_X_maps"]=10314, - ["tower_add_delirium_to_X_maps"]=10315, - ["tower_add_expedition_to_X_maps"]=10316, - ["tower_add_incursion_to_X_maps"]=10317, - ["tower_add_irradiated_to_X_maps"]=10318, - ["tower_add_map_bosses_to_X_maps"]=10319, - ["tower_add_ritual_to_X_maps"]=10320, - ["toxic_rain_damage_+%"]=10321, - ["toxic_rain_num_of_additional_projectiles"]=10322, - ["toxic_rain_physical_damage_%_to_gain_as_chaos"]=10323, + ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=10326, + ["tower_add_abyss_to_X_maps"]=10327, + ["tower_add_breach_to_X_maps"]=10328, + ["tower_add_delirium_to_X_maps"]=10329, + ["tower_add_expedition_to_X_maps"]=10330, + ["tower_add_incursion_to_X_maps"]=10331, + ["tower_add_irradiated_to_X_maps"]=10332, + ["tower_add_map_bosses_to_X_maps"]=10333, + ["tower_add_ritual_to_X_maps"]=10334, + ["toxic_rain_damage_+%"]=10335, + ["toxic_rain_num_of_additional_projectiles"]=10336, + ["toxic_rain_physical_damage_%_to_gain_as_chaos"]=10337, ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2708, ["trap_%_chance_to_trigger_twice"]=3492, - ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=10324, + ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=10338, ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2568, ["trap_and_mine_maximum_added_physical_damage"]=3491, ["trap_and_mine_minimum_added_physical_damage"]=3491, - ["trap_and_mine_throwing_speed_+%"]=10325, + ["trap_and_mine_throwing_speed_+%"]=10339, ["trap_critical_strike_chance_+%"]=1003, ["trap_critical_strike_multiplier_+"]=1008, ["trap_damage_+%"]=896, @@ -246410,46 +246701,46 @@ return { ["trap_damage_penetrates_%_elemental_resistance"]=2566, ["trap_duration_+%"]=1686, ["trap_or_mine_damage_+%"]=1177, - ["trap_skill_added_cooldown_count"]=10326, + ["trap_skill_added_cooldown_count"]=10340, ["trap_skill_area_of_effect_+%"]=3192, ["trap_skill_gem_level_+"]=998, - ["trap_spread_+%"]=10327, - ["trap_throw_skills_have_blood_magic"]=10767, + ["trap_spread_+%"]=10341, + ["trap_throw_skills_have_blood_magic"]=10784, ["trap_throwing_speed_+%"]=1691, - ["trap_throwing_speed_+%_per_frenzy_charge"]=10328, + ["trap_throwing_speed_+%_per_frenzy_charge"]=10342, ["trap_trigger_radius_+%"]=1689, ["traps_and_mines_%_chance_to_poison"]=3769, - ["traps_cannot_be_triggered_by_enemies"]=10329, + ["traps_cannot_be_triggered_by_enemies"]=10343, ["traps_do_not_explode_on_timeout"]=2563, ["traps_explode_on_timeout"]=2564, - ["traps_invulnerable"]=10330, + ["traps_invulnerable"]=10344, ["traps_invulnerable_for_duration_ms"]=2569, ["travel_skill_cooldown_speed_+%"]=4066, - ["travel_skills_cannot_be_exerted"]=10331, + ["travel_skills_cannot_be_exerted"]=10345, ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4076, - ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=10332, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=10333, - ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=10334, + ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=10346, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=10347, + ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=10348, ["trickster_damage_+%_final_per_different_mastery"]=1520, - ["trickster_damage_over_time_+%_final"]=10335, - ["trigger_elemental_storm_on_crit"]=10336, - ["trigger_skills_refund_half_energy_spent_chance_%"]=10337, + ["trickster_damage_over_time_+%_final"]=10349, + ["trigger_elemental_storm_on_crit"]=10350, + ["trigger_skills_refund_half_energy_spent_chance_%"]=10351, ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=631, ["trigger_socketed_spell_on_attack_%"]=632, ["trigger_socketed_spell_on_skill_use_%"]=634, ["trigger_socketed_spells_when_you_focus_%"]=635, ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=141, - ["trigger_wild_strike_on_attack_crit"]=10338, - ["triggerbots_damage_+%_final_with_triggered_spells"]=10339, - ["triggered_spell_spell_damage_+%"]=10340, - ["triggers_burning_runes_on_placing_ground_rune"]=10341, - ["triggers_soulbreaker_on_breaking_enemy_energy_shield"]=10342, - ["trinity_damage_+%_final_to_grant_per_50_resonance"]=10343, - ["trinity_loss_per_hit"]=10344, - ["trinity_resonance_to_grant"]=10344, + ["trigger_wild_strike_on_attack_crit"]=10352, + ["triggerbots_damage_+%_final_with_triggered_spells"]=10353, + ["triggered_spell_spell_damage_+%"]=10354, + ["triggers_burning_runes_on_placing_ground_rune"]=10355, + ["triggers_soulbreaker_on_breaking_enemy_energy_shield"]=10356, + ["trinity_damage_+%_final_to_grant_per_50_resonance"]=10357, + ["trinity_loss_per_hit"]=10358, + ["trinity_resonance_to_grant"]=10358, ["two_handed_melee_accuracy_rating_+%"]=1359, - ["two_handed_melee_area_damage_+%"]=10345, - ["two_handed_melee_area_of_effect_+%"]=10346, + ["two_handed_melee_area_damage_+%"]=10359, + ["two_handed_melee_area_of_effect_+%"]=10360, ["two_handed_melee_attack_speed_+%"]=1341, ["two_handed_melee_cold_damage_+%"]=1255, ["two_handed_melee_critical_strike_chance_+%"]=1396, @@ -246457,87 +246748,87 @@ return { ["two_handed_melee_fire_damage_+%"]=1254, ["two_handed_melee_physical_damage_+%"]=1252, ["two_handed_melee_stun_duration_+%"]=1643, - ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=10347, - ["uber_domain_monster_all_resistances_+%_per_revival"]=10348, - ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=10349, - ["uber_domain_monster_avoid_stun_%_per_revival"]=10350, - ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=10351, - ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=10352, - ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=10353, - ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=10354, - ["uber_domain_monster_maximum_life_+%_per_revival"]=10355, - ["uber_domain_monster_movement_speed_+%_per_revival"]=10356, - ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=10357, - ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=10358, - ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=10359, - ["uber_domain_monster_reward_chance_+%"]=10360, + ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=10361, + ["uber_domain_monster_all_resistances_+%_per_revival"]=10362, + ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=10363, + ["uber_domain_monster_avoid_stun_%_per_revival"]=10364, + ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=10365, + ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=10366, + ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=10367, + ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=10368, + ["uber_domain_monster_maximum_life_+%_per_revival"]=10369, + ["uber_domain_monster_movement_speed_+%_per_revival"]=10370, + ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=10371, + ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=10372, + ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=10373, + ["uber_domain_monster_reward_chance_+%"]=10374, ["ultimatum_wager_type_hash"]=47, - ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=10361, - ["unaffected_by_bleeding_while_affected_by_malevolence"]=10362, - ["unaffected_by_bleeding_while_leeching"]=10363, - ["unaffected_by_blind"]=10364, - ["unaffected_by_burning_ground"]=10365, - ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=10366, - ["unaffected_by_chill"]=10367, - ["unaffected_by_chill_during_dodge_roll"]=10368, - ["unaffected_by_chill_while_channelling"]=10369, - ["unaffected_by_chill_while_mana_leeching"]=10370, - ["unaffected_by_chilled_ground"]=10371, - ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=10372, - ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=10373, - ["unaffected_by_corrupted_blood_while_leeching"]=10374, + ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=10375, + ["unaffected_by_bleeding_while_affected_by_malevolence"]=10376, + ["unaffected_by_bleeding_while_leeching"]=10377, + ["unaffected_by_blind"]=10378, + ["unaffected_by_burning_ground"]=10379, + ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=10380, + ["unaffected_by_chill"]=10381, + ["unaffected_by_chill_during_dodge_roll"]=10382, + ["unaffected_by_chill_while_channelling"]=10383, + ["unaffected_by_chill_while_mana_leeching"]=10384, + ["unaffected_by_chilled_ground"]=10385, + ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=10386, + ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=10387, + ["unaffected_by_corrupted_blood_while_leeching"]=10388, ["unaffected_by_curses"]=2283, - ["unaffected_by_curses_while_affected_by_zealotry"]=10375, - ["unaffected_by_damaging_ailments"]=10376, - ["unaffected_by_desecrated_ground"]=10377, - ["unaffected_by_elemental_weakness"]=10378, - ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=10379, - ["unaffected_by_enfeeble_while_affected_by_grace"]=10380, - ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=10381, - ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=10382, - ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=10383, - ["unaffected_by_ignite"]=10384, - ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=10385, - ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=10386, - ["unaffected_by_poison_while_affected_by_malevolence"]=10387, - ["unaffected_by_shock"]=10388, - ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=10389, - ["unaffected_by_shock_while_channelling"]=10390, - ["unaffected_by_shocked_ground"]=10391, - ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=10392, - ["unaffected_by_temporal_chains"]=10393, - ["unaffected_by_temporal_chains_while_affected_by_haste"]=10394, - ["unaffected_by_vulnerability_while_affected_by_determination"]=10395, - ["unarmed_attack_area_of_effect_+1%_per_X_intelligence"]=10396, - ["unarmed_attack_skill_melee_dash_range_+%"]=10397, - ["unarmed_attack_speed_+%"]=10398, + ["unaffected_by_curses_while_affected_by_zealotry"]=10389, + ["unaffected_by_damaging_ailments"]=10390, + ["unaffected_by_desecrated_ground"]=10391, + ["unaffected_by_elemental_weakness"]=10392, + ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=10393, + ["unaffected_by_enfeeble_while_affected_by_grace"]=10394, + ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=10395, + ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=10396, + ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=10397, + ["unaffected_by_ignite"]=10398, + ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=10399, + ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=10400, + ["unaffected_by_poison_while_affected_by_malevolence"]=10401, + ["unaffected_by_shock"]=10402, + ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=10403, + ["unaffected_by_shock_while_channelling"]=10404, + ["unaffected_by_shocked_ground"]=10405, + ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=10406, + ["unaffected_by_temporal_chains"]=10407, + ["unaffected_by_temporal_chains_while_affected_by_haste"]=10408, + ["unaffected_by_vulnerability_while_affected_by_determination"]=10409, + ["unarmed_attack_area_of_effect_+1%_per_X_intelligence"]=10410, + ["unarmed_attack_skill_melee_dash_range_+%"]=10411, + ["unarmed_attack_speed_+%"]=10412, ["unarmed_damage_+%"]=3283, ["unarmed_damage_+%_vs_bleeding_enemies"]=3276, ["unarmed_melee_attack_speed_+%"]=1353, ["unarmed_melee_physical_damage_+%"]=1256, - ["unattached_sigil_attachment_range_+%_per_second"]=10399, - ["unbound_ailment_elemental_ailment_chance_+%_final"]=10400, - ["unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final"]=10401, - ["undead_minion_reservation_+%"]=10403, - ["unearth_additional_corpse_level"]=10404, - ["unholy_might_granted_magnitude_+%_per_100_maximum_mana"]=10405, + ["unattached_sigil_attachment_range_+%_per_second"]=10413, + ["unbound_ailment_elemental_ailment_chance_+%_final"]=10414, + ["unbound_ailment_hit_damage_elemental_immobilisation_multiplier_+%_final"]=10415, + ["undead_minion_reservation_+%"]=10417, + ["unearth_additional_corpse_level"]=10418, + ["unholy_might_granted_magnitude_+%_per_100_maximum_mana"]=10419, ["unholy_might_while_you_have_no_energy_shield"]=2523, - ["unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell"]=10406, + ["unique_%_maximum_mana_to_sacrifice_to_party_members_in_your_presence_when_they_cast_a_spell"]=10420, ["unique_add_power_charge_on_melee_knockback_%"]=2710, - ["unique_blood_barrier_applies_x_stacks_of_corrupted_blood_on_block"]=10407, - ["unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life"]=10407, - ["unique_blood_barrier_corrupted_blood_duration_ms"]=10407, - ["unique_blood_price_enemies_in_presence_have_at_least_%_life_reserved"]=10408, - ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"]=10693, + ["unique_blood_barrier_applies_x_stacks_of_corrupted_blood_on_block"]=10421, + ["unique_blood_barrier_corrupted_blood_base_physical_damage_per_minute_as_%_of_maximum_life"]=10421, + ["unique_blood_barrier_corrupted_blood_duration_ms"]=10421, + ["unique_blood_price_enemies_in_presence_have_at_least_%_life_reserved"]=10422, + ["unique_body_armour_black_doubt_drain_%_mana_to_recover_life_until_full_and_dot_bypasses_es"]=10710, ["unique_body_armour_item_rarity_only_+%"]=966, - ["unique_body_armour_life_flask_life_recovery_+%_final"]=10409, + ["unique_body_armour_life_flask_life_recovery_+%_final"]=10423, ["unique_body_armour_maximum_energy_shield_override_is_%_of_strength"]=1931, ["unique_body_armour_shavronnes_wrappings_damage_cannot_bypass_energy_shield"]=1484, - ["unique_body_armour_unfaltering_faith_damage_over_time_does_not_bypass_energy_shield"]=10410, + ["unique_body_armour_unfaltering_faith_damage_over_time_does_not_bypass_energy_shield"]=10424, ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4106, ["unique_boots_secondary_ground_ignite_while_moving_base_fire_damage_%_of_life"]=4004, ["unique_boots_secondary_ground_shock_while_moving"]=4005, - ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10771, + ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10788, ["unique_bow_attacks_repeat_x_times_when_no_enemies_in_your_presence"]=4116, ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2739, ["unique_chill_duration_+%_when_in_off_hand"]=2552, @@ -246545,35 +246836,35 @@ return { ["unique_chin_sol_close_range_knockback"]=2219, ["unique_cold_damage_ignites"]=2635, ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1512, - ["unique_cooldown_modifier_ms"]=10411, + ["unique_cooldown_modifier_ms"]=10425, ["unique_critical_strike_chance_+%_final"]=2605, - ["unique_crowd_controlled_enemy_damage_taken_-%_final"]=10412, - ["unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max"]=10413, + ["unique_crowd_controlled_enemy_damage_taken_-%_final"]=10426, + ["unique_damage_+%_vs_rare_or_unique_enemy_per_second_ever_in_presence_up_to_max"]=10427, ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2271, - ["unique_double_presence_radius"]=10414, - ["unique_facebreaker_can_use_mace_attacks_with_both_hands_empty_using_facebreaker_base_damage"]=10415, + ["unique_double_presence_radius"]=10428, + ["unique_facebreaker_can_use_mace_attacks_with_both_hands_empty_using_facebreaker_base_damage"]=10429, ["unique_facebreaker_unarmed_attack_damage_+1%_final_per_X_strength"]=2212, ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1509, ["unique_fire_damage_shocks"]=2634, ["unique_gain_onslaught_when_hit_duration_ms"]=2607, ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2622, ["unique_gain_power_charge_on_non_crit"]=2682, - ["unique_gain_soul_eater"]=10416, - ["unique_gain_x_guard_for_500_ms_per_combo_lost_using_skills"]=10417, + ["unique_gain_soul_eater"]=10430, + ["unique_gain_x_guard_for_500_ms_per_combo_lost_using_skills"]=10431, ["unique_gloves_item_rarity_only_+%"]=967, - ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=10418, - ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=10419, - ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=10420, - ["unique_jewel_flask_duration_+%_final"]=10421, - ["unique_jewel_grants_notable_hash_1"]=10422, - ["unique_jewel_grants_notable_hash_2"]=10423, - ["unique_jewel_grants_notable_hash_3"]=10424, - ["unique_jewel_grants_notable_hash_part_1"]=10425, - ["unique_jewel_grants_notable_hash_part_2"]=10426, - ["unique_jewel_grants_x_voices_jewel_sockets"]=10427, - ["unique_jewel_reserved_blood_maximum_life_+%_final"]=10428, - ["unique_jewel_specific_skill_level_+_level"]=10429, - ["unique_jewel_specific_skill_level_+_skill"]=10429, + ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=10432, + ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=10433, + ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=10434, + ["unique_jewel_flask_duration_+%_final"]=10435, + ["unique_jewel_grants_notable_hash_1"]=10436, + ["unique_jewel_grants_notable_hash_2"]=10437, + ["unique_jewel_grants_notable_hash_3"]=10438, + ["unique_jewel_grants_notable_hash_part_1"]=10439, + ["unique_jewel_grants_notable_hash_part_2"]=10440, + ["unique_jewel_grants_x_voices_jewel_sockets"]=10441, + ["unique_jewel_reserved_blood_maximum_life_+%_final"]=10442, + ["unique_jewel_specific_skill_level_+_level"]=10443, + ["unique_jewel_specific_skill_level_+_skill"]=10443, ["unique_lightning_damage_freezes"]=2636, ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1515, ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1316, @@ -246583,331 +246874,333 @@ return { ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1301, ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1295, ["unique_loris_lantern_golden_light"]=2361, - ["unique_lose_a_power_charge_when_hit"]=10431, + ["unique_lose_a_power_charge_when_hit"]=10445, ["unique_lose_all_endurance_charges_when_hit"]=2606, ["unique_lose_all_power_charges_on_crit"]=2683, - ["unique_mace_fire_damage_with_mace_skills_%_to_convert_to_cold"]=10432, + ["unique_mace_fire_damage_with_mace_skills_%_to_convert_to_cold"]=10446, ["unique_map_boss_class_of_rare_items_to_drop"]=2510, ["unique_map_boss_number_of_rare_items_to_drop"]=2510, ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2739, ["unique_mine_damage_+%_final"]=1179, ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2739, - ["unique_minions_explode_on_death_for_%_max_life_as_physical_damage_in_2m_radius"]=10433, - ["unique_minions_in_presence_gain_and_lose_life_when_you_do"]=10434, - ["unique_monster_dropped_item_rarity_+%"]=10435, - ["unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds"]=10436, + ["unique_minions_explode_on_death_for_%_max_life_as_physical_damage_in_2m_radius"]=10447, + ["unique_minions_in_presence_gain_and_lose_life_when_you_do"]=10448, + ["unique_monster_dropped_item_rarity_+%"]=10449, + ["unique_movement_speed_and_skill_speed_-%_final_per_number_of_times_dodge_rolled_in_past_20_seconds"]=10450, ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2752, - ["unique_no_curse_delay"]=10437, + ["unique_no_curse_delay"]=10451, ["unique_primordial_tether_golem_damage_+%_final"]=3402, ["unique_primordial_tether_golem_life_+%_final"]=3773, - ["unique_prism_guardian_spirit_+_per_X_maximum_life"]=10438, + ["unique_prism_guardian_spirit_+_per_X_maximum_life"]=10452, ["unique_quill_rain_damage_+%_final"]=2264, - ["unique_recover_%_maximum_life_on_x_altenator"]=10439, - ["unique_redblade_banner_enemies_in_presence_monster_power_+%_final"]=10440, - ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10441, - ["unique_reveal_weakness"]=10675, - ["unique_revive_permanent_minions_on_mana_flask_use"]=10442, + ["unique_recover_%_maximum_life_on_x_altenator"]=10453, + ["unique_redblade_banner_enemies_in_presence_monster_power_+%_final"]=10454, + ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10455, + ["unique_reveal_weakness"]=10692, + ["unique_revive_permanent_minions_on_mana_flask_use"]=10456, ["unique_ryslathas_coil_maximum_physical_attack_damage_+%_final"]=1181, ["unique_ryslathas_coil_minimum_physical_attack_damage_+%_final"]=1182, - ["unique_shield_window_of_paradise_apply_elemental_exposure_while_raised"]=10443, - ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10444, - ["unique_spirit_reservations_are_halved"]=10445, - ["unique_sunblast_throw_traps_in_circle_radius"]=10446, - ["unique_two_handed_weapon_lightning_stun_multiplier_+%_final"]=10447, + ["unique_shield_window_of_paradise_apply_elemental_exposure_while_raised"]=10457, + ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10458, + ["unique_spirit_reservations_are_halved"]=10459, + ["unique_sunblast_throw_traps_in_circle_radius"]=10460, + ["unique_two_handed_weapon_lightning_stun_multiplier_+%_final"]=10461, ["unique_volkuurs_clutch_poison_duration_+%_final"]=2921, ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2696, - ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10448, - ["unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below"]=10449, - ["unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below"]=10450, - ["unnerve_for_4_seconds_on_hit_with_wands"]=10451, - ["unnerve_nearby_enemies_on_use_for_ms"]=10452, + ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10462, + ["unique_you_count_as_on_low_life_while_at_%_of_maximum_mana_or_below"]=10463, + ["unique_you_count_as_on_low_mana_while_at_%_of_maximum_health_or_below"]=10464, + ["unnerve_for_4_seconds_on_hit_with_wands"]=10465, + ["unnerve_nearby_enemies_on_use_for_ms"]=10466, ["unveiled_mod_effect_+%"]=74, - ["using_mana_flask_grants_%_recovery_amount_as_guard_for_4s"]=10453, - ["utility_flask_charges_recovered_per_3_seconds"]=10454, - ["utility_flask_cold_damage_taken_+%_final"]=10455, - ["utility_flask_fire_damage_taken_+%_final"]=10456, - ["utility_flask_lightning_damage_taken_+%_final"]=10457, + ["using_mana_flask_grants_%_recovery_amount_as_guard_for_4s"]=10467, + ["utility_flask_charges_recovered_per_3_seconds"]=10468, + ["utility_flask_cold_damage_taken_+%_final"]=10469, + ["utility_flask_fire_damage_taken_+%_final"]=10470, + ["utility_flask_lightning_damage_taken_+%_final"]=10471, ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2486, ["vaal_skill_critical_strike_chance_+%"]=2859, ["vaal_skill_critical_strike_multiplier_+"]=2860, ["vaal_skill_damage_+%"]=2847, ["vaal_skill_effect_duration_+%"]=2857, - ["vaal_skill_gem_level_+"]=10458, - ["vaal_skill_soul_cost_+%"]=10459, + ["vaal_skill_gem_level_+"]=10472, + ["vaal_skill_soul_cost_+%"]=10473, ["vaal_skill_soul_gain_preventation_duration_+%"]=2858, - ["vaal_skill_soul_refund_chance_%"]=10460, - ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10461, - ["vampiric_link_duration_+%"]=10462, + ["vaal_skill_soul_refund_chance_%"]=10474, + ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10475, + ["vampiric_link_duration_+%"]=10476, ["vengeance_cooldown_speed_+%"]=3580, ["vengeance_damage_+%"]=3424, - ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10463, + ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10477, ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2985, ["vigilant_strike_damage_+%"]=3412, ["vigilant_strike_fortify_duration_+%"]=3600, - ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10464, + ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10478, ["viper_strike_critical_strike_chance_+%"]=3630, ["viper_strike_damage_+%"]=3354, - ["viper_strike_dual_wield_damage_+%_final"]=10465, + ["viper_strike_dual_wield_damage_+%_final"]=10479, ["viper_strike_poison_duration_+%"]=3619, ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3116, - ["virtual_block_%_damage_taken"]=10466, - ["virtual_chance_to_gain_1_more_endurance_charge_%"]=10467, - ["virtual_chance_to_gain_1_more_frenzy_charge_%"]=10468, - ["virtual_chance_to_gain_1_more_power_charge_%"]=10469, + ["virtual_block_%_damage_taken"]=10480, + ["virtual_chance_to_gain_1_more_endurance_charge_%"]=10481, + ["virtual_chance_to_gain_1_more_frenzy_charge_%"]=10482, + ["virtual_chance_to_gain_1_more_power_charge_%"]=10483, ["virtual_energy_shield_delay_-%"]=3286, ["virtual_energy_shield_recharge_rate_+%"]=3288, - ["virtual_glory_generation_+%"]=10470, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break"]=10471, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit"]=10472, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_chaos_hit"]=10473, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun"]=10474, - ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite"]=10475, + ["virtual_glory_generation_+%"]=10484, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_armour_break"]=10485, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_attack_hit"]=10486, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_chaos_hit"]=10487, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_heavy_stun"]=10488, + ["virtual_hundred_times_active_skill_generates_mp_%_glory_per_ignite"]=10489, ["virtual_light_radius_+%"]=2305, ["virtual_mana_gain_per_target"]=1533, - ["virtual_maximum_curse_zones_allowed"]=10476, + ["virtual_maximum_curse_zones_allowed"]=10490, ["virtual_minion_damage_+%"]=1746, - ["virtual_number_of_banners_allowed"]=10477, + ["virtual_number_of_banners_allowed"]=10491, ["virtual_number_of_ranged_animated_weapons_allowed"]=3005, - ["virulent_arrow_additional_spores_at_max_stages"]=10478, - ["virulent_arrow_chance_to_poison_%_per_stage"]=10479, + ["virulent_arrow_additional_spores_at_max_stages"]=10492, + ["virulent_arrow_chance_to_poison_%_per_stage"]=10493, ["vitality_mana_reservation_+%"]=3722, - ["vitality_mana_reservation_efficiency_+%"]=10481, - ["vitality_mana_reservation_efficiency_-2%_per_1"]=10480, - ["vitality_reserves_no_mana"]=10482, - ["vivid_stag_damage_%_final_per_cascade"]=10483, - ["vivid_stag_maximum_stag_wisps_allowed"]=10484, - ["vivid_stag_metres_travled_per_wisp_gain"]=10484, - ["vivid_stag_shock_effect_%_final_per_cascade"]=10485, - ["vivisection_armour_evasion_energy_shield_+%_final"]=10487, - ["vivisection_damage_+%_final"]=10486, - ["vivisection_maximum_life_+%_final"]=10488, - ["vivisection_maximum_mana_+%_final"]=10489, - ["vivisection_movement_speed_+%_final"]=10490, - ["vivisection_spirit_+%_final"]=10491, - ["void_sphere_cooldown_speed_+%"]=10492, - ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10493, - ["volatile_dead_base_number_of_corpses_to_consume"]=10494, - ["volatile_dead_cast_speed_+%"]=10495, - ["volatile_dead_consume_additional_corpse"]=10496, - ["volatile_dead_damage_+%"]=10497, - ["volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant"]=10498, - ["volatility_critical_strike_chance_+%_to_grant"]=10499, - ["volatility_detonation_delay_+%"]=10500, - ["volatility_on_kill_%_chance"]=10501, + ["vitality_mana_reservation_efficiency_+%"]=10495, + ["vitality_mana_reservation_efficiency_-2%_per_1"]=10494, + ["vitality_reserves_no_mana"]=10496, + ["vivid_stag_damage_%_final_per_cascade"]=10497, + ["vivid_stag_maximum_stag_wisps_allowed"]=10498, + ["vivid_stag_metres_travled_per_wisp_gain"]=10498, + ["vivid_stag_shock_effect_%_final_per_cascade"]=10499, + ["vivisection_armour_evasion_energy_shield_+%_final"]=10501, + ["vivisection_damage_+%_final"]=10500, + ["vivisection_maximum_life_+%_final"]=10502, + ["vivisection_maximum_mana_+%_final"]=10503, + ["vivisection_movement_speed_+%_final"]=10504, + ["vivisection_spirit_+%_final"]=10505, + ["void_sphere_cooldown_speed_+%"]=10506, + ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10507, + ["volatile_dead_base_number_of_corpses_to_consume"]=10508, + ["volatile_dead_cast_speed_+%"]=10509, + ["volatile_dead_consume_additional_corpse"]=10510, + ["volatile_dead_damage_+%"]=10511, + ["volatility_additional_non_skill_%_damage_as_extra_chaos_to_grant"]=10512, + ["volatility_critical_strike_chance_+%_to_grant"]=10513, + ["volatility_detonation_delay_+%"]=10514, + ["volatility_on_kill_%_chance"]=10515, ["volatility_physical_damage_taken_%_as_cold"]=2234, - ["volatility_refresh_%_chance"]=10502, - ["volatility_when_stunned_%_chance"]=10503, - ["volcanic_fissure_damage_+%"]=10504, - ["volcanic_fissure_number_of_additional_projectiles"]=10505, - ["volcanic_fissure_speed_+%"]=10506, - ["voltaxic_burst_damage_+%"]=10507, - ["voltaxic_burst_damage_+%_per_100ms_duration"]=10508, - ["voltaxic_burst_skill_area_of_effect_+%"]=10509, - ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10510, - ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10511, + ["volatility_refresh_%_chance"]=10516, + ["volatility_when_stunned_%_chance"]=10517, + ["volcanic_fissure_damage_+%"]=10518, + ["volcanic_fissure_number_of_additional_projectiles"]=10519, + ["volcanic_fissure_speed_+%"]=10520, + ["voltaxic_burst_damage_+%"]=10521, + ["voltaxic_burst_damage_+%_per_100ms_duration"]=10522, + ["voltaxic_burst_skill_area_of_effect_+%"]=10523, + ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10524, + ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10525, ["vulnerability_curse_effect_+%"]=3698, ["vulnerability_duration_+%"]=3603, ["vulnerability_gem_level_+"]=2033, ["vulnerability_ignores_hexproof"]=2412, ["vulnerability_mana_reservation_+%"]=3731, - ["vulnerability_no_reservation"]=10512, + ["vulnerability_no_reservation"]=10526, ["wand_accuracy_rating"]=1777, ["wand_accuracy_rating_+%"]=1367, ["wand_attack_speed_+%"]=1350, ["wand_critical_strike_chance_+%"]=1391, ["wand_critical_strike_multiplier_+"]=1414, ["wand_damage_+%"]=2715, - ["wand_damage_+%_if_crit_recently"]=10513, + ["wand_damage_+%_if_crit_recently"]=10527, ["wand_damage_+%_per_power_charge"]=1904, ["wand_elemental_damage_+%"]=1884, - ["war_banner_aura_effect_+%"]=10514, - ["war_banner_mana_reservation_efficiency_+%"]=10515, - ["warbringer_overbreak_armour"]=10516, - ["warcries_apply_fire_exposure"]=10517, + ["war_banner_aura_effect_+%"]=10528, + ["war_banner_mana_reservation_efficiency_+%"]=10529, + ["warbringer_overbreak_armour"]=10530, + ["warcries_apply_fire_exposure"]=10531, ["warcries_are_instant"]=3176, - ["warcries_bypass_cooldown"]=10518, + ["warcries_bypass_cooldown"]=10532, ["warcries_cost_no_mana"]=3811, - ["warcries_debilitate_enemies_for_1_second"]=10519, - ["warcries_have_minimum_10_power"]=10520, - ["warcries_inflict_x_critical_weakness_on_enemies"]=10521, - ["warcries_knock_back_enemies"]=10522, - ["warcry_buff_effect_+%"]=10523, - ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10524, - ["warcry_cooldown_modifier_ms"]=10525, + ["warcries_debilitate_enemies_for_1_second"]=10533, + ["warcries_have_minimum_10_power"]=10534, + ["warcries_inflict_x_critical_weakness_on_enemies"]=10535, + ["warcries_knock_back_enemies"]=10536, + ["warcry_buff_effect_+%"]=10537, + ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10538, + ["warcry_cooldown_modifier_ms"]=10539, ["warcry_cooldown_speed_+%"]=3059, - ["warcry_damage_+%"]=10526, + ["warcry_damage_+%"]=10540, ["warcry_damage_taken_goes_to_mana_%"]=2998, ["warcry_duration_+%"]=2944, - ["warcry_empowers_next_x_melee_attacks"]=10527, - ["warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute"]=10528, - ["warcry_monster_power_+%"]=10529, - ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10530, - ["warcry_skill_area_of_effect_+%"]=10531, - ["warcry_skills_cooldown_is_4_seconds"]=10532, + ["warcry_empowers_next_x_melee_attacks"]=10541, + ["warcry_empowers_next_x_melee_attacks_if_you_have_at_least_100_tribute"]=10542, + ["warcry_monster_power_+%"]=10543, + ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10544, + ["warcry_skill_area_of_effect_+%"]=10545, + ["warcry_skill_gem_level_+"]=10546, + ["warcry_skills_cooldown_is_4_seconds"]=10547, ["warcry_speed_+%"]=3013, - ["warcry_speed_+%_per_25_tribute"]=10533, - ["ward_%_gained_on_kill"]=10534, - ["ward_%_to_recover_on_reaching_maximum_rage"]=10535, - ["ward_can_overcap"]=10536, - ["ward_regeneration_rate_+%"]=10537, - ["ward_regeneration_rate_+%_if_have_crit_recently"]=10538, - ["ward_regeneration_rate_+%_while_sprinting"]=10539, - ["ward_regeneration_rate_+1%_final_per_x%_ward_lost_from_hits_up_to_100%"]=10540, - ["ward_regeneration_rate_-1%_per_X_maximum_ward"]=10541, - ["ward_regeneration_rate_is_doubled"]=10542, + ["warcry_speed_+%_per_25_tribute"]=10548, + ["ward_%_gained_on_kill"]=10549, + ["ward_%_to_recover_on_reaching_maximum_rage"]=10550, + ["ward_can_overcap"]=10551, + ["ward_regeneration_rate_+%"]=10552, + ["ward_regeneration_rate_+%_if_have_crit_recently"]=10553, + ["ward_regeneration_rate_+%_while_sprinting"]=10554, + ["ward_regeneration_rate_+1%_final_per_x%_ward_lost_from_hits_up_to_100%"]=10555, + ["ward_regeneration_rate_-1%_per_X_maximum_ward"]=10556, + ["ward_regeneration_rate_is_doubled"]=10557, ["ward_rune_maximum_ward_+%_final"]=4135, - ["warping_rune_add_item_tag_1"]=10543, - ["warping_rune_add_item_tag_2"]=10544, - ["warping_rune_add_item_tag_3"]=10545, - ["warping_rune_add_item_tag_4"]=10546, - ["warping_rune_add_item_tag_5"]=10547, - ["warping_rune_add_item_tag_6"]=10548, - ["water_sphere_cold_lightning_exposure_%"]=10549, - ["water_sphere_damage_+%"]=10550, + ["warping_rune_add_item_tag_1"]=10558, + ["warping_rune_add_item_tag_2"]=10559, + ["warping_rune_add_item_tag_3"]=10560, + ["warping_rune_add_item_tag_4"]=10561, + ["warping_rune_add_item_tag_5"]=10562, + ["warping_rune_add_item_tag_6"]=10563, + ["water_sphere_cold_lightning_exposure_%"]=10564, + ["water_sphere_damage_+%"]=10565, ["weapon_chaos_damage_+%"]=1825, ["weapon_cold_damage_+%"]=1823, - ["weapon_damage_+%_per_10_str"]=10551, + ["weapon_damage_+%_per_10_str"]=10566, ["weapon_elemental_damage_+%"]=1290, ["weapon_elemental_damage_+%_per_power_charge"]=2478, ["weapon_elemental_damage_+%_while_using_flask"]=2544, ["weapon_fire_damage_+%"]=1822, - ["weapon_hellscaping_speed_+%"]=7155, + ["weapon_hellscaping_speed_+%"]=7160, ["weapon_lightning_damage_+%"]=1824, ["weapon_physical_damage_+%"]=2532, - ["weapon_swap_speed_+%"]=10552, - ["while_curse_is_25%_expired_hinder_enemy_%"]=10553, - ["while_curse_is_33%_expired_malediction"]=10554, - ["while_curse_is_50%_expired_curse_effect_+%"]=10555, - ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10556, - ["while_stationary_gain_additional_physical_damage_reduction_%"]=10557, - ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10558, + ["weapon_swap_speed_+%"]=10567, + ["while_curse_is_25%_expired_hinder_enemy_%"]=10568, + ["while_curse_is_33%_expired_malediction"]=10569, + ["while_curse_is_50%_expired_curse_effect_+%"]=10570, + ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10571, + ["while_stationary_gain_additional_physical_damage_reduction_%"]=10572, + ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10573, ["while_using_mace_stun_threshold_reduction_+%"]=1431, ["whirling_blades_attack_speed_+%"]=3562, ["whirling_blades_damage_+%"]=3413, ["wild_strike_damage_+%"]=3388, ["wild_strike_num_of_additional_projectiles_in_chain"]=3684, ["wild_strike_radius_+%"]=3522, - ["wind_skills_can_be_empowered_by_multiple_elements"]=10559, - ["wind_skills_count_as_empowered_by_chilled_ground"]=10560, - ["wind_skills_count_as_empowered_by_ignited_ground"]=10560, - ["wind_skills_count_as_empowered_by_shocked_ground"]=10560, - ["wind_skills_deal_no_non_elemental_damage"]=10561, - ["winter_brand_chill_effect_+%"]=10562, - ["winter_brand_damage_+%"]=10563, - ["winter_brand_max_number_of_stages_+"]=10564, - ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10565, - ["witch_passive_maximum_lightning_damage_+%_final"]=10566, - ["witchhunter_armour_evasion_+%_final"]=10567, - ["witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical"]=10568, - ["witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus"]=10569, + ["wind_skill_gem_level_+"]=10574, + ["wind_skills_can_be_empowered_by_multiple_elements"]=10575, + ["wind_skills_count_as_empowered_by_chilled_ground"]=10576, + ["wind_skills_count_as_empowered_by_ignited_ground"]=10576, + ["wind_skills_count_as_empowered_by_shocked_ground"]=10576, + ["wind_skills_deal_no_non_elemental_damage"]=10577, + ["winter_brand_chill_effect_+%"]=10578, + ["winter_brand_damage_+%"]=10579, + ["winter_brand_max_number_of_stages_+"]=10580, + ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10581, + ["witch_passive_maximum_lightning_damage_+%_final"]=10582, + ["witchhunter_armour_evasion_+%_final"]=10583, + ["witchhunter_chance_to_explode_enemies_for_100%_of_life_as_physical"]=10584, + ["witchhunter_up_to_damage_+%_final_against_targets_with_missing_focus"]=10585, ["with_bow_additional_block_%"]=2267, - ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10570, + ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10586, ["wither_duration_+%"]=3615, ["wither_inflicted_also_does_fire"]=4119, ["wither_never_expires"]=4117, ["wither_radius_+%"]=3534, - ["withered_effect_on_self_+%"]=10571, - ["withered_enemies_deal_+%_damage"]=10572, - ["withered_magnitude_+%"]=10573, + ["withered_effect_on_self_+%"]=10587, + ["withered_enemies_deal_+%_damage"]=10588, + ["withered_magnitude_+%"]=10589, ["withered_on_hit_for_2_seconds_%_chance"]=4080, - ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10574, - ["withered_on_hit_for_4_seconds_%_chance"]=10575, + ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10590, + ["withered_on_hit_for_4_seconds_%_chance"]=10591, ["wrath_aura_effect_+%"]=3089, ["wrath_mana_reservation_+%"]=3723, - ["wrath_mana_reservation_efficiency_+%"]=10577, - ["wrath_mana_reservation_efficiency_-2%_per_1"]=10576, - ["wrath_reserves_no_mana"]=10578, - ["x%_damage_taken_recouped_as_life_per_5_rage"]=10579, - ["x%_faster_start_of_sorcery_ward_recovery"]=10580, - ["x%_of_armour_applies_to_elemental_damage_while_shapeshifted"]=10581, - ["x%_of_damage_taken_while_channelling_recouped_as_life"]=10582, + ["wrath_mana_reservation_efficiency_+%"]=10593, + ["wrath_mana_reservation_efficiency_-2%_per_1"]=10592, + ["wrath_reserves_no_mana"]=10594, + ["x%_damage_taken_recouped_as_life_per_5_rage"]=10595, + ["x%_faster_start_of_sorcery_ward_recovery"]=10596, + ["x%_of_armour_applies_to_elemental_damage_while_shapeshifted"]=10597, + ["x%_of_damage_taken_while_channelling_recouped_as_life"]=10598, ["x_to_maximum_life_per_2_intelligence"]=1791, - ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10586, - ["you_and_allies_in_presence_accuracy_rating_+%"]=10587, - ["you_and_allies_in_presence_all_damage_can_ignite"]=10588, - ["you_and_allies_in_presence_attack_speed_+%"]=10589, - ["you_and_allies_in_presence_cast_speed_+%"]=10590, - ["you_and_allies_in_presence_chaos_damage_resistance_%"]=10591, - ["you_and_allies_in_presence_cooldown_speed_+%"]=10592, - ["you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame"]=10593, + ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10602, + ["you_and_allies_in_presence_accuracy_rating_+%"]=10603, + ["you_and_allies_in_presence_all_damage_can_ignite"]=10604, + ["you_and_allies_in_presence_attack_speed_+%"]=10605, + ["you_and_allies_in_presence_cast_speed_+%"]=10606, + ["you_and_allies_in_presence_chaos_damage_resistance_%"]=10607, + ["you_and_allies_in_presence_cooldown_speed_+%"]=10608, + ["you_and_allies_in_presence_non_skill_base_all_damage_%_to_gain_as_fire_while_on_high_infernal_flame"]=10609, ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3751, - ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10594, - ["you_and_nearby_allies_critical_strike_chance_+%"]=10595, - ["you_and_nearby_allies_critical_strike_multiplier_+"]=10596, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10597, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10598, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10599, - ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10600, - ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10601, - ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10602, + ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10610, + ["you_and_nearby_allies_critical_strike_chance_+%"]=10611, + ["you_and_nearby_allies_critical_strike_multiplier_+"]=10612, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10613, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10614, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10615, + ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10616, + ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10617, + ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10618, ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=3057, - ["you_are_cursed_with_despair"]=10603, - ["you_are_cursed_with_elemental_weakness"]=10604, - ["you_are_cursed_with_enfeeble"]=10605, - ["you_are_cursed_with_temporal_chains"]=10606, - ["you_are_cursed_with_vulnerability"]=10607, - ["you_cannot_be_hindered"]=10608, - ["you_cannot_have_non_animated_minions"]=10609, + ["you_are_cursed_with_despair"]=10619, + ["you_are_cursed_with_elemental_weakness"]=10620, + ["you_are_cursed_with_enfeeble"]=10621, + ["you_are_cursed_with_temporal_chains"]=10622, + ["you_are_cursed_with_vulnerability"]=10623, + ["you_cannot_be_hindered"]=10624, + ["you_cannot_have_non_animated_minions"]=10625, ["you_cannot_have_non_golem_minions"]=3393, - ["you_cannot_have_non_spectre_minions"]=10610, - ["you_cannot_inflict_curses"]=10611, + ["you_cannot_have_non_spectre_minions"]=10626, + ["you_cannot_inflict_curses"]=10627, ["you_count_as_full_life_while_affected_by_vulnerability"]=2870, ["you_count_as_low_life_while_affected_by_vulnerability"]=2871, - ["you_count_as_low_life_while_not_on_full_life"]=10612, - ["you_gain_%_life_when_one_of_your_minions_is_revived"]=10613, + ["you_count_as_low_life_while_not_on_full_life"]=10628, + ["you_gain_%_life_when_one_of_your_minions_is_revived"]=10629, ["your_aegis_skills_except_primal_are_disabled"]=637, - ["your_aftershock_area_of_effect_+%"]=10614, - ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10616, - ["your_auras_except_anger_are_disabled"]=10617, - ["your_auras_except_clarity_are_disabled"]=10618, - ["your_auras_except_determination_are_disabled"]=10619, - ["your_auras_except_discipline_are_disabled"]=10620, - ["your_auras_except_grace_are_disabled"]=10621, - ["your_auras_except_haste_are_disabled"]=10622, - ["your_auras_except_hatred_are_disabled"]=10623, - ["your_auras_except_malevolence_are_disabled"]=10624, - ["your_auras_except_precision_are_disabled"]=10625, - ["your_auras_except_pride_are_disabled"]=10626, - ["your_auras_except_purity_of_elements_are_disabled"]=10627, - ["your_auras_except_purity_of_fire_are_disabled"]=10628, - ["your_auras_except_purity_of_ice_are_disabled"]=10629, - ["your_auras_except_purity_of_lightning_are_disabled"]=10630, - ["your_auras_except_vitality_are_disabled"]=10631, - ["your_auras_except_wrath_are_disabled"]=10632, - ["your_auras_except_zealotry_are_disabled"]=10633, - ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10634, + ["your_aftershock_area_of_effect_+%"]=10630, + ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10632, + ["your_auras_except_anger_are_disabled"]=10633, + ["your_auras_except_clarity_are_disabled"]=10634, + ["your_auras_except_determination_are_disabled"]=10635, + ["your_auras_except_discipline_are_disabled"]=10636, + ["your_auras_except_grace_are_disabled"]=10637, + ["your_auras_except_haste_are_disabled"]=10638, + ["your_auras_except_hatred_are_disabled"]=10639, + ["your_auras_except_malevolence_are_disabled"]=10640, + ["your_auras_except_precision_are_disabled"]=10641, + ["your_auras_except_pride_are_disabled"]=10642, + ["your_auras_except_purity_of_elements_are_disabled"]=10643, + ["your_auras_except_purity_of_fire_are_disabled"]=10644, + ["your_auras_except_purity_of_ice_are_disabled"]=10645, + ["your_auras_except_purity_of_lightning_are_disabled"]=10646, + ["your_auras_except_vitality_are_disabled"]=10647, + ["your_auras_except_wrath_are_disabled"]=10648, + ["your_auras_except_zealotry_are_disabled"]=10649, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10650, ["your_consecrated_ground_grants_damage_+%"]=3907, ["your_elemental_resistances_do_not_exist"]=2615, - ["your_es_takes_%_hit_damage_from_allies_in_presence_before_them"]=10635, - ["your_life_cannot_change_while_you_have_energy_shield"]=10636, + ["your_es_takes_%_hit_damage_from_allies_in_presence_before_them"]=10651, + ["your_life_cannot_change_while_you_have_energy_shield"]=10652, ["your_life_flasks_also_apply_to_your_minions"]=1944, - ["your_mace_slam_aftershock_chance_%"]=10637, - ["your_mace_strike_melee_splash_chance_%"]=10638, - ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=10639, - ["your_movement_skills_are_disabled"]=10640, - ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10641, - ["your_shield_skills_are_disabled"]=10642, - ["your_slam_aftershock_chance_%"]=10643, - ["your_spells_are_disabled"]=10644, - ["your_travel_skills_are_disabled"]=10645, - ["your_travel_skills_except_dash_are_disabled"]=10646, - ["zealotry_aura_effect_+%"]=10662, - ["zealotry_mana_reservation_+%"]=10665, - ["zealotry_mana_reservation_efficiency_+%"]=10664, - ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10663, - ["zealotry_reserves_no_mana"]=10666, - ["zero_chaos_resistance"]=10667, + ["your_mace_slam_aftershock_chance_%"]=10653, + ["your_mace_strike_melee_splash_chance_%"]=10654, + ["your_marks_spread_to_a_nearby_enemies_on_consume_%_chance"]=10655, + ["your_movement_skills_are_disabled"]=10656, + ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10657, + ["your_shield_skills_are_disabled"]=10658, + ["your_slam_aftershock_chance_%"]=10659, + ["your_spells_are_disabled"]=10660, + ["your_travel_skills_are_disabled"]=10661, + ["your_travel_skills_except_dash_are_disabled"]=10662, + ["zealotry_aura_effect_+%"]=10679, + ["zealotry_mana_reservation_+%"]=10682, + ["zealotry_mana_reservation_efficiency_+%"]=10681, + ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10680, + ["zealotry_reserves_no_mana"]=10683, + ["zero_chaos_resistance"]=10684, ["zombie_attack_speed_+%"]=3550, - ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10668, + ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10685, ["zombie_chaos_elemental_damage_resistance_%"]=2395, ["zombie_damage_+%"]=3345, ["zombie_elemental_resistances_%"]=3669, ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2477, ["zombie_maximum_life_+"]=2394, ["zombie_physical_damage_+%"]=2476, - ["zombie_physical_damage_+%_final"]=10669, + ["zombie_physical_damage_+%_final"]=10686, ["zombie_scale_+%"]=2475, - ["zombie_slam_area_of_effect_+%"]=10670, - ["zombie_slam_cooldown_speed_+%"]=10671, - ["zombie_slam_damage_+%"]=10672 + ["zombie_slam_area_of_effect_+%"]=10687, + ["zombie_slam_cooldown_speed_+%"]=10688, + ["zombie_slam_damage_+%"]=10689 } \ No newline at end of file diff --git a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua index a72d1d5c38..a06835f665 100644 --- a/src/Data/TimelessJewelData/LegionPassives.lua +++ b/src/Data/TimelessJewelData/LegionPassives.lua @@ -77,7 +77,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -267,7 +267,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10792, + ["statOrder"] = 10809, }, }, }, @@ -736,7 +736,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10763, + ["statOrder"] = 10780, }, }, }, @@ -755,7 +755,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10763, + ["statOrder"] = 10780, }, }, }, @@ -774,7 +774,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10763, + ["statOrder"] = 10780, }, }, }, @@ -793,7 +793,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10764, + ["statOrder"] = 10781, }, }, }, @@ -848,7 +848,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 5496, + ["statOrder"] = 5497, }, }, }, @@ -886,7 +886,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4723, + ["statOrder"] = 4724, }, }, }, @@ -1057,7 +1057,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -1076,7 +1076,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 10499, + ["statOrder"] = 10513, }, }, }, @@ -1228,7 +1228,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5555, + ["statOrder"] = 5556, }, }, }, @@ -1247,7 +1247,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10765, + ["statOrder"] = 10782, }, }, }, @@ -1266,7 +1266,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10765, + ["statOrder"] = 10782, }, }, }, @@ -1285,7 +1285,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10765, + ["statOrder"] = 10782, }, }, }, @@ -1304,7 +1304,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10766, + ["statOrder"] = 10783, }, }, }, @@ -1399,7 +1399,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10801, + ["statOrder"] = 10818, }, }, }, @@ -1494,7 +1494,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 10792, + ["statOrder"] = 10809, }, }, }, @@ -1644,7 +1644,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6546, + ["statOrder"] = 6548, }, }, }, @@ -1663,7 +1663,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 9218, + ["statOrder"] = 9223, }, }, }, @@ -1701,7 +1701,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 6737, + ["statOrder"] = 6740, }, }, }, @@ -1758,7 +1758,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10760, + ["statOrder"] = 10777, }, }, }, @@ -1777,7 +1777,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10760, + ["statOrder"] = 10777, }, }, }, @@ -1796,7 +1796,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 10761, + ["statOrder"] = 10778, }, }, }, @@ -2080,7 +2080,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10930, + ["statOrder"] = 10947, }, }, }, @@ -2120,7 +2120,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10935, + ["statOrder"] = 10952, }, }, }, @@ -2355,7 +2355,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -2745,7 +2745,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10792, + ["statOrder"] = 10809, }, }, }, @@ -4142,14 +4142,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 5496, + ["statOrder"] = 5497, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -4195,7 +4195,7 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -4236,14 +4236,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6545, + ["statOrder"] = 6547, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -4719,7 +4719,7 @@ return { ["index"] = 2, ["max"] = 7, ["min"] = 5, - ["statOrder"] = 10801, + ["statOrder"] = 10818, }, }, }, @@ -4907,7 +4907,7 @@ return { ["index"] = 2, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 9832, + ["statOrder"] = 9840, }, }, }, @@ -5097,7 +5097,7 @@ return { ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 5930, + ["statOrder"] = 5931, }, }, }, @@ -5427,7 +5427,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10962, + ["statOrder"] = 10979, }, }, }, @@ -5467,7 +5467,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10938, + ["statOrder"] = 10955, }, }, }, @@ -5508,7 +5508,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10937, + ["statOrder"] = 10954, }, }, }, @@ -5585,7 +5585,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10952, + ["statOrder"] = 10969, }, }, }, @@ -5627,7 +5627,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10959, + ["statOrder"] = 10976, }, }, }, @@ -5668,7 +5668,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10926, + ["statOrder"] = 10943, }, }, }, @@ -5708,7 +5708,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10669, + ["statOrder"] = 10686, }, }, }, @@ -5749,7 +5749,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10954, + ["statOrder"] = 10971, }, }, }, @@ -5789,7 +5789,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10955, + ["statOrder"] = 10972, }, }, }, @@ -5828,7 +5828,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10950, + ["statOrder"] = 10967, }, }, }, @@ -5867,7 +5867,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 10760, + ["statOrder"] = 10777, }, }, }, @@ -5906,7 +5906,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 9287, + ["statOrder"] = 9293, }, }, }, @@ -5945,7 +5945,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 9285, + ["statOrder"] = 9291, }, }, }, @@ -5984,7 +5984,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 9289, + ["statOrder"] = 9295, }, }, }, @@ -6062,7 +6062,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6743, + ["statOrder"] = 6746, }, }, }, @@ -6101,7 +6101,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8978, + ["statOrder"] = 8983, }, }, }, @@ -6140,7 +6140,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8984, + ["statOrder"] = 8989, }, }, }, @@ -6179,7 +6179,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8980, + ["statOrder"] = 8985, }, }, }, @@ -6218,7 +6218,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 7285, + ["statOrder"] = 7291, }, }, }, @@ -6257,7 +6257,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 9447, + ["statOrder"] = 9454, }, }, }, @@ -6335,7 +6335,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 7340, + ["statOrder"] = 7346, }, }, }, @@ -6374,7 +6374,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 7337, + ["statOrder"] = 7343, }, }, }, @@ -6413,7 +6413,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 7346, + ["statOrder"] = 7352, }, }, }, @@ -6453,7 +6453,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10934, + ["statOrder"] = 10951, }, }, }, @@ -6494,7 +6494,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10949, + ["statOrder"] = 10966, }, }, }, @@ -6571,7 +6571,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10960, + ["statOrder"] = 10977, }, }, }, @@ -6640,7 +6640,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 10792, + ["statOrder"] = 10809, }, }, }, @@ -6718,7 +6718,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6775, + ["statOrder"] = 6778, }, }, }, @@ -6757,7 +6757,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 9457, + ["statOrder"] = 9464, }, }, }, @@ -6991,7 +6991,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 6430, + ["statOrder"] = 6432, }, }, }, @@ -7030,7 +7030,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6004, + ["statOrder"] = 6005, }, }, }, @@ -7069,7 +7069,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 10842, + ["statOrder"] = 10859, }, }, }, @@ -7147,7 +7147,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 10908, + ["statOrder"] = 10925, }, }, }, @@ -7572,7 +7572,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 6575, + ["statOrder"] = 6577, }, }, }, @@ -7611,7 +7611,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 5688, + ["statOrder"] = 5689, }, }, }, @@ -7650,7 +7650,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 7548, + ["statOrder"] = 7554, }, }, }, @@ -7689,7 +7689,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -7767,7 +7767,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6545, + ["statOrder"] = 6547, }, }, }, @@ -8392,7 +8392,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10922, + ["statOrder"] = 10939, }, }, }, @@ -8432,7 +8432,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10919, + ["statOrder"] = 10936, }, }, }, @@ -8472,7 +8472,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10921, + ["statOrder"] = 10938, }, }, }, @@ -8513,7 +8513,7 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 10767, + ["statOrder"] = 10784, }, ["fire_damage_+%"] = { ["fmt"] = "d", @@ -8568,7 +8568,7 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 10899, + ["statOrder"] = 10916, }, }, }, @@ -9000,7 +9000,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 4806, + ["statOrder"] = 4807, }, }, }, @@ -9045,28 +9045,28 @@ return { ["index"] = 3, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5690, + ["statOrder"] = 5691, }, ["empowered_attack_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 6317, + ["statOrder"] = 6319, }, ["fire_exposure_effect_+%"] = { ["fmt"] = "d", ["index"] = 4, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6577, + ["statOrder"] = 6579, }, ["lightning_exposure_effect_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 7553, + ["statOrder"] = 7559, }, }, }, @@ -9155,7 +9155,7 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 10763, + ["statOrder"] = 10780, }, ["lightning_damage_+%"] = { ["fmt"] = "d", @@ -9299,7 +9299,7 @@ return { ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6868, + ["statOrder"] = 6871, }, ["projectile_damage_+%"] = { ["fmt"] = "d", @@ -9402,7 +9402,7 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 4806, + ["statOrder"] = 4807, }, }, }, @@ -9498,7 +9498,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 9492, + ["statOrder"] = 9500, }, }, }, @@ -9690,7 +9690,7 @@ return { ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 9832, + ["statOrder"] = 9840, }, }, }, @@ -9779,7 +9779,7 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 10765, + ["statOrder"] = 10782, }, ["cold_damage_+%"] = { ["fmt"] = "d", @@ -9971,7 +9971,7 @@ return { ["index"] = 2, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10801, + ["statOrder"] = 10818, }, ["spell_critical_strike_chance_+%"] = { ["fmt"] = "d", @@ -10266,7 +10266,7 @@ return { ["index"] = 2, ["max"] = 6, ["min"] = 6, - ["statOrder"] = 9537, + ["statOrder"] = 9545, }, }, }, @@ -10305,7 +10305,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10923, + ["statOrder"] = 10940, }, }, }, @@ -10345,7 +10345,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10946, + ["statOrder"] = 10963, }, }, }, @@ -10385,7 +10385,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10947, + ["statOrder"] = 10964, }, }, }, @@ -10425,7 +10425,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10961, + ["statOrder"] = 10978, }, }, }, @@ -10468,7 +10468,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10963, + ["statOrder"] = 10980, }, }, }, @@ -10507,7 +10507,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10761, + ["statOrder"] = 10778, }, }, }, @@ -10546,7 +10546,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10762, + ["statOrder"] = 10779, }, }, }, @@ -10587,14 +10587,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6039, + ["statOrder"] = 6040, }, ["recover_%_maximum_life_on_kill_per_50_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 9664, + ["statOrder"] = 9672, }, }, }, @@ -10635,14 +10635,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6040, + ["statOrder"] = 6041, }, ["recover_%_maximum_mana_on_kill_per_50_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 9668, + ["statOrder"] = 9676, }, }, }, @@ -10683,14 +10683,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 8997, + ["statOrder"] = 9002, }, ["minion_damage_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 9028, + ["statOrder"] = 9033, }, }, }, @@ -10731,14 +10731,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 9023, + ["statOrder"] = 9028, }, ["minions_lose_%_life_when_following_commands_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9105, + ["statOrder"] = 9110, }, }, }, @@ -10777,7 +10777,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5510, + ["statOrder"] = 5511, }, }, }, @@ -10825,7 +10825,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4681, + ["statOrder"] = 4682, }, }, }, @@ -10912,7 +10912,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4720, + ["statOrder"] = 4721, }, }, }, @@ -10953,14 +10953,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 5921, + ["statOrder"] = 5922, }, ["curse_duration_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 5923, + ["statOrder"] = 5924, }, }, }, @@ -11001,14 +11001,14 @@ return { ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4753, + ["statOrder"] = 4754, }, ["presence_area_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9514, + ["statOrder"] = 9522, }, }, }, @@ -11047,7 +11047,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8872, + ["statOrder"] = 8877, }, }, }, @@ -11086,7 +11086,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7989, + ["statOrder"] = 7995, }, }, }, @@ -11125,7 +11125,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7475, + ["statOrder"] = 7481, }, }, }, @@ -11173,7 +11173,7 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4705, + ["statOrder"] = 4706, }, }, }, @@ -11214,14 +11214,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4754, + ["statOrder"] = 4755, }, ["hit_damage_stun_multiplier_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7199, + ["statOrder"] = 7205, }, }, }, @@ -11262,14 +11262,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4691, + ["statOrder"] = 4692, }, ["parry_skill_effect_duration_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9385, + ["statOrder"] = 9392, }, }, }, @@ -11308,7 +11308,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5513, + ["statOrder"] = 5514, }, }, }, @@ -11356,7 +11356,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 7526, + ["statOrder"] = 7532, }, }, }, @@ -11397,14 +11397,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 6316, + ["statOrder"] = 6318, }, ["warcry_speed_+%_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10509, + ["statOrder"] = 10524, }, }, }, @@ -11443,7 +11443,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9729, + ["statOrder"] = 9737, }, }, }, @@ -11484,14 +11484,14 @@ return { ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8900, + ["statOrder"] = 8905, }, ["rage_decay_speed_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9612, + ["statOrder"] = 9620, }, }, }, @@ -11532,14 +11532,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4682, + ["statOrder"] = 4683, }, ["damaging_ailment_duration_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6061, + ["statOrder"] = 6062, }, }, }, @@ -11580,14 +11580,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 4690, + ["statOrder"] = 4691, }, ["evasion_rating_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 6486, + ["statOrder"] = 6488, }, }, }, @@ -11628,14 +11628,14 @@ return { ["index"] = 2, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 6434, + ["statOrder"] = 6436, }, ["maximum_energy_shield_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 8856, + ["statOrder"] = 8861, }, }, }, @@ -11676,14 +11676,14 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 9452, + ["statOrder"] = 9459, }, ["stun_threshold_+%_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10121, + ["statOrder"] = 10134, }, }, }, @@ -11724,14 +11724,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 6636, + ["statOrder"] = 6638, }, ["flask_life_and_mana_to_recover_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6638, + ["statOrder"] = 6640, }, }, }, @@ -11772,14 +11772,14 @@ return { ["index"] = 2, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 5605, + ["statOrder"] = 5606, }, ["charm_effect_+%_per_10_tribute"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 5606, + ["statOrder"] = 5607, }, }, }, @@ -11820,14 +11820,14 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6981, + ["statOrder"] = 6986, }, ["shield_armour_evasion_energy_shield_+%_per_25_tribute"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 9833, + ["statOrder"] = 9841, }, }, }, @@ -11875,7 +11875,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10244, + ["statOrder"] = 10258, }, }, }, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index b15799258b..163a42ae65 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -869,7 +869,7 @@ return { ["type"] = "explicit", }, { - ["id"] = "explicit.stat_3591307827", + ["id"] = "explicit.stat_3937291366", ["text"] = "#% chance to add a Vaal Beacon Unique Monster to the Map", ["type"] = "explicit", }, @@ -1793,6 +1793,11 @@ return { ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3039133122", + ["text"] = "#% increased Expedition Explosive Area of Effect in Map", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1539368271", ["text"] = "#% increased Expedition Explosive Placement Range", @@ -1813,6 +1818,11 @@ return { ["text"] = "#% increased Expedition Explosive Radius in Map", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2905096233", + ["text"] = "#% increased Expedition Monster Rarity in Map", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3666934677", ["text"] = "#% increased Experience gain", @@ -11208,6 +11218,36 @@ return { ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1183698646", + ["text"] = "Expeditions contain 1 Additional Boss encased in ice in Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_1109460697", + ["text"] = "Expeditions contain 1 Additional Verisium Sentry in Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_2852112245", + ["text"] = "Expeditions contain 1 Vaal Relic in Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_181823691", + ["text"] = "Expeditions contain 1 buried Strongbox in Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_779964546", + ["text"] = "Expeditions have +#% Surpassing chance to Duplicate Runic Monsters in Map", + ["type"] = "explicit", + }, + { + ["id"] = "explicit.stat_3653794255", + ["text"] = "Expeditions have +#% Surpassing chance to contain an additional Verisium Remnant", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in Area have # Remnants", @@ -11453,6 +11493,11 @@ return { ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_2771095426", + ["text"] = "Gain #% of damage as Fire damage per 1% Chance to Block", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1228337241", ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", @@ -11498,11 +11543,6 @@ return { ["text"] = "Gain 1 Runic Binding on Hit with Spells, no more than once every 0.5 seconds Lose all Runic Bindings when you Shapeshift to gain that much Unbound Potential", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_3170380905", - ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_3625518318", ["text"] = "Gain Arcane Surge when a Minion Dies", @@ -12788,6 +12828,11 @@ return { ["text"] = "Monsters fire # additional Projectiles", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3520418269", + ["text"] = "Monsters from Verisium Remnants drop #% increased Verisium", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", @@ -12918,6 +12963,11 @@ return { ["text"] = "No Movement Speed Penalty while Shield is Raised", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_1367999357", + ["text"] = "Non-Channelling Skills have #% increased Spell Critical Hit Chance per 100 maximum Mana", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1920747151", ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", @@ -12938,11 +12988,6 @@ return { ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_1367999357", - ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_4245905059", ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", @@ -14388,6 +14433,11 @@ return { ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3076483222|61382", + ["text"] = "Sacrifice up to 2 Divine Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_3076483222|38303", ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", @@ -14423,11 +14473,6 @@ return { ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - { - ["id"] = "explicit.stat_3076483222|61382", - ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", - ["type"] = "explicit", - }, { ["id"] = "explicit.stat_3076483222|19854", ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", @@ -15178,6 +15223,11 @@ return { ["text"] = "The Effect of Chill on you is reversed", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3963944561", + ["text"] = "The first unearthed Runic Monster will be a Rare Monster in Map", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_2980117882", ["text"] = "This Flask cannot be Used but applies its Effect constantly", @@ -15343,6 +15393,11 @@ return { ["text"] = "Vaal Pact", ["type"] = "explicit", }, + { + ["id"] = "explicit.stat_3871299443", + ["text"] = "Verisium Remnants have +#% chance to add an additional Runic Modifier in Map", + ["type"] = "explicit", + }, { ["id"] = "explicit.stat_1132041585", ["text"] = "Virtuous", @@ -16491,7 +16546,7 @@ return { }, { ["id"] = "implicit.stat_3408607858", - ["text"] = "Runic Ward recovery can can Overflow maximum Runic Ward", + ["text"] = "Runic Ward recovery can Overflow maximum Runic Ward", ["type"] = "implicit", }, { @@ -18600,6 +18655,11 @@ return { ["text"] = "Allocates Chronomancy", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_2954116742|21213", + ["text"] = "Allocates Cirel of Tarth's Light", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_2954116742|57805", ["text"] = "Allocates Clear Space", @@ -19445,6 +19505,11 @@ return { ["text"] = "Allocates Goring", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_2954116742|27704", + ["text"] = "Allocates Grace of the Ancestors", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_2954116742|58714", ["text"] = "Allocates Grenadier", @@ -19850,6 +19915,11 @@ return { ["text"] = "Allocates Leeching Toxins", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_2954116742|4091", ["text"] = "Allocates Left Ventricle", @@ -20580,6 +20650,11 @@ return { ["text"] = "Allocates Shimmering Mirage", ["type"] = "fractured", }, + { + ["id"] = "fractured.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "fractured", + }, { ["id"] = "fractured.stat_2954116742|32448", ["text"] = "Allocates Shockproof", @@ -33303,16 +33378,61 @@ return { ["text"] = "# to Level of all Curse Skills", ["type"] = "augment", }, + { + ["id"] = "rune.stat_3268281424", + ["text"] = "# to Level of all Grenade Skill Gems", + ["type"] = "augment", + }, { ["id"] = "rune.stat_1147690586", ["text"] = "# to Level of all Lightning Skills", ["type"] = "augment", }, + { + ["id"] = "rune.stat_3148103963", + ["text"] = "# to Level of all Nova Skill Gems", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_2296009672", + ["text"] = "# to Level of all Plant Skill Gems", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_1839315243", + ["text"] = "# to Level of all Slam Skill Gems", + ["type"] = "augment", + }, { ["id"] = "rune.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1062190843", + ["text"] = "# to Level of all Storm Skill Gems", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_2305301734", + ["text"] = "# to Level of all Strike Skill Gems", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_2336703514", + ["text"] = "# to Level of all Totem Skill Gems", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_2148999925", + ["text"] = "# to Level of all Warcry Skill Gems", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_653358410", + ["text"] = "# to Level of all Wind Skill Gems", + ["type"] = "augment", + }, { ["id"] = "rune.stat_227523295", ["text"] = "# to Maximum Power Charges", @@ -33393,6 +33513,11 @@ return { ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", ["type"] = "augment", }, + { + ["id"] = "rune.stat_995044379", + ["text"] = "# to maximum Mana per 3 Item Armour on Equipped Helmet", + ["type"] = "augment", + }, { ["id"] = "rune.stat_774059442", ["text"] = "# to maximum Runic Ward", @@ -33588,6 +33713,11 @@ return { ["text"] = "#% increased Deflection Rating while moving", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1519474779", + ["text"] = "#% increased Effect of Non-Damaging Ailments on you", + ["type"] = "augment", + }, { ["id"] = "rune.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", @@ -33603,6 +33733,16 @@ return { ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "augment", }, + { + ["id"] = "rune.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "augment", + }, { ["id"] = "rune.stat_88817332", ["text"] = "#% increased Evasion Rating when on Full Life", @@ -33643,6 +33783,11 @@ return { ["text"] = "#% increased Glory generation", ["type"] = "augment", }, + { + ["id"] = "rune.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "augment", + }, { ["id"] = "rune.stat_330530785", ["text"] = "#% increased Immobilisation buildup", @@ -33678,6 +33823,16 @@ return { ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "augment", + }, + { + ["id"] = "rune.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "augment", + }, { ["id"] = "rune.stat_2876843277", ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", @@ -33698,6 +33853,11 @@ return { ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "augment", }, + { + ["id"] = "rune.stat_4169430079", + ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", + ["type"] = "augment", + }, { ["id"] = "rune.stat_2250533757", ["text"] = "#% increased Movement Speed", @@ -33743,6 +33903,11 @@ return { ["text"] = "#% increased Physical Damage", ["type"] = "augment", }, + { + ["id"] = "rune.stat_3985867204", + ["text"] = "#% increased Pin duration", + ["type"] = "augment", + }, { ["id"] = "rune.stat_2011656677", ["text"] = "#% increased Poison Duration", @@ -33803,6 +33968,11 @@ return { ["text"] = "#% increased Skill Speed", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2203195791", + ["text"] = "#% increased Skill Speed for each Corrupted Item Equipped", + ["type"] = "augment", + }, { ["id"] = "rune.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", @@ -33828,6 +33998,11 @@ return { ["text"] = "#% increased Spirit", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2247017114", + ["text"] = "#% increased Spirit for each Corrupted Item Equipped", + ["type"] = "augment", + }, { ["id"] = "rune.stat_2511217560", ["text"] = "#% increased Stun Recovery", @@ -33935,7 +34110,7 @@ return { }, { ["id"] = "rune.stat_4217453078", - ["text"] = "#% of Chaos Damage from Hits taken as a Damage of a random Element", + ["text"] = "#% of Chaos Damage from Hits taken as Damage of a random Element", ["type"] = "augment", }, { @@ -33998,6 +34173,11 @@ return { ["text"] = "#% to Chaos Resistance", ["type"] = "augment", }, + { + ["id"] = "rune.stat_138373935", + ["text"] = "#% to Chaos Resistance for each Corrupted Item Equipped", + ["type"] = "augment", + }, { ["id"] = "rune.stat_4220027924", ["text"] = "#% to Cold Resistance", @@ -35448,6 +35628,11 @@ return { ["text"] = "Convert #% of Requirements to Strength", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2139847597", + ["text"] = "Corrupting will always result in change", + ["type"] = "augment", + }, { ["id"] = "rune.stat_935518591", ["text"] = "Critical Hit chance is Lucky against Parried enemies", @@ -35483,6 +35668,11 @@ return { ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", ["type"] = "augment", }, + { + ["id"] = "rune.stat_3686997387", + ["text"] = "Double Stun Threshold while Shield is Raised", + ["type"] = "augment", + }, { ["id"] = "rune.stat_426207520", ["text"] = "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to #% of that Skill's Mana Cost", @@ -35638,6 +35828,11 @@ return { ["text"] = "Gain #% of Physical Damage as Extra Fire Damage", ["type"] = "augment", }, + { + ["id"] = "rune.stat_2621116283", + ["text"] = "Gain #% of damage as Fire damage per 2% Chance to Block", + ["type"] = "augment", + }, { ["id"] = "rune.stat_386720106", ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", @@ -35653,11 +35848,6 @@ return { ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", ["type"] = "augment", }, - { - ["id"] = "rune.stat_3170380905", - ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", - ["type"] = "augment", - }, { ["id"] = "rune.stat_3903510399", ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", @@ -35873,6 +36063,11 @@ return { ["text"] = "Prevent #% of Damage from Deflected Hits if you've Deflected no Hits Recently", ["type"] = "augment", }, + { + ["id"] = "rune.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "augment", + }, { ["id"] = "rune.stat_1549287843", ["text"] = "Projectiles have #% chance to Fork", @@ -39886,13 +40081,13 @@ return { ["type"] = "sanctum", }, { - ["id"] = "sanctum.stat_2878762585", - ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", + ["id"] = "sanctum.stat_2284543592", + ["text"] = "#% chance to Avoid Honour loss from Enemy Hits if you've been Hit Recently", ["type"] = "sanctum", }, { - ["id"] = "sanctum.stat_2284543592", - ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", + ["id"] = "sanctum.stat_2878762585", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", ["type"] = "sanctum", }, { diff --git a/src/Data/WorldAreas.lua b/src/Data/WorldAreas.lua index eee0d6c306..3ed98d1a6e 100644 --- a/src/Data/WorldAreas.lua +++ b/src/Data/WorldAreas.lua @@ -1148,18 +1148,6 @@ worldAreas["MapHideoutCanal_Claimable"] = { }, } -worldAreas["KaruiShowcase"] = { - name = "Heart of the Tribe (Act 4)", - baseName = "Heart of the Tribe", - tags = { "area_with_water" }, - act = 4, - level = 30, - isMap = false, - isHideout = false, - monsterVarieties = { - }, -} - worldAreas["G_login"] = { name = "Login Scene (Act 1)", baseName = "Login Scene", @@ -6372,7 +6360,7 @@ worldAreas["ExpeditionSubArea_Kalguur"] = { isMap = false, isHideout = false, monsterVarieties = { - "Black Scythe Arbalist", + "Black Scythe Arbalest", "Black Scythe Mercenary", "Druid of the Broken Circle", "Knight of the Sun", @@ -6426,7 +6414,7 @@ worldAreas["ExpeditionSubArea_Kalguur_Act2"] = { isMap = false, isHideout = false, monsterVarieties = { - "Black Scythe Arbalist", + "Black Scythe Arbalest", "Black Scythe Mercenary", "Quake Golem", "Skitter Golem", @@ -6539,7 +6527,7 @@ worldAreas["ExpeditionSubArea_VoranaBoss"] = { isMap = false, isHideout = false, monsterVarieties = { - "Black Scythe Arbalist", + "Black Scythe Arbalest", "Black Scythe Mercenary", "Gargantuan Wasp", "Nymph Wasp", @@ -7076,21 +7064,6 @@ worldAreas["Abyss_Pinnacle"] = { }, } -worldAreas["KaruiBossShowcase"] = { - name = "Karui Boss Showcase (Act 4)", - baseName = "Karui Boss Showcase", - tags = { "area_with_water" }, - act = 4, - level = 30, - isMap = false, - isHideout = false, - monsterVarieties = { - }, - bossVarieties = { - "Tavakai, the Chieftain", - }, -} - worldAreas["BossRush_Area1"] = { name = "Boss Rush Area 1 (Map)", baseName = "Boss Rush Area 1", diff --git a/src/Export/Minions/SpectreList.txt b/src/Export/Minions/SpectreList.txt index 3892e3854c..fb090cd62b 100644 --- a/src/Export/Minions/SpectreList.txt +++ b/src/Export/Minions/SpectreList.txt @@ -156,7 +156,7 @@ Metadata/Monsters/LeagueExpeditionNew/Zombies/ExpeditionZombieLarge Metadata/Monsters/LeagueExpeditionNew/MercurialArmour/MercurialArmourCaster ---- Unearthed Runecaster Metadata/Monsters/LeagueExpeditionNew/MercurialArmour/MercurialArmourAxeShield ---- Unearthed Soldier Metadata/Monsters/LeagueExpeditionNew/Urchin/ExpeditionUrchin ---- Unearthed Urchin -Metadata/Monsters/LeagueExpeditionNew/Arbalest/ExpeditionArbalest ---- Black Scythe Arbalist +Metadata/Monsters/LeagueExpeditionNew/Arbalest/ExpeditionArbalest ---- Black Scythe Arbalest Metadata/Monsters/LeagueExpeditionNew/DeathKnight/ExpeditionDeathKnight ---- Knight of the Sun Metadata/Monsters/LeagueExpeditionNew/VaalArmour/ExpeditionArmourCaster ---- Runed Knight Metadata/Monsters/LeagueExpeditionNew/Golemancer/ExpeditionGolemancer ---- Priest of the Chalice @@ -194,6 +194,7 @@ Metadata/Monsters/HyenaMonster/HyenaCentaurSpear Metadata/Monsters/HyenaMonster/HyenaCentaurSpearBossMinion_ ---- Sun Clan Scavenger Metadata/Monsters/HyenaMonster/Runemarked/HyenaCentaurRunemarked ---- Sun Clan Scavenger Metadata/Monsters/HyenaMonster/RathbreakerBossMinion1 ---- Rathbreaker +Metadata/Monsters/HyenaMonster/RathbreakerBossCampaignSTANDALONE ---- Rathbreaker Metadata/Monsters/HyenaMonster/RathbreakerBossMinion2 ---- Caedron, the Hyena Lord Metadata/Monsters/ShellMonster/ShellMonster ---- Brimstone Crab Metadata/Monsters/ShellMonster/ShellMonsterPoison_ ---- Caustic Crab @@ -820,6 +821,7 @@ Metadata/Monsters/SerpentClanMonster/SerpentClan1SanctumTrial Metadata/Monsters/SaltGolem/SaltGolemNoEmerge_ ---- Quake Golem Metadata/Monsters/SaltGolem/SaltGolemNoEmergeSanctumTrial ---- Quake Golem Metadata/Monsters/HyenaMonster/Runemarked/HyenaCentaurRunemarked ---- Sun Clan Scavenger +Metadata/Monsters/HyenaMonster/RathbreakerBossCampaignSTANDALONE ---- Rathbreaker Metadata/Monsters/SandGolemancer/SandGolemancerSanctumTrial ---- Desiccated Lich Metadata/Monsters/SandGolemancer/Runemarked/SandGolemancerRunemarked ---- Desiccated Lich Metadata/Monsters/SandGolemancer/SandGolemancerTornado ---- Desiccated Lich @@ -934,6 +936,7 @@ Metadata/Monsters/CrowBell/CrowBellBossMinion1 Metadata/Monsters/CrowBell/CrowBellBossMinion2 ---- The Black Crow Metadata/Monsters/Wraith/WraithSpookyColdSpectre ---- Frost Wraith Metadata/Monsters/Wraith/WraithSpookyLightningSpectre ---- Lightning Wraith +Metadata/Monsters/MudBurrower/MudBurrowerHeadBossCampaignSTANDALONE_ ---- The Devourer Metadata/Monsters/MudBurrower/MudBurrowerHeadBossMinion2 ---- Gorian, the Moving Earth Metadata/Monsters/MudBurrower/MudBurrowerHeadBossMinion2 ---- Gorian, the Moving Earth Metadata/Monsters/MudBurrower/MudBurrowerHeadBossMinion2 ---- Gorian, the Moving Earth @@ -979,6 +982,7 @@ Metadata/Monsters/Mercenary/Infected/InfectedMercenaryCrossbowExecutionerMinionS Metadata/Monsters/Mercenary/Infected/InfectedMercenaryAxeShieldExecutionerMinion_STANDALONE ---- Decrepit Mercenary Metadata/Monsters/Mercenary/Infected/InfectedMercenaryAxeAxeExecutionerMinion ---- Decrepit Mercenary Metadata/Monsters/Mercenary/Infected/InfectedMercenaryAxeAxeExecutionerMinionSTANDALONE ---- Decrepit Mercenary +Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossCampaignSTANDALONE ---- Xyclucian, the Chimera Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion2 ---- Xilozoma, the Maw-Beast Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion1 ---- Xyclucian, the Chimera Metadata/Monsters/ChimeraWetlandsBoss/ChimeraWetlandsBossMinion2 ---- Xilozoma, the Maw-Beast @@ -986,6 +990,7 @@ Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion2 Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion1 ---- Uxmal, the Beastlord Metadata/Monsters/Ultimatum/ChimeraUltimatumBossMinion2 ---- Gressor-Kul, the Apex Metadata/Monsters/Bird2/MutantBird2Minion1 ---- Scourge of the Skies +Metadata/Monsters/Bird2/MutantBird2NOUltimatumCampaignSTANDALONE ---- Scourge of the Skies Metadata/Monsters/Bird2/MutantBird2Minion2 ---- Chetza, the Feathered Plague Metadata/Monsters/Bird2/MutantBird2Minion2 ---- Chetza, the Feathered Plague Metadata/Monsters/Bird2/MutantBird2Minion1 ---- Scourge of the Skies @@ -1078,6 +1083,7 @@ Metadata/Monsters/SandGolemancer/SandGolemancerSanctumTrialTime Metadata/Monsters/MarAcolyte/Runemarked/MarAcolyteRunemarked ---- Mar Acolyte Metadata/Monsters/BoneCultists/BoneCultist_Zealots/BoneCultistZealotSummoner_01 ---- Lost-men Zealot Metadata/Monsters/BoneCultists/BoneCultist_Zealots/BoneCultistZealotSummonerAbyssPit ---- Lost-men Zealot +Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptreNoEmerge ---- Terracotta Soldier Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptreSanctumTrialNoEmerge ---- Terracotta Soldier Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSickleShieldSanctumTrialNoEmerge ---- Terracotta Soldier Metadata/Monsters/TerracottaGuardians/TerracottaGuardianSceptreSanctumTrialNoEmerge ---- Terracotta Soldier @@ -1130,10 +1136,12 @@ Metadata/Monsters/ZombieTreasureHunters/IllFatedExplorerNoSporesOrange2 Metadata/Monsters/ZombieTreasureHunters/IllFatedExplorerNoSporesOrange3 ---- Ill-fated Explorer Metadata/Monsters/ZombieTreasureHunters/IllFatedExplorerNoSporesOrange4 ---- Ill-fated Explorer Metadata/Monsters/Quadrilla/Runemarked/QuadrillaRunemarked ---- Quadrilla +Metadata/Monsters/Quadrilla/QuadrillaBossCampaignSTANDALONE ---- Mighty Silverfist Metadata/Monsters/Quadrilla/QuadrillaBossMinion2 ---- Zekoa, the Headcrusher Metadata/Monsters/Quadrilla/QuadrillaBossMinion2 ---- Zekoa, the Headcrusher Metadata/Monsters/Quadrilla/QuadrillaBossMinion1 ---- Mighty Silverfist Metadata/Monsters/Quadrilla/QuadrillaBossMinion2 ---- Zekoa, the Headcrusher +Metadata/Monsters/Quadrilla/IcyQuadrillaBossCampaignSTANDALONE ---- The Abominable Yeti Metadata/Monsters/Quadrilla/IcyQuadrillaBossMinion2 ---- The Frostborn Fiend Metadata/Monsters/Quadrilla/IcyQuadrillaBossMinion1 ---- The Abominable Yeti Metadata/Monsters/Quadrilla/IcyQuadrillaBossMinion2 ---- The Frostborn Fiend @@ -1224,6 +1232,7 @@ Metadata/Monsters/Zombies/UpperPrison/PrisonZombieUnarmed_ Metadata/Monsters/SkeletonProwler/SkeletonProwlerWet_ ---- Prowling Skeleton Metadata/Monsters/TarHulk/Runemarked/PaleHulkRunemarked_ ---- Pale Abductor Metadata/Monsters/DeepDwellerBoss/Runemarked/SpikedDwellerRunemarked ---- Spiked Scuttler +Metadata/Monsters/GreatWhiteOne/GreatWhiteOneCampaignSTANDALONE ---- Great White One Metadata/Monsters/GreatWhiteOne/GreatWhiteOneMinion2 ---- The Sandstrider Metadata/Monsters/GreatWhiteOne/GreatWhiteOneMinion1 ---- Great White One Metadata/Monsters/GreatWhiteOne/GreatWhiteOneMinion2 ---- The Sandstrider @@ -1235,6 +1244,7 @@ Metadata/Monsters/Goblins/GoblinTusker/GoblinTusker Metadata/Monsters/Goblins/GoblinTusker/GoblinTusker ---- Tuskbearer Kin Metadata/Monsters/Goblins/GoblinShaman/GoblinShaman ---- Shaman Kin Metadata/Monsters/Goblins/GoblinShaman/GoblinShaman ---- Shaman Kin +Metadata/Monsters/Goblins/Beast/ArenaBeastBossCampaignSTANDALONE ---- The Blind Beast Metadata/Monsters/Goblins/Beast/ArenaBeastBossMinion1_ ---- The Ravenous Fang Metadata/Monsters/Goblins/Beast/ArenaBeastBossMinion1_ ---- The Ravenous Fang Metadata/Monsters/Goblins/Beast/ArenaBeastBossMinion2 ---- The Ravenous Fang @@ -1291,8 +1301,9 @@ Metadata/Monsters/ChaosGodGorilla/ChaosGodGorillaInterlude Metadata/Monsters/ChaosGodOwlBoss/ChaosGodOwlBossMinion ---- Bahlak, the Sky Seer Metadata/Monsters/ChaosGodOwlBoss/ChaosGodOwlBossMinion ---- Bahlak, the Sky Seer Metadata/Monsters/ChaosGodOwlBoss/ChaosGodOwlBossMinion ---- Bahlak, the Sky Seer -Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossMinion1 ---- Rakkar, the Frozen Talon -Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossMinion1 ---- Rakkar, the Frozen Talon +Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossCampaignSTANDALONE ---- Rakkar, the Frozen Talon +Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossMinion1 ---- Thraeven, Wing of Winter +Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossMinion1 ---- Thraeven, Wing of Winter Metadata/Monsters/ChaosGodOwlBoss/IcyOwlBossMinion2 ---- Thraeven, Wing of Winter Metadata/Monsters/MarakethSanctumTrial/Boss/Shakari/ShakariMinion2 ---- Karash, The Dune Dweller Metadata/Monsters/MarakethSanctumTrial/Boss/Shakari/ShakariMinion1_ ---- Ashar, the Sand Mother @@ -1356,6 +1367,7 @@ Metadata/Monsters/PlagueNymph/TwilightOrderPlagueNymph Metadata/Monsters/TumourMonsters/Statue07/QimarMonstrositySpectre ---- Bloodbilge Metadata/Monsters/Sanctified/Floppy/SanctifiedFloppyBig ---- Fettered Hook Metadata/Monsters/Sanctified/Floppy/SanctifiedFloppyMinion ---- Fettered Hook +Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossCampaignSTANDALONE ---- Vornas, the Fell Flame Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossMinion2 ---- Morvak, the Infernal Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossMinion1 ---- Vornas, the Fell Flame Metadata/Monsters/Goblins/Beast/FireBeastBoss/FireBeastBossMinion2 ---- Morvak, the Infernal diff --git a/src/Export/Scripts/ScriptResources/AssetSheets.lua b/src/Export/Scripts/ScriptResources/AssetSheets.lua index 917c31c562..68d055c0e0 100644 --- a/src/Export/Scripts/ScriptResources/AssetSheets.lua +++ b/src/Export/Scripts/ScriptResources/AssetSheets.lua @@ -99,7 +99,11 @@ function assetSheets.calculateDDSPack(sheet, fromBase, toBase, is4kEnabled) for _, metadata in pairs(stack.sections) do for _, meta in ipairs(metadata) do local icon = meta.alias or stack.icon - ddsCoords[file][icon] = position + if meta.x and meta.y and meta.w and meta.h then + ddsCoords[file][icon] = { meta.x, meta.y, meta.w, meta.h, position } + else + ddsCoords[file][icon] = position + end end end table.insert(stacks, stack.tex) diff --git a/src/Export/Scripts/assets.lua b/src/Export/Scripts/assets.lua index 628d083cb1..cfca70e943 100644 --- a/src/Export/Scripts/assets.lua +++ b/src/Export/Scripts/assets.lua @@ -20,13 +20,20 @@ local function isValidSkillDisplayName(name) return true end -local function commonMetadata(alias) +local function commonMetadata(alias, x, y, w, h) return { alias = alias, + x = x, + y = y, + w = w, + h = h, } end main.skillAssetCacheExtract = main.skillAssetCacheExtract or { } +main.assetCacheExtract = main.assetCacheExtract or { } +main.ggpk:ExtractList({ uiImagesFile }, main.assetCacheExtract) +local uiImages = assetSheets.parseUIImages(uiImagesFile) local assetPath = GetWorkDir() .. "/../Data/Skills/" MakeDir(assetPath) local defaultMaxWidth = 1500 @@ -50,7 +57,13 @@ for skillGem in dat("SkillGems"):Rows() do for _, effect in pairs(skillGem.GemEffects) do name = effect.GrantedEffect.Id end - assetSheets.addToSheet(getSheet("gem-backgrounds"), skillGem.HoverImage, "gem-backgrounds", commonMetadata(name)) + -- 0.5.5 changed HoverImage from a texture path to a UI image name + local hoverImage = skillGem.HoverImage + if not hoverImage:lower():match("%.dds$") then + local asset = uiImages[string.lower(hoverImage)] + hoverImage = asset and asset.path + end + assetSheets.addToSheet(getSheet("gem-backgrounds"), hoverImage, "gem-backgrounds", commonMetadata(name)) end end @@ -71,17 +84,14 @@ out:write('-- Skill image data (c) Grinding Gear Games\n\nreturn ') writeLuaTable(out, skillAssets, 1) out:close() -main.assetCacheExtract = main.assetCacheExtract or { } local assets = { ddsCoords = { }, } -main.ggpk:ExtractList({ uiImagesFile }, main.assetCacheExtract) -local uiImages = assetSheets.parseUIImages(uiImagesFile) local monsterCategorySheet = assetSheets.newSheet("monster-categories", defaultMaxWidth, 100) for category in dat("MonsterCategories"):Rows() do if not category.Type:find("^%[DNT") then local asset = uiImages[string.lower(category.HudImage)] - assetSheets.addToSheet(monsterCategorySheet, asset.path, "monster-categories", commonMetadata(category.Type)) + assetSheets.addToSheet(monsterCategorySheet, asset.path, "monster-categories", commonMetadata(category.Type, asset.x, asset.y, asset.width, asset.height)) end end diff --git a/src/Export/Scripts/soulcores.lua b/src/Export/Scripts/soulcores.lua index f3a023479e..fc6f128489 100644 --- a/src/Export/Scripts/soulcores.lua +++ b/src/Export/Scripts/soulcores.lua @@ -200,6 +200,7 @@ directiveTable.baseMatch = function(state, argstr, out) end local out = io.open("../Data/ModRunes.lua", "w") +out:write('-- spell-checker: disable\n') out:write('-- This file is automatically generated, do not edit!\n') out:write('-- Item data (c) Grinding Gear Games\n\nreturn {\n') diff --git a/src/Export/Skills/SkillGems.txt b/src/Export/Skills/SkillGems.txt index 62084c3073..3180c0f25f 100644 --- a/src/Export/Skills/SkillGems.txt +++ b/src/Export/Skills/SkillGems.txt @@ -705,7 +705,6 @@ Arbiter's Ignition ---- SupportArbitersIgnitionPlayer Arcane Surge ---- SupportArcaneSurgePlayer Astral Projection ---- SupportAstralProjectionPlayer Atziri's Allure ---- SupportAtzirisAllurePlayer -Atziri's Call ---- SupportAtzirisCallPlayer TriggeredAtzirisCallPlayer Atziri's Communion ---- SupportAtzirisCommunionPlayer Bhatair's Vengeance ---- SupportBhatairsVengeancePlayer Bidding I ---- SupportBiddingPlayer diff --git a/src/Export/Skills/SkillGemsExport.txt b/src/Export/Skills/SkillGemsExport.txt index 11782d377e..e5c6bd2f9f 100644 --- a/src/Export/Skills/SkillGemsExport.txt +++ b/src/Export/Skills/SkillGemsExport.txt @@ -4749,17 +4749,6 @@ #mods #skillEnd -#skill SupportAtzirisCallPlayer -#set SupportAtzirisCallPlayer -#mods -#skillEnd - -#skill TriggeredAtzirisCallPlayer -#set TriggeredAtzirisCallPlayer -#flags -#mods -#skillEnd - #skill SupportAtzirisCommunionPlayer #set SupportAtzirisCommunionPlayer #mods diff --git a/src/Export/spec.lua b/src/Export/spec.lua index 17f1c7a8a7..cc52dd1310 100644 --- a/src/Export/spec.lua +++ b/src/Export/spec.lua @@ -40744,314 +40744,321 @@ return { width=80 }, [22]={ + list=true, + name="", + refTo="", + type="Int", + width=150 + }, + [23]={ list=false, name="Daemon", refTo="", type="String", width=150 }, - [23]={ + [24]={ list=true, name="MonsterKillAchievements", refTo="AchievementItems", type="Key", width=150 }, - [24]={ + [25]={ list=true, name="ArchnemesisType", refTo="ModType", type="Key", width=240 }, - [25]={ + [26]={ list=false, name="Stat5Value", refTo="", type="Interval", width=60 }, - [26]={ + [27]={ list=false, name="Stat5", refTo="Stats", type="Key", width=150 }, - [27]={ + [28]={ list=true, name="FullClear", refTo="AchievementItems", type="Key", width=100 }, - [28]={ + [29]={ list=true, name="AchievementItemsKey", refTo="AchievementItems", type="Key", width=130 }, - [29]={ + [30]={ list=true, name="GenerationWeightTags", refTo="Tags", type="Key", width=130 }, - [30]={ + [31]={ list=true, name="GenerationWeightValues", refTo="", type="Int", width=130 }, - [31]={ + [32]={ list=true, name="ModifyMapsAchievements", refTo="AchievementItems", type="Key", width=150 }, - [32]={ + [33]={ list=false, name="Stat6Value", refTo="", type="Interval", width=130 }, - [33]={ + [34]={ list=false, name="Stat6", refTo="Stats", type="Key", width=150 }, - [34]={ + [35]={ list=false, name="MaxLevel", refTo="", type="Int", width=50 }, - [35]={ + [36]={ list=false, name="", refTo="", type="Bool", width=40 }, - [36]={ + [37]={ list=true, name="CraftingClassRestrictions", refTo="ItemClasses", type="Key", width=150 }, - [37]={ + [38]={ list=false, name="MonsterOnDeath", refTo="", type="String", width=100 }, - [38]={ + [39]={ list=false, name="", refTo="", type="Int", width=200 }, - [39]={ + [40]={ list=true, name="HeistAchievements", refTo="AchievementItems", type="Key", width=230 }, - [40]={ + [41]={ list=false, name="Heist_SubStatValue1", refTo="", type="Int", width=150 }, - [41]={ + [42]={ list=false, name="Heist_SubStatValue2", refTo="", type="Int", width=150 }, - [42]={ + [43]={ list=false, name="Heist_StatsKey0", refTo="Stats", type="Key", width=150 }, - [43]={ + [44]={ list=false, name="Heist_StatsKey1", refTo="Stats", type="Key", width=150 }, - [44]={ + [45]={ list=false, name="Heist_AddStatValue1", refTo="", type="Int", width=240 }, - [45]={ + [46]={ list=false, name="Heist_AddStatValue2", refTo="", type="Int", width=150 }, - [46]={ + [47]={ list=false, name="InfluenceTypes", refTo="", type="Int", width=150 }, - [47]={ + [48]={ list=true, name="ImplicitTags", refTo="Tags", type="Key", width=150 }, - [48]={ + [49]={ list=false, name="", refTo="", type="Bool", width=150 }, - [49]={ + [50]={ list=false, name="UnknownStat1", refTo="", type="Interval", width=150 }, - [50]={ + [51]={ list=false, name="UnknownStat2", refTo="", type="Interval", width=150 }, - [51]={ + [52]={ list=false, name="UnknownStat3", refTo="", type="Interval", width=150 }, - [52]={ + [53]={ list=false, name="UnknownStat4", refTo="", type="Interval", width=150 }, - [53]={ + [54]={ list=false, name="UnknownStat5", refTo="", type="Interval", width=150 }, - [54]={ + [55]={ list=false, name="UnknownStat6", refTo="", type="Interval", width=150 }, - [55]={ + [56]={ list=false, name="UnknownStat7", refTo="", type="Interval", width=150 }, - [56]={ + [57]={ list=false, name="UnknownStat8", refTo="", type="Interval", width=150 }, - [57]={ + [58]={ list=false, name="BuffTemplate", refTo="BuffTemplates", type="Key", width=150 }, - [58]={ + [59]={ list=false, name="ArchnemesisMinionMod", refTo="Mods", type="ShortKey", width=290 }, - [59]={ + [60]={ list=false, name="HASH32", refTo="", type="UInt", width=150 }, - [60]={ + [61]={ list=true, name="BuffTemplate2", refTo="BuffTemplates", type="Key", width=150 }, - [61]={ + [62]={ list=false, name="", refTo="", type="Int", width=80 }, - [62]={ + [63]={ list=true, name="", refTo="GrantedEffectsPerLevel", type="Key", width=90 }, - [63]={ + [64]={ list=false, name="NodeType", refTo="PassiveNodeTypes", type="Enum", width=120 }, - [64]={ + [65]={ list=false, name="IsUnscalable", refTo="", type="Bool", width=140 }, - [65]={ + [66]={ list=false, name="SpawnLevel_Override", refTo="", type="Int", width=130 }, - [66]={ + [67]={ list=true, name="SpawnWeight", refTo="", @@ -63411,7 +63418,7 @@ return { list=false, name="", refTo="", - type="Key", + type="Int", width=50 }, [60]={ @@ -63425,7 +63432,7 @@ return { list=false, name="", refTo="", - type="Key", + type="Int", width=50 }, [62]={ @@ -63436,139 +63443,125 @@ return { width=50 }, [63]={ - list=false, - name="", - refTo="", - type="Int", - width=50 - }, - [64]={ - list=false, - name="", - refTo="", - type="Int", - width=50 - }, - [65]={ list=false, name="Ruleset", refTo="Rulesets", type="Key", width=50 }, - [66]={ + [64]={ list=false, name="", refTo="", type="Int", width=50 }, - [67]={ + [65]={ list=true, name="", refTo="WorldAreas", type="ShortKey", width=40 }, - [68]={ + [66]={ list=true, name="", refTo="", type="Int", width=150 }, - [69]={ + [67]={ list=true, name="", refTo="", type="Int", width=150 }, - [70]={ + [68]={ list=true, name="QuestFlags", refTo="QuestFlags", type="Key", width=150 }, - [71]={ + [69]={ list=false, name="", refTo="", type="Int", width=90 }, - [72]={ + [70]={ list=false, name="Description", refTo="", type="String", width=200 }, - [73]={ + [71]={ list=false, name="", refTo="", type="Int", width=50 }, - [74]={ + [72]={ list=false, name="", refTo="", type="Int", width=50 }, - [75]={ + [73]={ list=false, name="", refTo="", type="Bool", width=50 }, - [76]={ + [74]={ list=false, name="", refTo="", type="Int", width=150 }, - [77]={ + [75]={ list=false, name="", refTo="", type="Int", width=150 }, - [78]={ + [76]={ list=false, name="", refTo="", type="Bool", width=150 }, - [79]={ + [77]={ list=true, name="", refTo="", type="Key", width=300 }, - [80]={ + [78]={ list=true, name="", refTo="", type="Int", width=300 }, - [81]={ + [79]={ list=true, name="", refTo="", type="Key", width=300 }, - [82]={ + [80]={ list=true, name="", refTo="", diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index ef83aed47d..47224355fa 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -1820,14 +1820,25 @@ function buildMode:OpenSpectreLibrary(library) assetData.handle = NewImageHandle() assetData.handle:Load("Assets/" .. file, "CLAMP") assetData.width, assetData.height = assetData.handle:ImageSize() - for name, position in pairs(fileInfo) do - images[name] = { + for name, info in pairs(fileInfo) do + local image = { found = assetData.width > 0, handle = assetData.handle, width = assetData.width, height = assetData.height, - [1] = position, } + images[name] = image + -- {x, y, w, h} + if type(info) == "table" then + -- scale pixel values to [0, 1] + image[1] = info[1] / assetData.width + image[2] = info[2] / assetData.height + image[3] = (info[1] + info[3]) / assetData.width + image[4] = (info[2] + info[4]) / assetData.height + image[5] = info[5] + else + image[1] = info + end end end return images diff --git a/src/TreeData/0_5/ascendancy-background_4008_4008_BC7.dds.zst b/src/TreeData/0_5/ascendancy-background_4008_4008_BC7.dds.zst new file mode 100644 index 0000000000..a8881db761 Binary files /dev/null and b/src/TreeData/0_5/ascendancy-background_4008_4008_BC7.dds.zst differ diff --git a/src/TreeData/0_5/background_1048_1048_BC7.dds.zst b/src/TreeData/0_5/background_1048_1048_BC7.dds.zst new file mode 100644 index 0000000000..2412c48841 Binary files /dev/null and b/src/TreeData/0_5/background_1048_1048_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_100_100_BC7.dds.zst b/src/TreeData/0_5/group-background_100_100_BC7.dds.zst new file mode 100644 index 0000000000..9ff262785c Binary files /dev/null and b/src/TreeData/0_5/group-background_100_100_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_112_112_BC7.dds.zst b/src/TreeData/0_5/group-background_112_112_BC7.dds.zst new file mode 100644 index 0000000000..0c9409b578 Binary files /dev/null and b/src/TreeData/0_5/group-background_112_112_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_160_164_BC7.dds.zst b/src/TreeData/0_5/group-background_160_164_BC7.dds.zst index f41d9f830b..3121f6000e 100644 Binary files a/src/TreeData/0_5/group-background_160_164_BC7.dds.zst and b/src/TreeData/0_5/group-background_160_164_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_164_164_BC7.dds.zst b/src/TreeData/0_5/group-background_164_164_BC7.dds.zst new file mode 100644 index 0000000000..56611233f7 Binary files /dev/null and b/src/TreeData/0_5/group-background_164_164_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_168_168_BC7.dds.zst b/src/TreeData/0_5/group-background_168_168_BC7.dds.zst new file mode 100644 index 0000000000..db76850b0c Binary files /dev/null and b/src/TreeData/0_5/group-background_168_168_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_168_172_BC7.dds.zst b/src/TreeData/0_5/group-background_168_172_BC7.dds.zst new file mode 100644 index 0000000000..4182fdf62d Binary files /dev/null and b/src/TreeData/0_5/group-background_168_172_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_216_216_BC7.dds.zst b/src/TreeData/0_5/group-background_216_216_BC7.dds.zst new file mode 100644 index 0000000000..9c8094c88b Binary files /dev/null and b/src/TreeData/0_5/group-background_216_216_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_228_232_BC7.dds.zst b/src/TreeData/0_5/group-background_228_232_BC7.dds.zst new file mode 100644 index 0000000000..a23437326c Binary files /dev/null and b/src/TreeData/0_5/group-background_228_232_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_368_368_BC7.dds.zst b/src/TreeData/0_5/group-background_368_368_BC7.dds.zst new file mode 100644 index 0000000000..08e6fe2099 Binary files /dev/null and b/src/TreeData/0_5/group-background_368_368_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_476_476_BC7.dds.zst b/src/TreeData/0_5/group-background_476_476_BC7.dds.zst new file mode 100644 index 0000000000..34ac9be6b2 Binary files /dev/null and b/src/TreeData/0_5/group-background_476_476_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_536_536_BC7.dds.zst b/src/TreeData/0_5/group-background_536_536_BC7.dds.zst new file mode 100644 index 0000000000..174383bd02 Binary files /dev/null and b/src/TreeData/0_5/group-background_536_536_BC7.dds.zst differ diff --git a/src/TreeData/0_5/group-background_748_392_BC7.dds.zst b/src/TreeData/0_5/group-background_748_392_BC7.dds.zst new file mode 100644 index 0000000000..01649551d0 Binary files /dev/null and b/src/TreeData/0_5/group-background_748_392_BC7.dds.zst differ diff --git a/src/TreeData/0_5/jewel-sockets_160_164_BC7.dds.zst b/src/TreeData/0_5/jewel-sockets_160_164_BC7.dds.zst new file mode 100644 index 0000000000..7b48397ad5 Binary files /dev/null and b/src/TreeData/0_5/jewel-sockets_160_164_BC7.dds.zst differ diff --git a/src/TreeData/0_5/legion_1032_1032_BC7.dds.zst b/src/TreeData/0_5/legion_1032_1032_BC7.dds.zst new file mode 100644 index 0000000000..7e7e32188a Binary files /dev/null and b/src/TreeData/0_5/legion_1032_1032_BC7.dds.zst differ diff --git a/src/TreeData/0_5/legion_572_572_BC7.dds.zst b/src/TreeData/0_5/legion_572_572_BC7.dds.zst new file mode 100644 index 0000000000..2e86eea25c Binary files /dev/null and b/src/TreeData/0_5/legion_572_572_BC7.dds.zst differ diff --git a/src/TreeData/0_5/mastery-active-effect_784_776_BC7.dds.zst b/src/TreeData/0_5/mastery-active-effect_784_776_BC7.dds.zst new file mode 100644 index 0000000000..7f4ee55482 Binary files /dev/null and b/src/TreeData/0_5/mastery-active-effect_784_776_BC7.dds.zst differ diff --git a/src/TreeData/0_5/tree.json b/src/TreeData/0_5/tree.json index b96b5ac646..5ce1976ccf 100644 --- a/src/TreeData/0_5/tree.json +++ b/src/TreeData/0_5/tree.json @@ -1 +1 @@ -{"assets":{"CharacterAscendancyLineConnectorActive":["CharacterAscendancy_orbit_intermediateactive0.png"],"CharacterAscendancyLineConnectorIntermediate":["CharacterAscendancy_orbit_intermediate0.png"],"CharacterAscendancyLineConnectorNormal":["CharacterAscendancy_orbit_normal0.png"],"CharacterAscendancyOrbit1Active":["CharacterAscendancy_orbit_intermediateactive9.png"],"CharacterAscendancyOrbit1Intermediate":["CharacterAscendancy_orbit_intermediate9.png"],"CharacterAscendancyOrbit1Normal":["CharacterAscendancy_orbit_normal9.png"],"CharacterAscendancyOrbit2Active":["CharacterAscendancy_orbit_intermediateactive8.png"],"CharacterAscendancyOrbit2Intermediate":["CharacterAscendancy_orbit_intermediate8.png"],"CharacterAscendancyOrbit2Normal":["CharacterAscendancy_orbit_normal8.png"],"CharacterAscendancyOrbit3Active":["CharacterAscendancy_orbit_intermediateactive6.png"],"CharacterAscendancyOrbit3Intermediate":["CharacterAscendancy_orbit_intermediate6.png"],"CharacterAscendancyOrbit3Normal":["CharacterAscendancy_orbit_normal6.png"],"CharacterAscendancyOrbit4Active":["CharacterAscendancy_orbit_intermediateactive5.png"],"CharacterAscendancyOrbit4Intermediate":["CharacterAscendancy_orbit_intermediate5.png"],"CharacterAscendancyOrbit4Normal":["CharacterAscendancy_orbit_normal5.png"],"CharacterAscendancyOrbit5Active":["CharacterAscendancy_orbit_intermediateactive4.png"],"CharacterAscendancyOrbit5Intermediate":["CharacterAscendancy_orbit_intermediate4.png"],"CharacterAscendancyOrbit5Normal":["CharacterAscendancy_orbit_normal4.png"],"CharacterAscendancyOrbit6Active":["CharacterAscendancy_orbit_intermediateactive3.png"],"CharacterAscendancyOrbit6Intermediate":["CharacterAscendancy_orbit_intermediate3.png"],"CharacterAscendancyOrbit6Normal":["CharacterAscendancy_orbit_normal3.png"],"CharacterAscendancyOrbit7Active":["CharacterAscendancy_orbit_intermediateactive7.png"],"CharacterAscendancyOrbit7Intermediate":["CharacterAscendancy_orbit_intermediate7.png"],"CharacterAscendancyOrbit7Normal":["CharacterAscendancy_orbit_normal7.png"],"CharacterAscendancyOrbit8Active":["CharacterAscendancy_orbit_intermediateactive2.png"],"CharacterAscendancyOrbit8Intermediate":["CharacterAscendancy_orbit_intermediate2.png"],"CharacterAscendancyOrbit8Normal":["CharacterAscendancy_orbit_normal2.png"],"CharacterAscendancyOrbit9Active":["CharacterAscendancy_orbit_intermediateactive1.png"],"CharacterAscendancyOrbit9Intermediate":["CharacterAscendancy_orbit_intermediate1.png"],"CharacterAscendancyOrbit9Normal":["CharacterAscendancy_orbit_normal1.png"],"CharacterLineConnectorActive":["Character_orbit_intermediateactive0.png"],"CharacterLineConnectorIntermediate":["Character_orbit_intermediate0.png"],"CharacterLineConnectorNormal":["Character_orbit_normal0.png"],"CharacterOrbit1Active":["Character_orbit_intermediateactive9.png"],"CharacterOrbit1Intermediate":["Character_orbit_intermediate9.png"],"CharacterOrbit1Normal":["Character_orbit_normal9.png"],"CharacterOrbit2Active":["Character_orbit_intermediateactive8.png"],"CharacterOrbit2Intermediate":["Character_orbit_intermediate8.png"],"CharacterOrbit2Normal":["Character_orbit_normal8.png"],"CharacterOrbit3Active":["Character_orbit_intermediateactive6.png"],"CharacterOrbit3Intermediate":["Character_orbit_intermediate6.png"],"CharacterOrbit3Normal":["Character_orbit_normal6.png"],"CharacterOrbit4Active":["Character_orbit_intermediateactive5.png"],"CharacterOrbit4Intermediate":["Character_orbit_intermediate5.png"],"CharacterOrbit4Normal":["Character_orbit_normal5.png"],"CharacterOrbit5Active":["Character_orbit_intermediateactive4.png"],"CharacterOrbit5Intermediate":["Character_orbit_intermediate4.png"],"CharacterOrbit5Normal":["Character_orbit_normal4.png"],"CharacterOrbit6Active":["Character_orbit_intermediateactive3.png"],"CharacterOrbit6Intermediate":["Character_orbit_intermediate3.png"],"CharacterOrbit6Normal":["Character_orbit_normal3.png"],"CharacterOrbit7Active":["Character_orbit_intermediateactive7.png"],"CharacterOrbit7Intermediate":["Character_orbit_intermediate7.png"],"CharacterOrbit7Normal":["Character_orbit_normal7.png"],"CharacterOrbit8Active":["Character_orbit_intermediateactive2.png"],"CharacterOrbit8Intermediate":["Character_orbit_intermediate2.png"],"CharacterOrbit8Normal":["Character_orbit_normal2.png"],"CharacterOrbit9Active":["Character_orbit_intermediateactive1.png"],"CharacterOrbit9Intermediate":["Character_orbit_intermediate1.png"],"CharacterOrbit9Normal":["Character_orbit_normal1.png"],"CharacterPlannedLineConnectorActive":["CharacterPlanned_orbit_intermediateactive0.png"],"CharacterPlannedLineConnectorIntermediate":["CharacterPlanned_orbit_intermediate0.png"],"CharacterPlannedLineConnectorNormal":["CharacterPlanned_orbit_normal0.png"],"CharacterPlannedOrbit1Active":["CharacterPlanned_orbit_intermediateactive9.png"],"CharacterPlannedOrbit1Intermediate":["CharacterPlanned_orbit_intermediate9.png"],"CharacterPlannedOrbit1Normal":["CharacterPlanned_orbit_normal9.png"],"CharacterPlannedOrbit2Active":["CharacterPlanned_orbit_intermediateactive8.png"],"CharacterPlannedOrbit2Intermediate":["CharacterPlanned_orbit_intermediate8.png"],"CharacterPlannedOrbit2Normal":["CharacterPlanned_orbit_normal8.png"],"CharacterPlannedOrbit3Active":["CharacterPlanned_orbit_intermediateactive6.png"],"CharacterPlannedOrbit3Intermediate":["CharacterPlanned_orbit_intermediate6.png"],"CharacterPlannedOrbit3Normal":["CharacterPlanned_orbit_normal6.png"],"CharacterPlannedOrbit4Active":["CharacterPlanned_orbit_intermediateactive5.png"],"CharacterPlannedOrbit4Intermediate":["CharacterPlanned_orbit_intermediate5.png"],"CharacterPlannedOrbit4Normal":["CharacterPlanned_orbit_normal5.png"],"CharacterPlannedOrbit5Active":["CharacterPlanned_orbit_intermediateactive4.png"],"CharacterPlannedOrbit5Intermediate":["CharacterPlanned_orbit_intermediate4.png"],"CharacterPlannedOrbit5Normal":["CharacterPlanned_orbit_normal4.png"],"CharacterPlannedOrbit6Active":["CharacterPlanned_orbit_intermediateactive3.png"],"CharacterPlannedOrbit6Intermediate":["CharacterPlanned_orbit_intermediate3.png"],"CharacterPlannedOrbit6Normal":["CharacterPlanned_orbit_normal3.png"],"CharacterPlannedOrbit7Active":["CharacterPlanned_orbit_intermediateactive7.png"],"CharacterPlannedOrbit7Intermediate":["CharacterPlanned_orbit_intermediate7.png"],"CharacterPlannedOrbit7Normal":["CharacterPlanned_orbit_normal7.png"],"CharacterPlannedOrbit8Active":["CharacterPlanned_orbit_intermediateactive2.png"],"CharacterPlannedOrbit8Intermediate":["CharacterPlanned_orbit_intermediate2.png"],"CharacterPlannedOrbit8Normal":["CharacterPlanned_orbit_normal2.png"],"CharacterPlannedOrbit9Active":["CharacterPlanned_orbit_intermediateactive1.png"],"CharacterPlannedOrbit9Intermediate":["CharacterPlanned_orbit_intermediate1.png"],"CharacterPlannedOrbit9Normal":["CharacterPlanned_orbit_normal1.png"]},"classes":[{"ascendancies":[{"background":{"height":1500,"image":"ClassesDeadeye","section":"AscendancyBackground","width":1500,"x":15451.736075332,"y":1623.2446432539},"id":"Deadeye","internalId":"Ranger1","name":"Deadeye"},{"background":{"height":1500,"image":"ClassesPathfinder","section":"AscendancyBackground","width":1500,"x":14776.587030868,"y":4800.3694266947},"id":"Pathfinder","internalId":"Ranger3","name":"Pathfinder"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesRanger","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":15,"base_int":7,"base_str":7,"integerId":2,"name":"Ranger"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesAmazon","section":"AscendancyBackground","width":1500,"x":13455.630227224,"y":7767.6950314609},"id":"Amazon","internalId":"Huntress1","name":"Amazon"},{"background":{"height":1500,"image":"ClassesSpirit Walker","section":"AscendancyBackground","width":1500,"x":11546.597815372,"y":10395.535089816},"id":"Spirit Walker","internalId":"Huntress2","name":"Spirit Walker"},{"background":{"height":1500,"image":"ClassesRitualist","section":"AscendancyBackground","width":1500,"x":9132.9236722657,"y":12569.040381434},"id":"Ritualist","internalId":"Huntress3","name":"Ritualist"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesHuntress","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":15,"base_int":7,"base_str":7,"integerId":8,"name":"Huntress"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesTitan","section":"AscendancyBackground","width":1500,"x":-11551.107884827,"y":10390.523449116},"id":"Titan","internalId":"Warrior1","name":"Titan"},{"background":{"height":1500,"image":"ClassesWarbringer","section":"AscendancyBackground","width":1500,"x":-13458.999762149,"y":7761.8552109686},"id":"Warbringer","internalId":"Warrior2","name":"Warbringer"},{"background":{"height":1500,"image":"ClassesSmith of Kitava","section":"AscendancyBackground","width":1500,"x":-14778.668766418,"y":4793.956654588},"id":"Smith of Kitava","internalId":"Warrior3","name":"Smith of Kitava"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesWarrior","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":7,"base_str":15,"integerId":6,"name":"Warrior"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesTactician","section":"AscendancyBackground","width":1500,"x":3250.4343344123,"y":15192.950587402},"id":"Tactician","internalId":"Mercenary1","name":"Tactician"},{"background":{"height":1500,"image":"ClassesWitchhunter","section":"AscendancyBackground","width":1500,"x":20.612500410808,"y":15536.751463494},"id":"Witchhunter","internalId":"Mercenary2","name":"Witchhunter"},{"background":{"height":1500,"image":"ClassesGemling Legionnaire","section":"AscendancyBackground","width":1500,"x":-3210.1101987684,"y":15201.521747027},"id":"Gemling Legionnaire","internalId":"Mercenary3","name":"Gemling Legionnaire"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesMercenary","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":11,"base_int":7,"base_str":11,"integerId":9,"name":"Mercenary"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesOracle","section":"AscendancyBackground","width":1500,"x":-14155.374312805,"y":-6404.4085580119},"id":"Oracle","internalId":"Druid1","name":"Oracle"},{"background":{"height":1500,"image":"ClassesShaman","section":"AscendancyBackground","width":1500,"x":-12514.494009575,"y":-9207.524672672},"id":"Shaman","internalId":"Druid2","name":"Shaman"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesDruid","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":11,"base_str":11,"integerId":11,"name":"Druid"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesInfernalist","section":"AscendancyBackground","width":1500,"x":-9132.2814156951,"y":-12569.507033218},"id":"Infernalist","internalId":"Witch1","name":"Infernalist"},{"background":{"height":1500,"image":"ClassesBlood Mage","section":"AscendancyBackground","width":1500,"x":-6319.3716959661,"y":-14193.541217109},"id":"Blood Mage","internalId":"Witch2","name":"Blood Mage"},{"background":{"height":1500,"image":"ClassesLich","section":"AscendancyBackground","width":1500,"x":-3230.2751094136,"y":-15197.249541646},"id":"Lich","internalId":"Witch3","name":"Lich","replaceBy":"Abyssal Lich"},{"background":{"height":1500,"image":"ClassesAbyssal Lich","section":"AscendancyBackground","width":1500,"x":-3230.2751094136,"y":-15197.249541646},"id":"Abyssal Lich","internalId":"Witch3b","name":"Abyssal Lich","replace":"Lich"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesWitch","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":15,"base_str":7,"integerId":1,"name":"Witch"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesStormweaver","section":"AscendancyBackground","width":1500,"x":9.5135248468934e-13,"y":-15536.765136719},"id":"Stormweaver","internalId":"Sorceress1","name":"Stormweaver"},{"background":{"height":1500,"image":"ClassesChronomancer","section":"AscendancyBackground","width":1500,"x":3230.2751094136,"y":-15197.249541646},"id":"Chronomancer","internalId":"Sorceress2","name":"Chronomancer"},{"background":{"height":1500,"image":"ClassesDisciple of Varashta","section":"AscendancyBackground","width":1500,"x":6319.3716959661,"y":-14193.541217109},"id":"Disciple of Varashta","internalId":"Sorceress3","name":"Disciple of Varashta"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesSorceress","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":15,"base_str":7,"integerId":7,"name":"Sorceress"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesMartial Artist","section":"AscendancyBackground","width":1500,"x":11574.564583473,"y":-10364.38737295},"id":"Martial Artist","internalId":"Monk1","name":"Martial Artist"},{"background":{"height":1500,"image":"ClassesInvoker","section":"AscendancyBackground","width":1500,"x":13476.509879863,"y":-7731.4133488973},"id":"Invoker","internalId":"Monk2","name":"Invoker"},{"background":{"height":1500,"image":"ClassesAcolyte of Chayula","section":"AscendancyBackground","width":1500,"x":14789.467027034,"y":-4760.5394620606},"id":"Acolyte of Chayula","internalId":"Monk3","name":"Acolyte of Chayula"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesMonk","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":11,"base_int":11,"base_str":7,"integerId":10,"name":"Monk"}],"connectionArt":{"ascendancy":"CharacterAscendancy","default":"Character"},"constants":{"PSSCentreInnerRadius":130,"characterAttributes":{"Dexterity":1,"Intelligence":2,"Strength":0},"classes":{"DexClass":2,"DexIntClass":6,"IntClass":3,"StrClass":1,"StrDexClass":4,"StrDexIntClass":0,"StrIntClass":5},"orbitAnglesByOrbit":[[0,6.2831853071796],[0,0.5235987755983,1.0471975511966,1.5707963267949,2.0943951023932,2.6179938779915,3.1415926535898,3.6651914291881,4.1887902047864,4.7123889803847,5.235987755983,5.7595865315813,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.043633231299858,0.087266462599716,0.13089969389957,0.17453292519943,0.21816615649929,0.26179938779915,0.30543261909901,0.34906585039887,0.39269908169872,0.43633231299858,0.47996554429844,0.5235987755983,0.56723200689816,0.61086523819802,0.65449846949787,0.69813170079773,0.74176493209759,0.78539816339745,0.82903139469731,0.87266462599716,0.91629785729702,0.95993108859688,1.0035643198967,1.0471975511966,1.0908307824965,1.1344640137963,1.1780972450962,1.221730476396,1.2653637076959,1.3089969389957,1.3526301702956,1.3962634015955,1.4398966328953,1.4835298641952,1.527163095495,1.5707963267949,1.6144295580948,1.6580627893946,1.7016960206945,1.7453292519943,1.7889624832942,1.832595714594,1.8762289458939,1.9198621771938,1.9634954084936,2.0071286397935,2.0507618710933,2.0943951023932,2.1380283336931,2.1816615649929,2.2252947962928,2.2689280275926,2.3125612588925,2.3561944901923,2.3998277214922,2.4434609527921,2.4870941840919,2.5307274153918,2.5743606466916,2.6179938779915,2.6616271092914,2.7052603405912,2.7488935718911,2.7925268031909,2.8361600344908,2.8797932657906,2.9234264970905,2.9670597283904,3.0106929596902,3.0543261909901,3.0979594222899,3.1415926535898,3.1852258848897,3.2288591161895,3.2724923474894,3.3161255787892,3.3597588100891,3.4033920413889,3.4470252726888,3.4906585039887,3.5342917352885,3.5779249665884,3.6215581978882,3.6651914291881,3.708824660488,3.7524578917878,3.7960911230877,3.8397243543875,3.8833575856874,3.9269908169872,3.9706240482871,4.014257279587,4.0578905108868,4.1015237421867,4.1451569734865,4.1887902047864,4.2324234360862,4.2760566673861,4.319689898686,4.3633231299858,4.4069563612857,4.4505895925855,4.4942228238854,4.5378560551853,4.5814892864851,4.625122517785,4.6687557490848,4.7123889803847,4.7560222116845,4.7996554429844,4.8432886742843,4.8869219055841,4.930555136884,4.9741883681838,5.0178215994837,5.0614548307836,5.1050880620834,5.1487212933833,5.1923545246831,5.235987755983,5.2796209872828,5.3232542185827,5.3668874498826,5.4105206811824,5.4541539124823,5.4977871437821,5.541420375082,5.5850536063819,5.6286868376817,5.6723200689816,5.7159533002814,5.7595865315813,5.8032197628811,5.846852994181,5.8904862254809,5.9341194567807,5.9777526880806,6.0213859193804,6.0650191506803,6.1086523819802,6.15228561328,6.1959188445799,6.2395520758797,6.2831853071796]],"orbitRadii":[0,82,162,335,493,662,846,251,1080,1322],"skillsPerOrbit":[1,12,24,24,72,72,72,24,72,144]},"ddsCoords":{"ascendancy-background_1500_1500_BC7.dds.zst":{"ClassesAbyssal Lich":13,"ClassesAcolyte of Chayula":1,"ClassesAmazon":2,"ClassesBlood Mage":3,"ClassesChronomancer":4,"ClassesDeadeye":5,"ClassesDisciple of Varashta":6,"ClassesDruid":7,"ClassesDuelist":8,"ClassesGemling Legionnaire":9,"ClassesHuntress":10,"ClassesInfernalist":11,"ClassesInvoker":12,"ClassesLich":14,"ClassesMarauder":15,"ClassesMartial Artist":16,"ClassesMercenary":17,"ClassesMonk":18,"ClassesOracle":19,"ClassesPathfinder":20,"ClassesRanger":22,"ClassesRitualist":21,"ClassesShadow":23,"ClassesShaman":24,"ClassesSmith of Kitava":25,"ClassesSorceress":26,"ClassesSpirit Walker":33,"ClassesStormweaver":27,"ClassesTactician":28,"ClassesTemplar":29,"ClassesTitan":30,"ClassesWarbringer":31,"ClassesWarrior":32,"ClassesWitch":34,"ClassesWitchhunter":35},"ascendancy-background_4000_4000_BC7.dds.zst":{"BGTree":1,"BGTreeActive":2},"background_1024_1024_BC7.dds.zst":{"Background2":1},"group-background_104_104_BC7.dds.zst":{"PSSkillFrame":6,"PSSkillFrameActive":4,"PSSkillFrameHighlighted":5,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds":3},"group-background_152_156_BC7.dds.zst":{"JewelFrameAllocated":16,"JewelFrameCanAllocate":17,"JewelFrameUnallocated":18,"NotableFrameAllocated":13,"NotableFrameCanAllocate":14,"NotableFrameUnallocated":15,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketactive.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketcanallocate.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketnormal.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds":7,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds":12},"group-background_156_156_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds":1},"group-background_160_160_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds":3},"group-background_160_164_BC7.dds.zst":{"Abyssal LichFrameSmallAllocated":1,"Abyssal LichFrameSmallCanAllocate":2,"Abyssal LichFrameSmallNormal":3,"Acolyte of ChayulaFrameSmallAllocated":4,"Acolyte of ChayulaFrameSmallCanAllocate":5,"Acolyte of ChayulaFrameSmallNormal":6,"AmazonFrameSmallAllocated":4,"AmazonFrameSmallCanAllocate":5,"AmazonFrameSmallNormal":6,"Blood MageFrameSmallAllocated":4,"Blood MageFrameSmallCanAllocate":5,"Blood MageFrameSmallNormal":6,"ChronomancerFrameSmallAllocated":4,"ChronomancerFrameSmallCanAllocate":5,"ChronomancerFrameSmallNormal":6,"DeadeyeFrameSmallAllocated":4,"DeadeyeFrameSmallCanAllocate":5,"DeadeyeFrameSmallNormal":6,"Disciple of VarashtaFrameSmallAllocated":4,"Disciple of VarashtaFrameSmallCanAllocate":5,"Disciple of VarashtaFrameSmallNormal":6,"Gemling LegionnaireFrameSmallAllocated":4,"Gemling LegionnaireFrameSmallCanAllocate":5,"Gemling LegionnaireFrameSmallNormal":6,"InfernalistFrameSmallAllocated":4,"InfernalistFrameSmallCanAllocate":5,"InfernalistFrameSmallNormal":6,"InvokerFrameSmallAllocated":4,"InvokerFrameSmallCanAllocate":5,"InvokerFrameSmallNormal":6,"LichFrameSmallAllocated":4,"LichFrameSmallCanAllocate":5,"LichFrameSmallNormal":6,"Martial ArtistFrameSmallAllocated":4,"Martial ArtistFrameSmallCanAllocate":5,"Martial ArtistFrameSmallNormal":6,"OracleFrameSmallAllocated":4,"OracleFrameSmallCanAllocate":5,"OracleFrameSmallNormal":6,"PathfinderFrameSmallAllocated":4,"PathfinderFrameSmallCanAllocate":5,"PathfinderFrameSmallNormal":6,"RitualistFrameSmallAllocated":4,"RitualistFrameSmallCanAllocate":5,"RitualistFrameSmallNormal":6,"ShamanFrameSmallAllocated":4,"ShamanFrameSmallCanAllocate":5,"ShamanFrameSmallNormal":6,"Smith of KitavaFrameSmallAllocated":4,"Smith of KitavaFrameSmallCanAllocate":5,"Smith of KitavaFrameSmallNormal":6,"Spirit WalkerFrameSmallAllocated":4,"Spirit WalkerFrameSmallCanAllocate":5,"Spirit WalkerFrameSmallNormal":6,"StormweaverFrameSmallAllocated":4,"StormweaverFrameSmallCanAllocate":5,"StormweaverFrameSmallNormal":6,"TacticianFrameSmallAllocated":4,"TacticianFrameSmallCanAllocate":5,"TacticianFrameSmallNormal":6,"TitanFrameSmallAllocated":4,"TitanFrameSmallCanAllocate":5,"TitanFrameSmallNormal":6,"WarbringerFrameSmallAllocated":4,"WarbringerFrameSmallCanAllocate":5,"WarbringerFrameSmallNormal":6,"WitchhunterFrameSmallAllocated":4,"WitchhunterFrameSmallCanAllocate":5,"WitchhunterFrameSmallNormal":6},"group-background_208_208_BC7.dds.zst":{"Abyssal LichFrameLargeAllocated":1,"Abyssal LichFrameLargeCanAllocate":2,"Abyssal LichFrameLargeNormal":3,"Acolyte of ChayulaFrameLargeAllocated":4,"Acolyte of ChayulaFrameLargeCanAllocate":5,"Acolyte of ChayulaFrameLargeNormal":6,"AmazonFrameLargeAllocated":4,"AmazonFrameLargeCanAllocate":5,"AmazonFrameLargeNormal":6,"Blood MageFrameLargeAllocated":4,"Blood MageFrameLargeCanAllocate":5,"Blood MageFrameLargeNormal":6,"ChronomancerFrameLargeAllocated":4,"ChronomancerFrameLargeCanAllocate":5,"ChronomancerFrameLargeNormal":6,"DeadeyeFrameLargeAllocated":4,"DeadeyeFrameLargeCanAllocate":5,"DeadeyeFrameLargeNormal":6,"Disciple of VarashtaFrameLargeAllocated":4,"Disciple of VarashtaFrameLargeCanAllocate":5,"Disciple of VarashtaFrameLargeNormal":6,"Gemling LegionnaireFrameLargeAllocated":4,"Gemling LegionnaireFrameLargeCanAllocate":5,"Gemling LegionnaireFrameLargeNormal":6,"InfernalistFrameLargeAllocated":4,"InfernalistFrameLargeCanAllocate":5,"InfernalistFrameLargeNormal":6,"InvokerFrameLargeAllocated":4,"InvokerFrameLargeCanAllocate":5,"InvokerFrameLargeNormal":6,"LichFrameLargeAllocated":4,"LichFrameLargeCanAllocate":5,"LichFrameLargeNormal":6,"Martial ArtistFrameLargeAllocated":4,"Martial ArtistFrameLargeCanAllocate":5,"Martial ArtistFrameLargeNormal":6,"OracleFrameLargeAllocated":4,"OracleFrameLargeCanAllocate":5,"OracleFrameLargeNormal":6,"PathfinderFrameLargeAllocated":4,"PathfinderFrameLargeCanAllocate":5,"PathfinderFrameLargeNormal":6,"RitualistFrameLargeAllocated":4,"RitualistFrameLargeCanAllocate":5,"RitualistFrameLargeNormal":6,"ShamanFrameLargeAllocated":4,"ShamanFrameLargeCanAllocate":5,"ShamanFrameLargeNormal":6,"Smith of KitavaFrameLargeAllocated":4,"Smith of KitavaFrameLargeCanAllocate":5,"Smith of KitavaFrameLargeNormal":6,"Spirit WalkerFrameLargeAllocated":4,"Spirit WalkerFrameLargeCanAllocate":5,"Spirit WalkerFrameLargeNormal":6,"StormweaverFrameLargeAllocated":4,"StormweaverFrameLargeCanAllocate":5,"StormweaverFrameLargeNormal":6,"TacticianFrameLargeAllocated":4,"TacticianFrameLargeCanAllocate":5,"TacticianFrameLargeNormal":6,"TitanFrameLargeAllocated":4,"TitanFrameLargeCanAllocate":5,"TitanFrameLargeNormal":6,"WarbringerFrameLargeAllocated":4,"WarbringerFrameLargeCanAllocate":5,"WarbringerFrameLargeNormal":6,"WitchhunterFrameLargeAllocated":4,"WitchhunterFrameLargeCanAllocate":5,"WitchhunterFrameLargeNormal":6},"group-background_220_224_BC7.dds.zst":{"KeystoneFrameAllocated":1,"KeystoneFrameCanAllocate":2,"KeystoneFrameUnallocated":3},"group-background_360_360_BC7.dds.zst":{"PSGroupBackground1":1,"PSGroupBackgroundSmallBlank":1},"group-background_468_468_BC7.dds.zst":{"PSGroupBackground2":1,"PSGroupBackgroundMediumBlank":1},"group-background_528_528_BC7.dds.zst":{"PSStartNodeBackgroundInactive":1},"group-background_740_376_BC7.dds.zst":{"PSGroupBackground3":1,"PSGroupBackgroundLargeBlank":1},"group-background_92_92_BC7.dds.zst":{"AscendancyMiddle":1},"jewel-sockets_152_156_BC7.dds.zst":{"Against the Darkness":15,"Controlled Metamorphosis":4,"Diamond":6,"Emerald":8,"Flesh Crucible":18,"From Nothing":10,"Heart of the Well":3,"Heroic Tragedy":9,"Megalomaniac":5,"Prism of Belief":12,"Ruby":11,"Sapphire":1,"The Adorned":17,"Time-Lost Diamond":7,"Time-Lost Emerald":13,"Time-Lost Ruby":14,"Time-Lost Sapphire":16,"Timeless Jewel":15,"Undying Hate":2,"Voices":5},"legion_1024_1024_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysspassiveskillscreenjewelcircle1.dds":1},"legion_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds":1,"Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds":2,"Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds":3,"Art/2DArt/SkillIcons/passives/AmanamusDefiance.dds":4,"Art/2DArt/SkillIcons/passives/CorruptedDefences.dds":5,"Art/2DArt/SkillIcons/passives/DevotionNotable.dds":6,"Art/2DArt/SkillIcons/passives/DivineFlesh.dds":7,"Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds":8,"Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds":9,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":10,"Art/2DArt/SkillIcons/passives/FocusedRage.dds":11,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":12,"Art/2DArt/SkillIcons/passives/InnerConviction.dds":13,"Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds":14,"Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds":15,"Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds":16,"Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds":17,"Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds":18,"Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds":19,"Art/2DArt/SkillIcons/passives/KulemaksSovereignty.dds":20,"Art/2DArt/SkillIcons/passives/KurgasAmbition.dds":21,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":22,"Art/2DArt/SkillIcons/passives/OasisKeystone.dds":23,"Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds":24,"Art/2DArt/SkillIcons/passives/SharpandBrittle.dds":25,"Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds":26,"Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds":27,"Art/2DArt/SkillIcons/passives/SupremeDecadence.dds":28,"Art/2DArt/SkillIcons/passives/SupremeEgo.dds":29,"Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds":30,"Art/2DArt/SkillIcons/passives/SupremeProdigy.dds":31,"Art/2DArt/SkillIcons/passives/TecrodsBrutality.dds":32,"Art/2DArt/SkillIcons/passives/TemperedByWar.dds":33,"Art/2DArt/SkillIcons/passives/TheBlindMonk.dds":34,"Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds":35,"Art/2DArt/SkillIcons/passives/UlamansVision.dds":36,"Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds":37,"Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds":38,"Art/2DArt/SkillIcons/passives/WindDancer.dds":39},"legion_564_564_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle2.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle1.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle2.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle1.dds":7,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle2.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle1.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle2.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle1.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle2.dds":12},"legion_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AbyssJewelNode.dds":1,"Art/2DArt/SkillIcons/passives/DevotionNode.dds":2,"Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds":3,"Art/2DArt/SkillIcons/passives/VaalDefensive.dds":4,"Art/2DArt/SkillIcons/passives/VaalOffensive.dds":5},"mastery-active-effect_776_768_BC7.dds.zst":{"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern":1,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern":2,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern":3,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern":4,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern":5,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern":6,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern":7,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern":8,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern":9,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern":10,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern":11,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern":12,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern":13,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern":14,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern":15,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern":16,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern":17,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern":18,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern":19,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern":20,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern":21,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern":22,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern":23,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern":24,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern":25,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern":26,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern":27,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern":28,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern":29,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern":30,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern":31,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern":32,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern":33,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern":34,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern":35,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern":36,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern":37,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern":38,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern":39,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern":40,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern":41,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern":42,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern":43,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern":44,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern":45,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern":46,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern":47,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern":48,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern":49,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern":50,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern":51,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern":52,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern":53,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern":54,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern":55,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern":56,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern":57,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern":58,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern":59,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern":60},"oils_108_108_RGBA.dds.zst":{"Contempt":11,"Despair":7,"Disgust":8,"Envy":9,"Fear":1,"Ferocity":12,"Greed":4,"Guilt":5,"Ire":6,"Isolation":2,"Melancholy":13,"Paranoia":10,"Suffering":3},"skills-disabled_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":1,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":2,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":3,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds":5,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":6,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":8,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds":9,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":10,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":11,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.dds":12,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds":13,"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds":14,"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds":15,"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds":16,"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds":17,"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds":18,"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds":19,"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds":20,"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds":21,"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds":22,"Art/2DArt/SkillIcons/passives/Annihilation.dds":23,"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds":24,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds":25,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds":26,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds":27,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":28,"Art/2DArt/SkillIcons/passives/AuraNotable.dds":29,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds":30,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds":31,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds":32,"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds":33,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds":34,"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds":35,"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds":36,"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds":37,"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds":38,"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds":39,"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds":40,"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds":41,"Art/2DArt/SkillIcons/passives/BattleRouse.dds":42,"Art/2DArt/SkillIcons/passives/Blood2.dds":43,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":44,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":45,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":46,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":47,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":48,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":49,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":50,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds":51,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":52,"Art/2DArt/SkillIcons/passives/BowDamage.dds":53,"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds":54,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":55,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":56,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":57,"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds":58,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":59,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":60,"Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.dds":61,"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds":62,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":63,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":64,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":65,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":75,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":92,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":93,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":94,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":95,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":96,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":100,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":103,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":104,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":105,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":106,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":107,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":109,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":120,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":121,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":122,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":123,"Art/2DArt/SkillIcons/passives/Harrier.dds":124,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":125,"Art/2DArt/SkillIcons/passives/Hearty.dds":126,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":127,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":128,"Art/2DArt/SkillIcons/passives/Hunter.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":133,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":143,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":144,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":153,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":160,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":161,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":164,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":165,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":168,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":176,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":177,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":185,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":186,"Art/2DArt/SkillIcons/passives/Meleerange.dds":187,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":188,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":189,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":195,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":196,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":197,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":198,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":199,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":207,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":222,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":223,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":224,"Art/2DArt/SkillIcons/passives/Poison.dds":225,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":232,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":233,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpseHand.dds":234,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":235,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":236,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":237,"Art/2DArt/SkillIcons/passives/RageNotable.dds":238,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":239,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":246,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":247,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":264,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":265,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":266,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":267,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":268,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":269,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":270,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":279,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":280,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":281,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":290,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":291,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":298,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":299,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":300,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":307,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":308,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":309,"Art/2DArt/SkillIcons/passives/Trap.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":316,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":317,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":318,"Art/2DArt/SkillIcons/passives/Warrior.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":326,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":327,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":334,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":335,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":336,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":337,"Art/2DArt/SkillIcons/passives/bodysoul.dds":338,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":339,"Art/2DArt/SkillIcons/passives/eagleeye.dds":340,"Art/2DArt/SkillIcons/passives/executioner.dds":341,"Art/2DArt/SkillIcons/passives/finesse.dds":342,"Art/2DArt/SkillIcons/passives/flameborn.dds":343,"Art/2DArt/SkillIcons/passives/frostborn.dds":344,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":345,"Art/2DArt/SkillIcons/passives/legstrength.dds":346,"Art/2DArt/SkillIcons/passives/lifeleech.dds":347,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":348,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":349,"Art/2DArt/SkillIcons/passives/steelspan.dds":350,"Art/2DArt/SkillIcons/passives/stormborn.dds":351,"Art/2DArt/SkillIcons/passives/strongarm.dds":352,"Art/2DArt/SkillIcons/passives/totemmax.dds":353,"Art/2DArt/SkillIcons/passives/vaalpact.dds":354},"skills-disabled_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"skills-disabled_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"skills-disabled_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":1,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":2,"Art/2DArt/SkillIcons/icongroundslam.dds":3,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":5,"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds":6,"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds":7,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds":8,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":9,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":10,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":11,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":12,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":13,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":14,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds":15,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds":16,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds":17,"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds":18,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds":19,"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds":20,"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds":21,"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds":22,"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds":23,"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds":24,"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds":25,"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds":26,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":27,"Art/2DArt/SkillIcons/passives/BucklerNode1.dds":28,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":29,"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds":30,"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds":31,"Art/2DArt/SkillIcons/passives/ChaosDamage.dds":32,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":33,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":34,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":35,"Art/2DArt/SkillIcons/passives/ColdFireNode.dds":36,"Art/2DArt/SkillIcons/passives/ColdLightningNode.dds":37,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":38,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":39,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":40,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":41,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":42,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":43,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":47,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":48,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":49,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":51,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":53,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":54,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":55,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":56,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":57,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":58,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":60,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":61,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":62,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":63,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":64,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":66,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":67,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":68,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":69,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":70,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":71,"Art/2DArt/SkillIcons/passives/MarkNode.dds":72,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":73,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":74,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":75,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":76,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":78,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":79,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":80,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":81,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":84,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":85,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":86,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":87,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":88,"Art/2DArt/SkillIcons/passives/Rage.dds":89,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":90,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":91,"Art/2DArt/SkillIcons/passives/Remnant.dds":92,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":93,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":94,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":95,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":96,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":97,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":98,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":99,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":100,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":102,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":103,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":104,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":105,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":106,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":107,"Art/2DArt/SkillIcons/passives/accuracydex.dds":108,"Art/2DArt/SkillIcons/passives/accuracystr.dds":109,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":110,"Art/2DArt/SkillIcons/passives/attackspeed.dds":111,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":112,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":113,"Art/2DArt/SkillIcons/passives/auraeffect.dds":114,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":115,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":116,"Art/2DArt/SkillIcons/passives/blankDex.dds":117,"Art/2DArt/SkillIcons/passives/blankInt.dds":118,"Art/2DArt/SkillIcons/passives/blankStr.dds":119,"Art/2DArt/SkillIcons/passives/blockstr.dds":120,"Art/2DArt/SkillIcons/passives/castspeed.dds":121,"Art/2DArt/SkillIcons/passives/chargedex.dds":122,"Art/2DArt/SkillIcons/passives/chargeint.dds":123,"Art/2DArt/SkillIcons/passives/chargestr.dds":124,"Art/2DArt/SkillIcons/passives/colddamage.dds":125,"Art/2DArt/SkillIcons/passives/coldresist.dds":126,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":128,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":129,"Art/2DArt/SkillIcons/passives/damage.dds":130,"Art/2DArt/SkillIcons/passives/damage_blue.dds":131,"Art/2DArt/SkillIcons/passives/damageaxe.dds":132,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":133,"Art/2DArt/SkillIcons/passives/damagespells.dds":134,"Art/2DArt/SkillIcons/passives/damagestaff.dds":135,"Art/2DArt/SkillIcons/passives/damagesword.dds":136,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":137,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":138,"Art/2DArt/SkillIcons/passives/energyshield.dds":139,"Art/2DArt/SkillIcons/passives/evade.dds":140,"Art/2DArt/SkillIcons/passives/firedamage.dds":141,"Art/2DArt/SkillIcons/passives/firedamageint.dds":142,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":143,"Art/2DArt/SkillIcons/passives/fireresist.dds":144,"Art/2DArt/SkillIcons/passives/flaskdex.dds":145,"Art/2DArt/SkillIcons/passives/flaskint.dds":146,"Art/2DArt/SkillIcons/passives/flaskstr.dds":147,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":148,"Art/2DArt/SkillIcons/passives/knockback.dds":149,"Art/2DArt/SkillIcons/passives/life1.dds":150,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":151,"Art/2DArt/SkillIcons/passives/lightningint.dds":152,"Art/2DArt/SkillIcons/passives/lightningstr.dds":153,"Art/2DArt/SkillIcons/passives/macedmg.dds":154,"Art/2DArt/SkillIcons/passives/mana.dds":155,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":156,"Art/2DArt/SkillIcons/passives/manastr.dds":157,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":158,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":159,"Art/2DArt/SkillIcons/passives/minionlife.dds":160,"Art/2DArt/SkillIcons/passives/minionstr.dds":161,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":162,"Art/2DArt/SkillIcons/passives/plusattribute.dds":163,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":164,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":165,"Art/2DArt/SkillIcons/passives/plusstrength.dds":166,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":167,"Art/2DArt/SkillIcons/passives/shieldblock.dds":168,"Art/2DArt/SkillIcons/passives/spellcritical.dds":169,"Art/2DArt/SkillIcons/passives/stun2h.dds":170,"Art/2DArt/SkillIcons/passives/stunstr.dds":171,"Art/2DArt/SkillIcons/passives/tempint.dds":172,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":173,"Art/2DArt/SkillIcons/passives/trapdamage.dds":174,"Art/2DArt/SkillIcons/passives/trapsmax.dds":175},"skills_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":1,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":2,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":3,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds":5,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":6,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":8,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds":9,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":10,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":11,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.dds":12,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds":13,"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds":14,"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds":15,"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds":16,"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds":17,"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds":18,"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds":19,"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds":20,"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds":21,"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds":22,"Art/2DArt/SkillIcons/passives/Annihilation.dds":23,"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds":24,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds":25,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds":26,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds":27,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":28,"Art/2DArt/SkillIcons/passives/AuraNotable.dds":29,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds":30,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds":31,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds":32,"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds":33,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds":34,"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds":35,"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds":36,"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds":37,"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds":38,"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds":39,"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds":40,"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds":41,"Art/2DArt/SkillIcons/passives/BattleRouse.dds":42,"Art/2DArt/SkillIcons/passives/Blood2.dds":43,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":44,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":45,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":46,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":47,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":48,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":49,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":50,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds":51,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":52,"Art/2DArt/SkillIcons/passives/BowDamage.dds":53,"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds":54,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":55,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":56,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":57,"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds":58,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":59,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":60,"Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.dds":61,"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds":62,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":63,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":64,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":65,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":75,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":92,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":93,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":94,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":95,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":96,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":100,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":103,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":104,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":105,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":106,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":107,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":109,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":120,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":121,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":122,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":123,"Art/2DArt/SkillIcons/passives/Harrier.dds":124,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":125,"Art/2DArt/SkillIcons/passives/Hearty.dds":126,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":127,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":128,"Art/2DArt/SkillIcons/passives/Hunter.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":133,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":143,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":144,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":153,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":160,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":161,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":164,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":165,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":168,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":176,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":177,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":185,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":186,"Art/2DArt/SkillIcons/passives/Meleerange.dds":187,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":188,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":189,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":195,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":196,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":197,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":198,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":199,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":207,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":222,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":223,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":224,"Art/2DArt/SkillIcons/passives/Poison.dds":225,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":232,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":233,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpseHand.dds":234,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":235,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":236,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":237,"Art/2DArt/SkillIcons/passives/RageNotable.dds":238,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":239,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":246,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":247,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":264,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":265,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":266,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":267,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":268,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":269,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":270,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":279,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":280,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":281,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":290,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":291,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":298,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":299,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":300,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":307,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":308,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":309,"Art/2DArt/SkillIcons/passives/Trap.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":316,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":317,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":318,"Art/2DArt/SkillIcons/passives/Warrior.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":326,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":327,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":334,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":335,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":336,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":337,"Art/2DArt/SkillIcons/passives/bodysoul.dds":338,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":339,"Art/2DArt/SkillIcons/passives/eagleeye.dds":340,"Art/2DArt/SkillIcons/passives/executioner.dds":341,"Art/2DArt/SkillIcons/passives/finesse.dds":342,"Art/2DArt/SkillIcons/passives/flameborn.dds":343,"Art/2DArt/SkillIcons/passives/frostborn.dds":344,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":345,"Art/2DArt/SkillIcons/passives/legstrength.dds":346,"Art/2DArt/SkillIcons/passives/lifeleech.dds":347,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":348,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":349,"Art/2DArt/SkillIcons/passives/steelspan.dds":350,"Art/2DArt/SkillIcons/passives/stormborn.dds":351,"Art/2DArt/SkillIcons/passives/strongarm.dds":352,"Art/2DArt/SkillIcons/passives/totemmax.dds":353,"Art/2DArt/SkillIcons/passives/vaalpact.dds":354},"skills_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"skills_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"skills_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":1,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":2,"Art/2DArt/SkillIcons/icongroundslam.dds":3,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":5,"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds":6,"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds":7,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds":8,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":9,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":10,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":11,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":12,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":13,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":14,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds":15,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds":16,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds":17,"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds":18,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds":19,"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds":20,"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds":21,"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds":22,"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds":23,"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds":24,"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds":25,"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds":26,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":27,"Art/2DArt/SkillIcons/passives/BucklerNode1.dds":28,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":29,"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds":30,"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds":31,"Art/2DArt/SkillIcons/passives/ChaosDamage.dds":32,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":33,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":34,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":35,"Art/2DArt/SkillIcons/passives/ColdFireNode.dds":36,"Art/2DArt/SkillIcons/passives/ColdLightningNode.dds":37,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":38,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":39,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":40,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":41,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":42,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":43,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":47,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":48,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":49,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":51,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":53,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":54,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":55,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":56,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":57,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":58,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":60,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":61,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":62,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":63,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":64,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":66,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":67,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":68,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":69,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":70,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":71,"Art/2DArt/SkillIcons/passives/MarkNode.dds":72,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":73,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":74,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":75,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":76,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":78,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":79,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":80,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":81,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":84,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":85,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":86,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":87,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":88,"Art/2DArt/SkillIcons/passives/Rage.dds":89,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":90,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":91,"Art/2DArt/SkillIcons/passives/Remnant.dds":92,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":93,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":94,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":95,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":96,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":97,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":98,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":99,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":100,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":102,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":103,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":104,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":105,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":106,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":107,"Art/2DArt/SkillIcons/passives/accuracydex.dds":108,"Art/2DArt/SkillIcons/passives/accuracystr.dds":109,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":110,"Art/2DArt/SkillIcons/passives/attackspeed.dds":111,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":112,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":113,"Art/2DArt/SkillIcons/passives/auraeffect.dds":114,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":115,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":116,"Art/2DArt/SkillIcons/passives/blankDex.dds":117,"Art/2DArt/SkillIcons/passives/blankInt.dds":118,"Art/2DArt/SkillIcons/passives/blankStr.dds":119,"Art/2DArt/SkillIcons/passives/blockstr.dds":120,"Art/2DArt/SkillIcons/passives/castspeed.dds":121,"Art/2DArt/SkillIcons/passives/chargedex.dds":122,"Art/2DArt/SkillIcons/passives/chargeint.dds":123,"Art/2DArt/SkillIcons/passives/chargestr.dds":124,"Art/2DArt/SkillIcons/passives/colddamage.dds":125,"Art/2DArt/SkillIcons/passives/coldresist.dds":126,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":128,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":129,"Art/2DArt/SkillIcons/passives/damage.dds":130,"Art/2DArt/SkillIcons/passives/damage_blue.dds":131,"Art/2DArt/SkillIcons/passives/damageaxe.dds":132,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":133,"Art/2DArt/SkillIcons/passives/damagespells.dds":134,"Art/2DArt/SkillIcons/passives/damagestaff.dds":135,"Art/2DArt/SkillIcons/passives/damagesword.dds":136,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":137,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":138,"Art/2DArt/SkillIcons/passives/energyshield.dds":139,"Art/2DArt/SkillIcons/passives/evade.dds":140,"Art/2DArt/SkillIcons/passives/firedamage.dds":141,"Art/2DArt/SkillIcons/passives/firedamageint.dds":142,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":143,"Art/2DArt/SkillIcons/passives/fireresist.dds":144,"Art/2DArt/SkillIcons/passives/flaskdex.dds":145,"Art/2DArt/SkillIcons/passives/flaskint.dds":146,"Art/2DArt/SkillIcons/passives/flaskstr.dds":147,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":148,"Art/2DArt/SkillIcons/passives/knockback.dds":149,"Art/2DArt/SkillIcons/passives/life1.dds":150,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":151,"Art/2DArt/SkillIcons/passives/lightningint.dds":152,"Art/2DArt/SkillIcons/passives/lightningstr.dds":153,"Art/2DArt/SkillIcons/passives/macedmg.dds":154,"Art/2DArt/SkillIcons/passives/mana.dds":155,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":156,"Art/2DArt/SkillIcons/passives/manastr.dds":157,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":158,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":159,"Art/2DArt/SkillIcons/passives/minionlife.dds":160,"Art/2DArt/SkillIcons/passives/minionstr.dds":161,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":162,"Art/2DArt/SkillIcons/passives/plusattribute.dds":163,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":164,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":165,"Art/2DArt/SkillIcons/passives/plusstrength.dds":166,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":167,"Art/2DArt/SkillIcons/passives/shieldblock.dds":168,"Art/2DArt/SkillIcons/passives/spellcritical.dds":169,"Art/2DArt/SkillIcons/passives/stun2h.dds":170,"Art/2DArt/SkillIcons/passives/stunstr.dds":171,"Art/2DArt/SkillIcons/passives/tempint.dds":172,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":173,"Art/2DArt/SkillIcons/passives/trapdamage.dds":174,"Art/2DArt/SkillIcons/passives/trapsmax.dds":175}},"groups":[{"nodes":[42761],"orbits":[0],"x":-15304.90389222,"y":-7077.31698124},{"nodes":[25092],"orbits":[0],"x":-14965.39389222,"y":-7075.62698124},null,{"nodes":[11335],"orbits":[0],"x":-14964.17389222,"y":-6594.24698124},{"nodes":[22541],"orbits":[0],"x":-16119.101927197,"y":4438.4370503224},{"nodes":[5386],"orbits":[0],"x":-16119.101927197,"y":4819.1370503224},{"nodes":[15275],"orbits":[0],"x":-14735.81389222,"y":-7075.62698124},{"nodes":[21284],"orbits":[0],"x":-14735.81389222,"y":-6824.05698124},{"nodes":[57959],"orbits":[0],"x":-15906.431927197,"y":4073.9070503224},{"nodes":[14960],"orbits":[0],"x":-15906.431927197,"y":4819.1370503224},{"nodes":[5571],"orbits":[0],"x":-14615.85389222,"y":-6148.10698124},{"nodes":[34313],"orbits":[0],"x":-14615.79389222,"y":-7507.15698124},{"nodes":[56505],"orbits":[0],"x":-14615.79389222,"y":-6937.15698124},{"nodes":[39659],"orbits":[0],"x":-14615.79389222,"y":-6709.09698124},{"nodes":[60298],"orbits":[0],"x":-15694.431927197,"y":4438.4370503224},{"nodes":[47236],"orbits":[0],"x":-15694.431927197,"y":4819.1370503224},{"nodes":[47184],"orbits":[0],"x":-15482.431927197,"y":4438.4370503224},{"nodes":[20895],"orbits":[0],"x":-15482.431927197,"y":4819.1370503224},{"nodes":[64962],"orbits":[0],"x":-15479.931927197,"y":5558.0570503224},{"nodes":[110],"orbits":[0],"x":-15422.891927197,"y":5717.9970503224},{"nodes":[52374],"orbits":[0],"x":-14144.72389222,"y":-7263.50698124},{"nodes":[30904],"orbits":[0],"x":-14144.72389222,"y":-6824.05698124},{"nodes":[32905,55135],"orbits":[6],"x":-14123.92389222,"y":-6819.93698124},{"nodes":[22908],"orbits":[0],"x":-15325.041927197,"y":5867.8370503224},{"nodes":[48537],"orbits":[0],"x":-15270.431927197,"y":4438.4370503224},{"nodes":[63401],"orbits":[0],"x":-15270.391927197,"y":4073.9070503224},{"nodes":[8525],"orbits":[0],"x":-15190.211927197,"y":5992.6870503224},{"nodes":[49380],"orbits":[0],"x":-14606.81101513,"y":7334.015606703},{"nodes":[58704],"orbits":[0],"x":-14606.81101513,"y":7697.015606703},{"nodes":[38769],"orbits":[0],"x":-14606.81101513,"y":8060.015606703},{"nodes":[36659],"orbits":[0],"x":-14539.78101513,"y":7083.845606703},{"nodes":[9997],"orbits":[0],"x":-15031.611927197,"y":6079.3970503224},{"nodes":[6127],"orbits":[0],"x":-14450.05101513,"y":7505.725606703},{"nodes":[18585],"orbits":[0],"x":-14450.05101513,"y":7918.875606703},{"nodes":[378],"orbits":[0],"x":-13677.60389222,"y":-7508.15698124},{"nodes":[4197],"orbits":[0],"x":-13677.60389222,"y":-6937.15698124},{"nodes":[37782],"orbits":[0],"x":-13677.60389222,"y":-6709.11698124},{"nodes":[47190],"orbits":[0],"x":-13677.60389222,"y":-6148.10698124},{"nodes":[13772],"orbits":[0],"x":-14861.501927197,"y":6123.0170503224},{"nodes":[40915],"orbits":[0],"x":-14352.33101513,"y":7083.805606703},{"nodes":[5852],"orbits":[9],"x":-14787.651927197,"y":4798.3970503224},{"nodes":[1994],"orbits":[0],"x":-14285.47101513,"y":8597.995606703},{"nodes":[48682],"orbits":[0],"x":-14285.29101513,"y":7334.015606703},{"nodes":[39411],"orbits":[0],"x":-14285.29101513,"y":7697.015606703},{"nodes":[25935],"orbits":[0],"x":-14285.29101513,"y":8423.795606703},{"nodes":[39365],"orbits":[0],"x":-14284.67101513,"y":8060.015606703},{"nodes":[9988],"orbits":[0],"x":-14769.631927197,"y":5458.3970503224},{"nodes":[25438],"orbits":[0],"x":-14678.231927197,"y":6123.0170503224},{"nodes":[49340],"orbits":[0],"x":-14511.001927197,"y":6079.3970503224},{"nodes":[35535],"orbits":[0],"x":-13664.02358899,"y":-9880.4330959001},{"nodes":[33812],"orbits":[6],"x":-13880.21101513,"y":8004.295606703},{"nodes":[60913],"orbits":[0],"x":-14353.191927197,"y":5992.6870503224},{"nodes":[47097],"orbits":[0],"x":-13831.53101513,"y":8677.045606703},{"nodes":[23005],"orbits":[0],"x":-13827.72101513,"y":8346.605606703},{"nodes":[61039],"orbits":[0],"x":-14229.211927197,"y":5867.8370503224},{"nodes":[20195],"orbits":[0],"x":-14136.951927197,"y":5717.9970503224},{"nodes":[16276],"orbits":[0],"x":-14062.601927197,"y":5558.0570503224},{"nodes":[16204],"orbits":[0],"x":-13233.22358899,"y":-9717.0130959001},{"nodes":[10072],"orbits":[0],"x":-13456.74101513,"y":8286.915606703},{"nodes":[52068],"orbits":[0],"x":-13427.83101513,"y":8705.925606703},null,{"nodes":[42253],"orbits":[0],"x":-12936.00358899,"y":-9284.5530959001},{"nodes":[33824],"orbits":[0],"x":-12936.00358899,"y":-8851.5530959001},{"nodes":[54512],"orbits":[0],"x":-12658.85358899,"y":-8617.4730959001},{"nodes":[58646,28022,61722,1855],"orbits":[6,8],"x":-12394.22358899,"y":-9283.8730959001},{"nodes":[35762],"orbits":[0],"x":-11956.16358899,"y":-9717.0130959001},{"nodes":[35920],"orbits":[0],"x":-11956.16358899,"y":-9241.2030959001},{"nodes":[56933],"orbits":[0],"x":-11956.16358899,"y":-8744.5430959001},{"nodes":[24807],"orbits":[0],"x":-12395.901045607,"y":9837.0838448507},{"nodes":[61983],"orbits":[0],"x":-11751.52358899,"y":-9863.9930959001},{"nodes":[46654],"orbits":[0],"x":-11751.52358899,"y":-9304.3030959001},{"nodes":[28745],"orbits":[0],"x":-11486.44358899,"y":-10044.1730959},{"nodes":[26063],"orbits":[0],"x":-11483.26358899,"y":-9396.9630959001},{"nodes":[62523],"orbits":[0],"x":-11481.39358899,"y":-8744.5730959001},{"nodes":[38014],"orbits":[0],"x":-11998.951045607,"y":9614.1838448507},{"nodes":[42275],"orbits":[0],"x":-11821.031045607,"y":10122.973844851},{"nodes":[3762,59540,30115,60634,35453,13715,19424,27418,51690,29323,32534],"orbits":[4,5,6,7,9],"x":-11560.091045607,"y":10394.963844851},{"nodes":[12000],"orbits":[0],"x":-11494.591045607,"y":11397.883844851},{"nodes":[59372],"orbits":[0],"x":-11454.221045607,"y":10756.733844851},{"nodes":[56842],"orbits":[0],"x":-11100.601045607,"y":11172.483844851},null,null,null,null,null,{"nodes":[58058,21218,60708,45226,11666,13950,7066,23932,8423,17894],"orbits":[0,2,3,4,5],"x":-12135.66,"y":-1230.15},{"nodes":[47753],"orbits":[0],"x":-11896.79,"y":-1926.84},{"nodes":[18353,42762,11984,20496,3544,19953,50142,58197,35980],"orbits":[0,3,4,6,7],"x":-11843.45,"y":816.54},{"nodes":[36025,57079,44309,44485,829,19966,43385,22221,7553,64139,15842],"orbits":[2,3,5,6,7],"x":-11682.6,"y":-5712.79},{"nodes":[38320],"orbits":[0],"x":-11504.95,"y":-1807.32},{"nodes":[28201,56174,1887,10713,16615,10636,38697,20391,16947,18713],"orbits":[0,3,4],"x":-11380.71,"y":-3346},{"nodes":[32845,23630,64819,31746,51868,19794,17885,11392],"orbits":[3,4,5],"x":-11338.93,"y":-2050.8},{"nodes":[65,36504,55260,19751,15698,35618],"orbits":[7,2],"x":-11110.55,"y":-639.7},{"nodes":[28589,7395,38670,30007,12565,3245,30300,3188,46051],"orbits":[0,1,2,3],"x":-11072.17,"y":1430.79},{"nodes":[55190],"orbits":[1],"x":-10939.38,"y":88.39},{"nodes":[41012],"orbits":[0],"x":-10916.6,"y":-2156.56},{"nodes":[24630],"orbits":[0],"x":-10708.76,"y":2443.13},{"nodes":[52669],"orbits":[0],"x":-10699.17,"y":174.47},{"nodes":[47469],"orbits":[0],"x":-10695.41,"y":165.04},{"nodes":[47387],"orbits":[0],"x":-10694.63,"y":-176.71},{"nodes":[63482],"orbits":[0],"x":-10692.04,"y":-175.72},{"nodes":[1200],"orbits":[4],"x":-10682.77,"y":445.3},{"nodes":[13326],"orbits":[0],"x":-10676.83,"y":493.76},{"nodes":[47080],"orbits":[0],"x":-10673.33,"y":-593.4},{"nodes":[28982],"orbits":[0],"x":-10667.72,"y":-1117.08},{"nodes":[64489,25162,6952,750],"orbits":[2],"x":-10654.45,"y":2047.3},{"nodes":[3348],"orbits":[0],"x":-10649.96,"y":-3724.53},{"nodes":[48314],"orbits":[0],"x":-10649.96,"y":-3509.98},{"nodes":[43941],"orbits":[0],"x":-10648.12,"y":-3316.27},{"nodes":[17348,11433,15522,13893,11275,42390,44753,63608],"orbits":[0,3,4,7],"x":-10615.17,"y":3051.94},{"nodes":[440],"orbits":[0],"x":-10594.08,"y":-4757.69},{"nodes":[14509,589,46399,50820,65472,9323,40395],"orbits":[0,2,3,7],"x":-10593.41,"y":-2769.62},{"nodes":[18593],"orbits":[0],"x":-10577.37,"y":-391.04},{"nodes":[65192,33423,15672,6999,59908,36197,27096,45400,63170,13691],"orbits":[0,3,7],"x":-10575.67,"y":-6386.37},{"nodes":[37113],"orbits":[0],"x":-10559.05,"y":-803.16},{"nodes":[8850],"orbits":[0],"x":-10520.26,"y":-3933.98},{"nodes":[61896],"orbits":[0],"x":-10520.26,"y":-3710.82},{"nodes":[2617],"orbits":[0],"x":-10463.58,"y":671.22},{"nodes":[61393],"orbits":[0],"x":-10448.6,"y":-3316.27},{"nodes":[55897],"orbits":[0],"x":-10443.83,"y":-4121.17},{"nodes":[50767,20289],"orbits":[0,2],"x":-10439.87,"y":-3500.92},{"nodes":[14432],"orbits":[0],"x":-10437.87,"y":-4316.54},{"nodes":[41768],"orbits":[0],"x":-10398.41,"y":-2166.4},{"nodes":[55188],"orbits":[0],"x":-10390.83,"y":399.02},{"nodes":[17349,5728,23940,14342,49256,14439,58138,46384,33402,58125,6133,10681,27581,50510],"orbits":[1,3,4,7],"x":-10374.96,"y":-5305.09},{"nodes":[55888],"orbits":[0],"x":-10371.25,"y":-4590.02},{"nodes":[53354],"orbits":[0],"x":-10368.75,"y":-3710.82},{"nodes":[33408],"orbits":[0],"x":-10368.59,"y":-3933.98},{"nodes":[30141],"orbits":[0],"x":-10364.84,"y":5.97},{"nodes":[59785],"orbits":[0],"x":-10358.72,"y":2132.05},{"nodes":[20989,42984,21184,20251],"orbits":[1,3,7],"x":-10288.58,"y":-393.3},{"nodes":[14511,54999,64900,30780,53261,18207,17112,5410,4331],"orbits":[2,3,4,7],"x":-10266.25,"y":5666.88},{"nodes":[36250],"orbits":[0],"x":-10252.92,"y":-3509.98},{"nodes":[56368],"orbits":[0],"x":-10251.16,"y":-3312.73},{"nodes":[49214],"orbits":[0],"x":-10248.76,"y":-3724.53},{"nodes":[375,12276,14693,13937,13980,17791,526,2645,52829,14832],"orbits":[0,4,7],"x":-10240.12,"y":4633.75},{"nodes":[18684],"orbits":[0],"x":-10198.25,"y":3732.13},{"nodes":[18746],"orbits":[0],"x":-10160.38,"y":-4757.69},{"nodes":[51749],"orbits":[0],"x":-10158.37,"y":296.7},{"nodes":[29611],"orbits":[0],"x":-10134.33,"y":-3151.93},{"nodes":[33590],"orbits":[0],"x":-10128.99,"y":5639.94},{"nodes":[21291,32836,675,13489,47517],"orbits":[0,2,3],"x":-10100.67,"y":1717.72},{"nodes":[11656,9106,53822,54937],"orbits":[1,7],"x":-10089.33,"y":1201.49},{"nodes":[37484],"orbits":[0],"x":-10073.8,"y":-2358.14},{"nodes":[9352,31295,32071,49111,39190,8800,15427,57379],"orbits":[0,3],"x":-10026.06,"y":-1117.08},{"nodes":[27296],"orbits":[0],"x":-10009.75,"y":3405.64},{"nodes":[31554,49929,31757],"orbits":[6,5],"x":-9932.89,"y":-7295.29},{"nodes":[51535,18397,55063,8852,4139],"orbits":[0,2,3],"x":-9927.8,"y":2362.11},{"nodes":[9328],"orbits":[0],"x":-9903.54,"y":-6537.44},{"nodes":[58496],"orbits":[0],"x":-9903.54,"y":-6355.19},{"nodes":[39598,3949,28613,15247,46683],"orbits":[3,2],"x":-9851.18,"y":2995.92},{"nodes":[1130,50847,33393,42914],"orbits":[0,4,5,7],"x":-9825.21,"y":-3241.28},{"nodes":[32474],"orbits":[0],"x":-9791.13,"y":-4500.02},{"nodes":[4442,59886,62313,62034,55931,33939,6872],"orbits":[0,3,4,5],"x":-9765.33,"y":710.66},{"nodes":[53123,43250,34818,22697,8421,35404,5862,54982],"orbits":[1,2,7],"x":-9735.55,"y":-2055.78},{"nodes":[14026],"orbits":[0],"x":-9717.96,"y":-6634.67},{"nodes":[37187],"orbits":[0],"x":-9717.96,"y":-6452.32},{"nodes":[55152,42710,65287,56996,9568,41186,58117,13839,5580],"orbits":[0,2,3,4,5],"x":-9716.02,"y":6484.44},{"nodes":[59777],"orbits":[0],"x":-9701.92,"y":4489.54},{"nodes":[62670,41497,30554,21164,18245,10055],"orbits":[0,7],"x":-9699.83,"y":-2798.91},{"nodes":[917,44069,65160,21670,29358],"orbits":[1,2,3],"x":-9636.83,"y":3334.63},{"nodes":[30553],"orbits":[0],"x":-9621.33,"y":3036.16},{"nodes":[30457,13293,54416,19236,60274],"orbits":[0,7],"x":-9598.42,"y":-542.54},{"nodes":[18448],"orbits":[0],"x":-9598.42,"y":4},{"nodes":[19563,34782,34490,18972],"orbits":[0,2,3,7],"x":-9524.42,"y":-6101.02},{"nodes":[47931],"orbits":[0],"x":-9524.42,"y":-5501.21},{"nodes":[36100],"orbits":[0],"x":-9522.16,"y":-6739.15},{"nodes":[63085],"orbits":[0],"x":-9522.16,"y":-6562.27},{"nodes":[31290,37609,60332,32764,21213],"orbits":[0,7],"x":-9479.92,"y":-3960.99},{"nodes":[61942],"orbits":[0],"x":-9449.45,"y":-4442.32},{"nodes":[53719],"orbits":[0],"x":-9427.5,"y":5442.15},{"nodes":[10362,10830,9163,59589,44952,6153,52659],"orbits":[0,3,7],"x":-9363.33,"y":4400.29},{"nodes":[63678],"orbits":[0],"x":-9318.59,"y":-6631.85},{"nodes":[43460],"orbits":[0],"x":-9318.59,"y":-6434.75},{"nodes":[61847],"orbits":[0],"x":-9265.01,"y":-2982.99},{"nodes":[17587,59039,28223,6100,20963],"orbits":[1,2,4,5,7],"x":-9247.14,"y":-875.71},{"nodes":[29098,32549,10727,56237,43588,61835,1825],"orbits":[0,2,3],"x":-9224.21,"y":-4865.33},{"nodes":[41935],"orbits":[0],"x":-9155.13,"y":-6541.86},{"nodes":[6735],"orbits":[0],"x":-9155.13,"y":-6351.08},{"nodes":[33203,55033,17059,6874,34940],"orbits":[2,3,4],"x":-9153.31,"y":-1318.15},{"nodes":[37846],"orbits":[0],"x":-9079.06,"y":2754.99},{"nodes":[65154,2575,56757,11292],"orbits":[0,2],"x":-9064.75,"y":362.33},{"nodes":[49370,32148,8535,43443],"orbits":[0,2],"x":-9058.33,"y":-2717.44},{"nodes":[6502],"orbits":[0],"x":-9056.17,"y":-2715.81},{"nodes":[41747],"orbits":[0],"x":-9050.55,"y":-3180.38},{"nodes":[53440,52300,11178,62439,57880,11306,6269,45990,39448,24224],"orbits":[0,2,3],"x":-9040.02,"y":6723.44},{"nodes":[33452,57471,53823,23192,21684,1214,42578,52796,10508,30371,27687],"orbits":[2,3,4,5,7],"x":-8945,"y":1954.01},{"nodes":[11525,64724,53329,53030,30334,9324,43939,56214,48267],"orbits":[0,2,3],"x":-8860.46,"y":-5419.21},{"nodes":[10824,25648,43077,58894,15825,45736,26592,30393],"orbits":[0,2,3,4,7],"x":-8850.17,"y":-2069.46},{"nodes":[65042,60068,55925,37869,28892,13845,28408,21413,37290],"orbits":[0,1,3,7],"x":-8776.24,"y":-545.92},{"nodes":[61811,44452,21809,19162,34143,36408,15141],"orbits":[6,5],"x":-8734.51,"y":-7310.37},{"nodes":[21387],"orbits":[0],"x":-8724.91,"y":5036.5},{"nodes":[51129,26437,15892],"orbits":[3,7],"x":-8699.47,"y":5504.76},{"nodes":[52],"orbits":[0],"x":-8682.17,"y":-4609.87},{"nodes":[39131],"orbits":[0],"x":-8680.79,"y":-5014.13},{"nodes":[47606,28981,34871,27980,270,56219,52764],"orbits":[0,1,2,7],"x":-8664.77,"y":-6794.46},{"nodes":[33722],"orbits":[0],"x":-8664.77,"y":-6378.53},{"nodes":[47173,51832,6514,31373,47722,12418,50561,3988],"orbits":[0,2,3,4],"x":-8647.35,"y":4650.55},{"nodes":[10100],"orbits":[0],"x":-8622.21,"y":522.51},{"nodes":[23307],"orbits":[0],"x":-8621.47,"y":988.33},{"nodes":[27082],"orbits":[0],"x":-8618.25,"y":6301.67},{"nodes":[63243,48160,13108,49543,37778,24929],"orbits":[2,3,5],"x":-8606.47,"y":-3419.53},{"nodes":[8460,40328,62200,9528,38053,29762,28564],"orbits":[0,2,3],"x":-8509.27,"y":-1418.16},{"nodes":[47263],"orbits":[0],"x":-8484.8,"y":9.69},{"nodes":[51210],"orbits":[0],"x":-8483,"y":-2227.56},{"nodes":[61404,38923,44902,61429,511],"orbits":[0,7],"x":-8468.97,"y":-2457.13},{"nodes":[13482],"orbits":[0],"x":-8394.02,"y":5599.53},{"nodes":[22626,45227,30136],"orbits":[3,7],"x":-8335.67,"y":5293.13},{"nodes":[42111,48717],"orbits":[7,3],"x":-8316.62,"y":5282.9},{"nodes":[25300],"orbits":[0],"x":-8308.16,"y":504.36},{"nodes":[55048],"orbits":[0],"x":-8287.77,"y":-6378.53},{"nodes":[25315,25591,19820,5686],"orbits":[2],"x":-8258.71,"y":2390.73},{"nodes":[55635,57089,53893,55450,21784,50118,51807,52440,34443],"orbits":[0,1,2,7],"x":-8253.67,"y":-5967.44},{"nodes":[59945],"orbits":[0],"x":-8233.08,"y":1737.23},{"nodes":[12005,28489,56890,33562,41609,31010,27611,27216,30546,57273,60619,26104,43282,55672,32186,541],"orbits":[0,2,4,5,6,7],"x":-8221.2,"y":-7830.17},{"nodes":[50392],"orbits":[0],"x":-8217.79,"y":6324.33},{"nodes":[38365,61142,34626,46499],"orbits":[0,2],"x":-8210.95,"y":2826.15},{"nodes":[32349],"orbits":[0],"x":-8206.04,"y":7089.13},{"nodes":[61796,38066,8260,10286],"orbits":[7],"x":-8193.04,"y":453.74},{"nodes":[31779,20791,13777,38532],"orbits":[0,2],"x":-8166.54,"y":-4543.78},{"nodes":[38707],"orbits":[0],"x":-8161.98,"y":-1195.09},{"nodes":[24855,17138,53308,51903,39347,48014,55058,63790],"orbits":[0,3,4,5],"x":-8158.65,"y":3447.68},{"nodes":[11741],"orbits":[3],"x":-8149.73,"y":-4707.52},{"nodes":[41821],"orbits":[0],"x":-8141.21,"y":7641.73},{"nodes":[24801,34305,40736,8171,45162,63031,15606,31545],"orbits":[3,4,7],"x":-8131.61,"y":7618.79},{"nodes":[52220,60064,3027,54228,64240],"orbits":[0,2],"x":-8115.09,"y":-155.26},{"nodes":[61409,24646],"orbits":[3,7],"x":-8111.51,"y":6128.94},{"nodes":[59061,2672,8509,45569,55596,28267,35085],"orbits":[0,2,3],"x":-8101.59,"y":-5348.53},{"nodes":[8272],"orbits":[0],"x":-1028.4703459825,"y":15926.500291259},{"nodes":[21453],"orbits":[0],"x":-8091.65,"y":379.36},{"nodes":[63114],"orbits":[3],"x":-8046.92,"y":4659.56},{"nodes":[13075],"orbits":[0],"x":-8021.19,"y":6127.75},{"nodes":[60916,41701,11027,59433],"orbits":[0,2],"x":-8013.96,"y":-4798.6},{"nodes":[4140],"orbits":[0],"x":-8008.17,"y":-7035.15},{"nodes":[40105,30258,20558],"orbits":[2],"x":-8001.4,"y":-2679.74},{"nodes":[54849,3723,16413,17092,10484,42660],"orbits":[0,2],"x":-7994.15,"y":-746.39},{"nodes":[49259,25014,62360,36333,50228,20511,42059,53804,56112],"orbits":[0,3,4],"x":-7989.53,"y":-3652.59},{"nodes":[35048,26176,43650,21070,57388,53386,9698],"orbits":[1,2,3,7],"x":-7966.51,"y":4130.84},{"nodes":[49734],"orbits":[0],"x":-7956.51,"y":-1961.91},{"nodes":[39102,43486,13228,54289],"orbits":[0,2],"x":-7915.44,"y":-3108.31},{"nodes":[44017],"orbits":[0],"x":-7860.53,"y":2931.66},{"nodes":[41147,23797,31370,32448],"orbits":[2],"x":-7858.6,"y":6648.73},{"nodes":[4621,54297,24993,43721,9554,11160,49769,16332,1628,57202,3681,57386,8723,49258,25678,21374],"orbits":[2,3,4,6,7],"x":-7842.42,"y":-9697.42},{"nodes":[3446],"orbits":[0],"x":-7829.04,"y":7089.13},{"nodes":[51737],"orbits":[0],"x":-725.97034598253,"y":16707.190291259},{"nodes":[4527],"orbits":[0],"x":-7762.96,"y":2567.51},{"nodes":[20115],"orbits":[0],"x":-7745.48,"y":-2749.55},{"nodes":[51812,62757,4673,10047,46741],"orbits":[0,2],"x":-7735.13,"y":-1427.91},{"nodes":[64807,46674,35921,57405,5642],"orbits":[2],"x":-7728.69,"y":1935.05},{"nodes":[58855],"orbits":[0],"x":-7717.94,"y":1429.4},{"nodes":[53527,4985,64525,45327,7204,10251],"orbits":[0,2,3,7],"x":-7711.19,"y":1435.92},{"nodes":[35369,1459,47252,17282,43579],"orbits":[0,1,7],"x":-7642.03,"y":-4244.19},{"nodes":[2946,62518,4547,41414,41363],"orbits":[0,1,3,4,7],"x":-7612.36,"y":8202.29},{"nodes":[29197,23436,26300,11428],"orbits":[2,4,5,7],"x":-7605.69,"y":-5466.48},{"nodes":[15913,7542,36737,61362,28516,32599],"orbits":[2],"x":-7585.53,"y":-2160.61},{"nodes":[17646],"orbits":[0],"x":-515.80034598253,"y":15646.330291259},{"nodes":[51821],"orbits":[0],"x":-7574.92,"y":-3386.05},{"nodes":[31159,54962,35849,46017,12382],"orbits":[0,1,7],"x":-7523.03,"y":-4513.11},{"nodes":[43653,48171,26518,40803,3218],"orbits":[4],"x":-7479.31,"y":-755.12},{"nodes":[58088,16620,41442,21161,64324,10500,26479,6900,45751],"orbits":[2,3,4,5],"x":-7472.17,"y":6094.06},{"nodes":[9040],"orbits":[0],"x":-7472.17,"y":6133.69},{"nodes":[50616],"orbits":[0],"x":-7470.27,"y":4966.83},{"nodes":[46665],"orbits":[0],"x":-7469.65,"y":409.35},{"nodes":[18505,18496,18073,36027,49952,45090,13856],"orbits":[7],"x":-7463.54,"y":4960.9},{"nodes":[24339,7060,28214,1973,8607,53131],"orbits":[7,2],"x":-7459.86,"y":371.68},{"nodes":[39710],"orbits":[0],"x":-7441.19,"y":-3885.12},{"nodes":[52298],"orbits":[0],"x":-7437.53,"y":3131.16},{"nodes":[53216,52126,21885,1352],"orbits":[0,2,7],"x":-7437.53,"y":3624.13},{"nodes":[45202],"orbits":[0],"x":-7414.29,"y":-8107.33},{"nodes":[34317,8145,2344,23331,30959,31778,12992,16485,296],"orbits":[0,1,2,7],"x":-7383.29,"y":-7035.15},{"nodes":[58295],"orbits":[2],"x":-7366.84,"y":84.99},{"nodes":[47242,34493,48565,23078,65328,54964,49593,4725,17229],"orbits":[0,2,3,4,7],"x":-7350.17,"y":-6377.15},{"nodes":[26196],"orbits":[0],"x":-7344.38,"y":-4246.42},{"nodes":[40117,31848,1286,21089,17903,54701,64023],"orbits":[0,7],"x":-7296.92,"y":2335.67},{"nodes":[24430,47191,3601,8554,63037],"orbits":[4],"x":-7251.15,"y":-371.11},{"nodes":[50629],"orbits":[0],"x":-7241.96,"y":-651.55},{"nodes":[44298],"orbits":[0],"x":-7240.77,"y":-656.16},{"nodes":[17725,24420,33829,18737,9221,9442,37260,30395],"orbits":[0,1,2,7],"x":-7188.4,"y":-2426.53},{"nodes":[12232,36556,872,1502,11087,42635],"orbits":[0,2],"x":-7167.85,"y":-3642.67},{"nodes":[19936],"orbits":[0],"x":-7152.71,"y":-4265.26},{"nodes":[28774,17505,52106,2999,44005,10295,27733],"orbits":[4,5,6],"x":-7140.48,"y":-10437.39},{"nodes":[35966,41105,38835,4091,38368,54288,44316],"orbits":[0,1,7],"x":-7138.53,"y":-5046.81},{"nodes":[11048,47420,53444,9065,752,64653,52676],"orbits":[1,2,4,7],"x":-7123.17,"y":-8949.18},{"nodes":[50062,64357,6416,506,37641],"orbits":[0,2],"x":-7080.06,"y":-3066.48},{"nodes":[23930,30662,45383,26291,46024],"orbits":[4],"x":-7073.34,"y":-821.9},{"nodes":[65509,41384,51672,31955],"orbits":[3],"x":-7070.17,"y":-3075.76},{"nodes":[59093],"orbits":[0],"x":-7050.15,"y":-8009.76},{"nodes":[61973,38601,43131,40719,61897,34501,7120],"orbits":[6,5,9,8],"x":22.379654017468,"y":15546.750291259},{"nodes":[25172],"orbits":[0],"x":22.379654017468,"y":16596.080291259},{"nodes":[46535],"orbits":[0],"x":26.729654017468,"y":15646.330291259},{"nodes":[32559],"orbits":[0],"x":26.729654017468,"y":15948.310291259},{"nodes":[3704],"orbits":[0],"x":26.729654017468,"y":16229.120291259},{"nodes":[52993,9414,32768,8107,18081,14980],"orbits":[0,2,3,7],"x":-7038.4,"y":-1699.91},{"nodes":[25229,7972,21390,5663],"orbits":[0,2],"x":-7025.42,"y":7409.4},{"nodes":[62498],"orbits":[0],"x":-7025.42,"y":7906.98},{"nodes":[12255,989,26416,27740,35792],"orbits":[2],"x":-7025.42,"y":8507.21},{"nodes":[1040],"orbits":[0],"x":-6981.11,"y":-4477.76},{"nodes":[13693],"orbits":[0],"x":-6958.05,"y":-4267.12},{"nodes":[45632,25503,27068,35831,27388,28578,904,24551],"orbits":[0,7],"x":-6938.5,"y":-5539.42},{"nodes":[26725],"orbits":[0],"x":-6934.34,"y":4002.72},{"nodes":[31805,44461,54998,29041,31388,51394,29993],"orbits":[1,2,3,7],"x":-6908.33,"y":2821.11},{"nodes":[43778,36894,17330,3698,61938,14515,61927,33137],"orbits":[2,3],"x":-6902.9,"y":6655.38},{"nodes":[21568],"orbits":[0],"x":-6880.96,"y":-4712.38},{"nodes":[1170,53089,16626,64443,41126,10474,53785,9918,62023],"orbits":[0,2,3],"x":-6862.15,"y":988.33},{"nodes":[21127,35974,51105,5398,22484,51820,38124,6355,14110,48979],"orbits":[1,2,3,4,6,7],"x":-6849.4,"y":-7455.59},{"nodes":[48935,61367,64239,2733],"orbits":[0,2,3],"x":-6846.57,"y":-239.4},{"nodes":[16249],"orbits":[0],"x":2206.941488019,"y":15163.039415167},{"nodes":[50757,62303,33045,59938],"orbits":[0,4,7],"x":-6813.53,"y":-3551.71},{"nodes":[8553],"orbits":[0],"x":-6788.28,"y":-4451.87},{"nodes":[34331],"orbits":[0],"x":-6782.96,"y":-4268.65},{"nodes":[20390],"orbits":[0],"x":-6782,"y":-4265.36},{"nodes":[290],"orbits":[0],"x":-6781.38,"y":-4090.54},{"nodes":[40511,58368,29985,61113,53910,9212],"orbits":[0,1,7],"x":-6753.23,"y":-6208.67},{"nodes":[25031,17999,63979,9750,1169,42026,63813],"orbits":[0,7],"x":-6714.29,"y":9037.67},{"nodes":[11464,27405,30781,63772,37888,29663],"orbits":[2,3,5,6,7],"x":-6663.73,"y":-1193.34},{"nodes":[5800,45075,43149,43507,40292],"orbits":[1,2,7],"x":-6629.67,"y":5303.33},{"nodes":[32560],"orbits":[0],"x":2418.441488019,"y":15529.369415167},{"nodes":[37619],"orbits":[0],"x":-6598.9,"y":-4269.04},{"nodes":[25890,26863,54378,58198],"orbits":[0,2],"x":-6580.5,"y":-8082.37},{"nodes":[51328],"orbits":[0],"x":-6534.71,"y":-4055.73},{"nodes":[6935],"orbits":[0],"x":560.54965401747,"y":15646.330291259},{"nodes":[10371],"orbits":[0],"x":2527.921488019,"y":15120.769415167},{"nodes":[11248],"orbits":[0],"x":-6473.32,"y":-5120.01},{"nodes":[53921,40596,58838],"orbits":[5],"x":-6456.61,"y":5137.09},{"nodes":[22975],"orbits":[0],"x":-6409.48,"y":4911.79},{"nodes":[15044],"orbits":[0],"x":2629.941488019,"y":15895.699415167},{"nodes":[22270,1144,12471,19942,42070,26148],"orbits":[0,2],"x":-6401.88,"y":-5623.51},{"nodes":[37415],"orbits":[0],"x":-6394.63,"y":-4266.42},{"nodes":[21861,52807,61836,60551,65243,46421],"orbits":[0,2],"x":-6391.25,"y":-308.27},{"nodes":[3663],"orbits":[0],"x":-6370.88,"y":-1832.43},{"nodes":[43711,5544,14459],"orbits":[2],"x":-6370.69,"y":420.58},{"nodes":[45354,64948,48264,12964],"orbits":[0,2],"x":-6369.67,"y":-4773.94},{"nodes":[38921,49023,49198,12817,22967],"orbits":[1,2,3,7],"x":-6353.65,"y":4501.4},{"nodes":[34187,20848,32239,16721,9009,7128,18270,45874],"orbits":[0,3,4,5,6,7],"x":-6348.3,"y":-6484.17},{"nodes":[38596],"orbits":[0],"x":-6300.11,"y":-8244.85},{"nodes":[18678],"orbits":[0],"x":2726.7151094136,"y":-16520.239541646},{"nodes":[63002],"orbits":[0],"x":2726.7151094136,"y":-14316.419541646},{"nodes":[42845],"orbits":[0],"x":2739.421488019,"y":15487.109415167},{"nodes":[20830],"orbits":[0],"x":799.83965401747,"y":16707.190291259},{"nodes":[32777,17625,59710,21567,18822,10873,52618,47790],"orbits":[1,2,3,7],"x":-6239.27,"y":-3222.72},{"nodes":[39621,14176,18004,8881],"orbits":[0,2,3,4],"x":-6234.37,"y":3368.19},{"nodes":[11014,16784,26339,62609,18419,25312,24259,23667,64405,31650,16051,31017],"orbits":[0,1,3,5,7],"x":-6210.4,"y":7289.19},{"nodes":[51561],"orbits":[0],"x":-6210.4,"y":8758.64},{"nodes":[23382],"orbits":[0],"x":-6208.88,"y":-8867.25},{"nodes":[19674],"orbits":[3],"x":-6203.21,"y":3942.14},{"nodes":[10731],"orbits":[0],"x":2828.6351094136,"y":-16082.639541646},{"nodes":[27439],"orbits":[0],"x":-6186.82,"y":5297.48},{"nodes":[11786,7716,29447,18157],"orbits":[2],"x":-6167.94,"y":9255.09},{"nodes":[29162],"orbits":[0],"x":2869.651488019,"y":16135.409415167},{"nodes":[8982,58926,64572,14952,21985,48925,54887],"orbits":[0,3,7],"x":-6160.01,"y":-9509.97},{"nodes":[3363,38433,4970,23195,55375,62748],"orbits":[0,2],"x":-6116.54,"y":-6010.78},{"nodes":[41493],"orbits":[0],"x":-6116.29,"y":3951.76},{"nodes":[31925],"orbits":[0],"x":-6073,"y":-8397.31},{"nodes":[35408,24767],"orbits":[2],"x":-6070.48,"y":-8693.42},{"nodes":[41180,6222,17260,61703,9037,57608,32353,65189],"orbits":[0,2,3,7],"x":-6051.67,"y":-646.18},{"nodes":[29126,28770,479],"orbits":[0,7],"x":-6036.75,"y":-1514.07},{"nodes":[21017,26969,16861,55789,41665,27303,50562,43142],"orbits":[0,3,4,5,7],"x":-6026.21,"y":1197.89},{"nodes":[14654],"orbits":[0],"x":-6014.13,"y":4},{"nodes":[54838],"orbits":[0],"x":3024.181488019,"y":14820.959415167},{"nodes":[4245],"orbits":[0],"x":3024.181488019,"y":15243.969415167},{"nodes":[44746],"orbits":[0],"x":3024.181488019,"y":15666.969415167},{"nodes":[28153],"orbits":[0],"x":3040.6851094136,"y":-15421.219541646},{"nodes":[35977,38130,53194,35876,27540,62216,26070,62973],"orbits":[0,2,3],"x":-5982.73,"y":2748.83},{"nodes":[57703],"orbits":[0],"x":-5982.73,"y":3453.31},{"nodes":[37078],"orbits":[0],"x":1106.1996540175,"y":15926.500291259},{"nodes":[56342],"orbits":[0],"x":-5952.13,"y":8688.45},{"nodes":[7341],"orbits":[0],"x":-5946.57,"y":8472.91},{"nodes":[49938],"orbits":[0],"x":-5945.28,"y":-3432.51},{"nodes":[46522],"orbits":[0],"x":3111.921488019,"y":15994.419415167},{"nodes":[50253],"orbits":[0],"x":-5918.9,"y":4065.73},{"nodes":[26638],"orbits":[0],"x":3107.3351094136,"y":-14316.419541646},{"nodes":[64318,5088,55101,43893,26739,61063,38535,7777,58016,22873,16596,49537,42205],"orbits":[0,3,4],"x":-5912.67,"y":-7670.09},{"nodes":[46380,21327,56876,1104],"orbits":[0,2],"x":-5886.61,"y":-5253.73},{"nodes":[23879,51743,42452,57617,41620,35417,57921,16506,14996,37509],"orbits":[0,3,4,5,7],"x":-5885.4,"y":-2365.38},{"nodes":[44872],"orbits":[0],"x":-5846.29,"y":-5740.53},{"nodes":[36474],"orbits":[0],"x":-5842.29,"y":-8243.17},{"nodes":[62948],"orbits":[0],"x":-5841.98,"y":-6866.01},{"nodes":[42035,10987,50219,54194],"orbits":[2],"x":3230.2751094136,"y":-16146.949541646},{"nodes":[22147],"orbits":[9],"x":3230.2751094136,"y":-15207.249541646},{"nodes":[36252],"orbits":[6],"x":3252.201488019,"y":15678.949415167},{"nodes":[9884],"orbits":[0],"x":-5779.01,"y":-8993.83},{"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7],"x":-5766.42,"y":-4054.17},{"nodes":[43128],"orbits":[4],"x":3294.0451094136,"y":-16066.949541646},{"nodes":[40377,7554,23039,64770,46318,32964,34617],"orbits":[3],"x":-5724.5,"y":-6743.51},{"nodes":[8600],"orbits":[0],"x":-5721.96,"y":6102.63},{"nodes":[32952],"orbits":[0],"x":-4412.0930451617,"y":15102.650574792},{"nodes":[62015,7668,21982,47371],"orbits":[0,2],"x":-5694.65,"y":5052.28},{"nodes":[64870,34090,14655,372,54340],"orbits":[0,2,3,7],"x":-5677.8,"y":5511.25},{"nodes":[61471,61977,15580,49153],"orbits":[4],"x":-5667.96,"y":-4180.52},{"nodes":[58747],"orbits":[0],"x":3370.1251094136,"y":-14316.019541646},{"nodes":[54892],"orbits":[0],"x":3392.521488019,"y":15994.249415167},{"nodes":[3605],"orbits":[0],"x":3402.6551094136,"y":-15421.219541646},{"nodes":[37397],"orbits":[0],"x":-4302.9730451617,"y":14913.650574792},{"nodes":[60287],"orbits":[0],"x":-4302.9730451617,"y":15039.650574792},{"nodes":[7960],"orbits":[1],"x":-5597.85,"y":-9484.56},{"nodes":[40550,46205,41615,49192,44787,43396,10534,33209,2174,51683,19249],"orbits":[0,2,3,4,6,7],"x":-5585.44,"y":-521.46},{"nodes":[33244,52373,16347,52556,37276],"orbits":[0,2],"x":-5585.08,"y":8844.88},{"nodes":[38696],"orbits":[0],"x":-5557.42,"y":-9213.68},{"nodes":[32637],"orbits":[0],"x":3480.491488019,"y":14819.939415167},{"nodes":[30151],"orbits":[0],"x":3480.491488019,"y":15242.949415167},{"nodes":[44371],"orbits":[0],"x":3480.491488019,"y":15665.949415167},{"nodes":[20303,9908],"orbits":[2],"x":-5535.94,"y":811.34},{"nodes":[16311,32600,6304,12125],"orbits":[0,2],"x":-5532.01,"y":426.08},{"nodes":[20350,47006,43174,4948,62785,28542],"orbits":[1,3,7],"x":-5498.11,"y":8167.23},{"nodes":[63259],"orbits":[0],"x":-4193.8630451617,"y":15102.650574792},{"nodes":[55582],"orbits":[0],"x":-4167.0930451617,"y":15546.760574792},{"nodes":[25482,51702,54485,60620,61472],"orbits":[0,7],"x":-5457.8,"y":4362.34},{"nodes":[64995,51867,17924],"orbits":[0,3],"x":-5443.28,"y":6845.42},{"nodes":[54868],"orbits":[0],"x":-5431.5,"y":-9013.71},{"nodes":[27990],"orbits":[0],"x":3593.6051094136,"y":-16317.889541646},{"nodes":[761,22133,39857,4663],"orbits":[0,7],"x":-5431.35,"y":-1790.04},{"nodes":[2491],"orbits":[1],"x":-5399.53,"y":9533.46},{"nodes":[762],"orbits":[0],"x":3635.451488019,"y":16134.699415167},{"nodes":[49049],"orbits":[0],"x":3627.9251094136,"y":-16082.639541646},{"nodes":[14777,37226,4015,47429,9187,59466],"orbits":[2,3,4,6,7],"x":-5387.75,"y":7424.52},{"nodes":[14429],"orbits":[0],"x":-4082.4230451617,"y":14628.030574792},{"nodes":[44783,19277,35171,10029,8660,18846,22949,14113],"orbits":[0,2,3],"x":-5358.85,"y":-5492.92},{"nodes":[8629],"orbits":[0],"x":-5326.03,"y":2555.07},{"nodes":[16084],"orbits":[0],"x":-5314.13,"y":2655.72},{"nodes":[13474],"orbits":[0],"x":-5314.13,"y":2829.25},{"nodes":[10602,24871,57552,46696],"orbits":[4],"x":-5314.13,"y":2922.83},{"nodes":[54811],"orbits":[0],"x":-5314.13,"y":3067.3},{"nodes":[34210],"orbits":[0],"x":-5314.13,"y":3397.64},{"nodes":[25934,6923,1087,64939,30123,26092,52392],"orbits":[2,3,7],"x":-5314.13,"y":3520.75},{"nodes":[43471],"orbits":[0],"x":-5311.94,"y":-8795.16},{"nodes":[20015],"orbits":[0],"x":-5307.75,"y":7323.33},{"nodes":[20499,34327,32078,16940,25446,2336,63402,29881],"orbits":[0,1,2,7],"x":-5305.62,"y":-3550.7},{"nodes":[14265],"orbits":[0],"x":-5304.61,"y":-8799.35},{"nodes":[1579],"orbits":[0],"x":3733.2751094136,"y":-16527.249541646},{"nodes":[32856],"orbits":[0],"x":3733.2751094136,"y":-14316.019541646},{"nodes":[12099],"orbits":[0],"x":-5263.61,"y":-9401.91},{"nodes":[12054],"orbits":[0],"x":3775.731488019,"y":16377.669415167},{"nodes":[45248],"orbits":[0],"x":-3946.5530451617,"y":15135.140574792},{"nodes":[10169],"orbits":[0],"x":-5238.15,"y":5102.77},{"nodes":[44406,63451,57846],"orbits":[6],"x":-5197.82,"y":6507.02},{"nodes":[63470,50302,16090],"orbits":[3],"x":-5165.01,"y":833.39},{"nodes":[61490],"orbits":[0],"x":-5159.25,"y":6455.65},{"nodes":[28304],"orbits":[0],"x":-5153.8,"y":8943.84},{"nodes":[4833],"orbits":[0],"x":-5147,"y":-9203.79},{"nodes":[8693,35393,23708,3896,56320],"orbits":[0,2,7],"x":-5140.8,"y":745.04},{"nodes":[11641],"orbits":[0],"x":-3810.6630451617,"y":15642.260574792},{"nodes":[56703,28839,56762,20032,28680],"orbits":[0,2],"x":-5107.55,"y":-6981.78},{"nodes":[1988],"orbits":[0],"x":3929.031488019,"y":15965.199415167},{"nodes":[28002],"orbits":[0],"x":-5095.02,"y":-2941.61},{"nodes":[2955,28800,55308,38313,30701],"orbits":[0,2,7],"x":-5085.88,"y":-2565.83},{"nodes":[51183,10635,45301,31724,2074],"orbits":[0,2],"x":-5081.34,"y":-791.76},{"nodes":[64042,55422,34415,48387,54640,27900,62376],"orbits":[0,3,4,5,7],"x":-5055.9,"y":-4742.69},{"nodes":[18441,34181,45422],"orbits":[7],"x":-5039.48,"y":-3334.46},{"nodes":[51369,56061,6544,45503,37746,42604],"orbits":[0,2,4,7],"x":-5034.82,"y":1520.57},{"nodes":[33852],"orbits":[0],"x":-5013.88,"y":-8978.47},{"nodes":[50177],"orbits":[0],"x":-5006.69,"y":-8973.79},{"nodes":[34412,25915,8916,20547,33340,51267,11886],"orbits":[1,2,7],"x":-5003.08,"y":-1341.35},{"nodes":[45918],"orbits":[0],"x":-4999.75,"y":-8120.71},{"nodes":[49547],"orbits":[0],"x":-4997.46,"y":-3305.76},{"nodes":[10305,45586,35011,14761,53187,45215],"orbits":[2],"x":-4989.69,"y":6154.73},{"nodes":[57775],"orbits":[0],"x":-4987.35,"y":6165.44},{"nodes":[34882],"orbits":[0],"x":-3674.7830451617,"y":16149.370574792},{"nodes":[44191],"orbits":[0],"x":-4971.36,"y":-9503.08},{"nodes":[46628],"orbits":[4],"x":-4966.28,"y":-5972.03},{"nodes":[37523],"orbits":[0],"x":4069.301488019,"y":16208.169415167},{"nodes":[36880,15628,27626,2244,54067,43036],"orbits":[4,5,7],"x":-4903.32,"y":-8409.77},{"nodes":[48552],"orbits":[0],"x":-4902.61,"y":-8434.54},{"nodes":[10452,1878,44213,14328,869,18959,55843],"orbits":[0,2,7],"x":-4876.25,"y":-7652.71},{"nodes":[34990,25337,50184,46069,6088,54380],"orbits":[0,2,7],"x":-4860.65,"y":-5812},{"nodes":[47316,2888,21716,8827,16691,9583,28862],"orbits":[0,4,7],"x":-4814.59,"y":10580.08},{"nodes":[37258],"orbits":[0],"x":-4805.94,"y":8363.52},{"nodes":[59367,10774,26568,51732,35863],"orbits":[2],"x":-4801.92,"y":7834.96},{"nodes":[23062,19122,28432,20416],"orbits":[0,2],"x":-4747.08,"y":-251.96},{"nodes":[24696],"orbits":[0],"x":4295.151488019,"y":15983.139415167},{"nodes":[38965,11284,24764,12324,30985,31697,51303],"orbits":[1,2,7],"x":-4715.21,"y":-10127.67},{"nodes":[56595,23861,54886,56997,64312],"orbits":[0,4,7],"x":-4713.07,"y":5643.94},{"nodes":[15782],"orbits":[0],"x":-4694.67,"y":-6892.17},{"nodes":[54814,59498,53675,16114],"orbits":[0,2],"x":-4694.67,"y":-6482.36},{"nodes":[292],"orbits":[0],"x":-4681.54,"y":-9216.8},{"nodes":[31419,35787,42813,55491],"orbits":[1,7],"x":-4660.69,"y":223.67},{"nodes":[23825,11572,24325,32923,58215,40006,9896],"orbits":[2,3,4,7],"x":-4651.11,"y":-9191.09},{"nodes":[31238],"orbits":[0],"x":-4643.88,"y":-7996.23},{"nodes":[2653,19203,10260,30896,49172,33730,60809],"orbits":[0,2,7],"x":-4628.58,"y":-3070.51},{"nodes":[65226],"orbits":[0],"x":-4621.23,"y":-10104.85},{"nodes":[38876],"orbits":[0],"x":-4606.4,"y":6774.82},{"nodes":[5681],"orbits":[0],"x":-4573.05,"y":9245.21},{"nodes":[4086],"orbits":[0],"x":4459.721488019,"y":15683.469415167},{"nodes":[3339,23036,46931,45585,55617,29914,17825,19546,59208],"orbits":[0,2,3],"x":-4572.75,"y":9245.92},{"nodes":[39083],"orbits":[0],"x":-4542.4,"y":925.6},{"nodes":[14686,53795,64804,53324,19318,62210],"orbits":[0,3,7],"x":-4528.5,"y":-8746.5},{"nodes":[33978,30390,31609,36163,62581],"orbits":[0,2,3,7],"x":-4507.44,"y":2159.3},{"nodes":[55536],"orbits":[9],"x":-3208.3430451617,"y":15211.520574792},{"nodes":[10245,34308,65193,36478,48714,43014,37414],"orbits":[0,2,3],"x":-4432.96,"y":-2172.08},{"nodes":[14540],"orbits":[0],"x":-4431.15,"y":7184.65},{"nodes":[7878,48745,53901,34375,45612],"orbits":[0,2,3],"x":-4431.08,"y":-684.43},{"nodes":[9417],"orbits":[0],"x":-4427.82,"y":4646.67},{"nodes":[48505,10372,48240,36191,59213,7392,10571,60886,40325],"orbits":[1,2,3],"x":-4422.17,"y":-1471.64},{"nodes":[7642,6356,71,32859,12189,56547,15114],"orbits":[0,3,4,5,7],"x":-4418.06,"y":-4540.25},{"nodes":[13171],"orbits":[0],"x":-4346.51,"y":4339.79},{"nodes":[9638],"orbits":[0],"x":-4339.42,"y":843.27},{"nodes":[54283,26324,27950,4128,26532,46023,52462],"orbits":[0,2,3],"x":-4335.51,"y":3287.25},{"nodes":[41657,21286,45992,17029],"orbits":[2,3],"x":-4335.51,"y":3380.39},{"nodes":[26798],"orbits":[0],"x":-4335.1,"y":619.91},{"nodes":[51052,22616,17468,53405,22558],"orbits":[6],"x":-4308.23,"y":0.53},{"nodes":[59006],"orbits":[0],"x":-4296.44,"y":407.49},{"nodes":[48631],"orbits":[0],"x":-4289.92,"y":0.53},{"nodes":[14294,48530,4623,39130,48524],"orbits":[2],"x":-4288.8,"y":-6798.65},{"nodes":[43818],"orbits":[0],"x":-4285.55,"y":-6819.23},{"nodes":[14505,3866,22331,19644,32258,14712,33612,40200,61842,33240,45343,57021,8957,37594,50483,8983],"orbits":[0,1,2,3,4,5,7],"x":-4283.82,"y":-11016.96},{"nodes":[34552,61026,17378,40894,1218,8357,10742,41991,1447,38972,14945,22393,28458],"orbits":[0,3],"x":-4261.32,"y":-5891.9},{"nodes":[21251],"orbits":[0],"x":-4261.32,"y":-5204.4},{"nodes":[28175],"orbits":[0],"x":-4254.59,"y":10064.45},{"nodes":[17745],"orbits":[0],"x":-4238.73,"y":4457.57},{"nodes":[62378,47633,57002,48761],"orbits":[0,2],"x":-4230.17,"y":-789.73},{"nodes":[16725],"orbits":[0],"x":-4227.25,"y":2439.49},{"nodes":[4681,25058,48828,26228],"orbits":[0,2],"x":-4208.73,"y":-7738.4},{"nodes":[50104],"orbits":[0],"x":-4185.36,"y":-10001.8},{"nodes":[47212,17417,43843,3652,56714,27999,45777],"orbits":[0,1,2,3,5],"x":-4166,"y":10952.54},{"nodes":[56605],"orbits":[0],"x":-4163.59,"y":6722.67},{"nodes":[18146],"orbits":[0],"x":-2863.1830451617,"y":15383.910574792},{"nodes":[48121],"orbits":[0],"x":-4120.96,"y":4565.35},{"nodes":[4931,42825,21404,27674,44082,27307],"orbits":[0,2],"x":-4117.42,"y":-8135.44},{"nodes":[32745],"orbits":[0],"x":-4116.33,"y":-9838.01},{"nodes":[24438],"orbits":[0],"x":-4114.17,"y":4317.84},{"nodes":[40276],"orbits":[0],"x":-4113.12,"y":-9545.42},{"nodes":[60241],"orbits":[0],"x":-4113.12,"y":-9254.29},{"nodes":[51618,43324,57596,13468,11580,34769,52115,51454],"orbits":[0,2,3,4,7],"x":-4109.59,"y":-3555.51},{"nodes":[17762,2964,18374,28476],"orbits":[0,2],"x":-4107.23,"y":6275.65},{"nodes":[46742],"orbits":[0],"x":-4102.54,"y":-10310.91},{"nodes":[95],"orbits":[0],"x":-4084.76,"y":-7312.1},{"nodes":[26895],"orbits":[0],"x":-4082.88,"y":287.24},{"nodes":[17411,61444,58096,6008,29652,15180,34096],"orbits":[0,2,3],"x":-4077.15,"y":-2691.85},{"nodes":[26490,12751,6229,13356,18489],"orbits":[7,2],"x":-4066.8,"y":8524.92},{"nodes":[31903],"orbits":[0],"x":-4066.02,"y":7086.81},{"nodes":[3084],"orbits":[0],"x":-2738.2930451617,"y":16153.010574792},{"nodes":[32278,58183],"orbits":[2,7],"x":-4030.62,"y":-9550.54},{"nodes":[25990,43461,25753,32932,63268,29372,53989,36389,7720,14205],"orbits":[1,4,5,6,7,8],"x":-4027.59,"y":5238.17},{"nodes":[57819],"orbits":[0],"x":-2727.0430451617,"y":14875.830574792},{"nodes":[46748],"orbits":[0],"x":-3995.5,"y":4196.65},{"nodes":[4661,53367,10835,20842,12821,65439,48026,6623,65353],"orbits":[0,1,2,3],"x":-3978.69,"y":9586.58},{"nodes":[61179],"orbits":[0],"x":-3955.44,"y":-9600.64},{"nodes":[259],"orbits":[0],"x":-3931.69,"y":7603.71},{"nodes":[38010,13352,59180,54923,27638,50023,13524,4921],"orbits":[4,7],"x":-3931.58,"y":7588.67},{"nodes":[37956],"orbits":[0],"x":-3921.6,"y":394.73},{"nodes":[35645],"orbits":[0],"x":-3915.69,"y":-7172.57},{"nodes":[1928],"orbits":[0],"x":-3908.2,"y":-7290.56},{"nodes":[5284],"orbits":[0],"x":-3905.87,"y":-9191.64},{"nodes":[30996],"orbits":[0],"x":-2602.1530451617,"y":15644.940574792},{"nodes":[35581],"orbits":[0],"x":-3872.48,"y":156.68},{"nodes":[51485,41338,31673,48649],"orbits":[0,2],"x":-3861.26,"y":-1010.61},{"nodes":[32847],"orbits":[0],"x":-3856.25,"y":-7033.48},{"nodes":[8867,42522,39204,12882,38578,2857,39640,61985,18849,49189,64789,44484,7246,65413,25618,49759,7998,13673,29398,12488,40721],"orbits":[6,5,9,8],"x":9.0949470177293e-13,"y":-15546.765136719},{"nodes":[21245],"orbits":[0],"x":-3804.23,"y":-9338.75},{"nodes":[57178],"orbits":[0],"x":-3804.23,"y":-8886.17},{"nodes":[1442],"orbits":[0],"x":-2502.4330451617,"y":16388.870574792},{"nodes":[53762],"orbits":[0],"x":-2466.0130451617,"y":15136.860574792},{"nodes":[45962,48589,7922,7183,15617],"orbits":[0,2,3],"x":-3759.41,"y":5937.79},{"nodes":[56284],"orbits":[0],"x":-3754.39,"y":-7303},{"nodes":[9226,13500,47591,41044],"orbits":[1,2,3,7],"x":-3746.22,"y":-5464.19},{"nodes":[46565],"orbits":[0],"x":-3736.26,"y":12649.72},{"nodes":[34487,4882,60568,38172,51206,49642,52348],"orbits":[0,2,3,7],"x":-3727.22,"y":3905.64},{"nodes":[53443,20645,59767,31292,64284,58528,45363,19011,27373,22928],"orbits":[0,3,4,5],"x":-3724.22,"y":1390.39},{"nodes":[27290],"orbits":[0],"x":-3711.3,"y":11983.92},{"nodes":[6077],"orbits":[0],"x":-3709.27,"y":-7173.96},{"nodes":[8248,48079,60014,38474],"orbits":[7,2],"x":-3702.66,"y":-823.68},{"nodes":[8737],"orbits":[0],"x":-3697.15,"y":-7461.02},{"nodes":[53108],"orbits":[0],"x":-2366.0430451617,"y":15879.830574792},{"nodes":[35265],"orbits":[0],"x":-3657.51,"y":6318.1},{"nodes":[36728],"orbits":[0],"x":-2329.8730451617,"y":14628.780574792},{"nodes":[25927],"orbits":[0],"x":-3622.31,"y":-7106.13},{"nodes":[20637,25570,21549,37694,44560,64083,27572,12940],"orbits":[0,2,3,4,7],"x":-3604.52,"y":-11358.09},{"nodes":[62122,6748,37327,34248,48618,4295],"orbits":[0,3,7],"x":-3593.46,"y":-8544.35},{"nodes":[34840],"orbits":[0],"x":-3593.46,"y":-7995.13},{"nodes":[25011,60404,20691,41739],"orbits":[0,2],"x":-3589.42,"y":6610.21},{"nodes":[33601,5692,35708,41154,2863],"orbits":[0,2],"x":-3556.93,"y":-337.58},{"nodes":[23364,33781,65493,43854,48614,9018,35918],"orbits":[0,3,7],"x":-3555.35,"y":-3914.61},{"nodes":[52038],"orbits":[0],"x":-3550.74,"y":-3918.97},{"nodes":[36822],"orbits":[0],"x":-2229.6330451617,"y":15370.790574792},{"nodes":[2511,19802,64399],"orbits":[1,2,3],"x":-3517.31,"y":5116.13},{"nodes":[2071,37543,38420,16647],"orbits":[0,2],"x":-3516.49,"y":-3235.91},{"nodes":[33397,51248,53294,38292,39594],"orbits":[0,2],"x":-3498.41,"y":321.55},{"nodes":[44733],"orbits":[2],"x":-3497.77,"y":-6221.4},{"nodes":[49363],"orbits":[0],"x":-3496.22,"y":-6579.23},{"nodes":[49550,61935,55746,4624],"orbits":[0,7],"x":-3484.73,"y":4125.9},{"nodes":[43842,5695,32309,59070,28092,17061,31773,55011],"orbits":[0,3,7],"x":-3480.21,"y":-9844.83},{"nodes":[26697],"orbits":[0],"x":-3462.24,"y":12165.79},{"nodes":[41511],"orbits":[0],"x":-3445.11,"y":-7610.06},{"nodes":[62661],"orbits":[0],"x":-3443.04,"y":-4769.59},{"nodes":[1433],"orbits":[6],"x":-3428.17,"y":-7186.71},{"nodes":[35284,3921,38398,31898,7473,2211,8154],"orbits":[0,7],"x":-3422.22,"y":11010.67},{"nodes":[12786],"orbits":[0],"x":-3421.76,"y":-1975.64},{"nodes":[15374,48035,54676,39759,11329],"orbits":[0,2],"x":-3410.15,"y":7031.06},{"nodes":[52746,9796,62310,54148,36325,56934],"orbits":[0,2,4,7],"x":-3408.23,"y":9916.18},{"nodes":[58591],"orbits":[0],"x":-2093.2330451617,"y":14861.740574792},{"nodes":[37612],"orbits":[0],"x":-3366.12,"y":7490.9},{"nodes":[8531,24483,32660,8631,59256,51534,46760],"orbits":[0,2,3],"x":-3360.01,"y":-4893.8},{"nodes":[37963,15855,59263,61441,54138],"orbits":[2,3,4,5,6],"x":-3314.67,"y":11934.56},{"nodes":[64223],"orbits":[0],"x":5660.4216959661,"y":-14377.641217109},{"nodes":[9762,10783,38564,20091],"orbits":[2,3,5,6],"x":-3296.49,"y":11927.97},{"nodes":[51299],"orbits":[2],"x":-3292.33,"y":5858.65},{"nodes":[46060,29788,44419,7251,29270,7488],"orbits":[0,7],"x":-3285.98,"y":4891.42},{"nodes":[17655,64299,50558,12462,18465,39540,36602,6744,49357,32194,58651,5777,44951,37629,55933],"orbits":[2,3,4,6],"x":-3281.46,"y":-1894.64},{"nodes":[60191,54985,14602,42737],"orbits":[7],"x":-3244.55,"y":7079.31},{"nodes":[47168],"orbits":[0],"x":-3225.69,"y":-10395.75},{"nodes":[38235,34671,61934,24477,17532,48418],"orbits":[0,2],"x":-3224.09,"y":7913.29},{"nodes":[57373],"orbits":[0],"x":-3215.37,"y":-6401.48},{"nodes":[25303],"orbits":[0],"x":-3196.2,"y":-8995.5},{"nodes":[39935],"orbits":[0],"x":-3184.23,"y":-9385.96},{"nodes":[38323],"orbits":[0],"x":-3154.84,"y":556.13},{"nodes":[48305],"orbits":[0],"x":-3144.84,"y":-551.55},{"nodes":[4956],"orbits":[0],"x":-3121.95,"y":-1268.74},{"nodes":[35560],"orbits":[0],"x":-3116.51,"y":-7680.34},{"nodes":[22045,63209,30704,13505],"orbits":[0,2],"x":-3115.35,"y":-1267.96},{"nodes":[30979],"orbits":[0],"x":-3109.62,"y":-5381.56},{"nodes":[30265],"orbits":[0],"x":5882.2416959661,"y":-15234.651217109},{"nodes":[4407],"orbits":[0],"x":-3069.12,"y":-8364.27},{"nodes":[64327,18629,39517,49391,36629,44659,62732,53373,64192,18742],"orbits":[0,3,4,5],"x":-3067.29,"y":2529.2},{"nodes":[43366],"orbits":[0],"x":-3061.21,"y":-8608.16},{"nodes":[33618,12610,4873,12683,61974,39990,20718,13294],"orbits":[1,2,7],"x":-3049.94,"y":-5891.57},{"nodes":[15194],"orbits":[0],"x":-3049.19,"y":-8762.37},{"nodes":[34747,24753,56567,151,6274],"orbits":[0,7],"x":-3044.02,"y":6253.4},{"nodes":[43895,13562],"orbits":[7],"x":-2998.56,"y":4483.94},{"nodes":[23650,56616,41415],"orbits":[0,2],"x":-2977.66,"y":4483.94},{"nodes":[30219,45177,39732],"orbits":[1,2],"x":-2974.98,"y":3611.49},{"nodes":[61657,45808,17750,3191,65324,24736,1861,9863,658,35623],"orbits":[3,4,7],"x":-2957.14,"y":8505.46},{"nodes":[29148],"orbits":[0],"x":-2904.82,"y":-7995.13},{"nodes":[38300],"orbits":[0],"x":-2893.96,"y":-6643.12},{"nodes":[17517,13233,19873],"orbits":[0,7],"x":-2880.6,"y":-1668.56},{"nodes":[44344],"orbits":[0],"x":-2864.23,"y":-9385.96},{"nodes":[27726,32416,6529],"orbits":[2],"x":-2851.04,"y":1645.22},{"nodes":[8406,6015,35426],"orbits":[6,3],"x":-2849.6,"y":0.53},{"nodes":[2606,21606,20388],"orbits":[1,2,3],"x":-2824.48,"y":-8749.27},{"nodes":[64471],"orbits":[4],"x":-2808.97,"y":10498.42},{"nodes":[45824],"orbits":[0],"x":-2787.46,"y":11060.96},{"nodes":[6898],"orbits":[0],"x":-2774.37,"y":-1070.72},{"nodes":[3282,58817,53607,37302,52860,45494,40975,24368,40597],"orbits":[0,3,4,7],"x":-2756.41,"y":10024.89},{"nodes":[65016,21206,6752,7378,968,45899,54911,31326,39716,44092,11505],"orbits":[0,2,3],"x":-2750.44,"y":-7108.15},{"nodes":[61615],"orbits":[0],"x":-2744.4,"y":-4969.4},{"nodes":[14575],"orbits":[0],"x":-2730.42,"y":-9028.75},{"nodes":[32128],"orbits":[0],"x":-2720.45,"y":-5537.28},{"nodes":[56090,59136,17729,56466],"orbits":[0,2,3,7],"x":-2701.66,"y":-4273.5},{"nodes":[11184],"orbits":[0],"x":-2697.32,"y":-12038.7},{"nodes":[55412,22538,64659,25211,11330,22185,17796,12412,3355],"orbits":[1,2,3],"x":-2697.32,"y":-11149},{"nodes":[38105,49455,13537,44299,6006,23939,59425,2508,51797,22141,857,58789,46275,13307,26614,3894],"orbits":[0,4,7],"x":-2697.32,"y":-10245.46},{"nodes":[63469,57967,50216,30834],"orbits":[0,2],"x":-2656.19,"y":-2063.25},{"nodes":[56857,10561,43426,45602,23265,25653,36109,64591,25683,14131,46091,2810,20701,36891,32705,13289,34207,35880,9843,8305],"orbits":[2,3,4,5,6,7,9,8],"x":6319.3716959661,"y":-14679.541217109},{"nodes":[3414],"orbits":[0],"x":-2625.49,"y":-8808.47},{"nodes":[23227,39564,3516],"orbits":[4,7],"x":-2620.07,"y":7375.23},{"nodes":[38663,49618,62039],"orbits":[0,7],"x":-2620.07,"y":7379.36},{"nodes":[55348],"orbits":[0],"x":-2620.07,"y":7389.42},{"nodes":[13279],"orbits":[0],"x":-2620.07,"y":7921.63},{"nodes":[37967],"orbits":[0],"x":-2595.86,"y":24.3},{"nodes":[47284],"orbits":[0],"x":-2588.8,"y":-8604.12},{"nodes":[1865,54934,15494,43584],"orbits":[0,2],"x":-2568.32,"y":3948.16},{"nodes":[8493],"orbits":[0],"x":-2554.96,"y":10828.42},{"nodes":[42177,5049,43183,11153,49231],"orbits":[0,7],"x":-2553.76,"y":5504.65},{"nodes":[41838,38103,25429,34084],"orbits":[1,2,7],"x":-2541.03,"y":-1462.22},{"nodes":[3332],"orbits":[0],"x":-2530.04,"y":-8376.52},{"nodes":[53396,64370,45923,52319],"orbits":[6],"x":-2522.24,"y":-1450.05},{"nodes":[51921],"orbits":[6],"x":-2502.19,"y":3479.47},{"nodes":[59442],"orbits":[0],"x":-2496.77,"y":-4970.02},{"nodes":[18101],"orbits":[0],"x":-2496.26,"y":-5249.94},{"nodes":[44850],"orbits":[0],"x":-2494.67,"y":-5247.26},{"nodes":[15801],"orbits":[0],"x":-2494.45,"y":-5536.38},{"nodes":[5920,52574,55478,48006,33604],"orbits":[0,2,7],"x":-2481,"y":3401.68},{"nodes":[32523],"orbits":[0],"x":-2460.75,"y":-3489.54},{"nodes":[58930,52429,6294,4847,14934,858,58387,52454,46604,2138,1546,38827,31890,25745,21081],"orbits":[2,3,4,5,7],"x":-2457.53,"y":-3479.87},{"nodes":[35745,12601,483,50908],"orbits":[0,2],"x":-2431.32,"y":-2692.66},{"nodes":[27992],"orbits":[0],"x":-2415.33,"y":11530.75},{"nodes":[23373,23428,47623,53895,17026,17303,38570],"orbits":[2,3,7],"x":-2399.07,"y":11558.76},{"nodes":[5710,14923,46325,33556,55473,43164,1207,13397,39581,6839],"orbits":[0,4,7],"x":-2393.09,"y":1033.71},{"nodes":[61042],"orbits":[0],"x":-2364.29,"y":-8977.68},{"nodes":[11679],"orbits":[0],"x":-2364.29,"y":-7995.11},{"nodes":[54453,19006,39461,229,46365],"orbits":[0,2],"x":-2362.28,"y":-9378.04},{"nodes":[38856],"orbits":[6],"x":-2351.05,"y":-3487.38},{"nodes":[39207,33518,37519,17045,32564,63579,55131],"orbits":[0,4,7],"x":-2309.42,"y":8451.88},{"nodes":[28950],"orbits":[0],"x":-2308.21,"y":-1862.64},{"nodes":[46358,50423,59376],"orbits":[6],"x":-2291.85,"y":-4007.49},{"nodes":[59438],"orbits":[0],"x":-2280.15,"y":-5538.98},{"nodes":[59413],"orbits":[0],"x":-2250.63,"y":-4971.77},{"nodes":[19240],"orbits":[0],"x":-2241.38,"y":-4242.75},{"nodes":[13241],"orbits":[6],"x":-2221.54,"y":3539.9},{"nodes":[56783],"orbits":[0],"x":6756.5616959661,"y":-15234.651217109},{"nodes":[53589],"orbits":[0],"x":-2199.44,"y":3805.96},{"nodes":[17584,28446,12430,61067,1143,58170],"orbits":[2],"x":-2188.85,"y":-968.66},{"nodes":[28718],"orbits":[0],"x":-2187.5,"y":-962.97},{"nodes":[54521],"orbits":[0],"x":-2171.82,"y":-10395.75},{"nodes":[48670],"orbits":[6],"x":-2134.26,"y":3688.8},{"nodes":[6714,5066,51788,42583,10499],"orbits":[2],"x":-2097.34,"y":4206.32},{"nodes":[1913,4665,61534,7721,64683,41031,23570,36709,63393],"orbits":[0,4,7],"x":-2092.78,"y":1554.69},{"nodes":[10772,21468,2119,39274,53505],"orbits":[0,2,3],"x":-2087.68,"y":7594.08},{"nodes":[38430],"orbits":[0],"x":-2087.37,"y":4208.07},{"nodes":[2864],"orbits":[0],"x":-2086.96,"y":8229.42},{"nodes":[48581,15969,41129,24338,15838,33242,13387],"orbits":[3,4,5,6],"x":-2076.24,"y":-4701.25},{"nodes":[1543,14096,44293],"orbits":[1,2],"x":-2074.7,"y":-4534.37},{"nodes":[54232],"orbits":[0],"x":-2059.23,"y":2453.77},{"nodes":[44372,25829,57791,52229],"orbits":[0,2],"x":-2012.26,"y":-7643.07},{"nodes":[41646],"orbits":[0],"x":-2012.03,"y":4519.75},{"nodes":[28860,56104,14091,23993,8115,36449,42981,52684],"orbits":[1,2,3,4,7],"x":-2012.03,"y":4750.59},{"nodes":[58674,17867,37092,55817],"orbits":[7],"x":-1966.11,"y":4165.53},{"nodes":[2397,54437,16111,5324,46268],"orbits":[0,7],"x":-1955.87,"y":11130.6},{"nodes":[43791,53320,16385,41651,5098],"orbits":[2,3],"x":-1945.48,"y":5858.53},{"nodes":[3367],"orbits":[0],"x":-1941.19,"y":-330.33},{"nodes":[20119,18160,15809,26945,31175,22783,30720,54036,17501,18485],"orbits":[0,2,3,7],"x":-1940.55,"y":-8386.27},{"nodes":[39087],"orbits":[0],"x":-1940.44,"y":-177.34},{"nodes":[23960],"orbits":[0],"x":-1938.69,"y":-17},{"nodes":[26178],"orbits":[0],"x":-1938.53,"y":141.45},{"nodes":[62152],"orbits":[0],"x":-1936.2,"y":295.6},{"nodes":[50626,32597,12777,3918,54708,59695],"orbits":[2],"x":-1927.77,"y":-1422.19},{"nodes":[44948],"orbits":[0],"x":-1923.59,"y":-1417.27},{"nodes":[7424,27491,1823,36994,29432,4061,3471,34531,25363,44098],"orbits":[0,4,7],"x":-1909.32,"y":-6475.67},{"nodes":[3041,47555,53697,10156,59795],"orbits":[3,5,6],"x":-1892.34,"y":-3294.04},{"nodes":[13942,65023,18186,6626,32354,34433,24009,46475,16744,4716,24748],"orbits":[0,2,3,4],"x":-1863.48,"y":6665.33},{"nodes":[3685,55700,44983,32151],"orbits":[2,4,7],"x":-1788.73,"y":10569},{"nodes":[7628],"orbits":[6],"x":-1769.02,"y":3906.89},{"nodes":[33369],"orbits":[0],"x":-1760.47,"y":8417.92},{"nodes":[61170,25763,27186,62963],"orbits":[1,2,7],"x":-1731.48,"y":-9989.29},{"nodes":[43647,32727,53524,32507,12851,57555,52973,37608],"orbits":[0,2,4,7],"x":-1682.34,"y":-9147.25},{"nodes":[3999,9737,59480,36522,37665,4577,42410,24813,20397,35739,26356,15590,57863,8556],"orbits":[0,4,7],"x":-1653.23,"y":9760.91},{"nodes":[56388,21096,57616,63360,18801,62258,11752,62455],"orbits":[0,4,5,7],"x":-1626.68,"y":7851.58},{"nodes":[1220],"orbits":[0],"x":-1614.94,"y":-5019.94},{"nodes":[6655],"orbits":[2],"x":-1610.62,"y":8920.12},{"nodes":[35015],"orbits":[0],"x":-1587.62,"y":8880.27},{"nodes":[36286,14033,41130,34553,8397],"orbits":[1,2,7],"x":-1573.72,"y":-4956.19},{"nodes":[15885],"orbits":[0],"x":-1545.44,"y":-7995.13},{"nodes":[47796,62640,38501,27108,24880,17294,27501,19330,45916,34340,16168,45969,25374],"orbits":[2,4,5,6],"x":-1533.68,"y":2648.54},{"nodes":[50084],"orbits":[0],"x":-1527.89,"y":-734.8},{"nodes":[3936],"orbits":[0],"x":-1525.89,"y":733.41},{"nodes":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3],"x":-1522.24,"y":-7351.57},{"nodes":[35720,7258,11861,3281],"orbits":[0,7],"x":-1513.28,"y":-2332.55},{"nodes":[39416],"orbits":[0],"x":-1509.87,"y":-10892.06},{"nodes":[58718],"orbits":[0],"x":-1482.46,"y":8698.1},{"nodes":[53853,36170,28693,49280,57320],"orbits":[0,2,7],"x":-1456.07,"y":3778.76},{"nodes":[45497],"orbits":[0],"x":-1446.33,"y":-10165.59},{"nodes":[17057,22784,17025,13515,14601],"orbits":[1,2,7],"x":-1446.33,"y":-9722.75},{"nodes":[34058],"orbits":[0],"x":-1432.94,"y":-4703.73},{"nodes":[4345,14598,50837,43979,26926,45333,59781],"orbits":[2,3],"x":-1411.57,"y":-10845.83},{"nodes":[40336],"orbits":[0],"x":-1410.85,"y":8880.27},{"nodes":[56666],"orbits":[0],"x":-1406.42,"y":2428.11},{"nodes":[38646],"orbits":[0],"x":-1397.89,"y":957.2},{"nodes":[13855],"orbits":[0],"x":-1396.89,"y":-954.59},{"nodes":[42680],"orbits":[0],"x":-1385.44,"y":-8272.26},{"nodes":[54099],"orbits":[0],"x":-1367.15,"y":10828.42},{"nodes":[17150,23888,29399,7390,53647,51446,19750],"orbits":[0,3],"x":-1367.15,"y":11595},{"nodes":[44707,32885,54785,51735,6689,45599],"orbits":[0,2,4,7],"x":-1349.52,"y":4972.79},{"nodes":[17696],"orbits":[0],"x":-1349.52,"y":5917.08},{"nodes":[8349,56564,42077,31644,49235,14739,2102],"orbits":[0,2],"x":-1322.31,"y":-4290.85},{"nodes":[39886],"orbits":[0],"x":-1309.39,"y":-3298.79},{"nodes":[65322],"orbits":[0],"x":-1305.68,"y":8391.66},{"nodes":[47709],"orbits":[0],"x":-1305.68,"y":8698.1},{"nodes":[47175],"orbits":[0],"x":-1271.19,"y":733.1},{"nodes":[61525],"orbits":[0],"x":-1245.18,"y":-728.9},{"nodes":[23450,558,23091,63021,11366,39515,39228,62603,19715,46300,52774,57832,34290,5084,35324,34927],"orbits":[0,2,3,4,5],"x":-1218.9,"y":-11527.92},{"nodes":[63814],"orbits":[0],"x":-1200.68,"y":8879.97},{"nodes":[20495],"orbits":[0],"x":-1178.84,"y":-2058.22},{"nodes":[54818],"orbits":[0],"x":-1170.69,"y":8229.42},{"nodes":[47157,516,7201,61347,64488,48215],"orbits":[0,7],"x":-1169.57,"y":7550.25},{"nodes":[13333,1091,1700,48699],"orbits":[1,2,7],"x":-1161.05,"y":-9989.29},{"nodes":[13425],"orbits":[0],"x":-1137.16,"y":8698.1},{"nodes":[28492],"orbits":[0],"x":-1099.85,"y":11095.71},{"nodes":[45885],"orbits":[0],"x":-1051.9,"y":-10395.75},{"nodes":[40043,9857,55231,37361,54990],"orbits":[1,2,7],"x":-1048.42,"y":4248.9},{"nodes":[315],"orbits":[0],"x":-1032.12,"y":8879.97},{"nodes":[33216],"orbits":[2],"x":-1009.12,"y":8919.8},{"nodes":[13882],"orbits":[0],"x":-962.41,"y":-7706.15},{"nodes":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776,7333],"orbits":[0,2,3,4],"x":-949.03,"y":-5546.35},{"nodes":[51194,24060,3091,18793,33639,24087,8782],"orbits":[1,2,3,7],"x":-831.53,"y":-7676.31},{"nodes":[46343],"orbits":[0],"x":-767.04,"y":5189.25},{"nodes":[18407],"orbits":[0],"x":-752.96,"y":-2537.92},{"nodes":[13359,8382,61863,42045,50535,10612,31943],"orbits":[2,3],"x":-692.16,"y":-10845.95},{"nodes":[18158],"orbits":[0],"x":-9473.5114156951,"y":-13344.137033218},{"nodes":[58714,29514,21077,3109,36169,354,48429,52274,39431],"orbits":[0,3,4],"x":-617.1,"y":6556.71},{"nodes":[49512],"orbits":[0],"x":-613.84,"y":-7995.13},{"nodes":[35387],"orbits":[0],"x":-612.84,"y":-7781.69},{"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4],"x":-612.8,"y":-8637.76},{"nodes":[15182],"orbits":[0],"x":-593.45,"y":8229.42},{"nodes":[52003],"orbits":[2],"x":-509.65,"y":-10901.37},{"nodes":[38270,23724,7275,29402,4046,8875,50687],"orbits":[1,2,3,4,7],"x":-484.77,"y":9710.46},{"nodes":[63484],"orbits":[0],"x":-9304.0614156951,"y":-13507.497033218},{"nodes":[22821,22314],"orbits":[0,7],"x":-478.3,"y":-3316.19},{"nodes":[51184],"orbits":[0],"x":-478.3,"y":-3030.38},{"nodes":[3823,60230,51968,51335,64046,45522,5726,58362,10192,55909],"orbits":[0,1,3,4,5,7],"x":-478.24,"y":-3752.19},{"nodes":[56935],"orbits":[0],"x":-478.02,"y":-4703.73},{"nodes":[22419],"orbits":[0],"x":-478.01,"y":-2158.22},{"nodes":[6554],"orbits":[0],"x":-477.99,"y":-7622.1},{"nodes":[55066,19796,15899,18308,21721,21627,9290,19129,62194],"orbits":[2,3,4,7],"x":-477.54,"y":10441.93},{"nodes":[7049,25711,31566,24766,22556,11257,10271,58038,35028,51974],"orbits":[0,2,3],"x":-466.62,"y":8827.24},{"nodes":[39476],"orbits":[0],"x":-465.64,"y":-7778.58},{"nodes":[50383],"orbits":[0],"x":-458.18,"y":-9486.35},{"nodes":[29391,50715,61354,29800],"orbits":[2,3,7],"x":-429.99,"y":-9489.3},{"nodes":[47363,13708,9164,25513,51825,47856,32561],"orbits":[2,3,4,5,6],"x":-420.12,"y":4842.33},{"nodes":[62588],"orbits":[0],"x":-405.01,"y":3700.21},{"nodes":[44405],"orbits":[0],"x":-382.9,"y":-7264.94},{"nodes":[14997],"orbits":[0],"x":-376.02,"y":4798.23},{"nodes":[55807,6686,1922,41965,1755,18845],"orbits":[0,2,7],"x":-374.23,"y":-2574.13},{"nodes":[32976,34202,14428,49285,6287,38776,57816,364],"orbits":[1,2,3,4,7],"x":-344.33,"y":11065.56},{"nodes":[23907],"orbits":[0],"x":-317.61,"y":-7755.36},{"nodes":[36564,17754,24039,46644,18348,25239,61267,13174,34419,19482,39470,770,46016,8854,7793,64379,63894,23880,24135,32699],"orbits":[6,5,9,8],"x":-9132.2814156951,"y":-12579.507033218},{"nodes":[53975,55104,33254,19125],"orbits":[1,2,7],"x":-296.21,"y":-5775.53},{"nodes":[28510,61438,42350],"orbits":[6],"x":-262.23,"y":3156.44},{"nodes":[5407],"orbits":[0],"x":-257.48,"y":2491.06},{"nodes":[934,9825,12526],"orbits":[4,3],"x":-248.37,"y":7972.75},{"nodes":[14122],"orbits":[0],"x":-229.01,"y":-7281.87},{"nodes":[60878],"orbits":[0],"x":-211.59,"y":-7418.46},{"nodes":[21560],"orbits":[0],"x":-204.43,"y":-7142.42},{"nodes":[44605,2455,48588,13081],"orbits":[5],"x":-203.43,"y":2592.67},{"nodes":[17044],"orbits":[0],"x":-191.9,"y":-7617.42},{"nodes":[57039,14572,11037],"orbits":[3],"x":-152.71,"y":3700.23},{"nodes":[29328,43201,43383,37450],"orbits":[4],"x":-150.31,"y":3572.61},{"nodes":[59779],"orbits":[0],"x":-133.15,"y":1690.41},null,{"nodes":[35492,30523,11376,50720,34199,43557],"orbits":[1,3,4,5,7],"x":-73.93,"y":-9897.76},{"nodes":[44871],"orbits":[3],"x":-30.93,"y":-1405.7},{"nodes":[46819],"orbits":[0],"x":-0.88,"y":-7031.82},{"nodes":[59362],"orbits":[0],"x":0,"y":-10395.75},{"nodes":[29009],"orbits":[0],"x":0,"y":-9772.2},{"nodes":[5314],"orbits":[4],"x":0,"y":-9671.2},{"nodes":[61419],"orbits":[0],"x":0,"y":-7995.13},{"nodes":[8616],"orbits":[0],"x":0,"y":-5955.17},{"nodes":[57710],"orbits":[6],"x":0,"y":-4700.35},{"nodes":[22290,5501,48821,15618,32404],"orbits":[0,2,3],"x":0,"y":-4439.9},{"nodes":[29502,47307,36302,3242,13769,59636,48007],"orbits":[0,2,7],"x":0,"y":-3031.45},{"nodes":[54447],"orbits":[0],"x":0,"y":-1490.58},{"nodes":[52125],"orbits":[0],"x":0.13,"y":10105.93},{"nodes":[2847],"orbits":[0],"x":0.13,"y":10828.42},{"nodes":[11337,29369,23427,47270,52799,60515,44455,19955,62914,41669,55250,56649,41972,17380],"orbits":[0,1,3,4],"x":0.44,"y":-11452.46},{"nodes":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7],"x":0.82,"y":-6450.52},{"nodes":[54417,49657],"orbits":[6],"x":1.25,"y":3822.38},{"nodes":[10247,28370],"orbits":[6],"x":1.63,"y":3822.38},{"nodes":[50986],"orbits":[0],"x":1.95,"y":1469.82},{"nodes":[52442,14254,97],"orbits":[2],"x":1.95,"y":2418.36},{"nodes":[47150,38779,44836],"orbits":[2],"x":1.95,"y":2829.7},{"nodes":[48635],"orbits":[0],"x":1.95,"y":6250.78},{"nodes":[21755],"orbits":[0],"x":1.95,"y":7013.94},{"nodes":[57805,43444,7788],"orbits":[4,7],"x":3.72,"y":5712},{"nodes":[38003,28361,47782],"orbits":[4,7],"x":4.1,"y":5712},{"nodes":[63526],"orbits":[0],"x":6.24,"y":5223.21},{"nodes":[44176,16618,10273,49696,42280,24511,45272,21205,57047,35688,38138,45278,4492],"orbits":[0,5,7],"x":7.01,"y":11943.01},{"nodes":[54127],"orbits":[0],"x":8.31,"y":8229.42},{"nodes":[54282],"orbits":[3],"x":8.31,"y":9742.42},{"nodes":[4739],"orbits":[3],"x":28.94,"y":-1404.7},{"nodes":[59915],"orbits":[0],"x":136.86,"y":1689.33},{"nodes":[41210,43578,59028,8092],"orbits":[4],"x":150.01,"y":3572.63},{"nodes":[50609,14926,11916],"orbits":[3],"x":151.5,"y":3700.21},{"nodes":[11311,38057,34061,56910],"orbits":[5],"x":225.42,"y":2596.07},{"nodes":[27779],"orbits":[0],"x":239.13,"y":-10147.55},{"nodes":[16538,9217,61281,47733,5108,44330],"orbits":[0,2,3],"x":260.71,"y":6565.73},{"nodes":[10694],"orbits":[0],"x":-8561.6214156951,"y":-13001.437033218},{"nodes":[7741,42500,59881],"orbits":[6],"x":262.02,"y":3155.84},{"nodes":[17340,40341,62051],"orbits":[4,3],"x":265.15,"y":7972.57},{"nodes":[26648,22565,17994,24256,63541],"orbits":[2],"x":266.8,"y":10482.93},{"nodes":[2461],"orbits":[0],"x":273.71,"y":2491.06},{"nodes":[34367],"orbits":[0],"x":275.93,"y":-5926.79},{"nodes":[10398,3472,56640,26682],"orbits":[0,2],"x":310.14,"y":-7336.21},{"nodes":[30346,34006,15408,29695,43736,6338],"orbits":[0,2,7],"x":371.9,"y":-2574.13},{"nodes":[58090],"orbits":[0],"x":399.3,"y":-5702.27},{"nodes":[1477],"orbits":[0],"x":407.71,"y":3700.23},{"nodes":[48774],"orbits":[0],"x":410.9,"y":-6145.21},{"nodes":[4017,12918,26447,10079,49633],"orbits":[0,2],"x":418.52,"y":-9235.2},{"nodes":[517],"orbits":[0],"x":419.3,"y":-4284.19},{"nodes":[45570,43713,3051,35602,27009,30459],"orbits":[0,1,2,7],"x":452.02,"y":-9772.2},{"nodes":[56216],"orbits":[0],"x":472.38,"y":-2158.22},{"nodes":[14666,9642,17973,4748,61027],"orbits":[0,3,7],"x":480.3,"y":-3752.19},{"nodes":[39037],"orbits":[0],"x":486.61,"y":-4703.51},{"nodes":[2254],"orbits":[0],"x":486.99,"y":-3030.38},{"nodes":[4113,36782,55572,44179],"orbits":[0,7],"x":494.7,"y":-8434.59},{"nodes":[1151,4627,57626],"orbits":[7],"x":494.7,"y":-8404.42},{"nodes":[3025],"orbits":[0],"x":497.14,"y":-7995.13},{"nodes":[44765,22533,11066,26663,32233],"orbits":[0,2,3,7],"x":502.65,"y":8723.77},{"nodes":[27492],"orbits":[0],"x":538.54,"y":-5918.05},{"nodes":[45576,51944,55060,43829,49406,47683,51728,33037,6505],"orbits":[0,2,3,4,5,7],"x":541.38,"y":9564.7},{"nodes":[22691],"orbits":[0],"x":552.41,"y":-4284.19},{"nodes":[56978],"orbits":[0],"x":610.22,"y":8229.3},{"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3],"x":615.53,"y":5034.86},{"nodes":[8872],"orbits":[0],"x":615.53,"y":5034.86},{"nodes":[34813,7218,62505,32436,60203,472,3744,5332],"orbits":[1,2,3,4,7],"x":624.45,"y":11228.41},{"nodes":[13909,31037,34866,40985,62679],"orbits":[2],"x":637.55,"y":-6943.69},{"nodes":[13542],"orbits":[0],"x":664.82,"y":-6148.06},{"nodes":[21540],"orbits":[0],"x":682.79,"y":-5708.98},null,{"nodes":[15984],"orbits":[0],"x":728.79,"y":-10884.25},{"nodes":[19223,25213,37872,21871,51847,33974,31189,64665,26194,53166,28863],"orbits":[0,4,7],"x":729.71,"y":7013.94},{"nodes":[50150,11873,37279,41159,27434,51234,15991],"orbits":[2,3],"x":743.22,"y":-10817.67},{"nodes":[9485],"orbits":[0],"x":756.52,"y":-2537.92},{"nodes":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,2,7],"x":776.04,"y":-7570.94},{"nodes":[27658],"orbits":[0],"x":787.35,"y":-5929.12},{"nodes":[7104,54733,13123,62723,14258],"orbits":[2,4,7],"x":825.93,"y":-8807.18},{"nodes":[15083],"orbits":[0],"x":905.73,"y":-11253.83},{"nodes":[25619,42354,57196,23702,43562,3660,63445,59501],"orbits":[0,2,3],"x":924.86,"y":10235.46},{"nodes":[35653],"orbits":[0],"x":940.85,"y":11379.02},{"nodes":[58109],"orbits":[0],"x":1010.78,"y":4639.54},{"nodes":[22271],"orbits":[0],"x":1029.73,"y":-11468.6},{"nodes":[17711],"orbits":[0],"x":1057.83,"y":-5957.03},{"nodes":[46124,63009,37593,63739],"orbits":[0,2,7],"x":1060.36,"y":-5120.17},{"nodes":[40783],"orbits":[0],"x":1061.08,"y":-5546.35},{"nodes":[38732],"orbits":[0],"x":1063.41,"y":-7995.13},{"nodes":[40345,42290,52254,37991],"orbits":[7],"x":1070.74,"y":-9412.83},{"nodes":[50540],"orbits":[0],"x":1073.28,"y":-9540.92},{"nodes":[36639,32009,36814,16499],"orbits":[7],"x":1075.8,"y":-9669},{"nodes":[60685],"orbits":[0],"x":1089.99,"y":-3001.45},{"nodes":[18651],"orbits":[0],"x":1129.94,"y":-11238.26},{"nodes":[55554],"orbits":[0],"x":1139.73,"y":-11659.12},{"nodes":[33180,11788,14355,60269,8483,46989,6588],"orbits":[0,7],"x":1149.31,"y":-6643.67},{"nodes":[27853,59289,3365,52576,64550,22532],"orbits":[2,7],"x":1152.97,"y":4158.69},{"nodes":[35046],"orbits":[0],"x":1168.19,"y":-2023.36},{"nodes":[55802],"orbits":[0],"x":1168.66,"y":10828.42},{"nodes":[3717],"orbits":[0],"x":1168.66,"y":11146.25},{"nodes":[60488],"orbits":[0],"x":1170.11,"y":4170.02},{"nodes":[21274],"orbits":[0],"x":1188.06,"y":8229.3},{"nodes":[57190,27859,38694,38763,22188],"orbits":[1,7],"x":1188.06,"y":8669.63},{"nodes":[62237,59281,14394,1221,50124,35743,60116],"orbits":[0,2,3,4],"x":1234.8,"y":5027.55},{"nodes":[62677],"orbits":[0],"x":1235.03,"y":-10395.55},{"nodes":[26905],"orbits":[3],"x":1247.13,"y":-11855.75},{"nodes":[11736,8821,28975],"orbits":[3,4,6],"x":1249.73,"y":-11514.66},{"nodes":[17107],"orbits":[0],"x":1264.03,"y":-7385.9},{"nodes":[44683],"orbits":[0],"x":1270.43,"y":-728.84},{"nodes":[50459],"orbits":[0],"x":1274.68,"y":735.85},{"nodes":[1826],"orbits":[0],"x":1308.1,"y":-3294.7},{"nodes":[20686],"orbits":[0],"x":1348.97,"y":2324.75},{"nodes":[44566],"orbits":[0],"x":1353.57,"y":9646.22},{"nodes":[65468],"orbits":[0],"x":1366.53,"y":11380.85},{"nodes":[63863,27785],"orbits":[0,7],"x":1367.44,"y":-11645.12},{"nodes":[36293,55708],"orbits":[0,7],"x":1381.34,"y":-11239.64},{"nodes":[13828],"orbits":[0],"x":1402.97,"y":958.27},{"nodes":[48030,6715,62436,116,3215,41372,44359],"orbits":[0,7],"x":1423.72,"y":-4183.63},{"nodes":[47759],"orbits":[0],"x":1436.89,"y":-10147.25},{"nodes":[3995,12311,64119,18115,48856,17882,33596],"orbits":[0,7],"x":1450.76,"y":7777.63},{"nodes":[53996,17686,43575,41512],"orbits":[7],"x":1474.81,"y":3454.96},{"nodes":[42736],"orbits":[0],"x":1484.79,"y":-2826.54},{"nodes":[60741,49804,6950,24035,33922],"orbits":[2],"x":1505.67,"y":-5546.35},{"nodes":[10909,16489,28556],"orbits":[6,3],"x":1516.21,"y":2614.41},{"nodes":[56651],"orbits":[0],"x":1535.77,"y":727.98},{"nodes":[19998],"orbits":[0],"x":1559.69,"y":11253.56},{"nodes":[11672],"orbits":[0],"x":1563.03,"y":-4703.51},{"nodes":[2486,11410,22976,19341,56118,61487,36596,8440,63732,45013,58884],"orbits":[0,1,4,6,7],"x":1569.52,"y":6131.98},{"nodes":[48401,15507,1140],"orbits":[2,3,6],"x":1574.14,"y":1708.94},{"nodes":[39116,9941,38888],"orbits":[7,3],"x":1598.81,"y":3240.19},{"nodes":[42076,46972,17706],"orbits":[0,2,7],"x":1600.36,"y":-3445.28},{"nodes":[54783],"orbits":[1],"x":1609.09,"y":-3526.5},{"nodes":[58783,37190,35855,48583,26520,35859],"orbits":[0,2],"x":1632.43,"y":4050.7},{"nodes":[48846],"orbits":[0],"x":1657.19,"y":9770.52},{"nodes":[2978],"orbits":[0],"x":1663.34,"y":10309.59},{"nodes":[6266,60085,15839,11667,1915,48617],"orbits":[1,7],"x":1670.41,"y":10295.58},{"nodes":[30117],"orbits":[0],"x":-7077.2916959661,"y":-15153.531217109},{"nodes":[25807],"orbits":[0],"x":1694.19,"y":11468.66},{"nodes":[30555],"orbits":[0],"x":1695.71,"y":-2698.11},{"nodes":[27234],"orbits":[0],"x":1713.31,"y":-4986.63},{"nodes":[4203],"orbits":[0],"x":1714.69,"y":-2969.93},{"nodes":[14340],"orbits":[0],"x":1734.98,"y":4453},{"nodes":[58939,26319,30990,44608],"orbits":[0,2],"x":1737.77,"y":4778},{"nodes":[2732,65393,52241,58115,94,16790],"orbits":[1,2,7],"x":1746.18,"y":-5035.12},{"nodes":[49691,31409,50437,32274,61106,59653,35987],"orbits":[0,2,4,7],"x":1759.97,"y":1320.44},{"nodes":[48551],"orbits":[0],"x":-7001.4816959661,"y":-14067.501217109},{"nodes":[15876,7947,26061,4579],"orbits":[2],"x":1776.09,"y":-10680.12},{"nodes":[17672],"orbits":[0],"x":1797.54,"y":-7995.13},{"nodes":[11230],"orbits":[0],"x":1797.54,"y":-7675.13},{"nodes":[48290,49088,47155,55180,17394,45530,3443,63545],"orbits":[0,2,3,7],"x":1798.44,"y":-7166.71},{"nodes":[20140],"orbits":[0],"x":1800.67,"y":-8634.27},{"nodes":[20861,8522,26236,38069,45350,338,24491,3438,18856],"orbits":[1,2,3,4,7],"x":1802.15,"y":-8810.16},{"nodes":[7576,33866,10364,42857,20024,44223,55342,17248,10429,49220],"orbits":[0,1,2,4,5,7],"x":1821.35,"y":-1202.94},{"nodes":[39298],"orbits":[0],"x":1824.91,"y":8228.37},{"nodes":[10998,9736,61396,61318,2843,1019,45037,21438,62235],"orbits":[0,2,3,4,5,7],"x":1826.63,"y":8513.85},{"nodes":[7062,16680,48137,33887,43155,31763,33415,6178],"orbits":[4],"x":1857.66,"y":11423.83},{"nodes":[64726,19573,17553,46296,38479,19342,27493],"orbits":[1,2,3,4,7],"x":1899.93,"y":6744.84},{"nodes":[53683],"orbits":[0],"x":1904.34,"y":11524.96},{"nodes":[44430],"orbits":[0],"x":1949.13,"y":11357.83},{"nodes":[44343,55276,52980,17366,18970,29361,11938,39964,1215,48198],"orbits":[0,1,2,4,5,7],"x":1958.85,"y":-978.15},{"nodes":[33225],"orbits":[0],"x":1960.52,"y":-9606.62},{"nodes":[21779,9185,40760,60107,57204,47833],"orbits":[0,2],"x":1978.8,"y":-4255.94},{"nodes":[19779,63891,63074,42999,4925],"orbits":[1,2,3],"x":1999.54,"y":-11112.83},{"nodes":[35660,18548,62628,4313,35234,6789,28992],"orbits":[0,2,4,7],"x":2012.88,"y":865.02},{"nodes":[17726,11826],"orbits":[7],"x":2015.32,"y":2999.71},{"nodes":[11315],"orbits":[0],"x":2015.42,"y":9673.14},{"nodes":[64427,51892,44188,59387],"orbits":[0,2],"x":2081.9,"y":-8262.87},{"nodes":[23153,31112,56897,57785,63828,23996],"orbits":[0,7],"x":2082.55,"y":7631.77},{"nodes":[30082],"orbits":[0],"x":2092.43,"y":11575.37},{"nodes":[46554],"orbits":[0],"x":2107.3,"y":-10394.21},{"nodes":[41225,48611,4271,62887],"orbits":[0,2],"x":2107.3,"y":-9931.58},{"nodes":[47177],"orbits":[0],"x":2110.13,"y":-4703.51},{"nodes":[61768],"orbits":[0],"x":2157.18,"y":-9511.45},{"nodes":[61432],"orbits":[0],"x":2164.6,"y":11512.63},{"nodes":[56926,44255,14548,59541,10320,28573,15358,41905],"orbits":[0,2,3,7],"x":2165.23,"y":-6650.5},{"nodes":[2841,33059,39839,20205],"orbits":[0,2],"x":2192.99,"y":4717.44},{"nodes":[52703],"orbits":[0],"x":-6563.3716959661,"y":-13772.791217109},{"nodes":[48568],"orbits":[0],"x":2199.2,"y":3806.76},{"nodes":[49046],"orbits":[0],"x":2214.93,"y":-3836.38},{"nodes":[62159,59603,57110,46561],"orbits":[0,2,7],"x":2229.99,"y":-3149.3},{"nodes":[16460,43746,38143],"orbits":[2,3,6],"x":2235.52,"y":536.07},{"nodes":[57810],"orbits":[0],"x":2257.86,"y":-8717.37},{"nodes":[5961],"orbits":[0],"x":2260.4,"y":9939.27},{"nodes":[54675],"orbits":[0],"x":2281.59,"y":10332.05},{"nodes":[58329,31950,8569],"orbits":[6],"x":2292.18,"y":-3970.17},null,{"nodes":[39987,12419,18913,56063],"orbits":[0,2,3,7],"x":2317.51,"y":-5438.63},{"nodes":[40073],"orbits":[0],"x":2343.9,"y":-9085.31},{"nodes":[20744,33053,4844,50795,58013],"orbits":[1,7],"x":2377.83,"y":2986.75},{"nodes":[63926],"orbits":[0],"x":2393.91,"y":-9611.59},{"nodes":[26383,8415,26282,27667,23416,56162,65518,62388,30071,59342,47442,59822],"orbits":[6,5,9,8],"x":-6319.3716959661,"y":-14203.541217109},{"nodes":[53266],"orbits":[0],"x":2453.78,"y":-8312.45},{"nodes":[46224,24045,49799,45019],"orbits":[0,2],"x":2457.39,"y":3459.95},{"nodes":[26786,18882],"orbits":[0,5],"x":2459.2,"y":4266.46},{"nodes":[23764],"orbits":[0],"x":2459.21,"y":-3622.89},{"nodes":[5295],"orbits":[0],"x":2476.38,"y":9574.5},{"nodes":[50485,28229,8540,45230,22959],"orbits":[0,2],"x":2497.88,"y":-5053.36},{"nodes":[19288],"orbits":[0],"x":2503.68,"y":7415.67},{"nodes":[38814],"orbits":[0],"x":2503.68,"y":7792.67},{"nodes":[20387],"orbits":[0],"x":2504.3,"y":-8625.66},{"nodes":[43431,20779,50239,19224,32555,9535,24963,42169,61309,51850,37434],"orbits":[0,2,3,4,7],"x":2511.05,"y":8731.74},{"nodes":[63731],"orbits":[0],"x":2537.98,"y":11565.76},{"nodes":[58814],"orbits":[0],"x":2568.17,"y":10828.42},{"nodes":[29582,43923,19470,50328,10053,9458],"orbits":[0,2,3],"x":2573.06,"y":1485.46},{"nodes":[4850],"orbits":[0],"x":2577.55,"y":-4030.32},{"nodes":[11855,56999,44014,30829],"orbits":[0,2],"x":2590.36,"y":5169.65},{"nodes":[58002,55575,45086,34520,23738],"orbits":[0,2,3,7],"x":2590.88,"y":-7324.15},{"nodes":[17024],"orbits":[0],"x":2607.33,"y":-8878.62},{"nodes":[53196,12322,32135,35848,28625,46692,51509,9393],"orbits":[0,1,4,7],"x":2622.75,"y":6605.25},{"nodes":[35896],"orbits":[0],"x":2634.6,"y":-7995.13},{"nodes":[13738],"orbits":[0],"x":2641.65,"y":-9309.5},{"nodes":[52354],"orbits":[0],"x":2667.71,"y":11496.1},{"nodes":[31223],"orbits":[0],"x":-6075.3516959661,"y":-13772.791217109},{"nodes":[4157,55088,34168],"orbits":[7],"x":2694.54,"y":-2103.71},{"nodes":[53960],"orbits":[5],"x":2704.11,"y":-2329.78},{"nodes":[36479,36778,12925],"orbits":[4],"x":2724.74,"y":-2058.41},{"nodes":[61312,20831,29843,55397,44527,44875],"orbits":[0,2,4,7],"x":2727.45,"y":2024.66},{"nodes":[9020,244,41171,37767,6596,36341,35118],"orbits":[0,1,2,4,7],"x":2730.83,"y":11768.89},{"nodes":[35503],"orbits":[0],"x":2744.59,"y":-3760.9},{"nodes":[34233,14725,32545,16123],"orbits":[3,2],"x":2753.29,"y":-2001.95},{"nodes":[31745,3234,3624,10927,9272,18470,4447,12906],"orbits":[1,3,4,7],"x":2756.47,"y":5912.5},{"nodes":[13844],"orbits":[0],"x":2767.92,"y":0.42},{"nodes":[19104],"orbits":[0],"x":2770.83,"y":1599.66},{"nodes":[52568],"orbits":[0],"x":2776.83,"y":7019.78},{"nodes":[53560],"orbits":[0],"x":2785.02,"y":-8428.64},{"nodes":[34984,12661,44917,18895,703,10552],"orbits":[0,1,7],"x":2787.39,"y":-5900.44},{"nodes":[12465,30040,56016,65149,35594,26830],"orbits":[1,2,5,7],"x":2795.71,"y":10440.37},{"nodes":[13576],"orbits":[0],"x":2802.27,"y":-8676.29},{"nodes":[64352],"orbits":[0],"x":2806.74,"y":4311.96},{"nodes":[37372],"orbits":[0],"x":2810.3,"y":-9096.02},{"nodes":[12337],"orbits":[0],"x":2880.86,"y":9533.6},{"nodes":[25281,10677,56638,53935],"orbits":[1,2],"x":2886.44,"y":-3430.12},{"nodes":[7405],"orbits":[0],"x":2886.7,"y":-4100.44},{"nodes":[48585],"orbits":[0],"x":2890.88,"y":2251.96},{"nodes":[31517,11722,62431],"orbits":[0,2],"x":2898.16,"y":-5489.12},{"nodes":[13341,56841,18451,63255],"orbits":[0,2],"x":2899.54,"y":2850.56},{"nodes":[62779],"orbits":[0],"x":2918.45,"y":7099.38},{"nodes":[62230,19355,37974],"orbits":[6],"x":2922.78,"y":-10114.18},{"nodes":[39567,50816,50755,10159,4828,25026,36379,31977,19044,3567,33345,10314,61923,16256,53188],"orbits":[0,1,2,3,4,5],"x":2922.78,"y":-9973.75},{"nodes":[21336,15975,62984,58182,7344,26931],"orbits":[3,2],"x":2935.56,"y":-1694.84},{"nodes":[8975],"orbits":[0],"x":2939.76,"y":-2768.08},{"nodes":[44487,45137,39884,40271],"orbits":[7],"x":2946.52,"y":4969.56},{"nodes":[44345],"orbits":[0],"x":2947.79,"y":4537.32},{"nodes":[20504,52836,56806,11980,62341],"orbits":[0,4,7],"x":2995.2,"y":8568.45},{"nodes":[46157],"orbits":[0],"x":3017.04,"y":-8315.27},{"nodes":[3665],"orbits":[0],"x":3028.9,"y":6994.96},{"nodes":[50516,41447,31626,59661,13610,2814,26952,12245,19749],"orbits":[1,3,7],"x":3038.31,"y":11084.54},{"nodes":[38614,25827,55241,44201,27662],"orbits":[1,2,3],"x":3049.32,"y":-6418.35},{"nodes":[37806],"orbits":[0],"x":3052.85,"y":-8723.72},{"nodes":[42250],"orbits":[0],"x":3086.31,"y":5345.94},{"nodes":[40630],"orbits":[0],"x":3105.36,"y":2128.06},{"nodes":[6772,30695,13783,56472,22795,42781],"orbits":[0,2,4,7],"x":3109.38,"y":1336.95},{"nodes":[17118],"orbits":[0],"x":3112.88,"y":7440.94},{"nodes":[20049,30252,32818,48135,12750],"orbits":[0,7],"x":3112.88,"y":7857},{"nodes":[50192],"orbits":[0],"x":-5648.4816959661,"y":-14067.501217109},{"nodes":[32185],"orbits":[0],"x":3113.83,"y":7213.29},{"nodes":[63064,65437,30634,54413],"orbits":[3,2],"x":3116.47,"y":-1389.24},{"nodes":[26214],"orbits":[0],"x":3129.06,"y":-6970.48},{"nodes":[30047],"orbits":[0],"x":3144.14,"y":3080.1},{"nodes":[40068,53149,32683],"orbits":[4],"x":3145.56,"y":-1331.11},{"nodes":[56325],"orbits":[0],"x":3195.27,"y":2366.42},{"nodes":[3165],"orbits":[0],"x":-5560.9516959661,"y":-15153.501217109},{"nodes":[53965],"orbits":[0],"x":3203.89,"y":9325.66},{"nodes":[24825,34136,29479],"orbits":[5,3],"x":3203.92,"y":0.42},{"nodes":[48833],"orbits":[0],"x":3228.15,"y":4292.78},{"nodes":[57517],"orbits":[0],"x":3247.77,"y":3615.89},{"nodes":[4],"orbits":[0],"x":3249.41,"y":4552.82},{"nodes":[46034],"orbits":[0],"x":3255.08,"y":-5628.71},{"nodes":[55668],"orbits":[0],"x":3266.72,"y":-8000},{"nodes":[55420,30061,31908,5594,50107,50881],"orbits":[2],"x":3269.96,"y":-7564.13},{"nodes":[8785],"orbits":[0],"x":3272.71,"y":-7565.73},{"nodes":[29240],"orbits":[0],"x":3284.63,"y":-9003.35},{"nodes":[25170,19442,30820,8606],"orbits":[0,2,7],"x":3312.53,"y":4003.79},{"nodes":[13411],"orbits":[5],"x":3369.01,"y":-1178.15},{"nodes":[33946,34074,57227,23259,22864,57966],"orbits":[0,2,3,7],"x":3386.17,"y":9912.71},{"nodes":[16484],"orbits":[2],"x":3395.61,"y":6043.67},{"nodes":[32943,22368,47088,8789,16938,29930,63182,37266],"orbits":[0,2,4,7],"x":3395.61,"y":6863.03},{"nodes":[55429],"orbits":[0],"x":3398.9,"y":1369.34},{"nodes":[36630,60829,29941,28268],"orbits":[1,2,3],"x":3414.8,"y":3529.44},{"nodes":[19808],"orbits":[0],"x":3433.98,"y":1627.23},{"nodes":[57513],"orbits":[0],"x":3444.63,"y":-9280.49},{"nodes":[25557],"orbits":[6],"x":3446.89,"y":-7266.34},{"nodes":[21280],"orbits":[0],"x":3498.09,"y":2467.05},{"nodes":[41770,9441,5077,33080,43254,33400],"orbits":[0,2],"x":3507.9,"y":5460.57},{"nodes":[11578],"orbits":[0],"x":3512.67,"y":4752.05},{"nodes":[20837],"orbits":[0],"x":3537.82,"y":3734.46},{"nodes":[41029],"orbits":[0],"x":3541.56,"y":-6134.17},{"nodes":[28050],"orbits":[6],"x":3551.58,"y":2050.41},{"nodes":[31928,50574,19426,15443],"orbits":[0,2],"x":3553.55,"y":-5454.76},{"nodes":[5564],"orbits":[0],"x":3555.53,"y":4441.55},{"nodes":[21080,1869,27095,48658,14890],"orbits":[0,2,7],"x":3560.13,"y":-4198.58},{"nodes":[24812,56360,64643,27176],"orbits":[0,2],"x":3563.72,"y":-3733.75},{"nodes":[36997],"orbits":[0],"x":3599.3,"y":2962.09},{"nodes":[53539,46705,45650,9572,12822],"orbits":[0,2,3],"x":3607.08,"y":2672.84},{"nodes":[17548,14958,630,13419,31039],"orbits":[0,1,7],"x":3632.11,"y":-2981.28},{"nodes":[10671,23419,55930,5740,40687],"orbits":[2],"x":3636.66,"y":10787.37},{"nodes":[22049],"orbits":[0],"x":3638.69,"y":1581.38},{"nodes":[24239,55846,40213,24481],"orbits":[0,1],"x":3641.03,"y":-482.86},{"nodes":[62510,3985,43423,8697,30905,64140,51336,56818,38895,48660],"orbits":[0,2,3,4],"x":3650.57,"y":8506.92},{"nodes":[49473],"orbits":[0],"x":3660.16,"y":3626.42},{"nodes":[47754,23455,49740,55847,27274],"orbits":[0,1,7],"x":3668.09,"y":-8216.37},{"nodes":[63861,55947,13823,46088,62153,32054],"orbits":[3,2],"x":3689.45,"y":-9957.29},{"nodes":[25100],"orbits":[0],"x":3733.3,"y":5789.19},{"nodes":[25620,26804,55405,59909,30539,9083],"orbits":[0,1,7],"x":3771.31,"y":-7094.88},{"nodes":[10131],"orbits":[0],"x":3772.63,"y":-10338.81},{"nodes":[51048],"orbits":[0],"x":3772.84,"y":10291.5},{"nodes":[27761,5826],"orbits":[0,2],"x":3776.11,"y":2965.63},{"nodes":[61104],"orbits":[0],"x":3779.38,"y":3832.89},{"nodes":[39280,55568,44669,32951,14127,44690,41522],"orbits":[0,2,3],"x":3782.58,"y":-10845.24},{"nodes":[11838,10881,33112,36450],"orbits":[0,3,7],"x":3832.63,"y":-9003.35},{"nodes":[5257,55507,22359,9141,13748,38338,35760,16367,60692,5703],"orbits":[0,3,4,7],"x":3842.13,"y":-4910.29},{"nodes":[5702],"orbits":[0],"x":3849.74,"y":-1186.7},{"nodes":[38676,27910,53938,64056,36931],"orbits":[1,2,7],"x":3855.19,"y":-2510.92},{"nodes":[56045],"orbits":[0],"x":3856.59,"y":-2226.59},{"nodes":[44563,59053,54805],"orbits":[0,3,5],"x":3857.5,"y":-5882.32},{"nodes":[13379],"orbits":[0],"x":3866.11,"y":2806.15},{"nodes":[60505],"orbits":[0],"x":3888.73,"y":1790.7},{"nodes":[63585],"orbits":[0],"x":3915.95,"y":4292.71},{"nodes":[44612,9112,41538,55598,15644],"orbits":[0,1,3],"x":3917.46,"y":3195.79},{"nodes":[31855,37408,60738,46761],"orbits":[0,2,7],"x":3918.15,"y":449.43},{"nodes":[23961,10041,32799,30910,17600,8791,18519,59647,32096],"orbits":[0,2,3,7],"x":3926.82,"y":9716.85},{"nodes":[38459,61373,63610,5988,38568],"orbits":[1,2,3],"x":3926.84,"y":959.23},{"nodes":[33751,8810,12451],"orbits":[1,3,7],"x":3941.17,"y":7406.81},{"nodes":[14343],"orbits":[0],"x":3946.1,"y":8993.8},{"nodes":[18923],"orbits":[6],"x":3992.99,"y":6086.8},{"nodes":[46146,15829,55227],"orbits":[0,7],"x":3994,"y":-485.92},{"nodes":[32509,47614,3688,22219,52351,52260],"orbits":[0,2,7],"x":4031.85,"y":-6354.58},{"nodes":[13030],"orbits":[0],"x":4037.79,"y":5340.36},{"nodes":[43691,21746,65009,29517,32701],"orbits":[6],"x":4039.97,"y":0.42},{"nodes":[24647,61196],"orbits":[6],"x":4137.88,"y":-2406.01},{"nodes":[37220,50342,5227,17955,46402,51708],"orbits":[0,2,3,7],"x":4182.56,"y":6218.3},{"nodes":[36623,3628,64474,31630,10729],"orbits":[0,2],"x":4183.71,"y":-9861.17},{"nodes":[59651,47821,41654,41033,55872],"orbits":[3,2],"x":4188.77,"y":-7809.17},{"nodes":[54746],"orbits":[0],"x":4195.04,"y":9238},{"nodes":[41062,47677,14045,33848,31991,65176,36070,9472],"orbits":[0,4,5,6,7],"x":4216.28,"y":4693.55},{"nodes":[55],"orbits":[0],"x":4219.73,"y":5087.65},{"nodes":[38703,63525,8249,16816,53094],"orbits":[0,7],"x":4278.42,"y":10564.54},{"nodes":[8510],"orbits":[0],"x":4283.46,"y":5565.69},{"nodes":[44239,60083,55270],"orbits":[0,7],"x":4332.46,"y":-271.82},{"nodes":[9085],"orbits":[0],"x":4347,"y":6925.8},{"nodes":[51463,4364,36114,23360,23736,53566,17077],"orbits":[0,4,7],"x":4350.71,"y":7926.5},{"nodes":[50469],"orbits":[0],"x":4375.94,"y":0.42},{"nodes":[49110],"orbits":[0],"x":4385.38,"y":9460.25},{"nodes":[64851,15030,49545,45693,39658,18831,21324],"orbits":[0,2,7],"x":4386.25,"y":1960.69},{"nodes":[55938,41394,56844,40929,43633,40313,58363,10841],"orbits":[0,3,7],"x":4405.42,"y":-9374.35},{"nodes":[60974,1506,60324,42339,18744],"orbits":[2],"x":4414.61,"y":-8287.6},{"nodes":[12761,19156,53941,17367,62841,12249,17283],"orbits":[0,2,3],"x":4435.38,"y":-1892.44},{"nodes":[45481,29408,52765,34300,31888,13862],"orbits":[0,2],"x":4438.01,"y":-3100.56},{"nodes":[24922],"orbits":[0],"x":4451.73,"y":7751.52},{"nodes":[40918],"orbits":[0],"x":4468.06,"y":5319.67},{"nodes":[26068,37389,28061,35878,50884,53696,37644,46874,7449],"orbits":[0,2,3,7],"x":4480.65,"y":3149.72},{"nodes":[1773],"orbits":[0],"x":4488.81,"y":5009.54},{"nodes":[30562,13711,3203,8908,11032],"orbits":[0,2,7],"x":4520.4,"y":-6892.55},{"nodes":[36298],"orbits":[0],"x":4526.88,"y":5794.6},{"nodes":[33823],"orbits":[0],"x":4536.81,"y":-4967.55},{"nodes":[4519],"orbits":[0],"x":4542.03,"y":-5257.07},{"nodes":[20236],"orbits":[0],"x":4542.03,"y":-4689.37},{"nodes":[58932],"orbits":[0],"x":-3941.5251094136,"y":-15586.089541646},{"nodes":[27262],"orbits":[0],"x":4562.63,"y":9687.25},{"nodes":[51213],"orbits":[0],"x":4563.3,"y":4714.06},{"nodes":[50912,49461,21314,18818],"orbits":[0,2,7],"x":4597.23,"y":322.95},{"nodes":[28464],"orbits":[0],"x":4599.58,"y":-6751.84},{"nodes":[45193,4083,33815,35644,43677],"orbits":[0,2,3],"x":4605.3,"y":1275.23},{"nodes":[33979],"orbits":[0],"x":4648.31,"y":-8702.96},{"nodes":[11604],"orbits":[0],"x":4671.13,"y":-2696.8},{"nodes":[49661,49394,23786,33391,56330,39570],"orbits":[1,2,3,4,7],"x":4687.08,"y":7330.29},{"nodes":[3251],"orbits":[0],"x":4693.79,"y":-9892.16},{"nodes":[4059],"orbits":[0],"x":4703.02,"y":-8121.08},{"nodes":[4346],"orbits":[0],"x":4705.26,"y":-4974.35},{"nodes":[7782,48805,26563,4810,61905,8938,12778,33229,64996],"orbits":[1,3,4,7],"x":4748.75,"y":-10725.21},{"nodes":[6161],"orbits":[0],"x":4750.42,"y":-10827.13},{"nodes":[42460,11882,46182,33838,64747],"orbits":[0,4,7],"x":4766,"y":3895.65},{"nodes":[6912],"orbits":[0],"x":4782.59,"y":9204.08},{"nodes":[33292],"orbits":[0],"x":4784.23,"y":-9692.37},{"nodes":[20467,23244,29899,58312,49497,21792,16786,19001],"orbits":[1,3,7],"x":4786.73,"y":9130.06},{"nodes":[17702],"orbits":[0],"x":4788.07,"y":9831.08},{"nodes":[64650,35058,30210,38966],"orbits":[2],"x":4789.34,"y":6875.05},{"nodes":[1995],"orbits":[0],"x":4791.75,"y":2293.82},{"nodes":[61976],"orbits":[0],"x":4795.75,"y":6464.55},{"nodes":[62797],"orbits":[0],"x":-3677.4251094136,"y":-16234.729541646},{"nodes":[9510,16695,61926,1603],"orbits":[2],"x":4821.1,"y":-7752.56},{"nodes":[32040],"orbits":[0],"x":4825,"y":-7747.13},{"nodes":[7054,47009,37250,21142,55829,1420],"orbits":[2,7],"x":4849.31,"y":-3488.45},{"nodes":[34201],"orbits":[0],"x":4859.19,"y":8419.96},{"nodes":[38668,32664,27671,32681,5188],"orbits":[0,7],"x":4865.01,"y":-6372.1},{"nodes":[13724],"orbits":[4],"x":4872.03,"y":-4974.35},{"nodes":[23343,30392,13157,3775,28106,45244,58388,41016],"orbits":[0,2,3],"x":4874.52,"y":10455.42},{"nodes":[29763],"orbits":[0],"x":4889.32,"y":-7413.25},{"nodes":[39241],"orbits":[0],"x":-3593.3351094136,"y":-16051.419541646},{"nodes":[22152,15304,16466,40196],"orbits":[0,2],"x":4918.5,"y":-9036.21},{"nodes":[9586],"orbits":[4],"x":4931.31,"y":-4650.65},{"nodes":[13367,21713,50588,38969,6010],"orbits":[0,2],"x":4944.98,"y":-2386.46},{"nodes":[61356,12498,30341],"orbits":[0,7],"x":4953.65,"y":2387.3},{"nodes":[63888],"orbits":[0],"x":4955.38,"y":2861.7},{"nodes":[37695],"orbits":[0],"x":4989.84,"y":542.4},{"nodes":[50879,14211,43238,22972,44540],"orbits":[1,7],"x":4990.13,"y":5788.96},{"nodes":[43303],"orbits":[0],"x":4997.21,"y":-9613.09},{"nodes":[56729,26308,27017,21349],"orbits":[2],"x":5001.21,"y":7989.42},{"nodes":[57928],"orbits":[0],"x":5022.51,"y":-9397.47},{"nodes":[10382],"orbits":[0],"x":5026.31,"y":-8702.96},{"nodes":[20677],"orbits":[0],"x":5061.13,"y":-4971.48},{"nodes":[43877,51522,47895,56493],"orbits":[1,2,3],"x":5074.31,"y":-208.98},{"nodes":[38044,11813],"orbits":[7],"x":5074.6,"y":585.09},{"nodes":[64345,49968,63679,20008],"orbits":[1,2,7],"x":5085.86,"y":7486.56},{"nodes":[28142],"orbits":[0],"x":5094.15,"y":9900.68},{"nodes":[61263,59446,22115,4544],"orbits":[1,2,7],"x":5095.01,"y":174.43},{"nodes":[37946],"orbits":[0],"x":5112.65,"y":2295.51},{"nodes":[46782,53698,20916,59355],"orbits":[0,7],"x":5188.48,"y":-751.6},{"nodes":[9782],"orbits":[0],"x":5193.02,"y":-5200.3},{"nodes":[535],"orbits":[0],"x":5193.02,"y":-4742.69},{"nodes":[2446,50268,22851,37164,419,63400],"orbits":[2,3],"x":5214.31,"y":-8121.08},{"nodes":[63668,9069,42245,16024,49150,18167,29288],"orbits":[1,2,3],"x":5250.46,"y":-5999.69},{"nodes":[17788,23352,26085,2877,33570,28431,59,8611,20772,51142,36696,33141,58751,23710],"orbits":[6,9,8],"x":-3230.2751094136,"y":-15207.249541646},{"nodes":[49993,40632,48889,28038,3893,64434,56488],"orbits":[0,2,7],"x":5265.67,"y":5191.09},{"nodes":[50498],"orbits":[0],"x":5279.03,"y":-9458.27},{"nodes":[24210,26932,2200,35689,34543],"orbits":[0,2,7],"x":5279.5,"y":6677.73},{"nodes":[240],"orbits":[0],"x":5280.67,"y":-9450.66},{"nodes":[30456],"orbits":[0],"x":5286.04,"y":719.09},{"nodes":[39423,47635,53207,56914],"orbits":[1,2,3,7],"x":5288.98,"y":-7410.44},{"nodes":[17254,26596,14272],"orbits":[0,2,3],"x":5300.06,"y":-3797.31},{"nodes":[1953],"orbits":[0],"x":5316.81,"y":-1530.6},{"nodes":[9275,5704,62166,19337],"orbits":[0,2],"x":5320.34,"y":2650.99},{"nodes":[28021],"orbits":[0],"x":5324.92,"y":-5429.12},{"nodes":[34621],"orbits":[0],"x":5324.92,"y":-4513.87},{"nodes":[44684],"orbits":[0],"x":5328.27,"y":10118.54},{"nodes":[36759],"orbits":[0],"x":5333.76,"y":-6040.15},{"nodes":[54198],"orbits":[0],"x":5357.15,"y":9935.04},{"nodes":[40480],"orbits":[0],"x":5368.5,"y":-1842.95},{"nodes":[46961],"orbits":[0],"x":5371.78,"y":9762.63},{"nodes":[39569,9046,45609,56776,3458,7353,24129],"orbits":[0,1,2,3,7],"x":5399.15,"y":3723.01},{"nodes":[24165],"orbits":[0],"x":5409.48,"y":-6761.17},{"nodes":[21984],"orbits":[1],"x":5445.28,"y":-9562.99},{"nodes":[18121,45319,55041,26135,35564,2335,65310,51565,22682],"orbits":[0,3],"x":5452.61,"y":-10248.41},{"nodes":[44420],"orbits":[0],"x":5457.07,"y":-5200.42},{"nodes":[38541],"orbits":[0],"x":5457.07,"y":-4742.78},{"nodes":[41645,6490,43964,14082,8831],"orbits":[0,2,3,7],"x":5472.15,"y":-8445.56},{"nodes":[54176],"orbits":[0],"x":5478.57,"y":-1107.81},{"nodes":[7526],"orbits":[0],"x":5482.17,"y":6073.03},{"nodes":[24721],"orbits":[0],"x":5541.32,"y":-9278.17},{"nodes":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7],"x":5544.92,"y":8921.21},{"nodes":[30663],"orbits":[0],"x":5545.19,"y":-9271},{"nodes":[14310],"orbits":[0],"x":5569.63,"y":-8962.42},{"nodes":[46882],"orbits":[1],"x":5571.69,"y":9486.45},{"nodes":[61601],"orbits":[0],"x":5579.63,"y":-4981.71},{"nodes":[64213,32155,44204,33729,25700,61246,144,41096,45712,12611],"orbits":[0,4,5,7],"x":5581.73,"y":1347.41},{"nodes":[4238,60173,62986,17316,43263,46688,40244,64492],"orbits":[0,4,7],"x":5585.65,"y":8198.85},{"nodes":[5191],"orbits":[0],"x":5620.6,"y":9982.22},{"nodes":[11472,19880,59390,40270],"orbits":[0,2],"x":5646.25,"y":635.1},{"nodes":[26598],"orbits":[0],"x":5646.98,"y":0.51},{"nodes":[32813],"orbits":[2],"x":5658.94,"y":4004.28},{"nodes":[59600,12208,13619,35809],"orbits":[1,7],"x":5658.94,"y":4289.75},{"nodes":[49466,9411,30871],"orbits":[7],"x":5658.96,"y":4337.05},{"nodes":[23905],"orbits":[0],"x":5664.01,"y":-1616.29},{"nodes":[2995],"orbits":[0],"x":-2784.3151094136,"y":-16234.729541646},{"nodes":[4328],"orbits":[0],"x":5749.4,"y":-6287.76},{"nodes":[3463],"orbits":[0],"x":5749.4,"y":-5672.71},{"nodes":[42379],"orbits":[0],"x":5749.4,"y":-4981.71},{"nodes":[32340],"orbits":[0],"x":5818.69,"y":-9005.17},{"nodes":[56860,29320,1680,17447,24843],"orbits":[0,2,7],"x":5833.86,"y":5463.88},{"nodes":[38111,10242,6079,32241],"orbits":[0,2],"x":5891.44,"y":-6838.35},{"nodes":[45377],"orbits":[0],"x":5901,"y":-8772.67},{"nodes":[10944,33366,55193],"orbits":[1,2,7],"x":5924.32,"y":-625.86},{"nodes":[25971,50635,44423],"orbits":[0,2,3],"x":5933.04,"y":-2670.25},{"nodes":[11764,38878,54975,26772,45774,34898,24240],"orbits":[0,4,5,7],"x":5943.98,"y":7225.03},{"nodes":[23915,41529,21380,31284],"orbits":[0,1,2,7],"x":5948.13,"y":186.79},{"nodes":[60700,52501,44974],"orbits":[0,7],"x":5965.19,"y":-239.81},{"nodes":[25520],"orbits":[0],"x":5975.67,"y":-4755.44},{"nodes":[27875,55463,32123],"orbits":[0,3],"x":5979.38,"y":-1521.97},{"nodes":[50121],"orbits":[0],"x":5988.31,"y":-7475.15},{"nodes":[21572,39050,6660],"orbits":[2],"x":6015.15,"y":6443.42},{"nodes":[21801,30748,44369,24150],"orbits":[1,2,7],"x":6032.38,"y":-8309.51},{"nodes":[31345,30372,42065,55400,37532],"orbits":[0,2],"x":6036.73,"y":1763.34},{"nodes":[2516],"orbits":[0],"x":-2412.6351094136,"y":-15898.889541646},{"nodes":[43720,14383,18568,46601,46887],"orbits":[0,2,3],"x":6104.56,"y":8403.35},{"nodes":[45329],"orbits":[0],"x":6129.78,"y":9643.2},{"nodes":[4552,17215,17668,50817,61355,29306],"orbits":[1,2,7],"x":6139.19,"y":-5350.4},{"nodes":[20820,44628,40166,48544],"orbits":[0,2],"x":6170.77,"y":-6134.8},{"nodes":[42750,37691,9050,56453,60138,25851,52695,57230,24958,51741,16705,17088,61834,24062,54351,64927,52464,5766,51416,32016,49984],"orbits":[0,5,6,7],"x":6172.4,"y":-3563.57},{"nodes":[45100,56928,62350,7163,23013],"orbits":[2,3,4,5],"x":6220.23,"y":4601.9},{"nodes":[20641,14231,40399,51934,43281,25304,47359,40453,61056],"orbits":[0,1,5,7],"x":6324.58,"y":-9381.54},{"nodes":[23608,40024,2091,61741,6951,63759,26565,24401],"orbits":[0,3,4,7],"x":6359.19,"y":2826.09},{"nodes":[39568],"orbits":[0],"x":6359.63,"y":6827.05},{"nodes":[35901,12890,63566,62464,55275,12120,65207,51606,17854],"orbits":[3,4,6],"x":6365.75,"y":3674.83},{"nodes":[43044],"orbits":[0],"x":6365.75,"y":5562.23},{"nodes":[34853,25458,37568,45370],"orbits":[7,2],"x":6365.75,"y":5989.65},{"nodes":[61403],"orbits":[0],"x":6372.73,"y":-8685.67},{"nodes":[56349],"orbits":[0],"x":6372.73,"y":-8307.67},{"nodes":[2128],"orbits":[0],"x":6402.75,"y":9679.75},{"nodes":[5009,36270,12169],"orbits":[0,2,3],"x":6411.76,"y":-4456.86},{"nodes":[28441,32721,24570,11836,47235,53471,10011,11871],"orbits":[2,3,7],"x":6431.15,"y":-2256.19},{"nodes":[11015],"orbits":[0],"x":6470.71,"y":9436.59},{"nodes":[54725,56336,21208,21748],"orbits":[7],"x":6488.25,"y":-6987.61},{"nodes":[32399],"orbits":[0],"x":6506.75,"y":-6478.52},{"nodes":[52191],"orbits":[0],"x":6536.96,"y":-5291.42},{"nodes":[57088,9421,28086,54557,60170],"orbits":[0,2],"x":6551.51,"y":876.88},{"nodes":[45709,26363,52803],"orbits":[7],"x":6555.55,"y":-642.86},{"nodes":[7412,49291,57945,59356],"orbits":[0,7],"x":6555.55,"y":-627.07},{"nodes":[3128,22713,12166],"orbits":[7],"x":6564.29,"y":-7691.65},{"nodes":[33221],"orbits":[0],"x":6564.44,"y":-7691.65},{"nodes":[19722,4959,26331,19003],"orbits":[0,7],"x":6564.44,"y":-7691.65},{"nodes":[42658],"orbits":[0],"x":6564.69,"y":4176.51},{"nodes":[46431],"orbits":[0],"x":6576.88,"y":8924.35},{"nodes":[6570],"orbits":[0],"x":6612.09,"y":-6987.61},{"nodes":[65256],"orbits":[0],"x":6617.23,"y":9944.27},{"nodes":[40626],"orbits":[0],"x":6619.11,"y":9595.71},{"nodes":[34845],"orbits":[0],"x":6636.34,"y":9687.17},{"nodes":[38463],"orbits":[0],"x":6649.25,"y":8378.88},{"nodes":[22329,58526,331,32891,62427,42103,50673],"orbits":[2,3,7],"x":6654.65,"y":7621.83},{"nodes":[1631,14001,56893,29049],"orbits":[7,2],"x":6661.76,"y":246.47},{"nodes":[28199],"orbits":[0],"x":6670.73,"y":9432.42},{"nodes":[54678],"orbits":[0],"x":6720.04,"y":-1779.61},{"nodes":[60735],"orbits":[0],"x":6729.48,"y":3890.84},{"nodes":[57724,26885,34473,20782,42361],"orbits":[0,2,3,4,7],"x":6734.63,"y":-5492.35},{"nodes":[26268,22710,45111,59214],"orbits":[7],"x":6735.94,"y":-6987.61},{"nodes":[21111,43522,33099],"orbits":[4,7],"x":6771.38,"y":8501.01},{"nodes":[46857],"orbits":[0],"x":6790.3,"y":-6502.08},{"nodes":[52060,17602,59799,7338,59798,5335],"orbits":[0,1,7],"x":6844.88,"y":-9157.81},{"nodes":[21495,42794,31433,5348],"orbits":[0,2,3],"x":6846.27,"y":4801},{"nodes":[54883],"orbits":[0],"x":6883.65,"y":-5638.13},{"nodes":[26432],"orbits":[0],"x":6900.54,"y":3596.76},{"nodes":[60273],"orbits":[0],"x":7001.73,"y":9638.79},{"nodes":[59775],"orbits":[0],"x":7020.48,"y":-5774.94},{"nodes":[6842,28329,18472,46533,3700,36723],"orbits":[2,3],"x":7031.53,"y":7197.76},{"nodes":[32438],"orbits":[0],"x":7037.31,"y":-8704.87},{"nodes":[28623,60464,12998,9968,30463,58971,38678],"orbits":[0,4,2],"x":7059,"y":5648.15},{"nodes":[51871,8045,3042],"orbits":[0,2,3],"x":7065.9,"y":-3324.15},{"nodes":[28823,11094,59303],"orbits":[4,7],"x":7074.07,"y":9630.67},{"nodes":[23547,45798,43944,30102,62578,46615,53177],"orbits":[0,2,3,7],"x":7077.07,"y":-4647.67},{"nodes":[14658],"orbits":[0],"x":7088.65,"y":0},{"nodes":[28903,42959,59644,32896,22517],"orbits":[0,7],"x":7088.65,"y":513.16},{"nodes":[55149],"orbits":[0],"x":7119.01,"y":-8248.39},{"nodes":[14446],"orbits":[0],"x":7123.27,"y":-7914.57},{"nodes":[11825],"orbits":[0],"x":7191.57,"y":4152.81},{"nodes":[62185],"orbits":[0],"x":7236.46,"y":5087.69},{"nodes":[48974,47418,63517,23839,53958,51006,10738],"orbits":[0,2,3],"x":7271.19,"y":-1655.98},{"nodes":[64601],"orbits":[0],"x":7273.71,"y":-2633.18},{"nodes":[41877],"orbits":[0],"x":7273.71,"y":-2313.18},{"nodes":[40333,43102,30197,52415,24178,42998,32655,33514],"orbits":[0,2,7],"x":7300.34,"y":2711.86},{"nodes":[29285,9745,11774,58513,16602,14418],"orbits":[0,3,7],"x":7334.57,"y":8277.54},{"nodes":[9199,60323,47560,6792,23221,4534,42302,33245,9151,45331,31918],"orbits":[1,2,3,4,5,6,7,8],"x":7345.82,"y":2075.69},{"nodes":[52971,21227,36290,23046,62936,51891,49976,25528],"orbits":[2,3,4,7],"x":7365.71,"y":-6708.34},{"nodes":[51040,23822,327,58779,9652],"orbits":[0,2],"x":7374.83,"y":-7151.38},{"nodes":[15424,35151,44453,58157,61149,42760],"orbits":[1,2,7],"x":7384.78,"y":-3775.87},{"nodes":[24120,52053,14048,34717,10495],"orbits":[0,3,4,7],"x":7386.63,"y":-380.49},{"nodes":[26762],"orbits":[0],"x":7420.17,"y":-8305.21},{"nodes":[30657],"orbits":[0],"x":7430.94,"y":7597.17},{"nodes":[22817,42714,22962,58848,55724,58644,10576,29065],"orbits":[0,1,3,4,5,7],"x":7459.44,"y":6789.98},{"nodes":[35380,10058],"orbits":[0,2],"x":7466.03,"y":-8440.87},{"nodes":[14724],"orbits":[0],"x":7487.17,"y":5195.85},{"nodes":[35671,11504,30839,31172],"orbits":[2,3,4,5],"x":7495.21,"y":1196.11},{"nodes":[44373],"orbits":[0],"x":7501.94,"y":-8629.84},{"nodes":[336,4806,49388,37304,64543,61921,38215],"orbits":[2,3,4,5],"x":7520.58,"y":-906.8},{"nodes":[6800],"orbits":[0],"x":7559.71,"y":-8913.34},{"nodes":[47374,18049,5802],"orbits":[0,4,7],"x":7559.9,"y":4790.76},{"nodes":[1448,6530,24269,19542],"orbits":[0,2,3],"x":7570.55,"y":3482.17},{"nodes":[32301],"orbits":[0],"x":7573.53,"y":5472.94},{"nodes":[15301,10277,64064,4709,35477],"orbits":[0,2],"x":7632.55,"y":696.89},{"nodes":[31692,46197,61333,45702,39237],"orbits":[0,2],"x":7645.67,"y":-7774.6},{"nodes":[49130,58416,1020,54631,30132],"orbits":[0,2,7],"x":7664.38,"y":1483.08},{"nodes":[37813],"orbits":[0],"x":7678.02,"y":5026.98},{"nodes":[58022],"orbits":[0],"x":7691.01,"y":-8333.04},{"nodes":[52445],"orbits":[0],"x":7747,"y":-5468.73},{"nodes":[34324,13457,3630,56838,26034,45631,62624,42805],"orbits":[3,4,7],"x":7749.73,"y":-5462.17},{"nodes":[57821],"orbits":[4],"x":7752.6,"y":-4481.19},{"nodes":[55377,26211,24883,44573],"orbits":[0,2],"x":7755.88,"y":-1645.82},{"nodes":[59503,22208,60034,6330,15207,4378],"orbits":[0,7],"x":7762.38,"y":6434.67},{"nodes":[5186],"orbits":[0],"x":7764.53,"y":-8668.33},{"nodes":[34497],"orbits":[0],"x":7768.26,"y":228.34},{"nodes":[56023],"orbits":[0],"x":7806.6,"y":-2934.34},{"nodes":[33404],"orbits":[0],"x":7810.1,"y":-4823.01},{"nodes":[50277],"orbits":[0],"x":7815.76,"y":5381.08},{"nodes":[44932],"orbits":[3],"x":7818.48,"y":5206.42},{"nodes":[52361,57462,53771,12078,33713,26107],"orbits":[0,2,3,5],"x":7868.42,"y":-3177.92},{"nodes":[50701],"orbits":[0],"x":7874.86,"y":5154.88},{"nodes":[47976],"orbits":[0],"x":7886.46,"y":-7151.38},{"nodes":[48462,38497,62803,25029],"orbits":[4,5,7],"x":7901.35,"y":8803.79},{"nodes":[33463],"orbits":[0],"x":7994.25,"y":-1873.69},{"nodes":[49996],"orbits":[0],"x":7994.25,"y":-996.85},{"nodes":[32183],"orbits":[0],"x":7994.25,"y":-571.97},{"nodes":[12253],"orbits":[0],"x":7994.25,"y":0},{"nodes":[35696],"orbits":[0],"x":7994.25,"y":1153.21},{"nodes":[2408],"orbits":[0],"x":7994.25,"y":2075.69},{"nodes":[42118],"orbits":[0],"x":7994.25,"y":2711.86},{"nodes":[10648,26400,8904],"orbits":[0,4,7],"x":8000.05,"y":4152.81},{"nodes":[63830,44841,45390,13624,59064,44756,28258,36927,36976,55235],"orbits":[0,1,2,3],"x":8014.32,"y":8180.55},{"nodes":[55664,16568,63246,34702,60992,31826,33585,24889],"orbits":[1,3,4,5,7],"x":8073.32,"y":5817.48},{"nodes":[17146,57518,31366,3843,65265],"orbits":[0,2],"x":8122.32,"y":3085.39},{"nodes":[43453],"orbits":[0],"x":8124.67,"y":632.41},{"nodes":[62542,45713,39607,2559,16329],"orbits":[0,2,3],"x":8175.23,"y":-4097.21},{"nodes":[24786],"orbits":[0],"x":8177.92,"y":6850.21},{"nodes":[44490],"orbits":[0],"x":8203.42,"y":-391.26},{"nodes":[12239],"orbits":[0],"x":8254.56,"y":-2462.39},{"nodes":[64050],"orbits":[0],"x":8280.06,"y":715.96},{"nodes":[54152],"orbits":[0],"x":8280.54,"y":369.3},{"nodes":[1599,35173,16013,41811,16140,31286],"orbits":[2,3,7],"x":8281.88,"y":-2509.71},{"nodes":[1416],"orbits":[0],"x":8284.38,"y":-6118.71},{"nodes":[8456,10267,38329],"orbits":[0,7],"x":8287.51,"y":1489.63},{"nodes":[5163,48103,26726,52875],"orbits":[0,2],"x":8294.62,"y":-1449.59},{"nodes":[16401],"orbits":[0],"x":8325.04,"y":-131.01},{"nodes":[39881],"orbits":[0],"x":8344.62,"y":-2618.36},{"nodes":[24070],"orbits":[0],"x":8357.14,"y":1153.21},{"nodes":[19461,38944,43338,5797,22063,64415,56767],"orbits":[2,3,7],"x":8357.5,"y":-6160.65},{"nodes":[33348,11509,17664,7465,11463],"orbits":[0,2,3],"x":8363.42,"y":2346.58},{"nodes":[51602,23305,21279,44280,35534],"orbits":[0,2],"x":8365.09,"y":1769.99},{"nodes":[3994,9089,37951,41020,34908],"orbits":[1,2,3],"x":8369.01,"y":4523.71},{"nodes":[3431,5305,43082],"orbits":[1,2],"x":8388.6,"y":6235.46},{"nodes":[30077],"orbits":[0],"x":8390.12,"y":-7635.29},{"nodes":[24656],"orbits":[0],"x":8400.25,"y":166.18},{"nodes":[7302,52615,33093,25729,37876],"orbits":[4,7],"x":8409.99,"y":-7674.9},{"nodes":[12800],"orbits":[0],"x":8433.06,"y":504.46},{"nodes":[61800,52630,28371,60560,29527],"orbits":[0,7],"x":8443.67,"y":-719.43},{"nodes":[1514],"orbits":[0],"x":8444.56,"y":-598.29},{"nodes":[12893],"orbits":[0],"x":8446.46,"y":6869.13},{"nodes":[7809],"orbits":[0],"x":8464.96,"y":-3633.16},{"nodes":[54984],"orbits":[0],"x":8470.97,"y":4890.73},{"nodes":[56988],"orbits":[0],"x":8506.18,"y":-3240.16},{"nodes":[47831,44522,63762,34541,52743,8734],"orbits":[1,2],"x":8512.95,"y":-1003.98},{"nodes":[12174,18864,49107,54562,49485,2745],"orbits":[1,2],"x":8553.74,"y":2712.82},{"nodes":[43090],"orbits":[0],"x":8601.56,"y":-234.45},{"nodes":[32672,23362,4031,17871,13701,9928,50403],"orbits":[0,2,3,4],"x":8602.39,"y":-5782.69},{"nodes":[8896],"orbits":[0],"x":8629.29,"y":605.39},{"nodes":[15814],"orbits":[0],"x":8660.79,"y":276.65},{"nodes":[59538],"orbits":[0],"x":8684.39,"y":-6347.76},{"nodes":[58397,19338,31647],"orbits":[0,3],"x":8692.14,"y":1153.21},{"nodes":[65167],"orbits":[0],"x":8704.67,"y":6828.76},{"nodes":[25055,13799,41580,36576,41298],"orbits":[0,2,7],"x":8732.17,"y":4438.38},{"nodes":[60483],"orbits":[0],"x":8733.08,"y":-3633.16},{"nodes":[36540],"orbits":[0],"x":8733.08,"y":-3371.16},{"nodes":[25070,11252,32903,39911,25361],"orbits":[2],"x":8744.6,"y":-4572.62},{"nodes":[19074,8560,31273,35985,13987,48531,56761,7604,17372],"orbits":[1,2,3,5,7],"x":8801.96,"y":2075.59},{"nodes":[712],"orbits":[0],"x":8833.93,"y":6608.57},{"nodes":[24948],"orbits":[0],"x":8835.76,"y":6604.98},{"nodes":[36071,38369,35223,36677,13895,61112,18910,21225,10265,9240,19767,55680,9227],"orbits":[0,2,3,4,5,6],"x":8847.14,"y":7072.15},{"nodes":[15625,23253,65161,3170,22811],"orbits":[2],"x":8862.17,"y":5791.31},{"nodes":[18717],"orbits":[0],"x":8862.26,"y":-3861.86},{"nodes":[24287],"orbits":[0],"x":8886.25,"y":6141.88},{"nodes":[8273],"orbits":[0],"x":8922.01,"y":-4178.25},{"nodes":[51241,50420,55118,31364],"orbits":[0,2],"x":8927.04,"y":4861.35},{"nodes":[60210,6078,64325,45304,61119,63431],"orbits":[1,2,3],"x":8940.31,"y":-1873.69},{"nodes":[1801,60,58426,34401],"orbits":[0,2,7],"x":8971.45,"y":474.23},{"nodes":[15356],"orbits":[0],"x":8992.39,"y":-3633.64},{"nodes":[40990],"orbits":[0],"x":8993.62,"y":-3178.16},{"nodes":[2334],"orbits":[0],"x":9027.14,"y":1153.21},{"nodes":[27704],"orbits":[0],"x":9053.85,"y":1471.47},{"nodes":[14226],"orbits":[0],"x":9119.2,"y":6374.82},{"nodes":[17420],"orbits":[0],"x":9124.17,"y":-3861.86},{"nodes":[18815],"orbits":[0],"x":9125.5,"y":-3407.73},{"nodes":[25565],"orbits":[2],"x":9152.09,"y":-4119.84},{"nodes":[34478],"orbits":[0],"x":9189.45,"y":3777.45},{"nodes":[53150,17589,45012,8246,37742,64462,37548,15270,36085],"orbits":[0,2,3],"x":9207.96,"y":-758.58},{"nodes":[41017],"orbits":[0],"x":9212.92,"y":-2.43},{"nodes":[59657,58692,58593,49356,60239,15343,26556,18314,42078],"orbits":[0,3,5],"x":9257.6,"y":-2702.28},{"nodes":[36364],"orbits":[0],"x":9287.06,"y":3103.82},{"nodes":[43064],"orbits":[0],"x":9288.71,"y":3526.05},{"nodes":[10162,3336,36231,30615,65204],"orbits":[0,2],"x":9329.96,"y":-5015.5},{"nodes":[37242,59368,61215,9532,16871,54031],"orbits":[0,7],"x":9400,"y":4449.79},{"nodes":[22927,20582,29246],"orbits":[6],"x":9400.47,"y":5023.83},{"nodes":[56701],"orbits":[0],"x":9437.62,"y":3691.67},{"nodes":[52257],"orbits":[0],"x":9455.83,"y":2570.72},{"nodes":[22726],"orbits":[0],"x":9458.47,"y":-3946},{"nodes":[27422,2021,17687,10472,25857],"orbits":[0,4,7],"x":9465.68,"y":5354.06},{"nodes":[62096],"orbits":[0],"x":9477.71,"y":3854.15},{"nodes":[63600],"orbits":[0],"x":9507.95,"y":2888.65},{"nodes":[31765],"orbits":[0],"x":9512.58,"y":-5497.3},{"nodes":[37616,8644,33964,64295,27834,63659,37688,27417,62496,34912,4664,43938,34449],"orbits":[4,5,6],"x":9516.92,"y":-7180.28},{"nodes":[34015],"orbits":[0],"x":9527.62,"y":5500.5},{"nodes":[47853],"orbits":[0],"x":9566.38,"y":3484.69},{"nodes":[27513,65498,39307,7294,37026],"orbits":[1,2,7],"x":9588.39,"y":-215.51},{"nodes":[44891,55835,20909,52537,7023],"orbits":[0,2],"x":9590.33,"y":-3478.67},{"nodes":[59083,32364,1073,32858,1205,14882,5048,261],"orbits":[0,2,3,7],"x":9649.45,"y":5859.96},{"nodes":[57069],"orbits":[0],"x":9696.74,"y":2772.94},{"nodes":[63192],"orbits":[0],"x":9712.8,"y":4026.57},{"nodes":[65091,1841,38728,44776,3209,14539,9405,51707,59720,41163],"orbits":[0,5,7],"x":9720.67,"y":1153.21},{"nodes":[62998],"orbits":[0],"x":9731.16,"y":3030.3},{"nodes":[28414],"orbits":[0],"x":9738.29,"y":3696.59},{"nodes":[45382,28859,53265],"orbits":[0,3,4],"x":9754.7,"y":-1887.15},{"nodes":[722],"orbits":[0],"x":9755.52,"y":-4566.29},{"nodes":[35095,19359,41886,9663,52245],"orbits":[0,2,3],"x":9759.71,"y":-5970.48},{"nodes":[20105],"orbits":[0],"x":9764.39,"y":6540.17},{"nodes":[65212,32543,34968,58539,60899,64637],"orbits":[0,7],"x":9805.18,"y":2135.11},{"nodes":[48116],"orbits":[0],"x":9826.06,"y":4319.11},{"nodes":[41861],"orbits":[0],"x":9855.92,"y":3274.55},{"nodes":[21156,19027,34623,40471,14769,7847],"orbits":[0,2,7],"x":9860.54,"y":353.55},{"nodes":[20649],"orbits":[0],"x":9947.79,"y":2860.79},{"nodes":[29990,47477,51774,36217,47021,34425],"orbits":[1,2,7],"x":9959.33,"y":-2457.79},{"nodes":[65290],"orbits":[0],"x":10006.41,"y":2637.88},{"nodes":[16121,61421,56334,46171,41753],"orbits":[0,7],"x":10039.26,"y":-5356.19},{"nodes":[14262],"orbits":[0],"x":10048.64,"y":0},{"nodes":[12116,52410,20414,55329,42036,35043,50146],"orbits":[4,3],"x":10080.5,"y":5416.44},{"nodes":[18624,17523,42032,30408,39608,12329,1778,17906],"orbits":[0,3,7],"x":10082.79,"y":4865.9},{"nodes":[49320,30973],"orbits":[6],"x":10091.58,"y":-5603.69},{"nodes":[15775],"orbits":[0],"x":10091.7,"y":-3334.83},{"nodes":[3640,28963,7888,17724,17101,25362,37780],"orbits":[2,3],"x":10100.39,"y":-1227.6},{"nodes":[23105],"orbits":[0],"x":10112.62,"y":-1237.84},{"nodes":[2582],"orbits":[0],"x":10184.13,"y":3019.63},{"nodes":[60891,18897,64990,53185],"orbits":[1,2,3],"x":10203.08,"y":1730.1},{"nodes":[47514,38342,21945,61718,26572,54545,39128],"orbits":[0,2,7],"x":10290.88,"y":-481.6},{"nodes":[29959,60362,6891,56265,42802],"orbits":[0,2],"x":10299.85,"y":-3717.25},{"nodes":[17792,34892,12066,42226,48734],"orbits":[3,2],"x":10370.85,"y":533.97},{"nodes":[30808],"orbits":[0],"x":10379,"y":-2278.35},{"nodes":[27705],"orbits":[0],"x":10420.75,"y":2130.08},{"nodes":[28835,60480,56847,8157,178,28044,43088,6988],"orbits":[0,2,3,5,7],"x":10451.5,"y":3456.48},{"nodes":[326],"orbits":[0],"x":10503.99,"y":-3050.26},{"nodes":[59694],"orbits":[0],"x":10614.77,"y":-3021.26},{"nodes":[3543,31825,20787,5390,16142],"orbits":[3,7],"x":10650.08,"y":2504.32},{"nodes":[632],"orbits":[0],"x":10657.31,"y":-5268.96},{"nodes":[48773],"orbits":[0],"x":10682.01,"y":1152.07},{"nodes":[34612,25992,60764,11526,31055,44141,7651,21788,21112,8573,25586],"orbits":[2,3,4,5,6],"x":10682.25,"y":4548.52},{"nodes":[2361,37514,31449,9444,52399,2113,34316,61632,4536,11598,44516],"orbits":[0,2,3,5,6],"x":10687.96,"y":-3515.65},{"nodes":[14267],"orbits":[0],"x":10699.04,"y":-1058.34},{"nodes":[28638],"orbits":[0],"x":10703.99,"y":-3595.77},{"nodes":[64700],"orbits":[0],"x":10769.27,"y":-4040.33},{"nodes":[18969],"orbits":[0],"x":10793.45,"y":4578.32},{"nodes":[52215],"orbits":[0],"x":10794.6,"y":-5031.25},{"nodes":[3419,28797,20429],"orbits":[6],"x":10801.88,"y":-4373.44},{"nodes":[46152,40110,42347,8302,4467,42974],"orbits":[1,2,3,7],"x":10802.3,"y":-2128.64},{"nodes":[38993],"orbits":[0],"x":10852.75,"y":5275.51},{"nodes":[32442],"orbits":[0],"x":10878.54,"y":-4005.64},{"nodes":[53272,2560,20044,30736,52180],"orbits":[1,2,3],"x":10949.1,"y":3186.63},{"nodes":[32763],"orbits":[1],"x":10978.46,"y":-82.24},{"nodes":[41873,55995,57970,21537],"orbits":[2],"x":11005.79,"y":1424.1},{"nodes":[27048],"orbits":[0],"x":11023.99,"y":2449.53},{"nodes":[43867,10423,37905,57571,28101],"orbits":[1,2,3,7],"x":11025.45,"y":-2615.56},{"nodes":[56366,54058,35755,4423,62001],"orbits":[0,2,3],"x":11047.97,"y":-5335.92},{"nodes":[39495],"orbits":[0],"x":11053.84,"y":2092.2},{"nodes":[38212,57683,1499,33830,35031],"orbits":[0,2],"x":11095.74,"y":-797.85},{"nodes":[328],"orbits":[0],"x":11202.42,"y":4037.83},{"nodes":[28976],"orbits":[0],"x":11230.95,"y":-1058.34},{"nodes":[47375],"orbits":[0],"x":11305.33,"y":2677.45},{"nodes":[39986],"orbits":[0],"x":11330.52,"y":1564.9},{"nodes":[6030,2500,15986,29458,2134,53595,9703,1723,38628],"orbits":[2,3,7],"x":11355.41,"y":-1515.36},{"nodes":[38493,38537,13407,39369,55621,2936,23040,54983,51583],"orbits":[0,2,4,7],"x":11355.97,"y":617.13},{"nodes":[46386],"orbits":[0],"x":11403.34,"y":1937.84},{"nodes":[23374],"orbits":[0],"x":11480.79,"y":-1058.34},{"nodes":[63618],"orbits":[0],"x":11588.89,"y":2604.19},{"nodes":[37971],"orbits":[0],"x":11726.63,"y":2342.66},{"nodes":[57933],"orbits":[0],"x":11768.79,"y":1960.45},null,{"nodes":[52800,57615,32319,48836,33542],"orbits":[0,4,6,7],"x":12068.18,"y":1163.81},{"nodes":[16150],"orbits":[0],"x":12070.35,"y":2129.97},{"nodes":[47443],"orbits":[0],"x":12118.08,"y":2530.75},{"nodes":[44699],"orbits":[0],"x":12345.66,"y":2292.24},{"nodes":[31129],"orbits":[0],"x":12484.46,"y":2765.08},{"nodes":[10315],"orbits":[0],"x":12637.88,"y":2423.74},null,null,null,{"nodes":[24226],"orbits":[0],"x":15371.480358698,"y":2616.7256992497},{"nodes":[12033,42416,46854,61461,3987,24295,49165,39723,46990],"orbits":[2,3,5,6,8,9],"x":15460.430358698,"y":1628.1856992497},{"nodes":[30],"orbits":[0],"x":15552.250358698,"y":2167.0456992497},{"nodes":[29871],"orbits":[0],"x":15654.500358698,"y":2540.8956992497},{"nodes":[8143,65173,7621,23587,64031,63713,52448,12876,63236,23415,13065,16100,17268,25434,55611,29133,57181,44357,27686,9994],"orbits":[3,4,5,6,8,9],"x":13486.994220367,"y":-7733.2438988933},{"nodes":[59542],"orbits":[0],"x":15918.770358698,"y":1995.6856992497},{"nodes":[59913],"orbits":[0],"x":15937.520358698,"y":2465.0556992497},{"nodes":[5817],"orbits":[0],"x":15971.490358698,"y":1439.8456992497},{"nodes":[41875],"orbits":[0],"x":16012.290358698,"y":1832.6856992497},{"nodes":[41751,61586,19370,17356,39552,51546,1739,39595,53280,65228,52295,34081,57449,36643,20437,37604,11495],"orbits":[1,3,4,5,6,7,9,8],"x":11912.761258739,"y":-10808.257010789},{"nodes":[23508],"orbits":[0],"x":16364.270358698,"y":949.95569924971},{"nodes":[35801],"orbits":[0],"x":16416.160358698,"y":1238.3156992497},{"nodes":[61991,24868,29074,14508,33736,9798,1583],"orbits":[9,8],"x":14785.281314235,"y":4805.3104826906},{"nodes":[37336],"orbits":[0],"x":16469.230358698,"y":1526.4756992497},{"nodes":[38004],"orbits":[0],"x":15288.991314235,"y":4350.8104826906},{"nodes":[9710],"orbits":[0],"x":15288.991314235,"y":4471.8104826906},{"nodes":[18940],"orbits":[0],"x":15393.791314235,"y":4290.3104826906},{"nodes":[57141],"orbits":[0],"x":15393.791314235,"y":4411.3104826906},{"nodes":[49503],"orbits":[0],"x":15393.791314235,"y":4911.0004826906},{"nodes":[56618],"orbits":[0],"x":15498.581314235,"y":4349.4104826906},{"nodes":[58379],"orbits":[0],"x":15498.581314235,"y":4471.8104826906},{"nodes":[16],"orbits":[0],"x":15675.421314235,"y":4911.0004826906},{"nodes":[41619],"orbits":[0],"x":15739.381314235,"y":4672.3404826906},{"nodes":[57253],"orbits":[0],"x":15851.451314235,"y":4800.8104826906},{"nodes":[16433],"orbits":[0],"x":15928.431314235,"y":4904.0004826906},{"nodes":[12183],"orbits":[0],"x":15928.431314235,"y":5186.2504826906},{"nodes":[46454],"orbits":[0],"x":15932.191314235,"y":4199.1104826906},{"nodes":[36676],"orbits":[0],"x":15932.191314235,"y":4531.3104826906},{"nodes":[12795],"orbits":[0],"x":16007.351314235,"y":4800.7904826906},{"nodes":[40],"orbits":[0],"x":16117.601314235,"y":4671.3404826906},{"nodes":[39292],"orbits":[0],"x":16182.151314235,"y":4911.0004826906},{"nodes":[35187],"orbits":[0],"x":12155.48775751,"y":7772.5537505729},{"nodes":[18826,34567,3781,25781,59759,50098,52395,41076,31116,34817,17923,60251,47344,36788,24475,1347,11771,25779,25885,32771,74],"orbits":[6,8,9,5],"x":14799.951367537,"y":-4762.3700120566},{"nodes":[41008],"orbits":[0],"x":12490.29775751,"y":8008.7037505729},{"nodes":[664],"orbits":[0],"x":15158.101367537,"y":-4236.3700120566},{"nodes":[42441],"orbits":[0],"x":12560.33775751,"y":7737.9837505729},{"nodes":[26283],"orbits":[0],"x":15264.521367537,"y":-4418.0400120566},{"nodes":[43095],"orbits":[0],"x":12722.48775751,"y":7924.4637505729},{"nodes":[56331],"orbits":[0],"x":15367.881367537,"y":-4235.0100120566},{"nodes":[528],"orbits":[0],"x":12956.91775751,"y":8209.9237505729},{"nodes":[19233],"orbits":[0],"x":13066.45775751,"y":7801.1337505729},{"nodes":[41401,27773,62743,765,46070,4367,39887,56489,28254,26294,62702,37769,21519,62424,41085,45228,5733,63493],"orbits":[3,4,5,6,8,9],"x":11656.97779015,"y":10781.951577101},{"nodes":[55796],"orbits":[0],"x":13289.47775751,"y":8076.4037505729},{"nodes":[9294],"orbits":[0],"x":13473.25775751,"y":8428.6837505729},{"nodes":[7979],"orbits":[0],"x":13624.14775751,"y":7862.8237505729},{"nodes":[46071],"orbits":[0],"x":13830.25775751,"y":8428.6837505729},{"nodes":[35033],"orbits":[0],"x":13856.52775751,"y":8228.3437505729},{"nodes":[60662],"orbits":[0],"x":13933.95775751,"y":8041.6837505729},{"nodes":[41736],"orbits":[6],"x":14010.99775751,"y":7835.4237505729},{"nodes":[2702],"orbits":[0],"x":14332.65775751,"y":7921.9737505729},{"nodes":[7068],"orbits":[0],"x":7883.7312025516,"y":12821.769100546},{"nodes":[3065],"orbits":[0],"x":14510.33775751,"y":7571.5037505729},{"nodes":[63254],"orbits":[0],"x":14604.25775751,"y":7921.9737505729},{"nodes":[6109],"orbits":[0],"x":14604.25775751,"y":8152.2037505729},{"nodes":[47312],"orbits":[0],"x":14698.13775751,"y":7571.6137505729},{"nodes":[3223],"orbits":[0],"x":8266.3112025516,"y":13156.799100546},{"nodes":[5563],"orbits":[0],"x":14865.93775751,"y":7921.9737505729},{"nodes":[34785],"orbits":[0],"x":8818.6112025516,"y":13230.029100546},{"nodes":[18280],"orbits":[0],"x":9314.5212025516,"y":12333.309100546},{"nodes":[62804],"orbits":[0],"x":9534.1712025516,"y":12751.159100546},{"nodes":[17058],"orbits":[0],"x":9549.6112025516,"y":12973.029100546},{"nodes":[42017],"orbits":[0],"x":9549.6112025516,"y":13230.029100546},{"nodes":[58574],"orbits":[0],"x":9549.6112025516,"y":13487.029100546},{"nodes":[37972],"orbits":[0],"x":9616.3212025516,"y":12375.639100546},{"nodes":[38813],"orbits":[0],"x":9625.0212025516,"y":12036.589100546},{"nodes":[36365],"orbits":[6],"x":9688.2912025516,"y":12636.769100546},{"nodes":[4891],"orbits":[0],"x":9850.4112025516,"y":12521.869100546},{"nodes":[30100],"orbits":[0],"x":9886.6612025516,"y":12162.199100546},{"nodes":[58149],"orbits":[0],"x":9893.7112025516,"y":12885.789100546},{"nodes":[37046],"orbits":[0],"x":9942.6712025516,"y":11772.789100546},{"nodes":[60859],"orbits":[0],"x":10074.361202552,"y":12761.739100546},{"nodes":[30233],"orbits":[0],"x":10115.831202552,"y":12357.719100546},{"nodes":[22661],"orbits":[0],"x":10251.191202552,"y":12701.699100546},{"nodes":[11776],"orbits":[0],"x":10396.921202552,"y":12302.639100546}],"jewelSlots":[26725,36634,33989,41263,60735,61834,31683,28475,6230,48768,34483,7960,46882,55190,61419,2491,54127,32763,26196,33631,21984,59740,63132,36044,17788,62152,26178,23960,39087,3367,11184],"max_x":24237.612927058,"max_y":24475.572859619,"min_x":-23887.484495557,"min_y":-24295.632110005,"nodeOverlay":{"Keystone":{"alloc":"KeystoneFrameAllocated","path":"KeystoneFrameCanAllocate","unalloc":"KeystoneFrameUnallocated"},"Normal":{"alloc":"PSSkillFrameActive","path":"PSSkillFrameHighlighted","unalloc":"PSSkillFrame"},"Notable":{"alloc":"NotableFrameAllocated","path":"NotableFrameCanAllocate","unalloc":"NotableFrameUnallocated"},"Socket":{"alloc":"JewelFrameAllocated","path":"JewelFrameCanAllocate","unalloc":"JewelFrameUnallocated"}},"nodes":{"4":{"connections":[{"id":11578,"orbit":0}],"group":1069,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":4,"stats":["15% increased chance to Shock"],"stringId":"lightning14"},"16":{"ascendancyName":"Pathfinder","connections":[{"id":41619,"orbit":7}],"group":1571,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Life Flask Charges","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":16,"stats":["20% increased Life Flask Charges gained"],"stringId":"AscendancyRanger3Small6"},"30":{"ascendancyName":"Deadeye","connections":[],"group":1552,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds","isNotable":true,"name":"Gathering Winds","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30,"stats":["Gain Tailwind on Skill use","Lose all Tailwind when Hit"],"stringId":"AscendancyRanger1Notable3"},"40":{"ascendancyName":"Pathfinder","connections":[],"group":1579,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds","isNotable":true,"name":"Sustainable Practices","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":40,"stats":["50% of Evasion Rating also grants Elemental Damage reduction"],"stringId":"AscendancyRanger3Notable5"},"52":{"connections":[{"id":39131,"orbit":0}],"flavourText":"Tear my flesh and splinter my bones. You will never break my spirit.","group":194,"icon":"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds","isKeystone":true,"name":"Zealot's Oath","orbit":0,"orbitIndex":0,"skill":52,"stats":["Excess Life Recovery from Regeneration is applied to Energy Shield","Energy Shield does not Recharge"],"stringId":"passive_keystone_zealots_oath"},"55":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1138,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Fast Acting Toxins","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Greed","Isolation"],"skill":55,"stats":["Damaging Ailments deal damage 12% faster"],"stringId":"ailments38"},"59":{"ascendancyName":"Lich","connections":[],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds","isNotable":true,"isSwitchable":true,"name":"Incessant Cacophony","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":8,"orbitIndex":50,"skill":59,"stats":["Curses you inflict have infinite Duration","You can apply an additional Curse"],"stringId":"AscendancyWitch3Notable9"},"60":{"connections":[{"id":58426,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":2,"orbitIndex":13,"skill":60,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"blind2"},"65":{"connections":[{"id":15698,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":7,"skill":65,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze19_"},"71":{"connections":[{"id":62376,"orbit":0}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Reduced Duration","orbit":7,"orbitIndex":17,"skill":71,"stats":["4% reduced Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical58"},"74":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":17923,"orbit":0},{"id":24475,"orbit":-9},{"id":36788,"orbit":0},{"id":25779,"orbit":0},{"id":1347,"orbit":-8},{"id":25885,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Acolyte of Chayula","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":24,"skill":74,"stats":[],"stringId":"AscendancyMonk3Start"},"94":{"connections":[{"id":27234,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Efficient Killing","orbit":7,"orbitIndex":4,"recipe":["Envy","Guilt","Paranoia"],"skill":94,"stats":["15% increased Mana Regeneration Rate","Recover 2% of maximum Mana on Kill"],"stringId":"mana_regeneration49"},"95":{"connections":[{"id":8737,"orbit":0}],"group":525,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":95,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence41"},"97":{"connections":[{"id":52442,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":0,"skill":97,"stats":["3% increased Attack Speed"],"stringId":"attack_speed2_"},"110":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":20,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds","isNotable":true,"name":"Internal Layer","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":110,"stats":["Body Armour grants Hits against you have 100% reduced Critical Damage Bonus"],"stringId":"AscendancyWarrior3Notable6_10"},"116":{"connections":[{"id":44359,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Insightfulness","orbit":7,"orbitIndex":13,"recipe":["Guilt","Disgust","Fear"],"skill":116,"stats":["18% increased maximum Energy Shield","12% increased Mana Regeneration Rate","6% increased Intelligence"],"stringId":"energy_shield34_"},"144":{"connections":[{"id":26598,"orbit":0}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Freeze Buildup","orbit":5,"orbitIndex":12,"skill":144,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"stringId":"elemental27"},"151":{"connections":[{"id":34747,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":5,"skill":151,"stats":["16% increased Accuracy Rating at Close Range"],"stringId":"accuracy6"},"178":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":5,"orbitIndex":30,"skill":178,"stats":["8% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds14"},"229":{"connections":[{"id":46365,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":6,"skill":229,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation15_"},"240":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":50498,"orbit":0}],"group":1219,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":240,"stats":[],"stringId":"mastery_lightning150"},"244":{"connections":[{"id":52354,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Damage","orbit":4,"orbitIndex":66,"skill":244,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"stringId":"boss_slaying2_"},"259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":537,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":259,"stats":[],"stringId":"mastery_attack8"},"261":{"connections":[{"id":1205,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Toxic Sludge","orbit":3,"orbitIndex":13,"recipe":["Suffering","Guilt","Disgust"],"skill":261,"stats":["40% increased Duration of Poisons you inflict against Slowed Enemies"],"stringId":"poison41"},"270":{"connections":[{"id":56219,"orbit":2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":2,"orbitIndex":6,"skill":270,"stats":["Inherent loss of Rage is 15% slower"],"stringId":"rage37"},"290":{"connections":[{"id":37619,"orbit":2}],"group":312,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":290,"stats":["12% increased Fire Damage"],"stringId":"fire72"},"292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":474,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":292,"stats":[],"stringId":"mastery_life135"},"296":{"connections":[{"id":30959,"orbit":2},{"id":8145,"orbit":2},{"id":12992,"orbit":2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":7,"orbitIndex":18,"skill":296,"stats":["Damage Penetrates 3% of Enemy Elemental Resistances"],"stringId":"oracle7"},"315":{"connections":[{"id":33216,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":315,"stats":["10% increased Bleeding Duration"],"stringId":"bleed1"},"326":{"connections":[{"id":31449,"orbit":0}],"group":1505,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Chance","orbit":0,"orbitIndex":0,"skill":326,"stats":["10% increased Critical Hit Chance with Quarterstaves"],"stringId":"quarterstaff12"},"327":{"connections":[{"id":9652,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":12,"skill":327,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"deflect63"},"328":{"connections":[{"id":25992,"orbit":0},{"id":60764,"orbit":0},{"id":21112,"orbit":0}],"group":1529,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":0,"orbitIndex":0,"skill":328,"stats":["10% increased Accuracy Rating with Bows"],"stringId":"bow8"},"331":{"connections":[{"id":42103,"orbit":2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection and Evasion","orbit":2,"orbitIndex":3,"skill":331,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"deflect38"},"336":{"connections":[{"id":4806,"orbit":-3}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Storm Swell","orbit":3,"orbitIndex":15,"recipe":["Envy","Suffering","Suffering"],"skill":336,"stats":["Damage Penetrates 15% Cold Resistance","Damage Penetrates 8% Lightning Resistance"],"stringId":"cold_penetration22"},"338":{"connections":[{"id":20140,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Invocated Limit","orbit":1,"orbitIndex":6,"recipe":["Isolation","Ire","Greed"],"skill":338,"stats":["Invocated skills have 30% increased Maximum Energy"],"stringId":"triggers19"},"354":{"connections":[{"id":48429,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":3,"orbitIndex":16,"skill":354,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades6"},"364":{"connections":[{"id":2847,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":4,"skill":364,"stats":["+3 to all Attributes"],"stringId":"attributes107"},"372":{"connections":[{"id":54340,"orbit":0}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Heatproof","orbit":7,"orbitIndex":6,"recipe":["Disgust","Disgust","Greed"],"skill":372,"stats":["10% increased Armour","+30% of Armour also applies to Fire Damage","30% reduced Magnitude of Ignite on you"],"stringId":"armour17"},"375":{"connections":[{"id":12276,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":17,"skill":375,"stats":["15% increased Damage with Maces"],"stringId":"mace10"},"378":{"ascendancyName":"Oracle","connections":[{"id":55135,"orbit":-6}],"group":35,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Critical Hit Chance","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":378,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyDruid1Small8"},"419":{"connections":[{"id":63400,"orbit":-7}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Non-Damaging Ailment Magnitude","orbit":2,"orbitIndex":12,"skill":419,"stats":["10% increased Magnitude of Non-Damaging Ailments you inflict"],"stringId":"monkchakra23"},"440":{"connections":[{"id":6133,"orbit":-5}],"group":111,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":440,"stats":["5% increased Block chance"],"stringId":"shield13"},"472":{"connections":[{"id":3744,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":472,"stats":["+8 to Dexterity"],"stringId":"attributes113"},"479":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[{"id":29126,"orbit":2}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Hidden Forms","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":479,"stats":["Gain 8% of Damage as Extra Damage of a random Element while Shapeshifted"],"stringId":"oracle_shapeshifting_path3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"483":{"connectionArt":"CharacterPlanned","connections":[{"id":12601,"orbit":2147483647},{"id":35745,"orbit":2147483647}],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":18,"skill":483,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"stringId":"oracle_endurance_charge3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"506":{"connections":[{"id":6416,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":14,"skill":506,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour9"},"511":{"connections":[{"id":49734,"orbit":0}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":7,"orbitIndex":8,"skill":511,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells7"},"516":{"connections":[{"id":47157,"orbit":4}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":16,"skill":516,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles32"},"517":{"connections":[{"id":39037,"orbit":6},{"id":61027,"orbit":9}],"group":855,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":0,"orbitIndex":0,"skill":517,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"energy_shield11"},"526":{"connections":[{"id":2645,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":4,"orbitIndex":4,"skill":526,"stats":["18% increased Stun Buildup with Maces"],"stringId":"mace5"},"528":{"ascendancyName":"Amazon","connections":[{"id":41008,"orbit":0}],"group":1589,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Accuracy","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":528,"stats":["12% increased Accuracy Rating"],"stringId":"AscendancyHuntress1Small2"},"535":{"connections":[{"id":34621,"orbit":0}],"group":1212,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":535,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals45"},"541":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Recharge","orbit":6,"orbitIndex":17,"skill":541,"stats":["15% increased Energy Shield Recharge Rate while Shapeshifted"],"stringId":"wyvern9"},"558":{"connections":[],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":4,"skill":558,"stats":["12% increased Fire Damage"],"stringId":"fire12"},"589":{"connections":[{"id":14509,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Rage on Melee Hit","orbit":7,"orbitIndex":5,"skill":589,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"glory23"},"630":{"connections":[{"id":13419,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":1,"orbitIndex":4,"skill":630,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals42"},"632":{"connections":[{"id":56366,"orbit":0}],"group":1508,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":0,"orbitIndex":0,"skill":632,"stats":["3% increased Attack Speed with Daggers"],"stringId":"dagger5"},"658":{"connections":[{"id":1861,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":19,"skill":658,"stats":["+6% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"armour_and_evasion55"},"664":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1584,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds","isMultipleChoiceOption":true,"name":"Choice of Power","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":664,"stats":["Remnants you create have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Purple"],"stringId":"AscendancyMonk3Notable6"},"675":{"connections":[{"id":13489,"orbit":-9}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Slow Effect on You","orbit":2,"orbitIndex":5,"skill":675,"stats":["10% increased Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"armour29"},"703":{"connections":[{"id":44917,"orbit":-3}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":1,"orbitIndex":2,"skill":703,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield4"},"712":{"connections":[{"id":24948,"orbit":0}],"group":1433,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds","isNotable":true,"name":"Bond of the Ape","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Isolation"],"skill":712,"stats":["12% increased Area of Effect","Companions have 30% increased Area of Effect"],"stringId":"companions66"},"722":{"connections":[{"id":3419,"orbit":0},{"id":15775,"orbit":0}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":722,"stats":["+5 to any Attribute"],"stringId":"dexterity46"},"750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":6952,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Tribal Fury","orbit":2,"orbitIndex":22,"recipe":["Isolation","Ire","Isolation"],"skill":750,"stats":["Strikes deal Splash Damage"],"stringId":"area_attacks36"},"752":{"connections":[{"id":47420,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Duration","orbit":2,"orbitIndex":9,"skill":752,"stats":["Minions deal 6% increased Damage","6% increased Minion Duration"],"stringId":"minion_reservation7_"},"761":{"connectionArt":"CharacterPlanned","connections":[{"id":22133,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":12,"skill":761,"stats":["Minions have 25% increased Cooldown Recovery Rate for Command Skills"],"stringId":"oracle_solo_commander1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"762":{"ascendancyName":"Tactician","connections":[{"id":1988,"orbit":0}],"group":413,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Minion Damage","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":762,"stats":["Minions deal 20% increased Damage"],"stringId":"AscendancyMercenary1Small9"},"765":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds","isNotable":true,"name":"The Catha's Balance","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":6,"orbitIndex":48,"skill":765,"stats":["Companions gain added Attack damage equal to 60% of your main hand Weapon's damage"],"stringId":"AscendancyHuntress2Notable4"},"770":{"ascendancyName":"Infernalist","connections":[{"id":10694,"orbit":-7}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Mana","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":6,"orbitIndex":7,"skill":770,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch1Small11"},"829":{"connectionArt":"CharacterPlanned","connections":[{"id":36025,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":25,"skill":829,"stats":["25% increased Minion Duration"],"stringId":"oracle_big_family4_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":857,"stats":[],"stringId":"mastery_life139"},"858":{"connections":[{"id":58387,"orbit":5}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":5,"orbitIndex":18,"skill":858,"stats":["7% increased Chaos Damage"],"stringId":"chaos13"},"869":{"connections":[{"id":18959,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield Delay","orbit":7,"orbitIndex":9,"skill":869,"stats":["12% increased Armour","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour34"},"872":{"connections":[{"id":36556,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Defences","orbit":2,"orbitIndex":17,"skill":872,"stats":["8% increased Armour, Evasion and Energy Shield while Channelling"],"stringId":"channelling17"},"904":{"connections":[{"id":28578,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Critical Chance","orbit":7,"orbitIndex":4,"skill":904,"stats":["8% increased Mana Regeneration Rate","8% increased Critical Hit Chance"],"stringId":"mana_regeneration4"},"917":{"connections":[{"id":65160,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":10,"skill":917,"stats":["12% increased Stun Threshold"],"stringId":"stun10"},"934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[{"id":12526,"orbit":-4}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Natural Immunity","orbit":4,"orbitIndex":63,"recipe":["Greed","Suffering","Paranoia"],"skill":934,"stats":["+4 to Ailment Threshold per Dexterity"],"stringId":"spell_suppression14"},"968":{"connections":[{"id":6752,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage and Area","orbit":3,"orbitIndex":2,"skill":968,"stats":["6% increased Fire Damage","5% increased Area of Effect"],"stringId":"fire7_"},"989":{"connections":[{"id":26416,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":989,"stats":["15% increased Life Recovery from Flasks"],"stringId":"life_flasks34"},"1019":{"connections":[{"id":45037,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1019,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion5"},"1020":{"connections":[{"id":54631,"orbit":0}],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":3,"skill":1020,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers7"},"1040":{"connections":[{"id":19936,"orbit":7}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":1040,"stats":["12% increased Fire Damage"],"stringId":"fire73"},"1073":{"connections":[{"id":261,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude and Poison Magnitude","orbit":2,"orbitIndex":11,"skill":1073,"stats":["6% increased Ignite Magnitude","6% increased Magnitude of Poison you inflict"],"stringId":"fire53_"},"1087":{"connections":[{"id":25934,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Shockwaves","orbit":3,"orbitIndex":7,"recipe":["Greed","Paranoia","Ire"],"skill":1087,"stats":["25% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"],"stringId":"two_handed16"},"1091":{"connections":[{"id":13333,"orbit":7},{"id":48699,"orbit":0}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Chill Effect on You","orbit":2,"orbitIndex":0,"skill":1091,"stats":["10% reduced Effect of Chill on you"],"stringId":"ground7"},"1104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":56876,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Lust for Power","orbit":0,"orbitIndex":0,"recipe":["Isolation","Guilt","Guilt"],"skill":1104,"stats":["10% chance when you gain a Power Charge to gain an additional Power Charge","+1 to Maximum Power Charges"],"stringId":"power_charges7"},"1130":{"connections":[{"id":29611,"orbit":0}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":0,"orbitIndex":0,"skill":1130,"stats":["10% increased Damage with Flails"],"stringId":"flail2"},"1140":{"connections":[{"id":15507,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":22,"skill":1140,"stats":["+5 to any Attribute"],"stringId":"dexterity25"},"1143":{"connections":[{"id":58170,"orbit":0},{"id":50084,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","isSwitchable":true,"name":"Spell Critical Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","id":57726,"name":"Life Regeneration","stats":["Regenerate 0.2% of maximum Life per second"]}},"orbit":2,"orbitIndex":5,"skill":1143,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals7"},"1144":{"connections":[{"id":42070,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":1144,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy51"},"1151":{"connections":[{"id":4113,"orbit":0}],"group":862,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":8,"skill":1151,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze7"},"1169":{"connections":[{"id":25031,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Urgent Call","orbit":7,"orbitIndex":16,"recipe":["Fear","Isolation","Suffering"],"skill":1169,"stats":["Recover 2% of maximum Life and Mana when you use a Warcry","24% increased Warcry Speed","18% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries34"},"1170":{"connections":[{"id":58295,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":22,"skill":1170,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks12"},"1200":{"connections":[{"id":53822,"orbit":-5},{"id":55190,"orbit":0},{"id":62313,"orbit":0},{"id":18353,"orbit":0}],"group":102,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":36,"skill":1200,"stats":["+5 to any Attribute"],"stringId":"attributes70"},"1205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":1205,"stats":[],"stringId":"mastery_poison198"},"1207":{"connections":[{"id":38323,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":69,"skill":1207,"stats":["+5 to any Attribute"],"stringId":"strength18"},"1214":{"connections":[{"id":53823,"orbit":-4}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block and Shield Defences","orbit":7,"orbitIndex":21,"skill":1214,"stats":["4% increased Block chance","15% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block4"},"1215":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":962,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":1,"orbitIndex":5,"skill":1215,"stats":[],"stringId":"mastery_energyshield106"},"1218":{"connections":[{"id":14945,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":18,"skill":1218,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence7"},"1220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":716,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":1220,"stats":[],"stringId":"mastery_minion_offence_6619_"},"1221":{"connections":[{"id":62237,"orbit":0},{"id":35743,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1221,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion32"},"1286":{"connections":[{"id":17903,"orbit":-7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":12,"skill":1286,"stats":["16% increased Thorns damage"],"stringId":"getting_hit17"},"1347":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":50098,"orbit":7}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":6,"orbitIndex":12,"skill":1347,"stats":["4% increased Skill Speed"],"stringId":"AscendancyMonk3Small5"},"1352":{"connections":[{"id":53216,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Unbending","orbit":7,"orbitIndex":10,"recipe":["Fear","Despair","Paranoia"],"skill":1352,"stats":["3% increased maximum Life","10% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%"],"stringId":"stun_threshold31"},"1416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1398,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1416,"stats":[],"stringId":"mastery_attack_6294"},"1420":{"connections":[],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Dizzying Sweep","orbit":7,"orbitIndex":20,"recipe":["Despair","Envy","Despair"],"skill":1420,"stats":["15% increased Attack Area Damage","10% increased Area of Effect for Attacks","5% chance to Daze on Hit"],"stringId":"area_attacks58"},"1433":{"connections":[{"id":31238,"orbit":0},{"id":48530,"orbit":0},{"id":95,"orbit":0}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":56,"skill":1433,"stats":["+5 to any Attribute"],"stringId":"intelligence49"},"1442":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53108,"orbit":0}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Attributes","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":1442,"stats":["3% increased Attributes"],"stringId":"AscendancyMercenary3Small6"},"1447":{"connections":[{"id":22393,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":14,"skill":1447,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence3"},"1448":{"connections":[],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds","isNotable":true,"name":"Bond of the Cat","orbit":2,"orbitIndex":8,"recipe":["Envy","Ire","Ire"],"skill":1448,"stats":["Companions have 20% increased Movement Speed","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"companions55"},"1459":{"connections":[{"id":47252,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":12,"skill":1459,"stats":["16% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration5"},"1468":{"connections":[],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":6,"skill":1468,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration23"},"1477":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":11037,"orbit":0}],"group":852,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":1477,"stats":[],"stringId":"mastery_projectile_6646"},"1499":{"connections":[{"id":33830,"orbit":-2}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":0,"skill":1499,"stats":["10% increased Life Regeneration rate"],"stringId":"monkchakra16"},"1502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","isNotable":true,"name":"Draiocht Cleansing","orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Suffering"],"skill":1502,"stats":["Channelling Skills deal 20% increased Damage","Remove a Curse after Channelling for 2 seconds"],"stringId":"channelling18"},"1506":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Remnant Attraction","orbit":2,"orbitIndex":20,"recipe":["Despair","Disgust","Isolation"],"skill":1506,"stats":["10% chance to create an additional Remnant","Remnants can be collected from 50% further away"],"stringId":"remnant14"},"1514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":29527,"orbit":0}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1514,"stats":[],"stringId":"mastery_attack_6303"},"1543":{"connections":[{"id":14096,"orbit":7},{"id":59376,"orbit":0}],"group":690,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":1,"orbitIndex":0,"skill":1543,"stats":["3% increased Cast Speed"],"stringId":"cast_speed24"},"1546":{"connections":[],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Spiral into Depression","orbit":2,"orbitIndex":20,"recipe":["Envy","Despair","Suffering"],"skill":1546,"stats":["3% increased Movement Speed","25% increased Armour","25% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour14"},"1579":{"ascendancyName":"Chronomancer","connections":[{"id":3605,"orbit":-9}],"group":429,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":1579,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancySorceress2Small5"},"1583":{"ascendancyName":"Pathfinder","connections":[{"id":14508,"orbit":5},{"id":9798,"orbit":0},{"id":49503,"orbit":-5},{"id":39292,"orbit":5},{"id":12183,"orbit":0},{"id":16,"orbit":-5}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Pathfinder","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":9,"orbitIndex":48,"skill":1583,"stats":[],"stringId":"AscendancyRanger3Start"},"1599":{"connections":[{"id":31286,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Critical Chance","orbit":2,"orbitIndex":18,"skill":1599,"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"stringId":"physical1"},"1603":{"connections":[{"id":32040,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Storm Driven","orbit":2,"orbitIndex":18,"recipe":["Ire","Ire","Isolation"],"skill":1603,"stats":["15% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery40"},"1628":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":2147483647},{"id":9554,"orbit":-7}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":1628,"stats":["17% increased Stun Threshold"],"stringId":"oracle_beast_corruption3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1631":{"connections":[{"id":29049,"orbit":3},{"id":14001,"orbit":-3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":4,"skill":1631,"stats":["10% increased Charm Effect Duration"],"stringId":"charms10"},"1680":{"connections":[],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Projectile Parry Range","orbit":2,"orbitIndex":2,"skill":1680,"stats":["20% increased Parry Range"],"stringId":"buckler18"},"1700":{"connections":[{"id":48699,"orbit":0}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":2,"orbitIndex":12,"skill":1700,"stats":["10% increased Cold Damage"],"stringId":"ground8"},"1723":{"connections":[{"id":53595,"orbit":0},{"id":2134,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":1723,"stats":["10% increased Poison Duration"],"stringId":"poison8"},"1739":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds","isNotable":true,"name":"Hollow Form Technique","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":8,"orbitIndex":63,"skill":1739,"stats":["Grants Skill: Hollow Form"],"stringId":"AscendancyMonk1Notable7"},"1755":{"connections":[{"id":18845,"orbit":-4}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":31707,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":2,"orbitIndex":17,"skill":1755,"stats":["8% increased Spell Damage"],"stringId":"spell_criticals2__"},"1773":{"connections":[{"id":51213,"orbit":4}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect and Duration","orbit":0,"orbitIndex":0,"skill":1773,"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments36"},"1778":{"connections":[{"id":30408,"orbit":0},{"id":17523,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":12,"skill":1778,"stats":["20% increased Hazard Duration"],"stringId":"hazards9"},"1801":{"connections":[{"id":60,"orbit":3}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":7,"orbitIndex":5,"skill":1801,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"blind1"},"1823":{"connections":[{"id":3471,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Illuminated Crown","orbit":4,"orbitIndex":60,"recipe":["Suffering","Paranoia","Suffering"],"skill":1823,"stats":["20% increased Light Radius","70% increased Energy Shield from Equipped Helmet"],"stringId":"energy_shield39"},"1825":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":177,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1825,"stats":[],"stringId":"mastery_caster_6360"},"1826":{"connections":[{"id":39037,"orbit":0}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":1826,"stats":["+5 to any Attribute"],"stringId":"intelligence18"},"1841":{"connections":[{"id":9405,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":1841,"stats":["15% increased Evasion Rating"],"stringId":"evasion21"},"1855":{"ascendancyName":"Shaman","connections":[{"id":16204,"orbit":2147483647}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Flask Recovery","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":6,"orbitIndex":54,"skill":1855,"stats":["12% increased Life and Mana Recovery from Flasks"],"stringId":"AscendancyDruid2Small7"},"1861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Knight of Tarcus","orbit":4,"orbitIndex":52,"recipe":["Disgust","Isolation","Fear"],"skill":1861,"stats":["+20% of Armour also applies to Elemental Damage","30% increased Presence Area of Effect","15% increased Glory generation"],"stringId":"armour_and_evasion52"},"1865":{"connections":[{"id":54934,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Fire Damage when consuming an Endurance Charge","orbit":2,"orbitIndex":12,"skill":1865,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges13"},"1869":{"connections":[{"id":27095,"orbit":-4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":1,"skill":1869,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze2"},"1878":{"connections":[{"id":14328,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Energy Shield and Armour applies to Elemental Damage Hits","orbit":7,"orbitIndex":23,"skill":1878,"stats":["12% increased maximum Energy Shield","+5% of Armour also applies to Elemental Damage"],"stringId":"energy_shield_and_armour31"},"1887":{"connectionArt":"CharacterPlanned","connections":[{"id":10713,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":2,"skill":1887,"stats":["30% increased Armour while stationary"],"stringId":"oracle_crab_claw3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1913":{"connections":[{"id":38646,"orbit":0},{"id":36709,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":3,"skill":1913,"stats":["+20 to Armour"],"stringId":"armour7"},"1915":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Critical Chance","orbit":7,"orbitIndex":21,"skill":1915,"stats":["10% increased Critical Hit Chance against Humanoids"],"stringId":"mercenary4"},"1922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51184,"orbit":0}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1922,"stats":[],"stringId":"mastery_caster_6126"},"1928":{"connections":[],"group":541,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":0,"orbitIndex":0,"skill":1928,"stats":["Minions have 5% increased Attack and Cast Speed"],"stringId":"minion_offence48"},"1953":{"connections":[{"id":23905,"orbit":0}],"group":1223,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":1953,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock19"},"1973":{"connections":[{"id":8607,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":8,"skill":1973,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"life_flasks41"},"1988":{"ascendancyName":"Tactician","connections":[],"group":443,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds","isNotable":true,"name":"Unleash Hell!","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":1988,"stats":["Grants Skill: Supporting Fire"],"stringId":"AscendancyMercenary1Notable9_"},"1994":{"ascendancyName":"Warbringer","connections":[{"id":47097,"orbit":0}],"group":42,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Warcry Speed","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":1994,"stats":["20% increased Warcry Speed"],"stringId":"AscendancyWarrior2Small5"},"1995":{"connections":[],"group":1180,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Ailment Chance","orbit":0,"orbitIndex":0,"skill":1995,"stats":["20% increased chance to inflict Ailments with Projectiles"],"stringId":"quivers1_"},"2021":{"connections":[{"id":25857,"orbit":2147483647}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Wellspring","orbit":4,"orbitIndex":68,"recipe":["Disgust","Greed","Guilt"],"skill":2021,"stats":["30% increased Mana Recovery from Flasks","8% increased Attack and Cast Speed during Effect of any Mana Flask"],"stringId":"mana_flasks11"},"2071":{"connections":[{"id":38420,"orbit":0}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":0,"skill":2071,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration13"},"2074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":446,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2074,"stats":[],"stringId":"mastery_armour_and_energy_shield_6273"},"2091":{"connections":[],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":4,"orbitIndex":18,"skill":2091,"stats":["8% chance to Poison on Hit"],"stringId":"poison21"},"2102":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":742,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2102,"stats":[],"stringId":"mastery_energy_shield_6492"},"2113":{"connections":[{"id":326,"orbit":0},{"id":59694,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"Martial Artistry","orbit":3,"orbitIndex":13,"recipe":["Isolation","Ire","Fear"],"skill":2113,"stats":["25% increased Accuracy Rating with Quarterstaves","25% increased Critical Damage Bonus with Quarterstaves","+25 to Dexterity"],"stringId":"quarterstaff18"},"2119":{"connections":[{"id":53505,"orbit":0}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":0,"skill":2119,"stats":["10% increased amount of Life Leeched"],"stringId":"life_leech20"},"2128":{"connections":[{"id":65256,"orbit":0}],"group":1290,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":2128,"stats":["10% increased Hazard Area of Effect"],"stringId":"hazards17"},"2134":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":9703,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Toxic Tolerance","orbit":3,"orbitIndex":0,"recipe":["Suffering","Fear","Isolation"],"skill":2134,"stats":["Immune to Poison"],"stringId":"poison38"},"2138":{"connections":[{"id":32523,"orbit":0}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Spiral into Insanity","orbit":2,"orbitIndex":12,"recipe":["Greed","Isolation","Envy"],"skill":2138,"stats":["29% increased Chaos Damage","20% increased Armour, Evasion and Energy Shield"],"stringId":"chaos34__"},"2174":{"connections":[{"id":19249,"orbit":4}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":70,"skill":2174,"stats":["15% increased Totem Damage"],"stringId":"totems4_"},"2200":{"connections":[{"id":35689,"orbit":7}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":7,"orbitIndex":20,"skill":2200,"stats":["10% increased Damage"],"stringId":"azmerianimals28"},"2211":{"connections":[{"id":7473,"orbit":7}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":19,"skill":2211,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds8"},"2244":{"connections":[],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge on Critical Hit","orbit":4,"orbitIndex":51,"skill":2244,"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"stringId":"mana_regeneration29"},"2254":{"connections":[{"id":60685,"orbit":0},{"id":43736,"orbit":5},{"id":14666,"orbit":6}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/deepwisdom.dds","isNotable":true,"name":"Pure Energy","orbit":0,"orbitIndex":0,"skill":2254,"stats":["30% increased maximum Energy Shield","+10 to Intelligence"],"stringId":"witch_sorceress_notable2"},"2334":{"connections":[{"id":65091,"orbit":6},{"id":3209,"orbit":-6}],"group":1445,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":2334,"stats":["+8 to Dexterity"],"stringId":"dexterity110"},"2335":{"connections":[{"id":18121,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Turn the Clock Forward","orbit":3,"orbitIndex":8,"recipe":["Despair","Fear","Guilt"],"skill":2335,"stats":["20% increased Spell Damage","15% increased Projectile Speed for Spell Skills"],"stringId":"projectile_spells9"},"2336":{"connections":[{"id":63402,"orbit":2}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Arcane Surge Effect","orbit":2,"orbitIndex":9,"skill":2336,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"wyvern15"},"2344":{"connections":[{"id":34317,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Dimensional Weakspot","orbit":7,"orbitIndex":6,"recipe":["Greed","Suffering","Isolation"],"skill":2344,"stats":["Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted"],"stringId":"oracle12"},"2361":{"connections":[{"id":34316,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Stun and Knockback","orbit":5,"orbitIndex":4,"skill":2361,"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"stringId":"quarterstaff1"},"2394":{"connections":[],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","isNotable":true,"name":"Blade Flurry","orbit":3,"orbitIndex":9,"recipe":["Envy","Envy","Despair"],"skill":2394,"stats":["6% increased Attack Speed while Dual Wielding","15% increased Attack Critical Hit Chance while Dual Wielding"],"stringId":"dual_wielding8"},"2397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Last Stand","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Fear"],"skill":2397,"stats":["25% increased Attack Damage if you have been Heavy Stunned Recently","25% increased Attack Damage while you have no Life Flask uses left","25% increased Attack Damage while Surrounded","25% increased Attack Damage while on Low Life"],"stringId":"attack21"},"2408":{"connections":[{"id":35696,"orbit":0},{"id":35534,"orbit":0}],"group":1384,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2408,"stats":["+5 to any Attribute"],"stringId":"dexterity58"},"2446":{"connections":[{"id":37164,"orbit":0}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Elemental Damage","orbit":3,"orbitIndex":18,"skill":2446,"stats":["10% increased Elemental Damage"],"stringId":"monkchakra19"},"2455":{"connections":[],"group":801,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":11,"skill":2455,"stats":["8% increased Projectile Damage"],"stringId":"projectiles19"},"2461":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":44605,"orbit":0}],"group":847,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":2461,"stats":[],"stringId":"mastery_accuracy_6269"},"2486":{"connections":[{"id":63732,"orbit":3},{"id":19341,"orbit":4},{"id":58884,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Stars Aligned","orbit":7,"orbitIndex":16,"recipe":["Suffering","Envy","Isolation"],"skill":2486,"stats":["Damage with Hits is Lucky against Enemies that are on Low Life"],"stringId":"enemies_on_low_life10"},"2491":{"connections":[{"id":28175,"orbit":0}],"group":412,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":10,"skill":2491,"stats":[],"stringId":"jewel_slot1974"},"2500":{"connections":[{"id":6030,"orbit":7}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":10,"skill":2500,"stats":["8% chance to Poison on Hit"],"stringId":"poison12"},"2508":{"connections":[{"id":47168,"orbit":0},{"id":59425,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":18,"skill":2508,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup5"},"2511":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":574,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Sundering","orbit":3,"orbitIndex":20,"recipe":["Disgust","Paranoia","Ire"],"skill":2511,"stats":["25% increased Critical Damage Bonus for Attack Damage","+25% to Critical Damage Bonus against Stunned Enemies"],"stringId":"criticals51_"},"2516":{"ascendancyName":"Lich","connections":[],"group":1275,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds","isNotable":true,"isSwitchable":true,"name":"Price of Power","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds","id":11705,"name":"Steward of Kulemak","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition"]}},"orbit":0,"orbitIndex":0,"skill":2516,"stats":["Spells consume a Power Charge if able to deal 40% more Damage"],"stringId":"AscendancyWitch3Notable7"},"2559":{"connections":[{"id":62542,"orbit":7}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":22,"skill":2559,"stats":["10% increased Flask Charges gained"],"stringId":"flasks3"},"2560":{"connections":[{"id":20044,"orbit":0}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":1,"skill":2560,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect55"},"2575":{"connections":[{"id":65154,"orbit":0}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Alacrity","orbit":2,"orbitIndex":14,"recipe":["Suffering","Paranoia","Guilt"],"skill":2575,"stats":["30% increased Totem Placement speed","8% increased Attack and Cast Speed if you've summoned a Totem Recently"],"stringId":"totems28"},"2582":{"connections":[{"id":48116,"orbit":0},{"id":41861,"orbit":0},{"id":56847,"orbit":0}],"group":1497,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2582,"stats":["+5 to any Attribute"],"stringId":"dexterity51"},"2606":{"connections":[{"id":47284,"orbit":0},{"id":20388,"orbit":0},{"id":15194,"orbit":0},{"id":3414,"orbit":0}],"group":627,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":1,"orbitIndex":6,"skill":2606,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence24"},"2617":{"connections":[{"id":1200,"orbit":7}],"group":118,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":2617,"stats":["12% increased Fire Damage"],"stringId":"fire68"},"2645":{"connections":[{"id":14832,"orbit":0},{"id":52829,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Skullcrusher","orbit":4,"orbitIndex":69,"recipe":["Ire","Isolation","Ire"],"skill":2645,"stats":["20% more Damage against Heavy Stunned Enemies with Maces"],"stringId":"mace6_"},"2653":{"connections":[{"id":19203,"orbit":0},{"id":30896,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage and Speed","orbit":7,"orbitIndex":17,"skill":2653,"stats":["Channelling Skills deal 8% increased Damage","2% increased Skill Speed with Channelling Skills"],"stringId":"channelling1"},"2672":{"connections":[{"id":45569,"orbit":6}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":2,"skill":2672,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"criticals32_"},"2702":{"ascendancyName":"Amazon","connections":[{"id":3065,"orbit":7}],"group":1599,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Life Leech","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":2702,"stats":["12% increased amount of Life Leeched"],"stringId":"AscendancyHuntress1Small9"},"2732":{"connections":[{"id":16790,"orbit":-2}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":1,"orbitIndex":11,"skill":2732,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration45"},"2733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":306,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":2733,"stats":[],"stringId":"oracle_lightning_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"2745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds","isNotable":true,"name":"The Noble Wolf","orbit":1,"orbitIndex":3,"recipe":["Fear","Greed","Guilt"],"skill":2745,"stats":["25% increased Magnitude of Ailments you inflict against Marked Enemies","20% increased Critical Hit Chance against Marked Enemies","+10 to Dexterity"],"stringId":"azmerianimals48"},"2810":{"ascendancyName":"Disciple of Varashta","connections":[{"id":9843,"orbit":-3}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds","isNotable":true,"name":"Varashta's Intuition","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":3,"orbitIndex":20,"skill":2810,"stats":["100% of Elemental Damage is taken from Mana before Life"],"stringId":"AscendancySorceress3Notable3"},"2814":{"connections":[{"id":41447,"orbit":0},{"id":19749,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Engineered Blaze","orbit":3,"orbitIndex":5,"recipe":["Ire","Despair","Isolation"],"skill":2814,"stats":["4% increased Area of Effect for Attacks per Enemy you've Ignited in the last 8 seconds, up to 40%"],"stringId":"fire61"},"2841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":978,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":2841,"stats":[],"stringId":"mastery_life143"},"2843":{"connections":[{"id":61396,"orbit":0},{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Tolerant Equipment","orbit":5,"orbitIndex":36,"recipe":["Guilt","Isolation","Fear"],"skill":2843,"stats":["15% increased Armour and Evasion Rating","Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating","Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"],"stringId":"armour_and_evasion40"},"2847":{"connections":[{"id":45272,"orbit":0}],"group":820,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2847,"stats":["+5 to any Attribute"],"stringId":"strength81"},"2857":{"ascendancyName":"Stormweaver","connections":[{"id":7998,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds","isNotable":true,"name":"Strike Twice","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":6,"orbitIndex":66,"skill":2857,"stats":["Targets can be affected by two of your Shocks at the same time","25% less Magnitude of Shock you inflict"],"stringId":"AscendancySorceress1Notable5"},"2863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Perpetual Freeze","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Isolation"],"skill":2863,"stats":["20% increased Freeze Buildup","15% increased Chill and Freeze Duration on Enemies","15% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze18"},"2864":{"connections":[{"id":54818,"orbit":0},{"id":21468,"orbit":0},{"id":33369,"orbit":0},{"id":59480,"orbit":0},{"id":63360,"orbit":0}],"group":688,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2864,"stats":["+5 to any Attribute"],"stringId":"attributes72"},"2877":{"ascendancyName":"Lich","connections":[],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds","isNotable":true,"isSwitchable":true,"name":"Blackened Heart","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds","id":36863,"name":"Unwilling Offering","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Your Offerings can target Enemies in Culling range","Your Offerings affect you instead of your Minions","Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]}},"orbit":9,"orbitIndex":104,"skill":2877,"stats":["4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana"],"stringId":"AscendancyWitch3Notable4"},"2888":{"connections":[{"id":8827,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":15,"skill":2888,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech23"},"2936":{"connections":[{"id":13407,"orbit":-3}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":7,"orbitIndex":4,"skill":2936,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals57_"},"2946":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":253,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Resistance Mastery","orbit":1,"orbitIndex":1,"skill":2946,"stats":[],"stringId":"mastery_fire_resistance_6526"},"2955":{"connections":[{"id":28800,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":2,"orbitIndex":0,"skill":2955,"stats":["10% increased Projectile Damage"],"stringId":"projectiles37"},"2964":{"connections":[{"id":18374,"orbit":-7}],"group":523,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Leech","orbit":2,"orbitIndex":15,"skill":2964,"stats":["8% increased amount of Life Leeched","12% increased Thorns damage"],"stringId":"getting_hit7"},"2978":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":937,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":2978,"stats":[],"stringId":"mastery_trap_6758"},"2995":{"ascendancyName":"Lich","connections":[{"id":2516,"orbit":4}],"group":1256,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Energy Shield if Consumed Power Charge","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":12474,"name":"Energy Shield if Consumed Power Charge","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["30% increased maximum Energy Shield if you've consumed a Power Charge Recently"]}},"orbit":0,"orbitIndex":0,"skill":2995,"stats":["30% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"AscendancyWitch3Small8"},"2999":{"connections":[],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Final Barrage","orbit":6,"orbitIndex":22,"recipe":["Isolation","Despair","Disgust"],"skill":2999,"stats":["20% increased Cast Speed when on Low Life","10% reduced Cast Speed when on Full Life"],"stringId":"cast_speed30"},"3025":{"connections":[{"id":38732,"orbit":0},{"id":36782,"orbit":0},{"id":25594,"orbit":0}],"group":863,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3025,"stats":["+5 to any Attribute"],"stringId":"intelligence43"},"3027":{"connections":[{"id":54228,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":22,"skill":3027,"stats":["10% increased Physical Damage"],"stringId":"physical28"},"3041":{"connections":[{"id":59795,"orbit":-4},{"id":858,"orbit":0},{"id":19240,"orbit":6}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":10,"skill":3041,"stats":["+5 to any Attribute"],"stringId":"attributes2"},"3042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":51871,"orbit":0}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":19,"skill":3042,"stats":[],"stringId":"mastery_life133"},"3051":{"connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":0,"skill":3051,"stats":["Offerings have 30% increased Maximum Life"],"stringId":"corpses15"},"3065":{"ascendancyName":"Amazon","connections":[],"group":1601,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds","isNotable":true,"name":"Mystic Harvest","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":3065,"stats":["Life Leech recovers based on your Elemental damage as well as Physical damage"],"stringId":"AscendancyHuntress1Notable9"},"3084":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":30996,"orbit":2147483647}],"group":530,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":3084,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"AscendancyMercenary3Small7_"},"3091":{"connections":[{"id":8782,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":1,"orbitIndex":7,"skill":3091,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion13"},"3109":{"connections":[{"id":29514,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":6,"skill":3109,"stats":["10% increased Grenade Area of Effect"],"stringId":"grenades3"},"3128":{"connections":[{"id":19722,"orbit":0}],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cast Speed with Cold Skills","orbit":7,"orbitIndex":14,"skill":3128,"stats":["3% increased Cast Speed with Cold Skills"],"stringId":"cold1"},"3131":{"connections":[{"id":2394,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Speed","orbit":2,"orbitIndex":9,"skill":3131,"stats":["3% increased Attack Speed while Dual Wielding"],"stringId":"dual_wielding9"},"3165":{"ascendancyName":"Blood Mage","connections":[{"id":56162,"orbit":-4}],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":3165,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch2Small7"},"3170":{"connections":[{"id":65161,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Deflection","orbit":2,"orbitIndex":20,"skill":3170,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"azmerianimals41"},"3188":{"connections":[{"id":38670,"orbit":0},{"id":46051,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Revenge","orbit":3,"orbitIndex":18,"recipe":["Ire","Disgust","Isolation"],"skill":3188,"stats":["Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour"],"stringId":"getting_hit9"},"3191":{"connections":[{"id":9863,"orbit":4}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":12,"skill":3191,"stats":["+5% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"armour_and_evasion49_"},"3203":{"connections":[{"id":30562,"orbit":-4},{"id":28464,"orbit":4}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":7,"orbitIndex":14,"skill":3203,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield19"},"3209":{"connections":[{"id":59720,"orbit":-6},{"id":65091,"orbit":4}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":16,"skill":3209,"stats":["15% increased Evasion Rating"],"stringId":"evasion26"},"3215":{"connections":[{"id":44359,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Melding","orbit":7,"orbitIndex":9,"recipe":["Guilt","Envy","Suffering"],"skill":3215,"stats":["40% increased maximum Energy Shield","10% reduced maximum Mana"],"stringId":"energy_shield35"},"3218":{"connections":[{"id":48171,"orbit":0}],"group":259,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":17,"skill":3218,"stats":["10% increased Elemental Damage"],"stringId":"elemental5"},"3223":{"ascendancyName":"Ritualist","connections":[{"id":7068,"orbit":-5},{"id":34785,"orbit":9}],"group":1605,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Attributes","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":3223,"stats":["3% increased Attributes"],"stringId":"AscendancyHuntress3Small2"},"3234":{"connections":[{"id":4447,"orbit":0},{"id":31745,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":8,"skill":3234,"stats":["15% increased Pin duration"],"stringId":"pin3"},"3242":{"connections":[{"id":59636,"orbit":-4}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":3242,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration14"},"3245":{"connections":[{"id":7395,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Block","orbit":2,"orbitIndex":7,"skill":3245,"stats":["4% increased Block chance","10% increased Thorns damage"],"stringId":"getting_hit5"},"3251":{"connections":[{"id":21984,"orbit":0},{"id":33292,"orbit":2147483647}],"group":1169,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3251,"stats":["+5 to any Attribute"],"stringId":"attributes1"},"3281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connectionArt":"CharacterPlanned","connections":[{"id":35720,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","isNotable":true,"name":"Powerful Casting","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":3281,"stats":["2% increased Spell Damage per 10 Strength"],"stringId":"oracle_strength_spell4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3282":{"connections":[{"id":52860,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":15,"skill":3282,"stats":["20% increased Ballista Immobilisation buildup"],"stringId":"ballista1"},"3332":{"connections":[],"group":653,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":3332,"stats":["Minions have +20% to Cold Resistance","Minions have +3% to Maximum Cold Resistances"],"stringId":"minion_defence34"},"3336":{"connections":[{"id":30615,"orbit":0}],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Critical Damage when consuming a Power Charge","orbit":2,"orbitIndex":19,"skill":3336,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"stringId":"power_charges4"},"3339":{"connections":[{"id":45585,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":19,"skill":3339,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded13"},"3348":{"connections":[{"id":50767,"orbit":0}],"group":107,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Spirit of the Wolf","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Suffering"],"skill":3348,"stats":["20% increased Critical Hit Chance while Shapeshifted","8% increased Skill Speed while Shapeshifted"],"stringId":"wolf11"},"3355":{"connections":[{"id":25211,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You and Debuff Expiry Rate","orbit":3,"orbitIndex":0,"skill":3355,"stats":["4% reduced Slowing Potency of Debuffs on You","Debuffs on you expire 3% faster"],"stringId":"slowed_enemies24"},"3363":{"connections":[{"id":38433,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":11,"skill":3363,"stats":["Minions have 10% increased maximum Life"],"stringId":"companions43"},"3365":{"connections":[{"id":59289,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":17,"skill":3365,"stats":["15% increased Immobilisation buildup"],"stringId":"immobilisation3"},"3367":{"aliasPassiveSocket":"voices_jewel_slot5","connections":[],"group":698,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":3367,"stats":[],"stringId":"voices_jewel_slot5"},"3414":{"connections":[{"id":14575,"orbit":0}],"group":642,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":3414,"stats":["Minions have +20% to Lightning Resistance"],"stringId":"minion_defence37"},"3419":{"connections":[{"id":20429,"orbit":0},{"id":30973,"orbit":2}],"group":1517,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Damage","orbit":6,"orbitIndex":59,"skill":3419,"stats":["10% increased Damage with Daggers"],"stringId":"dagger4"},"3431":{"connections":[{"id":43082,"orbit":0}],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":6,"skill":3431,"stats":["3% increased Skill Speed"],"stringId":"movement_speed4"},"3438":{"connections":[{"id":18856,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":3,"skill":3438,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers21"},"3443":{"connections":[{"id":14548,"orbit":-4},{"id":63545,"orbit":-3},{"id":55180,"orbit":7}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":12,"skill":3443,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence25"},"3446":{"connections":[{"id":61938,"orbit":0},{"id":58088,"orbit":0},{"id":41147,"orbit":0}],"group":244,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3446,"stats":["+5 to any Attribute"],"stringId":"strength70"},"3458":{"connections":[{"id":45609,"orbit":-4}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":23,"skill":3458,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals91"},"3463":{"connections":[{"id":4328,"orbit":0},{"id":26885,"orbit":0},{"id":28021,"orbit":0}],"group":1258,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3463,"stats":["+5 to any Attribute"],"stringId":"attributes76"},"3471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":706,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":3471,"stats":[],"stringId":"mastery_energyshield104"},"3472":{"connections":[{"id":56640,"orbit":-2}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":2,"orbitIndex":14,"skill":3472,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals13"},"3492":{"connections":[{"id":60313,"orbit":0},{"id":19112,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Void","orbit":3,"orbitIndex":12,"recipe":["Isolation","Ire","Disgust"],"skill":3492,"stats":["29% increased Chaos Damage","Enemies you Curse have -3% to Chaos Resistance"],"stringId":"chaos36"},"3516":{"connections":[{"id":62039,"orbit":0},{"id":23227,"orbit":0}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":0,"skill":3516,"stats":["10% increased Melee Damage"],"stringId":"melee43"},"3543":{"connections":[{"id":31825,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":23,"skill":3543,"stats":["12% increased Attack Cold Damage"],"stringId":"cold44"},"3544":{"connectionArt":"CharacterPlanned","connections":[{"id":19953,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":8,"skill":3544,"stats":["15% increased Lightning Damage"],"stringId":"oracle_rust_king5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3567":{"connections":[{"id":53188,"orbit":0},{"id":10159,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Raw Mana","orbit":3,"orbitIndex":16,"recipe":["Suffering","Ire","Isolation"],"skill":3567,"stats":["8% increased maximum Mana","10% increased Mana Cost of Skills"],"stringId":"mana38"},"3601":{"connections":[{"id":47191,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":62,"skill":3601,"stats":["12% increased Fire Damage"],"stringId":"fire2"},"3605":{"ascendancyName":"Chronomancer","connections":[],"group":392,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds","isNotable":true,"name":"Unbound Encore","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":3605,"stats":["Grants Skill: Time Snap"],"stringId":"AscendancySorceress2Notable6"},"3624":{"connections":[{"id":18470,"orbit":0},{"id":10927,"orbit":0},{"id":16484,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":5,"skill":3624,"stats":["15% increased Pin Buildup"],"stringId":"pin4"},"3628":{"connections":[{"id":64474,"orbit":0},{"id":3251,"orbit":0}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":5,"skill":3628,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery26"},"3630":{"connections":[{"id":62624,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield Delay","orbit":3,"orbitIndex":18,"skill":3630,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield21_"},"3640":{"connections":[{"id":37780,"orbit":2147483647},{"id":17724,"orbit":2147483647},{"id":14267,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage and Combo","orbit":3,"orbitIndex":7,"skill":3640,"stats":["5% increased Attack Damage","5% Chance to build an additional Combo on Hit"],"stringId":"unarmed1"},"3652":{"connections":[{"id":56714,"orbit":3}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed and Physical Damage","orbit":2,"orbitIndex":7,"skill":3652,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"stringId":"projectiles47"},"3660":{"connections":[{"id":25619,"orbit":-7},{"id":57196,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":18,"skill":3660,"stats":["8% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack_speed44"},"3663":{"connections":[],"group":330,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Kaom's Blessing","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Fear","Isolation"],"skill":3663,"stats":["The next Fire Spell you cast yourself after using a Warcry is Ancestrally Boosted"],"stringId":"DeliriumAnoint_KaomsBlessing"},"3665":{"connections":[{"id":32185,"orbit":-7}],"group":1048,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Attack Damage and Companion Damage as Cold","orbit":0,"orbitIndex":0,"skill":3665,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Cold Damage"],"stringId":"companions64"},"3681":{"connectionArt":"CharacterPlanned","connections":[{"id":57386,"orbit":-8}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Elemental Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":54,"skill":3681,"stats":["17% increased Elemental Ailment Threshold"],"stringId":"oracle_beast_corruption5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3685":{"connections":[{"id":32151,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":3685,"stats":["+3 to all Attributes"],"stringId":"all_attributes11"},"3688":{"connections":[{"id":47614,"orbit":-7},{"id":32509,"orbit":0}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Dynamism","orbit":7,"orbitIndex":4,"recipe":["Isolation","Greed","Ire"],"skill":3688,"stats":["40% increased Damage if you've Triggered a Skill Recently","Meta Skills gain 15% increased Energy"],"stringId":"triggers18"},"3698":{"connections":[{"id":33137,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","isNotable":true,"name":"Spike Pit","orbit":2,"orbitIndex":11,"recipe":["Isolation","Isolation","Greed"],"skill":3698,"stats":["Enemies in Jagged Ground you create take 10% increased Damage"],"stringId":"jagged_ground26"},"3700":{"connections":[{"id":6842,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":6,"skill":3700,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise6"},"3704":{"ascendancyName":"Witchhunter","connections":[{"id":32559,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds","isNotable":true,"name":"Witchbane","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":3704,"stats":["Enemies have Maximum Concentration equal to 30% of their Maximum Life","Break enemy Concentration on Hit equal to 100% of Damage Dealt","Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"],"stringId":"AscendancyMercenary2Notable3_"},"3717":{"connections":[{"id":19998,"orbit":0},{"id":35653,"orbit":0}],"group":902,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":3717,"stats":["12% increased Damage with Crossbows"],"stringId":"crossbow1"},"3723":{"connections":[{"id":16413,"orbit":0},{"id":17092,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack and Minion Damage","orbit":2,"orbitIndex":22,"skill":3723,"stats":["8% increased Attack Damage","Minions deal 8% increased Damage"],"stringId":"minion_attack1"},"3744":{"connections":[{"id":5332,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":10,"skill":3744,"stats":["+8 to Dexterity"],"stringId":"attributes114"},"3762":{"ascendancyName":"Titan","connections":[],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds","isNotable":true,"name":"Ancestral Empowerment","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":9,"orbitIndex":125,"skill":3762,"stats":["Every second Slam Skill you use yourself is Ancestrally Boosted"],"stringId":"AscendancyWarrior1Notable2"},"3775":{"connections":[{"id":45244,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":12,"skill":3775,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks27_"},"3781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds","isNotable":true,"name":"Unravelling","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":136,"skill":3781,"stats":["Grants Unravelling"],"stringId":"AscendancyMonk3Notable2"},"3823":{"connections":[{"id":5726,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"isSwitchable":true,"name":"Elemental Force","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":17324,"name":"Power of the Dead","stats":["Minions deal 20% increased Damage","Minions have 4% increased Attack and Cast Speed"]}},"orbit":1,"orbitIndex":0,"skill":3823,"stats":["+3% to all Elemental Resistances","20% increased Elemental Damage"],"stringId":"cold34"},"3843":{"connections":[{"id":65265,"orbit":0}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":11,"skill":3843,"stats":["Parry has 25% increased Stun Buildup"],"stringId":"deflect5"},"3866":{"connections":[{"id":32258,"orbit":0},{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":5,"skill":3866,"stats":["Minions have 12% increased maximum Life"],"stringId":"minion_defence10"},"3893":{"connections":[{"id":28038,"orbit":-2}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":0,"skill":3893,"stats":["15% increased Evasion Rating"],"stringId":"deflect27"},"3894":{"connections":[{"id":13307,"orbit":0},{"id":857,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Eldritch Will","orbit":4,"orbitIndex":30,"recipe":["Isolation","Guilt","Isolation"],"skill":3894,"stats":["3% increased maximum Life, Mana and Energy Shield","Gain additional Ailment Threshold equal to 15% of maximum Energy Shield","Gain additional Stun Threshold equal to 15% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield22"},"3896":{"connectionArt":"CharacterPlanned","connections":[{"id":56320,"orbit":0}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Vale Dweller","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":19,"skill":3896,"stats":["50% increased Armour while Bleeding","50% reduced Magnitude of Bleeding on You"],"stringId":"oracle_iron_blood4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3918":{"connections":[{"id":59695,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":3918,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana3"},"3921":{"connections":[{"id":38398,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Fate Finding","orbit":7,"orbitIndex":10,"recipe":["Fear","Despair","Greed"],"skill":3921,"stats":["20% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds17"},"3936":{"connections":[{"id":13397,"orbit":0}],"group":723,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":3936,"stats":["10% increased Melee Damage"],"stringId":"melee17"},"3949":{"connections":[{"id":27296,"orbit":0},{"id":15247,"orbit":2}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Power Counted","orbit":2,"orbitIndex":10,"skill":3949,"stats":["Empowered Attacks deal 8% increased Damage","5% increased total Power counted by Warcries"],"stringId":"warcries38"},"3985":{"connections":[{"id":48660,"orbit":0},{"id":64140,"orbit":3}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Forces of Nature","orbit":2,"orbitIndex":15,"recipe":["Suffering","Isolation","Ire"],"skill":3985,"stats":["Attack Damage Penetrates 15% of Enemy Elemental Resistances"],"stringId":"elemental_attacks10"},"3987":{"ascendancyName":"Deadeye","connections":[{"id":30,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":3987,"stats":["4% increased Skill Speed"],"stringId":"AscendancyRanger1Small3"},"3988":{"connections":[{"id":51832,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":13,"skill":3988,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries9"},"3994":{"connections":[{"id":34908,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":23,"skill":3994,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect49"},"3995":{"connections":[{"id":12311,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":13,"skill":3995,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow11"},"3999":{"connections":[{"id":37665,"orbit":4},{"id":57863,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":15,"skill":3999,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks10"},"4015":{"connections":[{"id":47429,"orbit":3},{"id":59466,"orbit":-3}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":4,"orbitIndex":6,"skill":4015,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries5"},"4017":{"connections":[{"id":10079,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4017,"stats":["10% increased Mana Regeneration Rate"],"stringId":"energy_shield_recovery10"},"4031":{"connections":[{"id":50403,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Icebreaker","orbit":3,"orbitIndex":15,"recipe":["Ire","Paranoia","Fear"],"skill":4031,"stats":["Gain 50% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"freeze_and_chill_mitigation12"},"4046":{"connections":[{"id":8875,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":2,"orbitIndex":8,"skill":4046,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation6_"},"4059":{"connections":[{"id":10382,"orbit":0},{"id":9510,"orbit":0},{"id":2446,"orbit":0},{"id":18744,"orbit":7},{"id":42339,"orbit":-7}],"group":1170,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4059,"stats":["+5 to any Attribute"],"stringId":"attributes23"},"4061":{"connections":[{"id":27491,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":36,"skill":4061,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield43"},"4083":{"connections":[{"id":33815,"orbit":0},{"id":43677,"orbit":0}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":11,"skill":4083,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison14"},"4086":{"ascendancyName":"Tactician","connections":[],"group":482,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds","isNotable":true,"name":"Strategic Embankments","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":4086,"stats":["Totems you place grant Embankment Auras"],"stringId":"AscendancyMercenary1Notable10_"},"4091":{"connections":[{"id":44316,"orbit":2147483647}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Left Ventricle","orbit":7,"orbitIndex":20,"recipe":["Fear","Envy","Suffering"],"skill":4091,"stats":["20% increased speed of Recoup Effects"],"stringId":"life_recoup34"},"4113":{"connections":[{"id":4627,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":4,"skill":4113,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze5"},"4128":{"connections":[{"id":54283,"orbit":3},{"id":54811,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":18,"skill":4128,"stats":["15% increased Armour"],"stringId":"armour18"},"4139":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":148,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":4139,"stats":[],"stringId":"mastery_life132"},"4140":{"connections":[{"id":59093,"orbit":0},{"id":57273,"orbit":0},{"id":296,"orbit":0}],"group":234,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4140,"stats":["+5 to any Attribute"],"stringId":"attributes3"},"4157":{"connections":[{"id":49220,"orbit":-6}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":18,"skill":4157,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals11"},"4197":{"ascendancyName":"Oracle","connections":[],"group":36,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds","isNotable":true,"name":"Converging Paths","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":4197,"stats":["Grants Skill: Moment of Vulnerability"],"stringId":"AscendancyDruid1Notable4"},"4203":{"connections":[{"id":30555,"orbit":4},{"id":42736,"orbit":-4},{"id":59603,"orbit":-4},{"id":49046,"orbit":0},{"id":42076,"orbit":3}],"group":943,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4203,"stats":["+5 to any Attribute"],"stringId":"intelligence81"},"4238":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Versatile Arms","orbit":0,"orbitIndex":0,"recipe":["Ire","Isolation","Envy"],"skill":4238,"stats":["6% increased Attack Speed with One Handed Melee Weapons","15% increased Accuracy Rating with One Handed Melee Weapons","+10 to Strength and Dexterity"],"stringId":"one_handed10"},"4245":{"ascendancyName":"Tactician","connections":[{"id":54838,"orbit":0}],"group":360,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Pin Buildup","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":4245,"stats":["20% increased Pin Buildup"],"stringId":"AscendancyMercenary1Small4"},"4271":{"connections":[{"id":62887,"orbit":0},{"id":33225,"orbit":-3},{"id":61768,"orbit":-7},{"id":63926,"orbit":-2}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":8,"skill":4271,"stats":["Minions have +8% to all Elemental Resistances"],"stringId":"minion_defence30"},"4295":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":34248,"orbit":-3}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Adverse Growth","orbit":0,"orbitIndex":0,"recipe":["Ire","Paranoia","Disgust"],"skill":4295,"stats":["20% reduced Life Regeneration rate","20% of Damage taken Recouped as Mana"],"stringId":"mana39"},"4313":{"connections":[{"id":28992,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":55896,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":7,"orbitIndex":6,"skill":4313,"stats":["8% increased Projectile Damage"],"stringId":"projectiles14"},"4328":{"connections":[{"id":21208,"orbit":0},{"id":44628,"orbit":0}],"group":1257,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4328,"stats":["+5 to any Attribute"],"stringId":"intelligence64"},"4331":{"connections":[{"id":33590,"orbit":0}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Guided Hand","orbit":3,"orbitIndex":19,"recipe":["Fear","Envy","Envy"],"skill":4331,"stats":["The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted","Ancestrally Boosted Attacks deal 30% increased Damage"],"stringId":"melee65"},"4345":{"connections":[{"id":45885,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Speed","orbit":3,"orbitIndex":9,"skill":4345,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon19"},"4346":{"connections":[{"id":4519,"orbit":0},{"id":20677,"orbit":0}],"group":1171,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":4346,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals13"},"4364":{"connections":[{"id":23736,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Reduced Movement Penalty and Attack Damage while Moving","orbit":4,"orbitIndex":42,"skill":4364,"stats":["8% increased Attack Damage while moving","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"slow_mitigation11"},"4367":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds","isNotable":true,"name":"The Mhacha's Gift","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":5,"orbitIndex":54,"skill":4367,"stats":["Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more","Empowerment effect per additional Feather expended","Gain Owl Feathers 50% faster"],"stringId":"AscendancyHuntress2Notable6"},"4377":{"connections":[{"id":50273,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Accuracy","orbit":2,"orbitIndex":15,"skill":4377,"stats":["10% increased Accuracy Rating while Dual Wielding"],"stringId":"dual_wielding3"},"4378":{"connections":[{"id":6330,"orbit":0},{"id":59503,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":9,"skill":4378,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy31"},"4407":{"connections":[],"group":611,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Physical Damage Reduction","orbit":0,"orbitIndex":0,"skill":4407,"stats":["Minions have 12% additional Physical Damage Reduction","Minions have 25% increased Evasion Rating"],"stringId":"minion_defence40_"},"4423":{"connections":[{"id":54058,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","isNotable":true,"name":"Coated Knife","orbit":2,"orbitIndex":7,"skill":4423,"stats":["Critical Hits with Daggers have a 25% chance to Poison the Enemy"],"stringId":"dagger17"},"4442":{"connections":[{"id":62034,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Armour Applies to Lightning Damage Hits","orbit":3,"orbitIndex":10,"skill":4442,"stats":["+15% of Armour also applies to Lightning Damage"],"stringId":"maximum_resistances10"},"4447":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Pin their Motivation","orbit":7,"orbitIndex":12,"recipe":["Greed","Despair","Despair"],"skill":4447,"stats":["20% increased Pin duration","Pinned Enemies cannot deal Critical Hits"],"stringId":"pin8"},"4456":{"connections":[{"id":57710,"orbit":0},{"id":4776,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4456,"stats":["+5 to any Attribute"],"stringId":"intelligence88"},"4467":{"connections":[{"id":42347,"orbit":-2}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Damage vs Blinded","orbit":7,"orbitIndex":4,"skill":4467,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"monkchakra8"},"4492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":833,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Attributes Mastery","orbit":0,"orbitIndex":0,"skill":4492,"stats":[],"stringId":"mastery_attributes255"},"4519":{"connections":[{"id":13724,"orbit":0}],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Damage on Critical","orbit":0,"orbitIndex":0,"skill":4519,"stats":["10% increased Damage if you've dealt a Critical Hit Recently"],"stringId":"criticals18"},"4527":{"connections":[{"id":54701,"orbit":0}],"group":246,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4527,"stats":["+5 to any Attribute"],"stringId":"attributes51"},"4534":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Piercing Shot","orbit":3,"orbitIndex":13,"recipe":["Disgust","Guilt","Disgust"],"skill":4534,"stats":["50% chance to Pierce an Enemy"],"stringId":"ranged34_"},"4536":{"connections":[{"id":37514,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":1,"skill":4536,"stats":["3% increased Attack Speed with Quarterstaves"],"stringId":"quarterstaff7"},"4544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","isNotable":true,"name":"The Ancient Serpent","orbit":7,"orbitIndex":8,"recipe":["Greed","Guilt","Despair"],"skill":4544,"stats":["40% reduced Poison Duration on you","Life Flasks gain 0.1 charges per Second","+10 to Intelligence"],"stringId":"azmerianimals66"},"4547":{"connections":[{"id":2946,"orbit":0}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Unnatural Resilience","orbit":0,"orbitIndex":0,"recipe":["Isolation","Isolation","Isolation"],"skill":4547,"stats":["+3% to all Elemental Resistances","+2% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed"],"stringId":"maximum_resistances20"},"4552":{"connections":[{"id":50817,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":4552,"stats":["10% increased Mana Regeneration Rate"],"stringId":"monkchakra1"},"4577":{"connections":[{"id":3999,"orbit":4}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":8,"skill":4577,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks17"},"4579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Unbothering Cold","orbit":2,"orbitIndex":4,"recipe":["Fear","Isolation","Paranoia"],"skill":4579,"stats":["+10% to Cold Resistance","+2% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed"],"stringId":"cold26"},"4621":{"connectionArt":"CharacterPlanned","connections":[{"id":57202,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun and Elemental Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":30,"skill":4621,"stats":["11% increased Stun Threshold","11% increased Elemental Ailment Threshold"],"stringId":"oracle_beast_corruption1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4623":{"connections":[{"id":48524,"orbit":4}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Spell Costs","orbit":2,"orbitIndex":4,"skill":4623,"stats":["15% of Spell Mana Cost Converted to Life Cost"],"stringId":"life_costs5"},"4624":{"connections":[{"id":49550,"orbit":3}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":4624,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage9"},"4627":{"connections":[{"id":44179,"orbit":0},{"id":55572,"orbit":0}],"group":862,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Climate Change","orbit":7,"orbitIndex":0,"recipe":["Greed","Isolation","Despair"],"skill":4627,"stats":["20% increased Freeze Buildup","Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"],"stringId":"cold36"},"4661":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Inspiring Leader","orbit":3,"orbitIndex":4,"recipe":["Paranoia","Greed","Greed"],"skill":4661,"stats":["Banners also grant +25% to all Elemental Resistances affected targets"],"stringId":"banners10"},"4663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":411,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":0,"orbitIndex":0,"skill":4663,"stats":[],"stringId":"oracle_solo_commander_mastery_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4664":{"connections":[{"id":43938,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":42,"skill":4664,"stats":["6% increased Trap Throwing Speed"],"stringId":"trap5"},"4665":{"connections":[{"id":1913,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":0,"skill":4665,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration19"},"4673":{"connections":[{"id":10047,"orbit":0},{"id":51812,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Hulking Smash","orbit":2,"orbitIndex":16,"recipe":["Disgust","Guilt","Guilt"],"skill":4673,"stats":["30% increased Stun Buildup","+15 to Strength"],"stringId":"stun13"},"4681":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":26228,"orbit":0}],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":4681,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"stringId":"oracle_frenzy_charge1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4709":{"connections":[],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Near Sighted","orbit":2,"orbitIndex":19,"recipe":["Ire","Envy","Paranoia"],"skill":4709,"stats":["30% increased Critical Hit Chance for Attacks","30% increased penalty to Accuracy Rating at range"],"stringId":"accuracy28"},"4716":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Afterimage","orbit":3,"orbitIndex":18,"recipe":["Guilt","Greed","Disgust"],"skill":4716,"stats":["60% increased Evasion Rating if you have Hit an Enemy Recently","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion35"},"4725":{"connections":[{"id":4140,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":4,"orbitIndex":63,"skill":4725,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels5"},"4739":{"connections":[{"id":18845,"orbit":0}],"group":836,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":17306,"name":"Spell and Minion Damage","stats":["10% increased Spell Damage","Minions deal 10% increased Damage"]}},"orbit":3,"orbitIndex":22,"skill":4739,"stats":["10% increased Spell Damage"],"stringId":"spells18"},"4748":{"connections":[{"id":2254,"orbit":6}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":48235,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":3,"orbitIndex":6,"skill":4748,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery24"},"4776":{"connections":[{"id":14363,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":4776,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration8"},"4806":{"connections":[{"id":32183,"orbit":-4}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":4806,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration8"},"4810":{"connections":[{"id":48805,"orbit":7},{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Sanguine Tolerance","orbit":1,"orbitIndex":6,"recipe":["Isolation","Disgust","Greed"],"skill":4810,"stats":["Immune to Corrupted Blood","40% reduced Duration of Bleeding on You"],"stringId":"physical_witch13"},"4828":{"connections":[{"id":19044,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4828,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana30"},"4833":{"connections":[{"id":33852,"orbit":0}],"group":439,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":4833,"stats":["12% increased Cold Damage"],"stringId":"cold55"},"4844":{"connections":[{"id":33053,"orbit":0}],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":1,"skill":4844,"stats":["10% increased Projectile Damage"],"stringId":"ranged2"},"4847":{"connections":[{"id":6294,"orbit":5}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":5,"orbitIndex":66,"skill":4847,"stats":["3% increased Cast Speed"],"stringId":"cast_speed28__"},"4850":{"connections":[{"id":35503,"orbit":0}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect and Mana Regeneration","orbit":0,"orbitIndex":0,"skill":4850,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"stringId":"lightning44"},"4873":{"connectionArt":"CharacterPlanned","connections":[{"id":12683,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":0,"skill":4873,"stats":["Meta Skills gain 20% increased Energy"],"stringId":"oracle_energy_gain2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4882":{"connections":[{"id":38172,"orbit":0},{"id":51921,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":3,"skill":4882,"stats":["15% increased Totem Damage"],"stringId":"totems1"},"4891":{"ascendancyName":"Ritualist","connections":[],"group":1616,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds","isNotable":true,"name":"Intricate Sigils","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":4891,"stats":["+1 Charm Slot","20% more Charm Charges gained"],"stringId":"AscendancyHuntress3Notable3_"},"4921":{"connections":[{"id":13524,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":11,"skill":4921,"stats":["20% increased Presence Area of Effect"],"stringId":"glory8_"},"4925":{"connections":[{"id":19779,"orbit":7}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":4925,"stats":["7% increased Chaos Damage"],"stringId":"chaos9"},"4931":{"connections":[{"id":21404,"orbit":0},{"id":27307,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Dependable Ward","orbit":2,"orbitIndex":0,"recipe":["Ire","Fear","Envy"],"skill":4931,"stats":["+8% to Chaos Resistance","12% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery18"},"4948":{"connections":[],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":6,"skill":4948,"stats":["Break 20% increased Armour"],"stringId":"armour_break14"},"4956":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":606,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":4956,"stats":[],"stringId":"mastery_recovery_6674"},"4959":{"connections":[{"id":12166,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Heavy Frost","orbit":7,"orbitIndex":2,"recipe":["Despair","Fear","Paranoia"],"skill":4959,"stats":["20% increased Freeze Buildup","Hits ignore non-negative Elemental Resistances of Frozen Enemies"],"stringId":"cold33"},"4970":{"connections":[{"id":23195,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","name":"Life and Mana Regeneration Rate","orbit":2,"orbitIndex":7,"skill":4970,"stats":["10% increased Life Regeneration rate","10% increased Mana Regeneration Rate"],"stringId":"companions47"},"4985":{"connections":[{"id":58855,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Flip the Script","orbit":7,"orbitIndex":8,"recipe":["Ire","Disgust","Ire"],"skill":4985,"stats":["Recover 50% of maximum Life when you Heavy Stun a Rare or Unique Enemy"],"stringId":"stun18"},"5009":{"connections":[{"id":12169,"orbit":0}],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Seeing Stars","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Paranoia"],"skill":5009,"stats":["10% chance to Daze on Hit","25% increased Daze Duration"],"stringId":"daze_1"},"5048":{"connections":[{"id":261,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":15,"skill":5048,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison40"},"5049":{"connections":[{"id":49231,"orbit":0},{"id":42177,"orbit":3}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":7,"orbitIndex":18,"skill":5049,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed22"},"5066":{"connections":[{"id":6714,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Curse Effect on you","orbit":2,"orbitIndex":8,"skill":5066,"stats":["10% reduced effect of Curses on you"],"stringId":"mercenary6"},"5077":{"connections":[{"id":33400,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":4,"skill":5077,"stats":["15% increased Parry Hit Area of Effect"],"stringId":"deflect19"},"5084":{"connections":[{"id":35324,"orbit":2}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":22,"skill":5084,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite16"},"5088":{"connections":[{"id":49537,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental","orbit":3,"orbitIndex":18,"skill":5088,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental10"},"5098":{"connections":[{"id":16385,"orbit":-9},{"id":41651,"orbit":2147483647}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":2,"orbitIndex":10,"skill":5098,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners21"},"5108":{"connections":[],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Ailment Chance","orbit":2,"orbitIndex":21,"skill":5108,"stats":["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"],"stringId":"one_handed25_"},"5163":{"connections":[{"id":26726,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback and Stun Buildup","orbit":2,"orbitIndex":15,"skill":5163,"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"stringId":"knockback1"},"5186":{"connections":[{"id":6800,"orbit":3}],"group":1369,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":5186,"stats":["11% increased Chaos Damage"],"stringId":"chaos25"},"5188":{"connections":[{"id":27671,"orbit":0},{"id":38668,"orbit":0},{"id":24165,"orbit":0}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion and Energy Shield Delay","orbit":7,"orbitIndex":3,"skill":5188,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"unarmed9"},"5191":{"connections":[{"id":54198,"orbit":0}],"group":1249,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds","isNotable":true,"name":"Bond of the Wolf","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Paranoia","Envy"],"skill":5191,"stats":["6% increased Attack Speed","Companions have 50% chance to gain Onslaught on Kill"],"stringId":"companions54"},"5227":{"connections":[{"id":51708,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Escape Strategy","orbit":3,"orbitIndex":20,"recipe":["Despair","Paranoia","Despair"],"skill":5227,"stats":["100% increased Evasion Rating if you have been Hit Recently","30% reduced Evasion Rating if you haven't been Hit Recently"],"stringId":"evasion6"},"5257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":16367,"orbit":2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Echoing Frost","orbit":7,"orbitIndex":20,"recipe":["Suffering","Guilt","Greed"],"skill":5257,"stats":["30% increased Elemental Damage if you've Chilled an Enemy Recently"],"stringId":"cold37"},"5284":{"connections":[{"id":32278,"orbit":0}],"group":542,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Shredding Force","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Greed"],"skill":5284,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"stringId":"physical34"},"5295":{"connections":[{"id":5961,"orbit":0}],"group":998,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":5295,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning26_"},"5305":{"connections":[{"id":3431,"orbit":0},{"id":24287,"orbit":0}],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":2,"skill":5305,"stats":["3% increased Skill Speed"],"stringId":"movement_speed5"},"5314":{"connections":[{"id":29009,"orbit":0}],"group":812,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":36,"skill":5314,"stats":["+5 to any Attribute"],"stringId":"intelligence57"},"5324":{"connections":[{"id":54437,"orbit":2147483647},{"id":2397,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage if Stunned Recently","orbit":7,"orbitIndex":16,"skill":5324,"stats":["20% increased Attack Damage if you have been Heavy Stunned Recently"],"stringId":"attack39"},"5332":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":871,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","isNotable":true,"name":"Crystallised Immunities","orbit":2,"orbitIndex":8,"recipe":["Isolation","Isolation","Suffering"],"skill":5332,"stats":["Immune to Chill if a majority of your Socketed Support Gems are Blue","Immune to Ignite if a majority of your Socketed Support Gems are Red","Immune to Shock if a majority of your Socketed Support Gems are Green"],"stringId":"attributes115"},"5335":{"connections":[{"id":52060,"orbit":0}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Shimmering Mirage","orbit":7,"orbitIndex":7,"recipe":["Envy","Despair","Fear"],"skill":5335,"stats":["Gain additional Ailment Threshold equal to 30% of maximum Energy Shield","10% reduced Duration of Ailments on You"],"stringId":"stun_threshold_from_energy_shield21"},"5348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5348,"stats":[],"stringId":"mastery_elemental98"},"5386":{"ascendancyName":"Smith of Kitava","connections":[{"id":22541,"orbit":0}],"group":6,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Damage","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":5386,"stats":["20% increased Fire Damage"],"stringId":"AscendancyWarrior3Small1"},"5390":{"connections":[{"id":16142,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":14,"skill":5390,"stats":["15% increased Freeze Buildup"],"stringId":"cold47"},"5398":{"connections":[{"id":51820,"orbit":-6}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast Speed","orbit":4,"orbitIndex":34,"skill":5398,"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"stringId":"totems31"},"5407":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":56910,"orbit":0}],"group":796,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":5407,"stats":[],"stringId":"mastery_attack2"},"5410":{"connections":[{"id":33590,"orbit":0}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Channelled Heritage","orbit":3,"orbitIndex":15,"recipe":["Envy","Envy","Fear"],"skill":5410,"stats":["30% increased Area of Effect of Ancestrally Boosted Attacks"],"stringId":"melee64"},"5501":{"connections":[{"id":48821,"orbit":0}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/Annihilation.dds","isNotable":true,"name":"Critical Overload","orbit":0,"orbitIndex":0,"skill":5501,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals14"},"5544":{"connections":[{"id":43711,"orbit":3}],"group":331,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":10,"skill":5544,"stats":["30% increased Thorns Critical Damage Bonus"],"stringId":"getting_hit22"},"5563":{"ascendancyName":"Amazon","connections":[{"id":47312,"orbit":-7}],"group":1606,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Flask Recovery","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":5563,"stats":["15% increased Life and Mana Recovery from Flasks"],"stringId":"AscendancyHuntress1Small7"},"5564":{"connections":[{"id":48833,"orbit":0},{"id":63585,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":5564,"stats":["15% increased Electrocute Buildup"],"stringId":"lightning15"},"5571":{"ascendancyName":"Oracle","connections":[{"id":47190,"orbit":8}],"group":11,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds","isNotable":true,"name":"The Unseen Path","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":5571,"stats":["Walk the Paths Not Taken"],"stringId":"AscendancyDruid1Notable2"},"5580":{"connections":[{"id":42710,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Watchtowers","orbit":0,"orbitIndex":0,"recipe":["Disgust","Suffering","Suffering"],"skill":5580,"stats":["Recoup 5% of damage taken by your Totems as Life","Each Totem applies 2% increased Damage taken to Enemies in their Presence"],"stringId":"totems9"},"5594":{"connections":[{"id":50107,"orbit":0},{"id":8785,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Decrepifying Curse","orbit":2,"orbitIndex":12,"recipe":["Isolation","Envy","Despair"],"skill":5594,"stats":["20% increased duration of Ailments you inflict against Cursed Enemies"],"stringId":"curses25"},"5642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":57405,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Behemoth","orbit":2,"orbitIndex":8,"recipe":["Fear","Isolation","Greed"],"skill":5642,"stats":["3% increased maximum Life","8% increased Area of Effect for Attacks","5% chance for Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"slam_area5"},"5663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Endurance","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Envy"],"skill":5663,"stats":["+2 to Maximum Endurance Charges"],"stringId":"endurance_charges7"},"5681":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[],"group":481,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":5681,"stats":[],"stringId":"mastery_fortify_6546_"},"5686":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Chillproof","orbit":2,"orbitIndex":14,"recipe":["Paranoia","Disgust","Disgust"],"skill":5686,"stats":["10% increased Armour","30% reduced Effect of Chill on you","30% increased Freeze Threshold","+30% of Armour also applies to Cold Damage"],"stringId":"armour41"},"5692":{"connections":[{"id":41154,"orbit":0},{"id":35708,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":8,"skill":5692,"stats":["12% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze15"},"5695":{"connections":[{"id":32309,"orbit":7},{"id":50104,"orbit":5}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":20,"skill":5695,"stats":["15% increased Archon Buff duration"],"stringId":"archon2_"},"5702":{"connections":[{"id":13411,"orbit":-5}],"group":1114,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":5702,"stats":["+5 to any Attribute"],"stringId":"dexterity4_"},"5703":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":16367,"orbit":2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Echoing Thunder","orbit":7,"orbitIndex":4,"recipe":["Despair","Suffering","Ire"],"skill":5703,"stats":["30% increased Elemental Damage if you've Shocked an Enemy Recently"],"stringId":"lightning40"},"5704":{"connections":[{"id":62166,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Speed","orbit":2,"orbitIndex":8,"skill":5704,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"accuracy38"},"5710":{"connections":[{"id":6839,"orbit":-3},{"id":38323,"orbit":0},{"id":14923,"orbit":0},{"id":6529,"orbit":-4}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/strongarm.dds","isNotable":true,"name":"Brutal","orbit":4,"orbitIndex":51,"skill":5710,"stats":["10% increased Stun Buildup","16% increased Melee Damage","+10 to Strength"],"stringId":"marauder_brute_notable1"},"5726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":777,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5726,"stats":[],"stringId":"mastery_elemental94"},"5728":{"connections":[{"id":17349,"orbit":-3},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Ancient Aegis","orbit":7,"orbitIndex":4,"recipe":["Despair","Paranoia","Envy"],"skill":5728,"stats":["60% increased Armour from Equipped Body Armour","60% increased Energy Shield from Equipped Body Armour"],"stringId":"energy_shield_and_armour11"},"5733":{"ascendancyName":"Spirit Walker","connections":[{"id":56489,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Spirit","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":9,"orbitIndex":25,"skill":5733,"stats":["+10 to Spirit"],"stringId":"AscendancyHuntress2Small8"},"5740":{"connections":[{"id":40687,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":2,"orbitIndex":6,"skill":5740,"stats":["20% increased Presence Area of Effect"],"stringId":"glory20"},"5766":{"connections":[{"id":51416,"orbit":-4},{"id":16705,"orbit":4}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":6,"orbitIndex":60,"skill":5766,"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"stringId":"spells16"},"5777":{"connections":[{"id":58651,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"isSwitchable":true,"name":"Deadly Swarm","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":54594,"name":"Natural Essence","stats":["16% increased Armour","16% increased maximum Energy Shield","20% increased Elemental Ailment Threshold"]}},"orbit":4,"orbitIndex":4,"skill":5777,"stats":["Minions deal 15% increased Damage","Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence13"},"5797":{"connections":[{"id":59538,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Freeze Buildup and Cold Damage","orbit":2,"orbitIndex":2,"skill":5797,"stats":["8% increased Cold Damage","8% increased Freeze Buildup"],"stringId":"daze_15"},"5800":{"connections":[{"id":43149,"orbit":0},{"id":22975,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":7,"orbitIndex":0,"skill":5800,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy41"},"5802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","isNotable":true,"name":"Stand and Deliver","orbit":0,"orbitIndex":0,"recipe":["Disgust","Greed","Isolation"],"skill":5802,"stats":["Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m","Projectiles deal 25% increased Damage with Hits against Enemies within 2m"],"stringId":"projectiles29"},"5817":{"ascendancyName":"Deadeye","connections":[],"group":1557,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds","isNotable":true,"name":"Mirage Deadeye","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":5817,"stats":["Grants Skill: Mirage Deadeye"],"stringId":"AscendancyRanger1Notable4"},"5826":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1109,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":22,"skill":5826,"stats":[],"stringId":"mastery_projectile204"},"5852":{"ascendancyName":"Smith of Kitava","connections":[{"id":20895,"orbit":0},{"id":47236,"orbit":0},{"id":5386,"orbit":0},{"id":14960,"orbit":0},{"id":9988,"orbit":0}],"group":41,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Smith of Kitava","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":9,"orbitIndex":96,"skill":5852,"stats":[],"stringId":"AscendancyWarrior3Start"},"5862":{"connections":[{"id":22697,"orbit":-2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":7,"orbitIndex":14,"skill":5862,"stats":["+5% to Lightning Resistance"],"stringId":"shaman6__"},"5920":{"connections":[{"id":52574,"orbit":-3},{"id":51921,"orbit":5}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":2,"orbitIndex":16,"skill":5920,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks20"},"5936":{"connections":[{"id":65248,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":5936,"stats":["10% increased Elemental Damage"],"stringId":"elemental53"},"5961":{"connections":[{"id":54675,"orbit":0},{"id":11315,"orbit":0}],"group":985,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":5961,"stats":["10% increased Lightning Damage"],"stringId":"lightning25"},"5988":{"connections":[{"id":38459,"orbit":7}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Damage vs Blinded","orbit":2,"orbitIndex":8,"skill":5988,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"blind7"},"6006":{"connections":[{"id":38105,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":62,"skill":6006,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield9"},"6008":{"connections":[{"id":58096,"orbit":2}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":19,"skill":6008,"stats":["10% increased Spell Damage"],"stringId":"spells4"},"6010":{"connections":[{"id":13367,"orbit":0},{"id":38969,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":6010,"stats":["12% increased Accuracy Rating"],"stringId":"accuracy4"},"6015":{"connections":[{"id":35426,"orbit":6}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":15,"skill":6015,"stats":["+5 to any Attribute"],"stringId":"strength16"},"6030":{"connections":[],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":5,"skill":6030,"stats":["8% chance to Poison on Hit"],"stringId":"poison11"},"6077":{"connections":[{"id":35645,"orbit":-2}],"group":559,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","orbit":0,"orbitIndex":0,"skill":6077,"stats":["Minions have 20% increased Cooldown Recovery Rate for Command Skills"],"stringId":"minion_offence45"},"6078":{"connections":[{"id":61119,"orbit":4}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":1,"skill":6078,"stats":["8% chance to Poison on Hit"],"stringId":"poison22"},"6079":{"connections":[{"id":10242,"orbit":0}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":6079,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup23"},"6088":{"connectionArt":"CharacterPlanned","connections":[{"id":54380,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"First Sting","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":6088,"stats":["30% chance to Poison on Hit against Enemies that are not Poisoned","80% increased Magnitude of Poison you inflict on targets that are not Poisoned"],"stringId":"oracle_poison5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6100":{"connectionArt":"CharacterPlanned","connections":[{"id":20963,"orbit":4}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":11,"skill":6100,"stats":["20% increased Critical Damage Bonus"],"stringId":"oracle_slow_crits3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6109":{"ascendancyName":"Amazon","connections":[{"id":63254,"orbit":0}],"group":1603,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Evasion","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":6109,"stats":["20% increased Evasion Rating"],"stringId":"AscendancyHuntress1Small8"},"6127":{"ascendancyName":"Warbringer","connections":[],"group":33,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds","isNotable":true,"name":"Jade Heritage","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":6127,"stats":["Gain a stack of Jade every second","Grants Skill: Encase in Jade"],"stringId":"AscendancyWarrior2Notable3"},"6133":{"connections":[{"id":33402,"orbit":0},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Core of the Guardian","orbit":4,"orbitIndex":48,"recipe":["Paranoia","Greed","Fear"],"skill":6133,"stats":["20% reduced maximum Energy Shield","30% increased Block chance"],"stringId":"shield14_"},"6153":{"connections":[{"id":44952,"orbit":0},{"id":10362,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":14,"skill":6153,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration1"},"6161":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1173,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":0,"orbitIndex":0,"skill":6161,"stats":[],"stringId":"mastery_bleeding_6328_"},"6178":{"connections":[{"id":33415,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Power Shots","orbit":4,"orbitIndex":35,"recipe":["Paranoia","Isolation","Suffering"],"skill":6178,"stats":["15% reduced Attack Speed with Crossbows","80% increased Critical Damage Bonus with Crossbows"],"stringId":"crossbow8_"},"6222":{"connections":[{"id":57608,"orbit":0},{"id":65189,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Damage","orbit":7,"orbitIndex":11,"skill":6222,"stats":["10% increased Damage while Shapeshifted"],"stringId":"shapeshifting1"},"6229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":26490,"orbit":7}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Push the Advantage","orbit":7,"orbitIndex":5,"recipe":["Fear","Ire","Disgust"],"skill":6229,"stats":["40% increased Critical Damage Bonus with One Handed Melee Weapons"],"stringId":"one_handed15"},"6266":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":9,"skill":6266,"stats":["10% increased Damage against Demons"],"stringId":"mercenary1"},"6269":{"connections":[{"id":45990,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":2,"orbitIndex":1,"skill":6269,"stats":["3% increased Attack Speed with Axes"],"stringId":"axe7"},"6274":{"connections":[{"id":56567,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":17,"skill":6274,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy7"},"6287":{"connections":[{"id":364,"orbit":2147483647}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":6287,"stats":["+8 to Intelligence"],"stringId":"attributes104"},"6294":{"connections":[{"id":52429,"orbit":4}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":4,"orbitIndex":54,"skill":6294,"stats":["3% increased Cast Speed"],"stringId":"cast_speed27"},"6304":{"connections":[{"id":12125,"orbit":0}],"group":403,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Stand Ground","orbit":2,"orbitIndex":4,"recipe":["Greed","Paranoia","Guilt"],"skill":6304,"stats":["Regenerate 1% of maximum Life per second while affected by any Damaging Ailment","Regenerate 1% of maximum Life per second while stationary"],"stringId":"life_regeneration38"},"6330":{"connections":[],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Damage","orbit":7,"orbitIndex":5,"skill":6330,"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"stringId":"accuracy21"},"6338":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":2254,"orbit":0}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":6338,"stats":[],"stringId":"mastery_energyshield105"},"6355":{"connections":[{"id":14110,"orbit":-4},{"id":38124,"orbit":4}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":2,"skill":6355,"stats":["15% increased Totem Damage"],"stringId":"totems36"},"6356":{"connections":[{"id":27900,"orbit":0}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","orbit":7,"orbitIndex":21,"skill":6356,"stats":["4% increased Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical56"},"6416":{"connections":[{"id":51821,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":20,"skill":6416,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour4"},"6490":{"connections":[{"id":14082,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":6490,"stats":["10% increased Physical Damage"],"stringId":"physical23_"},"6502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":184,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","isOnlyImage":true,"name":"Flail Mastery","orbit":0,"orbitIndex":0,"skill":6502,"stats":[],"stringId":"mastery_flail_6533"},"6505":{"connections":[{"id":55060,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":3,"orbitIndex":4,"skill":6505,"stats":["15% chance to Pierce an Enemy"],"stringId":"ranged47_"},"6514":{"connections":[{"id":47173,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Cacophony","orbit":4,"orbitIndex":5,"recipe":["Isolation","Guilt","Fear"],"skill":6514,"stats":["40% increased Damage with Warcries","Warcry Skills have 25% increased Area of Effect"],"stringId":"warcries11"},"6529":{"connections":[{"id":32416,"orbit":-3}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":0,"skill":6529,"stats":["15% increased Armour"],"stringId":"armour5"},"6530":{"connections":[{"id":1448,"orbit":4},{"id":11825,"orbit":5}],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion and Companion Movement Speed","orbit":3,"orbitIndex":14,"skill":6530,"stats":["10% increased Evasion Rating","Companions have 8% increased Movement Speed"],"stringId":"companions56"},"6544":{"connections":[{"id":56061,"orbit":6},{"id":42604,"orbit":0}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Burning Strikes","orbit":4,"orbitIndex":53,"recipe":["Envy","Disgust","Isolation"],"skill":6544,"stats":["Gain 12% of Physical Damage as Extra Fire Damage"],"stringId":"fire38"},"6554":{"connections":[],"group":780,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":6554,"stats":["12% increased Cold Damage"],"stringId":"cold61"},"6570":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1305,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":6570,"stats":[],"stringId":"mastery_curse70"},"6588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":898,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":6588,"stats":[],"stringId":"mastery_caster43"},"6596":{"connections":[{"id":41171,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Speed","orbit":4,"orbitIndex":30,"skill":6596,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"stringId":"boss_slaying5"},"6623":{"connections":[{"id":12821,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Aura Effect","orbit":1,"orbitIndex":10,"skill":6623,"stats":["Banner Skills have 12% increased Aura Magnitudes"],"stringId":"banners8"},"6626":{"connections":[{"id":46475,"orbit":4}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":21,"skill":6626,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion10"},"6655":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":717,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Aggravation","orbit":2,"orbitIndex":14,"recipe":["Despair","Suffering","Envy"],"skill":6655,"stats":["10% chance to Aggravate Bleeding on targets you Hit with Attacks"],"stringId":"bleed13"},"6660":{"connections":[{"id":39050,"orbit":-7}],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":2,"orbitIndex":12,"skill":6660,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments2"},"6686":{"connections":[{"id":51184,"orbit":-4}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isSwitchable":true,"name":"Mana Regeneration","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":29472,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":2,"orbitIndex":1,"skill":6686,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana8"},"6689":{"connections":[{"id":51735,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":4,"orbitIndex":39,"skill":6689,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield4"},"6714":{"connections":[{"id":41646,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Curse Effect on you and Life Regeneration Rate","orbit":2,"orbitIndex":12,"skill":6714,"stats":["5% increased Life Regeneration rate","5% reduced effect of Curses on you"],"stringId":"mercenary10"},"6715":{"connections":[{"id":116,"orbit":3},{"id":41372,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield and Mana Regeneration","orbit":7,"orbitIndex":17,"skill":6715,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"stringId":"energy_shield13"},"6735":{"connections":[{"id":41935,"orbit":4},{"id":43460,"orbit":-5}],"group":179,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Armour","orbit":0,"orbitIndex":0,"skill":6735,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"bear4"},"6744":{"connections":[{"id":49357,"orbit":0},{"id":483,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":6,"skill":6744,"stats":["+5 to any Attribute"],"stringId":"intelligence32"},"6748":{"connections":[{"id":48618,"orbit":7},{"id":62122,"orbit":3}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":7,"orbitIndex":8,"skill":6748,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"damage_from_mana2"},"6752":{"connections":[{"id":7378,"orbit":0},{"id":29148,"orbit":4}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":23,"skill":6752,"stats":["12% increased Fire Damage"],"stringId":"fire5"},"6772":{"connections":[{"id":60505,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":6,"skill":6772,"stats":["+5 to any Attribute"],"stringId":"dexterity18"},"6789":{"connections":[{"id":4313,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":22193,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":2,"orbitIndex":1,"skill":6789,"stats":["8% increased Projectile Damage"],"stringId":"projectiles8"},"6792":{"connections":[{"id":33245,"orbit":0},{"id":2408,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":6,"skill":6792,"stats":["10% increased Projectile Damage"],"stringId":"ranged10"},"6800":{"connections":[{"id":32438,"orbit":4}],"group":1355,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":6800,"stats":["11% increased Chaos Damage"],"stringId":"chaos26"},"6839":{"connections":[{"id":39581,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":14,"skill":6839,"stats":["15% increased Stun Buildup"],"stringId":"stun5"},"6842":{"connections":[{"id":18472,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":3,"orbitIndex":9,"skill":6842,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise3"},"6872":{"connections":[{"id":33939,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Armour Applies to Cold Damage Hits","orbit":4,"orbitIndex":4,"skill":6872,"stats":["+15% of Armour also applies to Cold Damage"],"stringId":"maximum_resistances7_"},"6874":{"connectionArt":"CharacterPlanned","connections":[{"id":34940,"orbit":-2}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Life Recoup","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":2,"skill":6874,"stats":["10% of Damage taken Recouped as Life while Channelling"],"stringId":"oracle_channelling4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6891":{"connections":[{"id":56265,"orbit":0}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":22,"skill":6891,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals89"},"6898":{"connections":[{"id":17584,"orbit":-8},{"id":61067,"orbit":8},{"id":48305,"orbit":0},{"id":30704,"orbit":0},{"id":17517,"orbit":-8},{"id":28718,"orbit":0}],"group":630,"icon":"Art/2DArt/SkillIcons/passives/PressurePoints.dds","isNotable":true,"isSwitchable":true,"name":"Relentless Vindicator","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/stormborn.dds","id":7197,"name":"Guardian of the Wilds","stats":["10% increased Damage","Gain 5% of Damage as Extra Damage of a random Element","+5 to Strength and Intelligence"]}},"orbit":0,"orbitIndex":0,"skill":6898,"stats":["10% increased Damage","10% increased Critical Hit Chance","+5 to Strength and Intelligence"],"stringId":"templar_druid_notable1"},"6900":{"connections":[{"id":26479,"orbit":-6},{"id":45751,"orbit":0}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Maximum Block","orbit":5,"orbitIndex":0,"skill":6900,"stats":["+1% to maximum Block chance"],"stringId":"shield36"},"6912":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":6912,"stats":[],"stringId":"mastery_twohand243"},"6923":{"connections":[{"id":1087,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":10,"skill":6923,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed13"},"6935":{"ascendancyName":"Witchhunter","connections":[],"group":321,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds","isNotable":true,"name":"Ceremonial Ablution","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":6935,"stats":["Sorcery Ward's Barrier can also take Physical and Chaos Damage from Hits"],"stringId":"AscendancyMercenary2Notable6"},"6950":{"connections":[{"id":49804,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":2,"skill":6950,"stats":["10% increased Exposure Effect"],"stringId":"elemental59"},"6951":{"connections":[{"id":23608,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":4,"orbitIndex":54,"skill":6951,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison3"},"6952":{"connections":[],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":18,"skill":6952,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks35"},"6988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":2,"orbitIndex":10,"skill":6988,"stats":[],"stringId":"mastery_herald_6560"},"6999":{"connectionArt":"CharacterPlanned","connections":[{"id":15672,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":7,"skill":6999,"stats":["Totems gain +2% to all Maximum Elemental Resistances"],"stringId":"oracle_totems4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":7023,"stats":[],"stringId":"mastery_cold61"},"7049":{"connections":[{"id":22556,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":19,"skill":7049,"stats":["30% increased Armour while Surrounded"],"stringId":"being_surrounded1"},"7054":{"connections":[{"id":21142,"orbit":0},{"id":47009,"orbit":0},{"id":17088,"orbit":0}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":7,"orbitIndex":8,"skill":7054,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks44"},"7060":{"connections":[{"id":24339,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":7060,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks39"},"7062":{"connections":[{"id":16680,"orbit":0},{"id":61432,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Reusable Ammunition","orbit":4,"orbitIndex":19,"recipe":["Paranoia","Isolation","Despair"],"skill":7062,"stats":["Bolts fired by Crossbow Attacks have 30% chance to not","expend Ammunition if you've Reloaded Recently"],"stringId":"crossbow14"},"7066":{"connectionArt":"CharacterPlanned","connections":[{"id":23932,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":6,"skill":7066,"stats":["5% increased Attack Speed with Bows"],"stringId":"oracle_bow_movement6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7068":{"ascendancyName":"Ritualist","connections":[],"group":1600,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds","isNotable":true,"name":"Mystic Attunement","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":7068,"stats":["25% increased bonuses gained from Equipped Rings and Amulets"],"stringId":"AscendancyHuntress3Notable1_"},"7104":{"connections":[{"id":54733,"orbit":-3},{"id":14258,"orbit":-3}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":19,"skill":7104,"stats":["15% increased Effect of Puppet Master"],"stringId":"Puppetmaster10"},"7120":{"ascendancyName":"Witchhunter","connections":[{"id":43131,"orbit":-8},{"id":20830,"orbit":0},{"id":61897,"orbit":8},{"id":51737,"orbit":0},{"id":25172,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Witchhunter","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":9,"orbitIndex":72,"skill":7120,"stats":[],"stringId":"AscendancyMercenary2Start"},"7128":{"connections":[],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Dangerous Blossom","orbit":6,"orbitIndex":63,"recipe":["Paranoia","Envy","Isolation"],"skill":7128,"stats":["Gain 10% of Damage as Extra Physical Damage"],"stringId":"physical68__"},"7163":{"connections":[{"id":45100,"orbit":3},{"id":23013,"orbit":0}],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Stimulants","orbit":5,"orbitIndex":45,"recipe":["Despair","Greed","Greed"],"skill":7163,"stats":["16% increased Attack Speed during any Flask Effect"],"stringId":"attack_speed31"},"7183":{"connections":[{"id":48589,"orbit":-6}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":5,"skill":7183,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks23_"},"7201":{"connections":[{"id":516,"orbit":3}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":21,"skill":7201,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles33"},"7204":{"connections":[{"id":53527,"orbit":0},{"id":4985,"orbit":0},{"id":64525,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":0,"orbitIndex":0,"skill":7204,"stats":["15% increased Stun Buildup"],"stringId":"stun6"},"7218":{"connections":[{"id":60203,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":22,"skill":7218,"stats":["+8 to Strength"],"stringId":"attributes109"},"7246":{"ascendancyName":"Stormweaver","connections":[{"id":39204,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Mana Regeneration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":54,"skill":7246,"stats":["12% increased Mana Regeneration Rate"],"stringId":"AscendancySorceress1Small2"},"7251":{"connections":[],"group":596,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":7251,"stats":["10% increased Attack Damage"],"stringId":"life_leech6"},"7258":{"connectionArt":"CharacterPlanned","connections":[{"id":11861,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":5,"skill":7258,"stats":["10% increased Spell Damage","+10 to Strength"],"stringId":"oracle_strength_spell2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7275":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Electrocuting Exposure","orbit":4,"orbitIndex":64,"recipe":["Fear","Fear","Ire"],"skill":7275,"stats":["Gain 25% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies"],"stringId":"shock_mitigation12"},"7294":{"connections":[{"id":65498,"orbit":0},{"id":39307,"orbit":0},{"id":41017,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Physical Damage","orbit":2,"orbitIndex":16,"skill":7294,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"stringId":"physical47"},"7302":{"connections":[{"id":52615,"orbit":0},{"id":30077,"orbit":0}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Echoing Pulse","orbit":7,"orbitIndex":0,"recipe":["Fear","Envy","Ire"],"skill":7302,"stats":["Echoed Spells have 25% increased Area of Effect"],"stringId":"area_spells26"},"7333":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":761,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":7333,"stats":[],"stringId":"mastery_elemental_6471"},"7338":{"connections":[{"id":52060,"orbit":0}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Abasement","orbit":7,"orbitIndex":23,"recipe":["Paranoia","Despair","Fear"],"skill":7338,"stats":["20% increased Stun Recovery","Gain additional Stun Threshold equal to 30% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield19_"},"7341":{"connections":[{"id":33244,"orbit":0}],"group":367,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Ignore Pain","orbit":0,"orbitIndex":0,"recipe":["Despair","Fear","Suffering"],"skill":7341,"stats":["Gain 3 Rage when Hit by an Enemy","Every Rage also grants 2% increased Stun Threshold"],"stringId":"rage5"},"7344":{"connections":[{"id":58182,"orbit":0},{"id":26931,"orbit":0}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","isNotable":true,"name":"Life from Death","orbit":3,"orbitIndex":4,"skill":7344,"stats":["Recover 3% of maximum Life on Kill"],"stringId":"life_on_kill14"},"7353":{"connections":[{"id":9046,"orbit":3}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":7353,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals92"},"7378":{"connections":[{"id":65016,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":20,"skill":7378,"stats":["12% increased Fire Damage"],"stringId":"fire6"},"7390":{"connections":[{"id":17150,"orbit":7}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":4,"skill":7390,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion23"},"7392":{"connections":[{"id":10571,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":19,"skill":7392,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold4"},"7395":{"connections":[{"id":30007,"orbit":0},{"id":46051,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Retaliation","orbit":3,"orbitIndex":10,"recipe":["Ire","Fear","Suffering"],"skill":7395,"stats":["75% increased Thorns damage if you've Blocked Recently"],"stringId":"getting_hit10"},"7405":{"connections":[{"id":4850,"orbit":0}],"group":1035,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect and Mana Regeneration","orbit":0,"orbitIndex":0,"skill":7405,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"stringId":"lightning28"},"7412":{"connections":[{"id":45709,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":15,"skill":7412,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks7"},"7424":{"connections":[{"id":36994,"orbit":0},{"id":1823,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":0,"skill":7424,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield29"},"7449":{"connections":[{"id":53696,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Splinters","orbit":7,"orbitIndex":18,"recipe":["Envy","Paranoia","Despair"],"skill":7449,"stats":["30% increased Stun Buildup","Hits Break 50% increased Armour on targets with Ailments"],"stringId":"physical39"},"7465":{"connections":[{"id":17664,"orbit":0}],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":15,"skill":7465,"stats":["12% increased Critical Hit Chance against Enemies that have entered your Presence Recently"],"stringId":"criticals98"},"7473":{"connections":[{"id":64471,"orbit":-4}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":23,"skill":7473,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds6"},"7488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":596,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":7488,"stats":[],"stringId":"mastery_leech127"},"7526":{"connections":[{"id":17447,"orbit":0},{"id":22972,"orbit":0},{"id":43044,"orbit":0},{"id":24210,"orbit":0}],"group":1240,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":7526,"stats":["+5 to any Attribute"],"stringId":"dexterity63"},"7542":{"connections":[],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Encompassing Domain","orbit":2,"orbitIndex":4,"recipe":["Fear","Disgust","Envy"],"skill":7542,"stats":["10% increased Area Damage","12% increased Area of Effect if you have Stunned an Enemy Recently"],"stringId":"area_of_effect16"},"7553":{"connectionArt":"CharacterPlanned","connections":[{"id":43385,"orbit":-7},{"id":15842,"orbit":0}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Trusted Partner","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":48,"skill":7553,"stats":["Companions have 20% increased maximum Life","5% of Damage from Hits is taken from your Damageable Companion's Life before you"],"stringId":"oracle_big_family8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7554":{"connections":[{"id":23039,"orbit":-7}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Energy Shield Delay and Armour Applies to Elemental Damage","orbit":3,"orbitIndex":13,"skill":7554,"stats":["+3% of Armour also applies to Elemental Damage","5% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour22"},"7576":{"connections":[{"id":33866,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":7576,"stats":["8% increased Attack Damage"],"stringId":"attack_damage1"},"7604":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Rapid Strike","orbit":3,"orbitIndex":8,"recipe":["Ire","Fear","Fear"],"skill":7604,"stats":["+30 to Accuracy Rating","8% increased Melee Attack Speed"],"stringId":"melee30_"},"7621":{"ascendancyName":"Invoker","connections":[{"id":55611,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds","isNotable":true,"name":"I am the Thunder...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":5,"orbitIndex":15,"skill":7621,"stats":["Gain 10% of Damage as Extra Lightning Damage","25% chance on Shocking Enemies to created Shocked Ground"],"stringId":"AscendancyMonk2Notable3"},"7628":{"connections":[{"id":41646,"orbit":0},{"id":55231,"orbit":0}],"group":710,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":7628,"stats":["+5 to any Attribute"],"stringId":"strength38"},"7642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":493,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":8,"skill":7642,"stats":[],"stringId":"mastery_physical6168"},"7651":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":21788,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Pierce the Heart","orbit":6,"orbitIndex":21,"recipe":["Despair","Isolation","Paranoia"],"skill":7651,"stats":["Arrows Pierce an additional Target"],"stringId":"bow18"},"7668":{"connections":[{"id":62015,"orbit":0}],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Internal Bleeding","orbit":2,"orbitIndex":3,"recipe":["Guilt","Despair","Paranoia"],"skill":7668,"stats":["20% chance to Aggravate Bleeding on targets you Hit with Empowered Attacks","Empowered Attacks deal 30% increased Damage"],"stringId":"warcries14_"},"7716":{"connections":[],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":23,"skill":7716,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"stringId":"armour47"},"7720":{"connections":[{"id":32932,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Ignite","orbit":4,"orbitIndex":61,"skill":7720,"stats":["Gain 1 Rage when your Hit Ignites a target"],"stringId":"rage41"},"7721":{"connections":[{"id":54232,"orbit":0},{"id":61534,"orbit":3},{"id":18629,"orbit":-6},{"id":64683,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/Warrior.dds","isNotable":true,"name":"Relentless","orbit":4,"orbitIndex":45,"skill":7721,"stats":["15% increased Armour","Regenerate 0.5% of maximum Life per second","+10 to Strength"],"stringId":"marauder_brute_notable2"},"7741":{"connections":[{"id":42500,"orbit":0}],"group":844,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":5,"skill":7741,"stats":["+5 to any Attribute"],"stringId":"dexterity26"},"7777":{"connections":[{"id":26739,"orbit":7},{"id":42205,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Breaking Point","orbit":4,"orbitIndex":18,"recipe":["Fear","Paranoia","Fear"],"skill":7777,"stats":["10% increased Duration of Elemental Ailments on Enemies","30% increased Magnitude of Non-Damaging Ailments you inflict"],"stringId":"elemental37_"},"7782":{"connections":[{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Rupturing Pins","orbit":3,"orbitIndex":0,"recipe":["Greed","Suffering","Guilt"],"skill":7782,"stats":["40% increased Magnitude of Bleeding you inflict against Pinned Enemies"],"stringId":"physical_witch10"},"7788":{"connections":[{"id":57805,"orbit":5}],"group":830,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":4,"skill":7788,"stats":["8% increased Knockback Distance"],"stringId":"knockback6"},"7793":{"ascendancyName":"Infernalist","connections":[{"id":18348,"orbit":6}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":130,"skill":7793,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small4"},"7809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1416,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Wild Storm","orbit":0,"orbitIndex":0,"recipe":["Isolation","Fear","Isolation"],"skill":7809,"stats":["Gain 4% of Damage as Extra Cold Damage","Gain 4% of Damage as Extra Lightning Damage","+10 to Dexterity"],"stringId":"lightning33"},"7847":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds","isNotable":true,"name":"The Fabled Stag","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Fear"],"skill":7847,"stats":["40% increased Endurance, Frenzy and Power Charge Duration","+10 to Dexterity","Skills have 10% chance to not remove Charges but still count as consuming them"],"stringId":"azmerianimals18"},"7878":{"connections":[{"id":53901,"orbit":7}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":16,"skill":7878,"stats":["5% increased Block chance"],"stringId":"shield17"},"7888":{"connections":[{"id":17101,"orbit":0},{"id":28963,"orbit":2}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Combo Gain","orbit":3,"orbitIndex":21,"skill":7888,"stats":["10% Chance to build an additional Combo on Hit"],"stringId":"unarmed2"},"7922":{"connections":[{"id":45962,"orbit":-6}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Flask Duration","orbit":2,"orbitIndex":17,"skill":7922,"stats":["10% increased Flask Effect Duration"],"stringId":"life_flasks22"},"7947":{"connections":[{"id":26061,"orbit":2}],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Energy Shield as Freeze Threshold","orbit":2,"orbitIndex":16,"skill":7947,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"cold24"},"7960":{"connections":[],"group":395,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":2,"skill":7960,"stats":[],"stringId":"jewel_slot1969"},"7971":{"connections":[{"id":1468,"orbit":-7}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":10,"skill":7971,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration24"},"7972":{"connections":[{"id":25229,"orbit":0},{"id":5663,"orbit":0}],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":4,"skill":7972,"stats":["20% increased Endurance Charge Duration"],"stringId":"endurance_charges2"},"7979":{"ascendancyName":"Amazon","connections":[{"id":19233,"orbit":0}],"group":1594,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds","isNotable":true,"name":"Elemental Surge","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":7979,"stats":["When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges","Grants Skill: Elemental Surge"],"stringId":"AscendancyHuntress1Notable6"},"7998":{"ascendancyName":"Stormweaver","connections":[{"id":39640,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Shock Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":6,"orbitIndex":70,"skill":7998,"stats":["20% increased chance to Shock"],"stringId":"AscendancySorceress1Small6"},"8045":{"connections":[{"id":64927,"orbit":-6},{"id":52464,"orbit":5}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":7,"skill":8045,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech8"},"8092":{"connections":[{"id":44605,"orbit":6},{"id":59028,"orbit":0}],"group":838,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":11,"skill":8092,"stats":["10% increased Projectile Damage"],"stringId":"projectiles7"},"8107":{"connectionArt":"CharacterPlanned","connections":[{"id":18081,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":8107,"stats":["20% increased Glory generation"],"stringId":"oracle_glory_elemental4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8115":{"connections":[],"group":694,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":8,"skill":8115,"stats":["15% increased Pin Buildup"],"stringId":"armour_break30"},"8143":{"ascendancyName":"Invoker","connections":[{"id":16100,"orbit":4}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds","isNotable":true,"name":"Lead me through Grace...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":5,"skill":8143,"stats":["+1 to Spirit for every 8 Item Energy Shield on Equipped Body Armour","+1 to Spirit for every 20 Evasion Rating on Equipped Body Armour","Cannot gain Spirit from Equipment"],"stringId":"AscendancyMonk2Notable1_"},"8145":{"connections":[{"id":23331,"orbit":-6}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":9,"skill":8145,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"oracle1"},"8154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":3921,"orbit":0},{"id":38398,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":0,"orbitIndex":0,"skill":8154,"stats":[],"stringId":"mastery_herald_6556"},"8157":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":16,"skill":8157,"stats":["8% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds13"},"8171":{"connections":[{"id":45162,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":22,"skill":8171,"stats":["20% increased Presence Area of Effect"],"stringId":"glory13"},"8246":{"connections":[{"id":37548,"orbit":0},{"id":64462,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":11,"skill":8246,"stats":["10% increased Attack Damage"],"stringId":"attack8"},"8248":{"connectionArt":"CharacterPlanned","connections":[{"id":48079,"orbit":0}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":4,"skill":8248,"stats":["10% increased Bleeding Duration","20% chance for Attack Hits to apply Incision"],"stringId":"oracle_bleed1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8249":{"connections":[{"id":63525,"orbit":0},{"id":16816,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Critical Chance","orbit":7,"orbitIndex":8,"skill":8249,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"stringId":"accuracy34"},"8260":{"connections":[{"id":21453,"orbit":0}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":0,"skill":8260,"stats":["20% increased Armour Break Duration"],"stringId":"armour_break5"},"8272":{"ascendancyName":"Witchhunter","connections":[],"group":229,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds","isNotable":true,"name":"Weapon Master","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":8272,"stats":["100 Passive Skill Points become Weapon Set Skill Points"],"stringId":"AscendancyMercenary2Notable8"},"8273":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":25565,"orbit":0}],"group":1439,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Endless Circuit","orbit":0,"orbitIndex":0,"recipe":["Isolation","Despair","Despair"],"skill":8273,"stats":["25% chance on Consuming a Shock on an Enemy to reapply it"],"stringId":"lightning38__"},"8302":{"connections":[{"id":4467,"orbit":-3}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Damage vs Blinded","orbit":2,"orbitIndex":0,"skill":8302,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"monkchakra7"},"8305":{"ascendancyName":"Disciple of Varashta","connections":[{"id":9843,"orbit":-8},{"id":56783,"orbit":-8},{"id":13289,"orbit":-9},{"id":32705,"orbit":0},{"id":34207,"orbit":9},{"id":30265,"orbit":8},{"id":35880,"orbit":8}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Disciple of Varashta","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":6,"orbitIndex":0,"skill":8305,"stats":[],"stringId":"AscendancySorceress3Start"},"8349":{"connections":[{"id":31644,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":19,"skill":8349,"stats":["+8 to Intelligence"],"stringId":"energy_shield26"},"8357":{"connections":[{"id":10742,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":3,"orbitIndex":6,"skill":8357,"stats":["Minions have 3% increased Attack and Cast Speed"],"stringId":"minion_offence17"},"8382":{"connections":[{"id":61863,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":9,"skill":8382,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold15"},"8397":{"connections":[{"id":41130,"orbit":0},{"id":1220,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Empowering Remains","orbit":7,"orbitIndex":0,"recipe":["Envy","Ire","Fear"],"skill":8397,"stats":["40% increased Spell Damage if one of your Minions has died Recently"],"stringId":"spells60"},"8406":{"connections":[{"id":48305,"orbit":-4},{"id":5692,"orbit":0}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":21,"skill":8406,"stats":["+5 to any Attribute"],"stringId":"strength12"},"8415":{"ascendancyName":"Blood Mage","connections":[{"id":62388,"orbit":0},{"id":3165,"orbit":-5},{"id":30071,"orbit":0},{"id":59342,"orbit":0},{"id":47442,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds","isFreeAllocate":true,"isNotable":true,"name":"Sanguimancy","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":6,"orbitIndex":0,"skill":8415,"stats":["Skills gain a Base Life Cost equal to Base Mana Cost","Grants Skill: Life Remnants"],"stringId":"AscendancyWitch2Notable3"},"8421":{"connections":[{"id":35404,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":2,"orbitIndex":22,"skill":8421,"stats":["+5% to Cold Resistance"],"stringId":"shaman4"},"8423":{"connectionArt":"CharacterPlanned","connections":[{"id":60708,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":8423,"stats":["5% increased Attack Speed with Bows"],"stringId":"oracle_bow_movement8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8440":{"connections":[{"id":45013,"orbit":-7}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":1,"orbitIndex":4,"skill":8440,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life7"},"8456":{"connections":[{"id":38329,"orbit":2147483647}],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage and Freeze Buildup","orbit":7,"orbitIndex":4,"skill":8456,"stats":["8% increased Freeze Buildup","8% increased Attack Cold Damage"],"stringId":"cold41"},"8460":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":8460,"stats":[],"stringId":"mastery_warcry254"},"8483":{"connections":[{"id":6588,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Ruin","orbit":7,"orbitIndex":7,"recipe":["Greed","Despair","Suffering"],"skill":8483,"stats":["35% increased Spell Area Damage","Spell Skills have 10% reduced Area of Effect"],"stringId":"area_spells28"},"8493":{"connections":[{"id":64471,"orbit":0},{"id":52860,"orbit":0}],"group":650,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8493,"stats":["+5 to any Attribute"],"stringId":"attributes7"},"8509":{"connections":[{"id":59061,"orbit":9}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":10,"skill":8509,"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"stringId":"criticals33"},"8510":{"connections":[{"id":13030,"orbit":-3}],"group":1140,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":8510,"stats":["Damaging Ailments deal damage 5% faster"],"stringId":"ailments25"},"8522":{"connections":[{"id":26236,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":16,"skill":8522,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers12"},"8525":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":27,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds","isNotable":true,"name":"Leather Bindings","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":8525,"stats":["Body Armour grants regenerate 3% of maximum Life per second"],"stringId":"AscendancyWarrior3Notable6_7"},"8531":{"connections":[{"id":51534,"orbit":0},{"id":62661,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Leaping Ambush","orbit":3,"orbitIndex":11,"recipe":["Despair","Guilt","Guilt"],"skill":8531,"stats":["50% increased Critical Hit Chance against Enemies that are on Full Life"],"stringId":"criticals26"},"8535":{"connections":[],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Spiked Whip","orbit":2,"orbitIndex":10,"skill":8535,"stats":["25% increased Damage with Flails"],"stringId":"flail18"},"8540":{"connections":[{"id":45230,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":10,"skill":8540,"stats":["10% increased Area of Effect of Curses"],"stringId":"curses8"},"8553":{"connections":[{"id":13693,"orbit":7},{"id":37415,"orbit":-3}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":8553,"stats":["12% increased Cold Damage"],"stringId":"cold52"},"8554":{"connections":[{"id":47191,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Burning Nature","orbit":4,"orbitIndex":54,"recipe":["Greed","Isolation","Greed"],"skill":8554,"stats":["25% increased Fire Damage","15% increased Ignite Duration on Enemies"],"stringId":"fire30"},"8556":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8556,"stats":[],"stringId":"mastery_attack24"},"8560":{"connections":[{"id":31273,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":1,"orbitIndex":11,"skill":8560,"stats":["10% increased Melee Damage"],"stringId":"melee13"},"8569":{"connections":[{"id":47177,"orbit":0},{"id":55507,"orbit":9},{"id":46034,"orbit":0},{"id":8540,"orbit":0}],"group":987,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":6,"skill":8569,"stats":["+5 to any Attribute"],"stringId":"intelligence79"},"8573":{"connections":[{"id":11526,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":26,"skill":8573,"stats":["12% increased Damage with Bows"],"stringId":"bow6"},"8600":{"connections":[{"id":27439,"orbit":0},{"id":40596,"orbit":8},{"id":44406,"orbit":4},{"id":43778,"orbit":0},{"id":31650,"orbit":0}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8600,"stats":["+5 to any Attribute"],"stringId":"attributes82"},"8606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8606,"stats":[],"stringId":"mastery_attack_6296"},"8607":{"connections":[{"id":46665,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Lavianga's Brew","orbit":7,"orbitIndex":12,"recipe":["Fear","Isolation","Ire"],"skill":8607,"stats":["30% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect"],"stringId":"life_flasks42"},"8611":{"ascendancyName":"Lich","connections":[{"id":59,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Curse Area","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":28740,"name":"Curse Area","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["15% increased Area of Effect of Curses"]}},"orbit":8,"orbitIndex":56,"skill":8611,"stats":["15% increased Area of Effect of Curses"],"stringId":"AscendancyWitch3Small1"},"8616":{"connections":[{"id":57710,"orbit":0},{"id":43576,"orbit":-4},{"id":36746,"orbit":4}],"group":814,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8616,"stats":["+5 to any Attribute"],"stringId":"intelligence6"},"8629":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":418,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8629,"stats":[],"stringId":"mastery_attack20"},"8631":{"connections":[{"id":32660,"orbit":0},{"id":59256,"orbit":0},{"id":30979,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":2,"skill":8631,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals5_"},"8644":{"connections":[{"id":62496,"orbit":0},{"id":27417,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":51,"skill":8644,"stats":["10% increased Trap Damage"],"stringId":"trap1"},"8660":{"connections":[{"id":18846,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Reverberation","orbit":3,"orbitIndex":14,"recipe":["Paranoia","Guilt","Fear"],"skill":8660,"stats":["Spell Skills have 15% increased Area of Effect"],"stringId":"area_spells27"},"8693":{"connectionArt":"CharacterPlanned","connections":[{"id":35393,"orbit":0}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":7,"skill":8693,"stats":["30% increased Armour while Bleeding"],"stringId":"oracle_iron_blood1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8697":{"connections":[],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":8697,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks2"},"8723":{"connectionArt":"CharacterPlanned","connections":[{"id":3681,"orbit":-5},{"id":21374,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Flesh Withstands","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":6,"orbitIndex":56,"skill":8723,"stats":["30% increased Mana Regeneration Rate while Shocked","+500 to Armour while Frozen","21% increased Stun Threshold","21% increased Elemental Ailment Threshold","30% increased Life Regeneration rate while Ignited"],"stringId":"oracle_beast_corruption7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8734":{"connections":[{"id":52743,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":14,"skill":8734,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"deflect48"},"8737":{"connections":[{"id":41511,"orbit":0},{"id":25927,"orbit":-7},{"id":6077,"orbit":-2},{"id":56284,"orbit":-2}],"group":561,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":8737,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence42"},"8782":{"connections":[{"id":13882,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Empowering Infusions","orbit":7,"orbitIndex":15,"recipe":["Suffering","Envy","Guilt"],"skill":8782,"stats":["35% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion4"},"8785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":8785,"stats":[],"stringId":"mastery_curse_6434"},"8789":{"connections":[{"id":63182,"orbit":3}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage and Companion Life","orbit":2,"orbitIndex":12,"skill":8789,"stats":["Companions deal 12% increased Damage","Companions have 12% increased maximum Life"],"stringId":"duelist_minions3_"},"8791":{"connections":[{"id":32096,"orbit":0}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Sturdy Ally","orbit":3,"orbitIndex":7,"recipe":["Fear","Greed","Despair"],"skill":8791,"stats":["Companions gain your Strength","+15 to Strength"],"stringId":"duelist_minions11"},"8800":{"connections":[{"id":28982,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":15,"skill":8800,"stats":["15% increased Melee Damage with Hits at Close Range"],"stringId":"melee11"},"8810":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":33751,"orbit":2}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","isNotable":true,"name":"Multitasking","orbit":1,"orbitIndex":4,"recipe":["Paranoia","Disgust","Fear"],"skill":8810,"stats":["15% increased Skill Effect Duration","12% increased Cooldown Recovery Rate"],"stringId":"cooldowns15"},"8821":{"connections":[{"id":63863,"orbit":0}],"group":909,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":8821,"stats":["12% increased Lightning Damage"],"stringId":"lightning21"},"8827":{"connections":[{"id":16691,"orbit":0},{"id":28862,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Fast Metabolism","orbit":7,"orbitIndex":11,"recipe":["Suffering","Isolation","Suffering"],"skill":8827,"stats":["40% increased Damage while Leeching Life"],"stringId":"life_leech26"},"8831":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":14082,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Tempered Mind","orbit":0,"orbitIndex":0,"recipe":["Isolation","Despair","Paranoia"],"skill":8831,"stats":["15% increased effect of Fully Broken Armour","+10 to Strength","20% increased Physical Damage"],"stringId":"physical36"},"8850":{"connections":[],"group":116,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Critical Chance","orbit":0,"orbitIndex":0,"skill":8850,"stats":["10% increased Critical Hit Chance while Shapeshifted"],"stringId":"wolf10"},"8852":{"connections":[],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Slower Leech","orbit":2,"orbitIndex":17,"skill":8852,"stats":["12% increased amount of Life Leeched","Leech Life 5% slower"],"stringId":"life_leech9"},"8854":{"ascendancyName":"Infernalist","connections":[{"id":46644,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":54,"skill":8854,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small3"},"8867":{"ascendancyName":"Stormweaver","connections":[{"id":7246,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds","isNotable":true,"name":"Constant Gale","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":60,"skill":8867,"stats":["You have Arcane Surge"],"stringId":"AscendancySorceress1Notable1"},"8872":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","connections":[{"id":2394,"orbit":0},{"id":45488,"orbit":0}],"group":870,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","isOnlyImage":true,"name":"Dual Wielding Mastery","orbit":0,"orbitIndex":0,"skill":8872,"stats":[],"stringId":"mastery_dualwield85"},"8875":{"connections":[{"id":50687,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":1,"orbitIndex":8,"skill":8875,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation7"},"8881":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Unforgiving","orbit":4,"orbitIndex":54,"recipe":["Isolation","Greed","Greed"],"skill":8881,"stats":["+4 to Maximum Rage","Inherent loss of Rage is 20% slower"],"stringId":"rage14_"},"8896":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","isNotable":true,"name":"Agile Sprinter","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Ire"],"skill":8896,"stats":["100% increased Evasion Rating while Sprinting"],"stringId":"Sprint10"},"8904":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","isNotable":true,"name":"Death from Afar","orbit":0,"orbitIndex":0,"recipe":["Isolation","Fear","Guilt"],"skill":8904,"stats":["Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m","Projectiles deal 25% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles30"},"8908":{"connections":[{"id":13711,"orbit":4}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":6,"skill":8908,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield20"},"8916":{"connections":[],"group":452,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Bashing Beast","orbit":1,"orbitIndex":8,"recipe":["Despair","Paranoia","Disgust"],"skill":8916,"stats":["Enemies you Heavy Stun while Shapeshifted are Intimidated for 6 seconds"],"stringId":"bear16"},"8938":{"connections":[{"id":33229,"orbit":-4}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":16,"skill":8938,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical_witch6"},"8957":{"connections":[{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Right Hand of Darkness","orbit":4,"orbitIndex":44,"recipe":["Envy","Isolation","Suffering"],"skill":8957,"stats":["Minions have 20% increased Area of Effect","Minions have 10% chance to inflict Withered on Hit","Spells Gain 5% of Damage as extra Chaos Damage"],"stringId":"minion_offence28"},"8975":{"connections":[{"id":61196,"orbit":4}],"group":1043,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8975,"stats":["+5 to any Attribute"],"stringId":"intelligence9"},"8982":{"connections":[{"id":14952,"orbit":0},{"id":58926,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup and Skill Effect Duration","orbit":3,"orbitIndex":12,"skill":8982,"stats":["10% increased Freeze Buildup","6% increased Skill Effect Duration"],"stringId":"chill_and_freeze26"},"8983":{"connections":[],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":8983,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence9"},"9009":{"connections":[],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Return to Nature","orbit":5,"orbitIndex":1,"recipe":["Fear","Guilt","Ire"],"skill":9009,"stats":["Overgrown Plant Skills Break 50% increased Armour"],"stringId":"physical67"},"9018":{"connections":[{"id":35918,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Area and Presence","orbit":3,"orbitIndex":22,"skill":9018,"stats":["20% increased Presence Area of Effect","3% reduced Area of Effect"],"stringId":"auras36"},"9020":{"connections":[{"id":35118,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Giantslayer","orbit":1,"orbitIndex":11,"recipe":["Despair","Isolation","Despair"],"skill":9020,"stats":["25% increased Damage with Hits against Rare and Unique Enemies","20% increased Accuracy Rating against Rare or Unique Enemies","20% increased chance to inflict Ailments against Rare or Unique Enemies"],"stringId":"boss_slaying10"},"9037":{"connections":[{"id":32353,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Skill Speed","orbit":2,"orbitIndex":23,"skill":9037,"stats":["3% increased Skill Speed while Shapeshifted"],"stringId":"shapeshifting2"},"9040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":45751,"orbit":0}],"group":261,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":9040,"stats":[],"stringId":"mastery_shield_6694_"},"9046":{"connections":[{"id":56776,"orbit":5}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":8,"skill":9046,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals47"},"9050":{"connections":[{"id":24958,"orbit":-4},{"id":37691,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":6,"orbitIndex":36,"skill":9050,"stats":["3% increased Attack Speed"],"stringId":"attack25"},"9065":{"connections":[{"id":752,"orbit":5}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":4,"orbitIndex":23,"skill":9065,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation6"},"9069":{"connections":[{"id":42245,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":2,"orbitIndex":4,"skill":9069,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers25_"},"9083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":9083,"stats":[],"stringId":"mastery_minionoffence190"},"9085":{"connections":[],"flavourText":"Each nick and cut brings death one step closer.","group":1142,"icon":"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds","isKeystone":true,"name":"Crimson Assault","orbit":0,"orbitIndex":0,"skill":9085,"stats":["Bleeding you inflict is Aggravated","Base Bleeding Duration is 1 second","50% more Magnitude of Bleeding you inflict"],"stringId":"passive_keystone_crimson_dance_"},"9089":{"connections":[{"id":3994,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Evasion Rating","orbit":1,"orbitIndex":3,"skill":9089,"stats":["15% increased Evasion Rating"],"stringId":"deflect50_"},"9106":{"connections":[{"id":54937,"orbit":7}],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":2,"skill":9106,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage16"},"9112":{"connections":[{"id":44612,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":1,"orbitIndex":11,"skill":9112,"stats":["25% increased Elemental Ailment Threshold"],"stringId":"spell_suppression29"},"9141":{"connections":[{"id":13748,"orbit":-6},{"id":35760,"orbit":6},{"id":5703,"orbit":-2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":12,"skill":9141,"stats":["10% increased Elemental Damage"],"stringId":"elemental42"},"9151":{"connections":[{"id":42302,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Forking Projectiles","orbit":2,"orbitIndex":18,"skill":9151,"stats":["Projectiles have 25% chance for an additional Projectile when Forking"],"stringId":"ranged7"},"9163":{"connections":[],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":8,"skill":9163,"stats":["18% increased Armour"],"stringId":"armour27"},"9164":{"connections":[{"id":25513,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":5,"orbitIndex":45,"skill":9164,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed17"},"9185":{"connections":[{"id":60107,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":9185,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals21"},"9187":{"connections":[{"id":20015,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Escalation","orbit":2,"orbitIndex":8,"recipe":["Isolation","Greed","Guilt"],"skill":9187,"stats":["25% increased Warcry Speed","20% increased Damage for each different Warcry you've used Recently"],"stringId":"warcries53"},"9199":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Surpassing Projectile Chance","orbit":5,"orbitIndex":54,"skill":9199,"stats":["+8% Surpassing chance to fire an additional Projectile"],"stringId":"projectiles42"},"9212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":313,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Mastery","orbit":1,"orbitIndex":3,"skill":9212,"stats":[],"stringId":"oracle_forbidden_path_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9217":{"connections":[{"id":5108,"orbit":0},{"id":16538,"orbit":0},{"id":47733,"orbit":0}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":0,"orbitIndex":0,"skill":9217,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed22"},"9221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":278,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":9221,"stats":[],"stringId":"mastery_critical_269"},"9226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":554,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","isNotable":true,"name":"Mental Perseverance","orbit":1,"orbitIndex":0,"recipe":["Ire","Disgust","Greed"],"skill":9226,"stats":["10% of Damage is taken from Mana before Life","+15 to Intelligence"],"stringId":"damage_from_mana10"},"9227":{"connections":[{"id":36071,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Focused Thrust","orbit":2,"orbitIndex":4,"recipe":["Fear","Ire","Greed"],"skill":9227,"stats":["75% increased Melee Damage with Spears while Surrounded","40% increased Projectile Damage with Spears while there are no Enemies within 3m"],"stringId":"spear9"},"9240":{"connections":[{"id":21225,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":2,"orbitIndex":16,"skill":9240,"stats":["10% increased Damage with Spears"],"stringId":"spear5"},"9272":{"connections":[{"id":12906,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":0,"skill":9272,"stats":["10% increased Pin duration"],"stringId":"pin6"},"9275":{"connections":[{"id":5704,"orbit":0},{"id":63888,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Speed","orbit":2,"orbitIndex":16,"skill":9275,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"accuracy37"},"9290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":781,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Rusted Pins","orbit":4,"orbitIndex":57,"recipe":["Suffering","Guilt","Fear"],"skill":9290,"stats":["30% increased Pin Buildup","Bleeding you inflict on Pinned Enemies is Aggravated"],"stringId":"bleed32"},"9294":{"ascendancyName":"Amazon","connections":[{"id":528,"orbit":0}],"group":1593,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds","isNotable":true,"name":"Critical Strike","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":9294,"stats":["Chance to Hit with Attacks can exceed 100%","Gain additional Critical Hit Chance equal to 25% of excess chance to Hit with Attacks"],"stringId":"AscendancyHuntress1Notable1"},"9323":{"connections":[{"id":40395,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Craving Slaughter","orbit":2,"orbitIndex":23,"recipe":["Ire","Despair","Fear"],"skill":9323,"stats":["+15 maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds"],"stringId":"glory27_"},"9324":{"connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":21,"skill":9324,"stats":["8% increased Ignite Duration on Enemies"],"stringId":"ignite_mitigation11_"},"9328":{"connections":[{"id":34782,"orbit":0}],"group":149,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Spirit of the Bear","orbit":0,"orbitIndex":0,"recipe":["Greed","Envy","Despair"],"skill":9328,"stats":["50% increased Damage against Immobilised Enemies while Shapeshifted","25% increased Stun buildup while Shapeshifted"],"stringId":"bear10_"},"9352":{"connections":[{"id":32071,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":23,"skill":9352,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks1"},"9393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":1,"orbitIndex":8,"skill":9393,"stats":[],"stringId":"mastery_flask123"},"9405":{"connections":[{"id":59720,"orbit":6}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":9405,"stats":["15% increased Evasion Rating"],"stringId":"evasion28"},"9411":{"connections":[{"id":49466,"orbit":0},{"id":64434,"orbit":0}],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":15,"skill":9411,"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"stringId":"life_flasks14"},"9414":{"connectionArt":"CharacterPlanned","connections":[],"group":293,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":21,"skill":9414,"stats":["16% increased Elemental Damage"],"stringId":"oracle_glory_elemental2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9417":{"connections":[{"id":48121,"orbit":-6},{"id":13171,"orbit":5}],"group":491,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":9417,"stats":["16% increased Totem Life"],"stringId":"totems46"},"9421":{"connections":[{"id":60170,"orbit":0}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Snowpiercer","orbit":2,"orbitIndex":8,"recipe":["Isolation","Guilt","Disgust"],"skill":9421,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"stringId":"cold_penetration24"},"9441":{"connections":[{"id":5077,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":8,"skill":9441,"stats":["15% increased Parry Hit Area of Effect"],"stringId":"deflect18"},"9442":{"connections":[{"id":37260,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":18,"skill":9442,"stats":["16% increased Warcry Speed"],"stringId":"wolf12"},"9444":{"connections":[],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"One with the Storm","orbit":6,"orbitIndex":39,"recipe":["Isolation","Suffering","Disgust"],"skill":9444,"stats":["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"],"stringId":"quarterstaff14"},"9458":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":9458,"stats":[],"stringId":"mastery_mana168"},"9472":{"connections":[{"id":31991,"orbit":0},{"id":41062,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Catapult","orbit":0,"orbitIndex":0,"recipe":["Envy","Disgust","Guilt"],"skill":9472,"stats":["15% increased Projectile Speed","12% increased Area of Effect for Attacks"],"stringId":"ranged36"},"9485":{"connections":[{"id":60685,"orbit":0}],"group":879,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":9485,"stats":["+5 to any Attribute"],"stringId":"intelligence20"},"9510":{"connections":[{"id":16695,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Recoup","orbit":2,"orbitIndex":0,"skill":9510,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery37"},"9528":{"connections":[{"id":62200,"orbit":-4}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":15,"skill":9528,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries15"},"9532":{"connections":[{"id":59368,"orbit":2}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":22,"skill":9532,"stats":["+4 to Strength","+4 to Dexterity"],"stringId":"azmerianimals4"},"9535":{"connections":[{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","isNotable":true,"name":"Brinerot Ferocity","orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Fear"],"skill":9535,"stats":["4% increased Attack Speed","+8% to Lightning Resistance","+30% of Armour also applies to Lightning Damage"],"stringId":"armour_and_evasion41"},"9554":{"connectionArt":"CharacterPlanned","connections":[{"id":8723,"orbit":9}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":62,"skill":9554,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption13","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9568":{"connections":[{"id":5580,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":1,"skill":9568,"stats":["16% increased Totem Life"],"stringId":"totems18"},"9572":{"connections":[{"id":12822,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage if Projectile Hit","orbit":2,"orbitIndex":14,"skill":9572,"stats":["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"],"stringId":"ranged20"},"9583":{"connections":[{"id":47316,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Physical Damage","orbit":7,"orbitIndex":0,"skill":9583,"stats":["1% increased maximum Life","8% increased amount of Life Leeched"],"stringId":"life_leech28_"},"9586":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1193,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":4,"orbitIndex":10,"skill":9586,"stats":[],"stringId":"mastery_criticals68"},"9638":{"connections":[{"id":39083,"orbit":-7}],"group":495,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":9638,"stats":["3% increased Skill Speed"],"stringId":"attack_speed54"},"9642":{"connections":[{"id":517,"orbit":6},{"id":14666,"orbit":-4}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Dampening Shield","orbit":7,"orbitIndex":21,"skill":9642,"stats":["28% increased maximum Energy Shield","Gain additional Ailment Threshold equal to 12% of maximum Energy Shield","Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"energy_shield37"},"9652":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Mending Deflection","orbit":2,"orbitIndex":18,"recipe":["Despair","Envy","Fear"],"skill":9652,"stats":["15% of Damage taken from Deflected Hits Recouped as Life","20% faster start of Energy Shield Recharge when not on Full Life"],"stringId":"deflect66"},"9663":{"connections":[{"id":19359,"orbit":-5}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Resistance","orbit":2,"orbitIndex":8,"skill":9663,"stats":["+5% to Chaos Resistance"],"stringId":"monkchaos5"},"9698":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":238,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":22,"skill":9698,"stats":[],"stringId":"mastery_critical_6414"},"9703":{"connections":[{"id":6030,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":9703,"stats":["10% increased Poison Duration"],"stringId":"poison6"},"9710":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1565,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds","isMultipleChoiceOption":true,"name":"Bleeding Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":9710,"stats":["Grants Skill: Bleeding Concoction"],"stringId":"AscendancyRanger3Notable7_5"},"9736":{"connections":[{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Insulated Treads","orbit":4,"orbitIndex":42,"recipe":["Ire","Ire","Ire"],"skill":9736,"stats":["25% increased Armour and Evasion Rating","Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots"],"stringId":"armour_and_evasion14__"},"9737":{"connections":[{"id":36522,"orbit":0},{"id":24813,"orbit":4},{"id":59480,"orbit":0},{"id":15590,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":51,"skill":9737,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks11"},"9745":{"connections":[{"id":58513,"orbit":2147483647}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":12,"skill":9745,"stats":["2% increased Movement Speed"],"stringId":"azmerianimals11"},"9750":{"connections":[{"id":1169,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":12,"skill":9750,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries33"},"9762":{"connections":[{"id":45824,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":6,"orbitIndex":5,"skill":9762,"stats":["10% increased Damage with Swords"],"stringId":"sword2"},"9782":{"connections":[{"id":20677,"orbit":0}],"group":1211,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":9782,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals44"},"9796":{"connections":[{"id":62310,"orbit":-4}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":9796,"stats":["30% increased Flammability Magnitude"],"stringId":"fire15"},"9798":{"ascendancyName":"Pathfinder","connections":[{"id":24868,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":9,"orbitIndex":58,"skill":9798,"stats":["4% increased Skill Speed"],"stringId":"AscendancyRanger3Small4"},"9825":{"connections":[{"id":934,"orbit":-4},{"id":21755,"orbit":9}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":0,"skill":9825,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression8"},"9843":{"ascendancyName":"Disciple of Varashta","connections":[],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Mana","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":4,"orbitIndex":66,"skill":9843,"stats":["3% increased maximum Mana"],"stringId":"AscendancySorceress3Small5"},"9857":{"connections":[{"id":54990,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":2,"orbitIndex":8,"skill":9857,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed15"},"9863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"flavourText":"A throne is the most devious trap of them all","group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","isNotable":true,"name":"Knight of Izaro","orbit":4,"orbitIndex":42,"recipe":["Fear","Isolation","Disgust"],"skill":9863,"stats":["+12% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 10% of Evasion Rating","Banner Skills have 15% increased Aura Magnitudes","25% reduced Armour Break taken"],"stringId":"armour_and_evasion53"},"9884":{"connections":[{"id":38696,"orbit":-3}],"group":381,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":9884,"stats":["12% increased Fire Damage"],"stringId":"fire78_"},"9896":{"connections":[{"id":292,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Heartstopping Presence","orbit":3,"orbitIndex":4,"recipe":["Isolation","Ire","Suffering"],"skill":9896,"stats":["Enemies in your Presence have 75% reduced Life Regeneration rate"],"stringId":"life_recoup28"},"9908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":402,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Price of Freedom","orbit":2,"orbitIndex":8,"recipe":["Envy","Fear","Ire"],"skill":9908,"stats":["15% increased Cost Efficiency of Attacks","18% of Skill Mana Costs Converted to Life Costs"],"stringId":"reduced_attack_cost4"},"9918":{"connections":[{"id":16626,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":4,"skill":9918,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks9"},"9928":{"connections":[{"id":50403,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Embracing Frost","orbit":4,"orbitIndex":36,"recipe":["Fear","Fear","Guilt"],"skill":9928,"stats":["+1% to Maximum Cold Resistance","+10% to Cold Resistance"],"stringId":"freeze_and_chill_mitigation7"},"9941":{"connections":[{"id":38888,"orbit":0}],"group":932,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":15,"skill":9941,"stats":["8% increased Accuracy Rating with One Handed Melee Weapons","8% increased Accuracy Rating with Two Handed Melee Weapons"],"stringId":"melee22"},"9968":{"connections":[{"id":38678,"orbit":-6},{"id":28623,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Feel the Earth","orbit":4,"orbitIndex":69,"recipe":["Paranoia","Suffering","Disgust"],"skill":9968,"stats":["25% reduced Shock duration on you","40% increased Elemental Ailment Threshold"],"stringId":"spell_suppression25_"},"9988":{"ascendancyName":"Smith of Kitava","connections":[{"id":20195,"orbit":0},{"id":16276,"orbit":0},{"id":60913,"orbit":0},{"id":25438,"orbit":0},{"id":9997,"orbit":0},{"id":8525,"orbit":0},{"id":13772,"orbit":0},{"id":22908,"orbit":0},{"id":110,"orbit":0},{"id":49340,"orbit":0},{"id":61039,"orbit":0},{"id":64962,"orbit":0}],"group":47,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds","isFreeAllocate":true,"isNotable":true,"name":"Smith's Masterwork","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":9988,"stats":["Can only use a Normal Body Armour","+200 to Armour for each Connected Notable Passive Skill Allocated"],"stringId":"AscendancyWarrior3Notable6_0"},"9994":{"ascendancyName":"Invoker","connections":[{"id":23415,"orbit":0},{"id":44357,"orbit":0},{"id":13065,"orbit":0},{"id":27686,"orbit":0},{"id":25434,"orbit":2147483647},{"id":17268,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Invoker","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":9,"orbitIndex":24,"skill":9994,"stats":[],"stringId":"AscendancyMonk2Start"},"9997":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":32,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds","isNotable":true,"name":"Molten Symbol","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":9997,"stats":["Body Armour grants 25% of Physical Damage from Hits taken as Fire Damage"],"stringId":"AscendancyWarrior3Notable6_9"},"10011":{"connections":[],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Damage vs Blinded","orbit":3,"orbitIndex":13,"skill":10011,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"blind17"},"10029":{"connections":[{"id":19277,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Repulsion","orbit":2,"orbitIndex":4,"recipe":["Disgust","Paranoia","Despair"],"skill":10029,"stats":["Area Skills have 20% chance to Knock Enemies Back on Hit","20% increased Spell Area Damage"],"stringId":"area_spells25"},"10041":{"connections":[{"id":32799,"orbit":0}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Ailment Threshold and Companion Resistance","orbit":7,"orbitIndex":22,"skill":10041,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"stringId":"companions34"},"10047":{"connections":[{"id":62757,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":10,"skill":10047,"stats":["15% increased Stun Buildup"],"stringId":"stun2"},"10053":{"connections":[{"id":19470,"orbit":0},{"id":9458,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds","isNotable":true,"name":"Combat Alchemy","orbit":2,"orbitIndex":20,"skill":10053,"stats":["10% chance for Flasks you use to not consume Charges","20% increased Life and Mana Recovery from Flasks"],"stringId":"flasks21"},"10055":{"connections":[{"id":30554,"orbit":0},{"id":41497,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":7,"orbitIndex":2,"skill":10055,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence4"},"10058":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":55149,"orbit":0},{"id":44373,"orbit":0}],"group":1350,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":10058,"stats":[],"stringId":"mastery_chaos_6363"},"10072":{"ascendancyName":"Warbringer","connections":[{"id":52068,"orbit":-7}],"group":59,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Block Chance","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":10072,"stats":["6% increased Block chance"],"stringId":"AscendancyWarrior2Small9"},"10079":{"connections":[{"id":5314,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":10079,"stats":["10% increased Mana Regeneration Rate"],"stringId":"energy_shield_recovery9_"},"10100":{"connections":[{"id":47263,"orbit":0},{"id":25300,"orbit":0}],"group":199,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":10100,"stats":["+5 to any Attribute"],"stringId":"attributes50"},"10131":{"connections":[{"id":3251,"orbit":0},{"id":44669,"orbit":0},{"id":14127,"orbit":0},{"id":55947,"orbit":0}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":10131,"stats":["+5 to any Attribute"],"stringId":"intelligence60"},"10156":{"connections":[{"id":6744,"orbit":-6}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":38,"skill":10156,"stats":["+5 to any Attribute"],"stringId":"intelligence29"},"10159":{"connections":[{"id":31977,"orbit":4}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":42,"skill":10159,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana29"},"10162":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":10162,"stats":[],"stringId":"mastery_power_charge_6641"},"10169":{"connections":[],"group":434,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Unfettered","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Envy","Despair"],"skill":10169,"stats":["50% increased Armour while Bleeding","10% increased Movement Speed while Sprinting"],"stringId":"DeliriumAnoint_Unfettered"},"10192":{"connections":[{"id":3823,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":61436,"name":"Minion Damage","stats":["Minions deal 10% increased Damage"]}},"orbit":3,"orbitIndex":0,"skill":10192,"stats":["10% increased Elemental Damage"],"stringId":"sorcerer_start2"},"10242":{"connections":[{"id":38111,"orbit":0}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":10242,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup20"},"10245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":488,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":10245,"stats":[],"stringId":"mastery_attack25"},"10247":{"connections":[{"id":28370,"orbit":0}],"group":824,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":51,"skill":10247,"stats":["+5 to any Attribute"],"stringId":"strength35"},"10251":{"connections":[{"id":7204,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":16,"skill":10251,"stats":["15% increased Stun Buildup"],"stringId":"stun8_"},"10260":{"connections":[{"id":33730,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":10260,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling3"},"10265":{"connections":[{"id":36071,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Javelin","orbit":6,"orbitIndex":48,"recipe":["Greed","Despair","Disgust"],"skill":10265,"stats":["40% increased Critical Damage Bonus with Spears"],"stringId":"spear4"},"10267":{"connections":[{"id":8456,"orbit":2147483647}],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage and Freeze Buildup","orbit":7,"orbitIndex":22,"skill":10267,"stats":["8% increased Freeze Buildup","8% increased Attack Cold Damage"],"stringId":"cold42_"},"10271":{"connections":[{"id":58038,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":7,"skill":10271,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded6"},"10273":{"connections":[{"id":45272,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":2,"skill":10273,"stats":["+3 to all Attributes"],"stringId":"all_attributes12"},"10277":{"connections":[{"id":64064,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":10277,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy25"},"10286":{"connections":[{"id":38066,"orbit":-4}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Armour","orbit":7,"orbitIndex":8,"skill":10286,"stats":["10% increased Armour","Break 15% increased Armour"],"stringId":"armour_break6"},"10295":{"connections":[{"id":27733,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Overzealous","orbit":5,"orbitIndex":30,"recipe":["Fear","Despair","Isolation"],"skill":10295,"stats":["16% increased Cast Speed","15% increased Mana Cost of Skills"],"stringId":"cast_speed33"},"10305":{"connections":[{"id":45586,"orbit":0},{"id":61490,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Attack Damage with Ally","orbit":2,"orbitIndex":14,"skill":10305,"stats":["Allies in your Presence deal 8% increased Damage","8% increased Attack Damage while you have an Ally in your Presence"],"stringId":"auras20"},"10314":{"connections":[{"id":16256,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":30,"skill":10314,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration33__"},"10315":{"connections":[{"id":44699,"orbit":0},{"id":47443,"orbit":0},{"id":37971,"orbit":0}],"group":1546,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Easy Going","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Isolation"],"skill":10315,"stats":["25% increased Reservation Efficiency of Companion Skills"],"stringId":"companions1_"},"10320":{"connections":[{"id":14548,"orbit":3}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":18,"skill":10320,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence18"},"10362":{"connections":[{"id":10830,"orbit":0},{"id":9163,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":10362,"stats":["15% increased Armour"],"stringId":"armour23"},"10364":{"connections":[{"id":44683,"orbit":0},{"id":55342,"orbit":4},{"id":42857,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":4,"orbitIndex":48,"skill":10364,"stats":["4% increased Skill Speed"],"stringId":"attack_speed25"},"10371":{"ascendancyName":"Tactician","connections":[],"group":322,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds","isNotable":true,"name":"Whoever Pays Best","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":10371,"stats":["Banners gain 5 Glory per second","There is no Limit on the number of Banners you can place"],"stringId":"AscendancyMercenary1Notable3"},"10372":{"connections":[{"id":36191,"orbit":-3},{"id":55933,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":1,"orbitIndex":1,"skill":10372,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold1"},"10382":{"connections":[{"id":21984,"orbit":0},{"id":33979,"orbit":0}],"group":1202,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":10382,"stats":["+5 to any Attribute"],"stringId":"attributes24"},"10398":{"connections":[{"id":26682,"orbit":2147483647}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Sudden Escalation","orbit":0,"orbitIndex":0,"recipe":["Disgust","Paranoia","Fear"],"skill":10398,"stats":["16% increased Critical Hit Chance for Spells","8% increased Cast Speed if you've dealt a Critical Hit Recently"],"stringId":"spell_criticals11_"},"10423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":37905,"orbit":-7}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Exposed to the Inferno","orbit":1,"orbitIndex":0,"recipe":["Isolation","Envy","Disgust"],"skill":10423,"stats":["Damage Penetrates 18% Fire Resistance","15% increased Duration of Ailments against Enemies with Exposure"],"stringId":"fire_penetration22"},"10429":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":955,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":11,"skill":10429,"stats":[],"stringId":"mastery_trap236"},"10452":{"connections":[{"id":44213,"orbit":0},{"id":1878,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":2,"skill":10452,"stats":["10% increased Armour","10% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour30"},"10472":{"connections":[{"id":17687,"orbit":2},{"id":27422,"orbit":-2}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":0,"orbitIndex":0,"skill":10472,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks6"},"10474":{"connections":[{"id":64443,"orbit":0},{"id":53785,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":12,"skill":10474,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks7"},"10484":{"connections":[{"id":42660,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":14,"skill":10484,"stats":["+2 to Maximum Rage"],"stringId":"minion_attack4"},"10495":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":7,"orbitIndex":18,"skill":10495,"stats":[],"stringId":"mastery_mana164"},"10499":{"connections":[{"id":42583,"orbit":2147483647},{"id":51788,"orbit":8}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","isNotable":true,"name":"Necromantic Ward","orbit":2,"orbitIndex":0,"recipe":["Guilt","Envy","Fear"],"skill":10499,"stats":["20% increased Life Regeneration rate","30% reduced effect of Curses on you","30% increased damage against Undead Enemies"],"stringId":"mercenary9"},"10500":{"connections":[{"id":6900,"orbit":-6},{"id":9040,"orbit":0}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Dazing Blocks","orbit":4,"orbitIndex":12,"recipe":["Paranoia","Paranoia","Despair"],"skill":10500,"stats":["100% chance to Daze Enemies whose Hits you Block with a raised Shield"],"stringId":"shield34"},"10508":{"connections":[{"id":21684,"orbit":5}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Attack Speed","orbit":7,"orbitIndex":15,"skill":10508,"stats":["3% increased Attack Speed while holding a Shield"],"stringId":"shield27"},"10534":{"connections":[{"id":46205,"orbit":-7}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","orbit":2,"orbitIndex":2,"skill":10534,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems29"},"10552":{"connections":[{"id":703,"orbit":-3},{"id":18895,"orbit":3}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":7,"orbitIndex":8,"skill":10552,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield5"},"10561":{"ascendancyName":"Disciple of Varashta","connections":[{"id":32705,"orbit":9}],"flavourText":"\"My heart was fractured. I believed Kelari's words. I knew not his true nature... his ambition. I convinced Ruzhan there were cowards among his ranks. I failed you. And I accept my fate.\" \\n\\nNavira confessed her failure to Varashta.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds","isNotable":true,"name":"Navira's Fracturing","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":7,"orbitIndex":17,"skill":10561,"stats":["Grants Skill: Navira's Fracturing"],"stringId":"AscendancySorceress3Notable10_"},"10571":{"connections":[{"id":48240,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":17,"skill":10571,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold5"},"10576":{"connections":[{"id":58644,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":10576,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed45"},"10602":{"connections":[{"id":8629,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Reaving","orbit":4,"orbitIndex":9,"recipe":["Despair","Ire","Envy"],"skill":10602,"stats":["8% increased Attack Speed with One Handed Weapons","+15 to Dexterity"],"stringId":"attack_speed32_"},"10612":{"connections":[{"id":52003,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Embodiment of Frost","orbit":2,"orbitIndex":5,"recipe":["Paranoia","Isolation","Ire"],"skill":10612,"stats":["Immune to Freeze and Chill while affected by an Archon Buff"],"stringId":"cold22"},"10635":{"connections":[{"id":31724,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":6,"skill":10635,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour27"},"10636":{"connectionArt":"CharacterPlanned","connections":[{"id":38697,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":9,"skill":10636,"stats":["8% increased Block chance"],"stringId":"oracle_crab_claw6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10648":{"connections":[{"id":26400,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":54,"skill":10648,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles24"},"10671":{"connections":[{"id":5740,"orbit":0},{"id":23419,"orbit":0},{"id":51048,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":2,"orbitIndex":1,"skill":10671,"stats":["10% increased Attack Damage"],"stringId":"glory17_"},"10677":{"connections":[{"id":56638,"orbit":3}],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if not Stunned recently","orbit":2,"orbitIndex":20,"skill":10677,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun3"},"10681":{"connections":[{"id":27581,"orbit":5},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Defensive Stance","orbit":4,"orbitIndex":0,"recipe":["Disgust","Fear","Isolation"],"skill":10681,"stats":["+4% to maximum Block chance"],"stringId":"shield18_"},"10694":{"ascendancyName":"Infernalist","connections":[],"group":843,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds","isNotable":true,"name":"Seething Body","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":10694,"stats":["Gain Elemental Archon when you cast a Spell while on High Infernal Flame","Elemental Archon does not expire while on High Infernal Flame","Lose Elemental Archon on reaching maximum Infernal Flame"],"stringId":"AscendancyWitch1Notable11_"},"10713":{"connectionArt":"CharacterPlanned","connections":[{"id":16615,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":23,"skill":10713,"stats":["30% increased Armour while stationary"],"stringId":"oracle_crab_claw4__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10727":{"connections":[{"id":1825,"orbit":0}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","isNotable":true,"name":"Emboldening Casts","orbit":3,"orbitIndex":11,"recipe":["Greed","Disgust","Disgust"],"skill":10727,"stats":["12% increased Attack Damage for each different Non-Instant Spell you've used in the past 8 seconds"],"stringId":"attacks_and_spells12"},"10729":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":10729,"stats":[],"stringId":"mastery_staff223"},"10731":{"ascendancyName":"Chronomancer","connections":[],"group":346,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds","isNotable":true,"name":"Quicksand Hourglass","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":10731,"stats":["Grants Sands of Time"],"stringId":"AscendancySorceress2Notable8"},"10738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":10738,"stats":[],"stringId":"mastery_mana6177"},"10742":{"connections":[{"id":41991,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":3,"orbitIndex":4,"skill":10742,"stats":["Minions have 3% increased Attack and Cast Speed"],"stringId":"minion_offence18"},"10772":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":2119,"orbit":0}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Bloodthirsty","orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Fear"],"skill":10772,"stats":["20% increased Damage while Leeching","10% increased Attack Speed while Leeching","30% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech15"},"10774":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":35863,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Unyielding","orbit":2,"orbitIndex":0,"recipe":["Disgust","Envy","Disgust"],"skill":10774,"stats":["15% increased Attack Speed if you've been Hit Recently","8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells11"},"10783":{"connections":[{"id":9762,"orbit":0},{"id":38564,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":2,"orbitIndex":16,"skill":10783,"stats":["10% increased Damage with Swords"],"stringId":"sword3"},"10824":{"connections":[{"id":49734,"orbit":-5}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":4,"orbitIndex":19,"skill":10824,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour45_"},"10830":{"connections":[{"id":59589,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":2,"skill":10830,"stats":["18% increased Armour"],"stringId":"armour25"},"10835":{"connections":[{"id":48026,"orbit":0},{"id":53367,"orbit":2147483647}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":3,"orbitIndex":16,"skill":10835,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners14"},"10841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":7,"orbitIndex":15,"skill":10841,"stats":[],"stringId":"mastery_caster_6357"},"10873":{"connections":[{"id":32777,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Bestial Rage","orbit":3,"orbitIndex":12,"recipe":["Ire","Disgust","Fear"],"skill":10873,"stats":["Gain 1 Rage on Melee Hit","Every 10 Rage also grants 12% increased Physical Damage"],"stringId":"shapeshifting18"},"10881":{"connections":[{"id":36450,"orbit":3}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":0,"orbitIndex":0,"skill":10881,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus6"},"10909":{"connections":[{"id":16489,"orbit":9},{"id":33053,"orbit":3}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":8,"skill":10909,"stats":["+5 to any Attribute"],"stringId":"dexterity31"},"10927":{"connections":[{"id":9272,"orbit":0},{"id":42250,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":3,"orbitIndex":3,"skill":10927,"stats":["10% increased Pin duration"],"stringId":"pin5"},"10944":{"connections":[],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":0,"skill":10944,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield23"},"10987":{"ascendancyName":"Chronomancer","connections":[],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds","isNotable":true,"name":"Now and Again","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":2,"orbitIndex":9,"skill":10987,"stats":["Cascadable Spells have 20% chance to Echo","Repeatable Spells have 20% chance to Repeat"],"stringId":"AscendancySorceress2Notable5"},"10998":{"connections":[{"id":21438,"orbit":0},{"id":62235,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Strong Chin","orbit":4,"orbitIndex":30,"recipe":["Paranoia","Ire","Guilt"],"skill":10998,"stats":["25% increased Armour and Evasion Rating","Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet"],"stringId":"armour_and_evasion11"},"11014":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":342,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":11014,"stats":[],"stringId":"mastery_totem_6148"},"11015":{"connections":[{"id":45329,"orbit":0}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":11015,"stats":["16% increased Hazard Damage"],"stringId":"hazards15"},"11027":{"connections":[{"id":59433,"orbit":0}],"group":233,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration and Armour","orbit":2,"orbitIndex":1,"skill":11027,"stats":["10% increased Endurance Charge Duration","10% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"power_endurance_charges5"},"11032":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":11032,"stats":[],"stringId":"mastery_energyshield101"},"11037":{"connections":[{"id":57039,"orbit":0}],"group":803,"icon":"Art/2DArt/SkillIcons/ExplosiveGrenade.dds","isNotable":true,"name":"Volatile Catalyst","orbit":3,"orbitIndex":6,"skill":11037,"stats":["8% increased Area of Effect","10% increased Cooldown Recovery Rate"],"stringId":"cooldowns20"},"11048":{"connections":[],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Duration","orbit":7,"orbitIndex":20,"skill":11048,"stats":["Minions deal 8% increased Damage","8% increased Minion Duration"],"stringId":"minion_reservation10"},"11066":{"connections":[{"id":26663,"orbit":2}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":19,"skill":11066,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns18"},"11087":{"connections":[{"id":42635,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":11087,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling6"},"11094":{"connections":[{"id":59303,"orbit":-6}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Effect","orbit":7,"orbitIndex":3,"skill":11094,"stats":["Charms applied to you have 10% increased Effect"],"stringId":"charms17_"},"11153":{"connections":[{"id":5049,"orbit":0}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Accuracy","orbit":7,"orbitIndex":12,"skill":11153,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"attack_speed24"},"11160":{"connectionArt":"CharacterPlanned","connections":[{"id":43721,"orbit":5},{"id":21374,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Relinquish Your Life","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":6,"orbitIndex":70,"skill":11160,"stats":["53% increased Life Cost of Skills","Gain 21% of Damage as Extra Chaos Damage"],"stringId":"oracle_beast_corruption14","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11178":{"connections":[{"id":24224,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","isNotable":true,"name":"Whirling Onslaught","orbit":3,"orbitIndex":19,"skill":11178,"stats":["50% chance to gain Onslaught on Killing Blow with Axes"],"stringId":"axe13"},"11184":{"aliasPassiveSocket":"DeliriumAnoint_ZarokhsGift_","connections":[],"group":637,"icon":"","isJewelSocket":true,"name":"Zarokh's Gift","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketcanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketnormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Ferocity","Contempt"],"sinister":true,"skill":11184,"stats":["Sinister Jewel Socket"],"stringId":"DeliriumAnoint_ZarokhsGift_"},"11230":{"connections":[{"id":17672,"orbit":0}],"flavourText":"A properly disciplined mind gives rise to structured thought.","group":951,"icon":"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds","isKeystone":true,"name":"Ritual Cadence","orbit":0,"orbitIndex":0,"skill":11230,"stats":["Invocation Skills instead Trigger Spells every 2 seconds","Invocation Skills cannot gain Energy while Triggering Spells","Invoked Spells consume 50% less Energy"],"stringId":"passive_keystone_auto_invocation"},"11248":{"connections":[{"id":35831,"orbit":0},{"id":21568,"orbit":0},{"id":46380,"orbit":0},{"id":48387,"orbit":0},{"id":22270,"orbit":0}],"group":323,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11248,"stats":["+5 to any Attribute"],"stringId":"intelligence75_"},"11252":{"connections":[{"id":39911,"orbit":0}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":23,"skill":11252,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks54"},"11257":{"connections":[{"id":10271,"orbit":0},{"id":54282,"orbit":4}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":11,"skill":11257,"stats":["30% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded5"},"11275":{"connections":[{"id":13893,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":12,"skill":11275,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration21"},"11284":{"connections":[{"id":31697,"orbit":0},{"id":30985,"orbit":0},{"id":50104,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":7,"orbitIndex":7,"skill":11284,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion10"},"11292":{"connections":[{"id":2575,"orbit":7},{"id":56757,"orbit":-7}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":0,"skill":11292,"stats":["20% increased Totem Placement speed"],"stringId":"totems42"},"11306":{"connections":[{"id":57880,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Rage on Hit","orbit":2,"orbitIndex":5,"skill":11306,"stats":["Gain 1 Rage on Melee Axe Hit"],"stringId":"axe5"},"11311":{"connections":[{"id":38057,"orbit":0}],"group":840,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":61,"skill":11311,"stats":["+10 to Armour","+8 to Evasion Rating"],"stringId":"armour_and_evasion1"},"11315":{"connections":[{"id":48846,"orbit":0}],"group":968,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":11315,"stats":["12% increased Lightning Damage"],"stringId":"lightning_penetration14"},"11329":{"connections":[{"id":54676,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":22,"skill":11329,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration32"},"11330":{"connections":[{"id":22185,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":6,"skill":11330,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies20"},"11335":{"ascendancyName":"Oracle","connections":[{"id":5571,"orbit":6}],"group":4,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Passive Point","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":11335,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyDruid1Small1"},"11337":{"connections":[{"id":23427,"orbit":5},{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":3,"orbitIndex":16,"skill":11337,"stats":["15% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze10"},"11366":{"connections":[{"id":34927,"orbit":0},{"id":558,"orbit":6}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Volcanic Skin","orbit":5,"orbitIndex":2,"recipe":["Suffering","Isolation","Paranoia"],"skill":11366,"stats":["Gain 8% of Damage as Extra Fire Damage","+20% to Fire Resistance"],"stringId":"fire37"},"11376":{"connections":[{"id":35492,"orbit":0}],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Necrotic Touch","orbit":1,"orbitIndex":10,"recipe":["Despair","Despair","Suffering"],"skill":11376,"stats":["Minions have 40% increased Critical Hit Chance"],"stringId":"minion_offence34"},"11392":{"connections":[{"id":38320,"orbit":0}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Molten Being","orbit":5,"orbitIndex":8,"recipe":["Guilt","Isolation","Disgust"],"skill":11392,"stats":["Gain 5% of Damage as Extra Fire Damage","5% of Physical Damage taken as Fire Damage"],"stringId":"ignite_mitigation8"},"11410":{"connections":[{"id":21755,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":6,"orbitIndex":48,"skill":11410,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life13"},"11428":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Exhaust All Power","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":7,"skill":11428,"stats":["Archon recovery period expires 30% slower","Archon Buffs also grant 50% increased Critical Damage Bonus","Archon Buffs also grant 30% increased Critical Hit Chance"],"stringId":"oracle_archon_crit4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11433":{"connections":[{"id":24630,"orbit":-6},{"id":44753,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":7,"orbitIndex":0,"skill":11433,"stats":["12% increased Fire Damage"],"stringId":"fire20"},"11463":{"connections":[],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":23,"skill":11463,"stats":["25% reduced Presence Area of Effect"],"stringId":"criticals99"},"11464":{"connectionArt":"CharacterPlanned","connections":[{"id":27405,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Movement Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":54,"skill":11464,"stats":["3% increased Movement Speed"],"stringId":"oracle_movement_cooldown1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11472":{"connections":[{"id":19880,"orbit":0},{"id":40270,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Evasion if Consumed Frenzy Charge","orbit":2,"orbitIndex":8,"skill":11472,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"stringId":"frenzy_charges1"},"11495":{"ascendancyName":"Martial Artist","connections":[{"id":34081,"orbit":9},{"id":36643,"orbit":8},{"id":53280,"orbit":5},{"id":20437,"orbit":5},{"id":52295,"orbit":5},{"id":37604,"orbit":-6}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Martial Artist","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":15,"skill":11495,"stats":[],"stringId":"AscendancyMonk1Start"},"11504":{"connections":[{"id":30839,"orbit":7},{"id":35696,"orbit":0}],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":2,"orbitIndex":19,"skill":11504,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed19"},"11505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":632,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":11505,"stats":[],"stringId":"mastery_fire116"},"11509":{"connections":[{"id":7465,"orbit":0}],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":15,"skill":11509,"stats":["12% increased Critical Hit Chance against Enemies that have entered your Presence Recently"],"stringId":"criticals96"},"11525":{"connections":[{"id":64724,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability and Ignite Magnitude","orbit":2,"orbitIndex":8,"skill":11525,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"stringId":"ignite2__"},"11526":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":38993,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Sniper","orbit":5,"orbitIndex":30,"recipe":["Isolation","Suffering","Despair"],"skill":11526,"stats":["Arrows gain Critical Hit Chance as they travel farther, up to","40% increased Critical Hit Chance after 7 metres"],"stringId":"bow14"},"11572":{"connections":[{"id":32923,"orbit":-7}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Arcane Surge Effect and Life Regeneration","orbit":7,"orbitIndex":19,"skill":11572,"stats":["5% increased Life Regeneration rate","10% increased effect of Arcane Surge on you"],"stringId":"life_recoup22"},"11578":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1087,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Spreading Shocks","orbit":0,"orbitIndex":0,"recipe":["Guilt","Disgust","Disgust"],"skill":11578,"stats":["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"],"stringId":"lightning37"},"11580":{"connectionArt":"CharacterPlanned","connections":[{"id":34769,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":13,"skill":11580,"stats":["25% increased Life Regeneration rate"],"stringId":"oracle_life_corruption5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11598":{"connections":[{"id":4536,"orbit":0},{"id":44516,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":0,"orbitIndex":0,"skill":11598,"stats":["3% increased Attack Speed with Quarterstaves"],"stringId":"quarterstaff8"},"11604":{"connections":[{"id":17088,"orbit":0},{"id":29408,"orbit":0},{"id":52765,"orbit":0}],"group":1167,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11604,"stats":["+5 to any Attribute"],"stringId":"attributes28"},"11641":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":45248,"orbit":0},{"id":55582,"orbit":0}],"group":441,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds","isNotable":true,"name":"Essence of Virtue","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":11641,"stats":["Grants Skill: Virtuous Barrier"],"stringId":"AscendancyMercenary3Notable1_"},"11656":{"connections":[{"id":53822,"orbit":0},{"id":9106,"orbit":-3}],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":8,"skill":11656,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage15"},"11666":{"connectionArt":"CharacterPlanned","connections":[{"id":60708,"orbit":2147483647}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Reduced Movement Penalty","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":17,"skill":11666,"stats":["6% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"oracle_bow_movement4_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11667":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Immobilisation Buildup","orbit":1,"orbitIndex":10,"skill":11667,"stats":["10% increased Immobilisation buildup against Constructs"],"stringId":"mercenary3"},"11672":{"connections":[{"id":47177,"orbit":0},{"id":48030,"orbit":0}],"group":929,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11672,"stats":["+5 to any Attribute"],"stringId":"intelligence84"},"11679":{"connections":[{"id":29148,"orbit":0},{"id":7424,"orbit":8},{"id":61042,"orbit":0}],"group":668,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11679,"stats":["+5 to any Attribute"],"stringId":"attributes78"},"11722":{"connections":[{"id":62431,"orbit":2}],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Seal Generation Frequency","orbit":2,"orbitIndex":16,"skill":11722,"stats":["Sealed Skills have 10% increased Seal gain frequency"],"stringId":"spells28"},"11736":{"connections":[{"id":62677,"orbit":0}],"group":909,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":11736,"stats":["12% increased Lightning Damage"],"stringId":"lightning17"},"11741":{"connections":[{"id":17282,"orbit":0},{"id":31159,"orbit":0}],"group":223,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":8,"skill":11741,"stats":["+5 to any Attribute"],"stringId":"intelligence74"},"11752":{"connections":[{"id":62455,"orbit":0},{"id":62258,"orbit":0},{"id":57616,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":2,"skill":11752,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners7"},"11764":{"connections":[{"id":38878,"orbit":7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":7,"orbitIndex":11,"skill":11764,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies1"},"11771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":52395,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":5,"orbitIndex":22,"skill":11771,"stats":["4% increased Skill Speed"],"stringId":"AscendancyMonk3Small6"},"11774":{"connections":[],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds","isNotable":true,"name":"The Spring Hare","orbit":0,"orbitIndex":0,"recipe":["Disgust","Despair","Isolation"],"skill":11774,"stats":["20% chance for Damage of Enemies Hitting you to be Unlucky","20% chance for Damage with Hits to be Lucky"],"stringId":"azmerianimals12"},"11776":{"ascendancyName":"Ritualist","connections":[{"id":37046,"orbit":6}],"group":1623,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":11776,"stats":["15% increased Physical Damage"],"stringId":"AscendancyHuntress3Small6"},"11786":{"connections":[{"id":7716,"orbit":2147483647}],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":5,"skill":11786,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"stringId":"armour46"},"11788":{"connections":[{"id":14355,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":0,"skill":11788,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells12"},"11813":{"connections":[{"id":30456,"orbit":-4}],"group":1205,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":11813,"stats":["15% increased Evasion Rating"],"stringId":"evasion3"},"11825":{"connections":[{"id":42794,"orbit":4},{"id":54984,"orbit":0},{"id":47374,"orbit":0},{"id":10648,"orbit":0}],"group":1335,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11825,"stats":["+5 to any Attribute"],"stringId":"dexterity12_"},"11826":{"connections":[{"id":17726,"orbit":0}],"group":967,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Heavy Ammunition","orbit":7,"orbitIndex":8,"recipe":["Guilt","Greed","Greed"],"skill":11826,"stats":["5% reduced Attack Speed","40% increased Projectile Damage","40% increased Projectile Stun Buildup"],"stringId":"ranged32"},"11836":{"connections":[{"id":32721,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Critical vs Blinded","orbit":2,"orbitIndex":7,"skill":11836,"stats":["12% increased Critical Hit Chance against Blinded Enemies"],"stringId":"blind14"},"11838":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":33112,"orbit":-4}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","isNotable":true,"name":"Dreamcatcher","orbit":7,"orbitIndex":6,"recipe":["Disgust","Suffering","Fear"],"skill":11838,"stats":["25% increased Spell Damage while on Full Energy Shield","75% increased Energy Shield from Equipped Focus"],"stringId":"focus10"},"11855":{"connections":[{"id":30829,"orbit":0}],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":11855,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy15"},"11861":{"connectionArt":"CharacterPlanned","connections":[{"id":59795,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":1,"skill":11861,"stats":["10% increased Spell Damage","+10 to Strength"],"stringId":"oracle_strength_spell3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11871":{"connections":[{"id":47235,"orbit":0},{"id":53471,"orbit":0},{"id":24958,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":1,"skill":11871,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"blind18"},"11873":{"connections":[{"id":50150,"orbit":0},{"id":62677,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":9,"skill":11873,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning51"},"11882":{"connections":[{"id":63888,"orbit":-5}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":3,"skill":11882,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments42"},"11886":{"connections":[],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Mauling Stuns","orbit":7,"orbitIndex":23,"recipe":["Paranoia","Guilt","Suffering"],"skill":11886,"stats":["40% increased Stun Buildup against enemies within 2 metres","20% increased Melee Damage against Heavy Stunned enemies"],"stringId":"stun27"},"11916":{"connections":[],"group":839,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":3,"orbitIndex":16,"skill":11916,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration25"},"11938":{"connections":[{"id":39964,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":0,"orbitIndex":0,"skill":11938,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana10"},"11980":{"connections":[{"id":20504,"orbit":-5}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":71,"skill":11980,"stats":["5% increased Block chance"],"stringId":"block6"},"11984":{"connectionArt":"CharacterPlanned","connections":[{"id":42762,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":7,"skill":11984,"stats":["15% increased Physical Damage"],"stringId":"oracle_rust_king3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12000":{"ascendancyName":"Titan","connections":[],"group":78,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds","isNotable":true,"name":"Mysterious Lineage","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":12000,"stats":["15% more Maximum Life"],"stringId":"AscendancyWarrior1Notable7"},"12005":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":23,"skill":12005,"stats":[],"stringId":"mastery_shapeshifting_6687"},"12033":{"ascendancyName":"Deadeye","connections":[],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds","isNotable":true,"name":"Endless Munitions","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":2,"orbitIndex":8,"skill":12033,"stats":["Skills fire an additional Projectile"],"stringId":"AscendancyRanger1Notable1"},"12054":{"ascendancyName":"Tactician","connections":[{"id":37523,"orbit":0}],"group":432,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Totem Damage","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":12054,"stats":["20% increased Totem Damage"],"stringId":"AscendancyMercenary1Small8"},"12066":{"connections":[{"id":48734,"orbit":0}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":8,"skill":12066,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"azmerianimals58"},"12078":{"connections":[{"id":53771,"orbit":-6},{"id":41877,"orbit":-4}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":39,"skill":12078,"stats":["10% increased Projectile Damage"],"stringId":"projectiles13"},"12099":{"connections":[{"id":4833,"orbit":0}],"group":431,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":12099,"stats":["12% increased Cold Damage"],"stringId":"cold56"},"12116":{"connections":[{"id":42036,"orbit":0},{"id":52410,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":4,"orbitIndex":22,"skill":12116,"stats":["20% increased Parry Hit Area of Effect"],"stringId":"buckler1"},"12120":{"connections":[{"id":51606,"orbit":-7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":18,"skill":12120,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"evasion19"},"12125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":403,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":12125,"stats":[],"stringId":"mastery_life137"},"12166":{"connections":[],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cast Speed with Cold Skills","orbit":7,"orbitIndex":22,"skill":12166,"stats":["3% increased Cast Speed with Cold Skills"],"stringId":"cold6"},"12169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":60138,"orbit":0}],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":2,"orbitIndex":13,"skill":12169,"stats":[],"stringId":"mastery_mine172"},"12174":{"connections":[{"id":18864,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":22,"skill":12174,"stats":["10% increased Magnitude of Ailments you inflict"],"stringId":"azmerianimals43"},"12183":{"ascendancyName":"Pathfinder","connections":[{"id":16433,"orbit":0}],"group":1575,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Passive Points","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":12183,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyRanger3Small8"},"12189":{"connections":[{"id":32859,"orbit":-4}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":17,"skill":12189,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical60"},"12208":{"connections":[{"id":32813,"orbit":-7}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":3,"skill":12208,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks18_"},"12232":{"connections":[{"id":872,"orbit":0},{"id":11087,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Damage and Defences","orbit":2,"orbitIndex":21,"skill":12232,"stats":["Channelling Skills deal 6% increased Damage","4% increased Armour, Evasion and Energy Shield while Channelling"],"stringId":"channelling10"},"12239":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":39881,"orbit":0},{"id":41811,"orbit":0}],"group":1394,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":12239,"stats":[],"stringId":"mastery_physical193_"},"12245":{"connections":[{"id":13610,"orbit":0},{"id":19749,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Arsonist","orbit":3,"orbitIndex":14,"recipe":["Isolation","Greed","Despair"],"skill":12245,"stats":["Ignites you inflict deal Damage 18% faster"],"stringId":"fire63_"},"12249":{"connections":[{"id":12761,"orbit":-3}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":20,"skill":12249,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield9_"},"12253":{"connections":[{"id":32183,"orbit":0},{"id":41017,"orbit":0},{"id":35696,"orbit":0},{"id":34497,"orbit":0},{"id":16401,"orbit":0},{"id":24656,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":12253,"stats":["+5 to any Attribute"],"stringId":"dexterity41"},"12255":{"connections":[{"id":989,"orbit":0},{"id":27740,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":12255,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks33"},"12276":{"connections":[{"id":13980,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Aftershock Chance","orbit":4,"orbitIndex":39,"skill":12276,"stats":["8% chance for Mace Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"mace11"},"12311":{"connections":[{"id":64119,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":16,"skill":12311,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow12"},"12322":{"connections":[{"id":53196,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask and Charm Charges Gained","orbit":7,"orbitIndex":8,"skill":12322,"stats":["8% increased Flask and Charm Charges gained"],"stringId":"flasks13"},"12324":{"connections":[{"id":24764,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Chance","orbit":1,"orbitIndex":7,"skill":12324,"stats":["5% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"stringId":"infusion6"},"12329":{"connections":[{"id":17523,"orbit":4}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":0,"skill":12329,"stats":["16% increased Hazard Damage"],"stringId":"hazards8"},"12337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":5295,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Flash Storm","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Ire","Isolation"],"skill":12337,"stats":["30% increased chance to Shock","Damage Penetrates 15% Lightning Resistance"],"stringId":"lightning35"},"12367":{"connections":[],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":0,"skill":12367,"stats":["7% increased Chaos Damage"],"stringId":"chaos3"},"12382":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":35849,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":11,"skill":12382,"stats":[],"stringId":"mastery_life128"},"12412":{"connections":[],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Temporal Mastery","orbit":1,"orbitIndex":0,"recipe":["Paranoia","Fear","Disgust"],"skill":12412,"stats":["16% increased Cooldown Recovery Rate"],"stringId":"slowed_enemies23_"},"12418":{"connections":[{"id":51832,"orbit":0},{"id":3988,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":21,"skill":12418,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries7_"},"12419":{"connections":[{"id":56063,"orbit":-1}],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage and Duration","orbit":2,"orbitIndex":4,"skill":12419,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"stringId":"chaos12"},"12430":{"connections":[{"id":17584,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isSwitchable":true,"name":"Melee Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","id":36764,"name":"Spell and Attack Damage","stats":["8% increased Spell Damage","8% increased Attack Damage"]}},"orbit":2,"orbitIndex":13,"skill":12430,"stats":["10% increased Melee Damage"],"stringId":"melee2"},"12451":{"connections":[{"id":24922,"orbit":-9}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":12,"skill":12451,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns16"},"12462":{"connections":[{"id":64299,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isSwitchable":true,"name":"Aura Effect","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":25740,"name":"Damage","stats":["8% increased Damage"]}},"orbit":3,"orbitIndex":20,"skill":12462,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras4"},"12465":{"connections":[{"id":30040,"orbit":0}],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":14,"skill":12465,"stats":["Break 20% increased Armour"],"stringId":"armour_break17"},"12471":{"connections":[{"id":19942,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":19,"skill":12471,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"accuracy52"},"12488":{"ascendancyName":"Stormweaver","connections":[{"id":49189,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Remnant Range","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":9,"orbitIndex":8,"skill":12488,"stats":["Remnants can be collected from 25% further away"],"stringId":"AscendancySorceress1Small9"},"12498":{"connections":[{"id":30341,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":12498,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers3"},"12526":{"connections":[{"id":54818,"orbit":-9}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":12526,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression9"},"12565":{"connections":[{"id":3245,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Block","orbit":3,"orbitIndex":5,"skill":12565,"stats":["4% increased Block chance","10% increased Thorns damage"],"stringId":"getting_hit4_"},"12601":{"connectionArt":"CharacterPlanned","connections":[{"id":50908,"orbit":0},{"id":35745,"orbit":2147483647}],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":2,"skill":12601,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"stringId":"oracle_endurance_charge2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12610":{"connectionArt":"CharacterPlanned","connections":[{"id":4873,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":20,"skill":12610,"stats":["Meta Skills gain 20% increased Energy"],"stringId":"oracle_energy_gain1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12611":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":32155,"orbit":3},{"id":44204,"orbit":3}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Harness the Elements","orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Isolation"],"skill":12611,"stats":["20% increased Damage for each type of Elemental Ailment on Enemy"],"stringId":"elemental32"},"12661":{"connections":[{"id":34984,"orbit":0}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Asceticism","orbit":7,"orbitIndex":16,"recipe":["Isolation","Ire","Guilt"],"skill":12661,"stats":["Stun Threshold is based on 30% of your Energy Shield instead of Life"],"stringId":"stun_threshold_from_energy_shield10"},"12683":{"connectionArt":"CharacterPlanned","connections":[{"id":33618,"orbit":0},{"id":61974,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Power of the Storm","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":12683,"stats":["50% increased Damage if you've Triggered a Skill Recently"],"stringId":"oracle_energy_gain3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Vale Shelter","orbit":0,"orbitIndex":0,"recipe":["Greed","Disgust","Despair"],"skill":12750,"stats":["Charms gain 0.15 charges per Second"],"stringId":"charms4"},"12751":{"connections":[],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Critical Chance","orbit":2,"orbitIndex":15,"skill":12751,"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"stringId":"one_handed14"},"12761":{"connections":[],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":4,"skill":12761,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield10"},"12777":{"connections":[{"id":28950,"orbit":-8}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":23,"skill":12777,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour3"},"12778":{"connections":[],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Spell Critical Chance","orbit":3,"orbitIndex":8,"skill":12778,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical_witch7"},"12786":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[{"id":5777,"orbit":0},{"id":18465,"orbit":0},{"id":64299,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":12786,"stats":[],"stringId":"mastery_aura_6312"},"12795":{"ascendancyName":"Pathfinder","connections":[{"id":44871,"orbit":0},{"id":4739,"orbit":0}],"group":1578,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds","isMultipleChoiceOption":true,"name":"Path of the Sorceress","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":12795,"stats":["Can Allocate Passive Skills from the Sorceress's starting point","Grants 4 Passive Skill Point"],"stringId":"AscendancyRanger3Notable8_1"},"12800":{"connections":[{"id":8896,"orbit":0}],"group":1412,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":12800,"stats":["25% increased Evasion Rating while Sprinting"],"stringId":"Sprint6"},"12817":{"connections":[{"id":22967,"orbit":-7}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Defences","orbit":7,"orbitIndex":4,"skill":12817,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"shield23"},"12821":{"connections":[],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":2,"skill":12821,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners17"},"12822":{"connections":[{"id":5826,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Adaptable Assault","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Envy"],"skill":12822,"stats":["+0.4 metres to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds","Projectiles have 25% chance to Fork if you've dealt a Melee Hit in the past eight seconds"],"stringId":"ranged21"},"12851":{"connections":[{"id":32507,"orbit":0},{"id":32727,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":5,"skill":12851,"stats":["10% increased Physical Damage"],"stringId":"physical6"},"12876":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds","isNotable":true,"name":"Faith is a Choice","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":6,"orbitIndex":7,"skill":12876,"stats":["Grants Skill: Meditate"],"stringId":"AscendancyMonk2Notable8"},"12882":{"ascendancyName":"Stormweaver","connections":[{"id":25618,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds","isNotable":true,"name":"Tempest Caller","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":12,"skill":12882,"stats":["Trigger Elemental Storm on Critical Hit with Spells","Grants Skill: Elemental Storm"],"stringId":"AscendancySorceress1Notable3"},"12890":{"connections":[{"id":2091,"orbit":0},{"id":42118,"orbit":0}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":12890,"stats":["+5 to any Attribute"],"stringId":"dexterity57"},"12893":{"connections":[{"id":65167,"orbit":3}],"group":1415,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Area Damage and Companion Area of Effect","orbit":0,"orbitIndex":0,"skill":12893,"stats":["6% increased Area Damage","Companions have 10% increased Area of Effect"],"stringId":"companions60"},"12906":{"connections":[{"id":3234,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Sitting Duck","orbit":7,"orbitIndex":20,"recipe":["Despair","Despair","Guilt"],"skill":12906,"stats":["35% increased Critical Hit Chance against Immobilised enemies","Your Hits cannot be Evaded by Pinned Enemies"],"stringId":"pin9"},"12918":{"connections":[{"id":4017,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":12918,"stats":["10% increased Mana Regeneration Rate"],"stringId":"energy_shield_recovery11"},"12925":{"connections":[{"id":61196,"orbit":5}],"group":1018,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":2,"skill":12925,"stats":["15% increased chance to Shock"],"stringId":"lightning43"},"12940":{"connectionArt":"CharacterPlanned","connections":[{"id":20637,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","isNotable":true,"name":"Cower Before the First Ones","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":0,"skill":12940,"stats":["30% increased Fire Damage","30% increased Cold Damage","30% increased Lightning Damage","30% increased Chaos Damage","30% increased Physical Damage"],"stringId":"oracle_hierarchy7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12964":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Lone Warrior","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Disgust"],"skill":12964,"stats":["Aura Skills have 14% increased Magnitudes","Your Aura Buffs do not affect Allies"],"stringId":"auras30"},"12992":{"connections":[{"id":16485,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":22,"skill":12992,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"oracle5"},"12998":{"connections":[{"id":30463,"orbit":-6},{"id":28623,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Warm the Heart","orbit":4,"orbitIndex":21,"recipe":["Ire","Suffering","Fear"],"skill":12998,"stats":["25% reduced Freeze Duration on you","60% increased Freeze Threshold"],"stringId":"spell_suppression24"},"13030":{"connections":[{"id":55,"orbit":-3}],"group":1130,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":13030,"stats":["Damaging Ailments deal damage 5% faster"],"stringId":"ailments22"},"13065":{"ascendancyName":"Invoker","connections":[{"id":63236,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Triggered Spell Damage","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":14,"skill":13065,"stats":["Triggered Spells deal 16% increased Spell Damage"],"stringId":"AscendancyMonk2Small10_"},"13075":{"connections":[{"id":50392,"orbit":0}],"group":232,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":0,"orbitIndex":0,"skill":13075,"stats":["+12 to Strength"],"stringId":"strength109"},"13081":{"connections":[{"id":14254,"orbit":-5}],"group":801,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":17,"skill":13081,"stats":["10% increased Projectile Damage"],"stringId":"projectiles21_"},"13108":{"connectionArt":"CharacterPlanned","connections":[],"group":202,"icon":"Art/2DArt/SkillIcons/passives/minionattackspeed.dds","name":"Ally Attack and Cast Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":67,"skill":13108,"stats":["3% reduced Skill Speed","Allies in your Presence have 6% increased Attack Speed","Allies in your Presence have 6% increased Cast Speed"],"stringId":"oracle_self_sacrificing3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13123":{"connections":[{"id":62723,"orbit":4}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":10,"skill":13123,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster7__"},"13157":{"connections":[{"id":30392,"orbit":3}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":1,"skill":13157,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks26"},"13171":{"connections":[{"id":24438,"orbit":5}],"group":494,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Physical Damage Reduction","orbit":0,"orbitIndex":0,"skill":13171,"stats":["Totems have 12% additional Physical Damage Reduction"],"stringId":"totems54_"},"13174":{"ascendancyName":"Infernalist","connections":[{"id":770,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds","isNotable":true,"name":"Pyromantic Pact","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":6,"orbitIndex":3,"skill":13174,"stats":["Maximum Mana is replaced by twice as much Maximum Infernal Flame","Gain Infernal Flame instead of spending Mana for Skill costs","Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum","Lose all Infernal Flame on reaching maximum Infernal Flame","25% of Infernal Flame lost per second if none was gained in the past 2 seconds"],"stringId":"AscendancyWitch1Notable7"},"13228":{"connectionArt":"CharacterPlanned","connections":[{"id":43486,"orbit":2147483647}],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":19,"skill":13228,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"stringId":"oracle_power_charge3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":623,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Radial Force","orbit":0,"orbitIndex":0,"skill":13233,"stats":["10% increased Area of Effect","12% increased Immobilisation buildup"],"stringId":"area_of_effect23"},"13241":{"connections":[{"id":51921,"orbit":0},{"id":55746,"orbit":0},{"id":39732,"orbit":0}],"group":677,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":13241,"stats":["+5 to any Attribute"],"stringId":"strength41"},"13279":{"connections":[{"id":2864,"orbit":0},{"id":61657,"orbit":0}],"group":646,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":13279,"stats":["+5 to any Attribute"],"stringId":"strength78_"},"13289":{"ascendancyName":"Disciple of Varashta","connections":[],"flavourText":"\"And you... there was no excuse for your actions. You defiled them! You have tainted the very sands with the blood of your own! Yet the war rages on. You have achieved nothing. You must pay.\" \\n\\nVarashta condemned Kelari to the ritual of the {barya}, sentenced to serve as a Djinn.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds","isNotable":true,"name":"Barya of Kelari","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":15,"skill":13289,"stats":["Grants Skill: Kelari, the Tainted Sands"],"stringId":"AscendancySorceress3Notable8"},"13293":{"connections":[{"id":30457,"orbit":4}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":18,"skill":13293,"stats":["20% increased Armour if you haven't been Hit Recently"],"stringId":"armour2__"},"13294":{"connections":[{"id":20718,"orbit":2}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":1,"orbitIndex":7,"skill":13294,"stats":["10% increased Skill Effect Duration"],"stringId":"slowed_enemies8"},"13307":{"connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":25,"skill":13307,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield16"},"13326":{"connections":[{"id":2617,"orbit":-3}],"group":103,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":13326,"stats":["12% increased Fire Damage"],"stringId":"fire69"},"13333":{"connections":[{"id":1700,"orbit":7}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":1,"orbitIndex":9,"skill":13333,"stats":["10% increased Cold Damage"],"stringId":"ground6"},"13341":{"connections":[{"id":63255,"orbit":0},{"id":56841,"orbit":0},{"id":18451,"orbit":0}],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":13341,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges10"},"13352":{"connections":[{"id":59180,"orbit":2147483647},{"id":38010,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":19,"skill":13352,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory2"},"13356":{"connections":[{"id":6229,"orbit":7}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":2,"orbitIndex":0,"skill":13356,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed16__"},"13359":{"connections":[{"id":31943,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":15,"skill":13359,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold14"},"13367":{"connections":[{"id":38969,"orbit":0},{"id":21713,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":14,"skill":13367,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy1"},"13379":{"connections":[{"id":27761,"orbit":0}],"group":1118,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":0,"orbitIndex":0,"skill":13379,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"deflect15"},"13387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":689,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":5,"orbitIndex":0,"skill":13387,"stats":[],"stringId":"mastery_elemental95"},"13397":{"connections":[{"id":1207,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":6,"skill":13397,"stats":["+5 to any Attribute"],"stringId":"strength3"},"13407":{"connections":[{"id":23040,"orbit":-3},{"id":51583,"orbit":0}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Heartbreaking","orbit":2,"orbitIndex":9,"recipe":["Isolation","Paranoia","Fear"],"skill":13407,"stats":["25% increased Critical Damage Bonus","+10 to Strength"],"stringId":"criticals54_"},"13411":{"connections":[{"id":34136,"orbit":7}],"group":1076,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":42,"skill":13411,"stats":["+5 to any Attribute"],"stringId":"dexterity3"},"13419":{"connections":[{"id":14958,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":13419,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals43_"},"13425":{"connections":[{"id":315,"orbit":0}],"group":754,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":13425,"stats":["10% increased Bleeding Duration"],"stringId":"bleed28"},"13457":{"connections":[{"id":3630,"orbit":5},{"id":52445,"orbit":0}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Shadow Dancing","orbit":4,"orbitIndex":60,"recipe":["Despair","Guilt","Despair"],"skill":13457,"stats":["40% increased Evasion Rating if you have been Hit Recently","40% faster start of Energy Shield Recharge if you've been Stunned Recently"],"stringId":"evasion_and_energy_shield13"},"13468":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Give Up Your Essence","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":22,"skill":13468,"stats":["Allies in your Presence Regenerate 2% of your Maximum Life per second","30% increased Life Cost of Skills"],"stringId":"oracle_life_corruption4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13474":{"connections":[{"id":16084,"orbit":0}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":0,"orbitIndex":0,"skill":13474,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed17"},"13482":{"connections":[{"id":30136,"orbit":0},{"id":15892,"orbit":0}],"group":207,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Punctured Lung","orbit":0,"orbitIndex":0,"recipe":["Fear","Guilt","Greed"],"skill":13482,"stats":["Enemies you Fully Armour Break cannot Regenerate Life","Enemies you Fully Armour Break are Maimed"],"stringId":"armour_break39"},"13489":{"connections":[{"id":47517,"orbit":0}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Unbreakable","orbit":3,"orbitIndex":5,"recipe":["Ire","Isolation","Fear"],"skill":13489,"stats":["15% increased Armour","50% reduced Armour Break taken","10% reduced Slowing Potency of Debuffs on You"],"stringId":"armour30"},"13500":{"connections":[{"id":41044,"orbit":-3},{"id":44733,"orbit":0}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":3,"orbitIndex":2,"skill":13500,"stats":["3% of Damage taken Recouped as Mana"],"stringId":"mana_regeneration35"},"13505":{"connections":[{"id":4956,"orbit":0}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Resilient Soul","orbit":0,"orbitIndex":0,"skill":13505,"stats":["20% increased Life Regeneration rate","5% of Damage taken Recouped as Life"],"stringId":"life_regeneration15_"},"13515":{"connections":[{"id":14601,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/stormborn.dds","isNotable":true,"name":"Stormwalker","orbit":7,"orbitIndex":12,"recipe":["Suffering","Greed","Fear"],"skill":13515,"stats":["Gain 15% of Damage as Extra Lightning Damage while on Shocked Ground","40% reduced effect of Shock on you"],"stringId":"ground15"},"13524":{"connections":[{"id":54923,"orbit":0},{"id":259,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Everlasting Glory","orbit":4,"orbitIndex":27,"recipe":["Disgust","Ire","Suffering"],"skill":13524,"stats":["Skills have a 15% chance to not consume Glory"],"stringId":"glory7"},"13537":{"connections":[{"id":49455,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":10,"skill":13537,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield24"},"13542":{"connections":[{"id":27492,"orbit":2147483647}],"group":873,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Loose Flesh","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Greed"],"skill":13542,"stats":["20% of Elemental Damage taken Recouped as Life"],"stringId":"life_recoup13"},"13562":{"connections":[{"id":23650,"orbit":3}],"group":617,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration on Low Life","orbit":7,"orbitIndex":18,"skill":13562,"stats":["15% increased Life Regeneration Rate while on Low Life"],"stringId":"life_regeneration7"},"13576":{"connections":[{"id":17024,"orbit":0}],"group":1030,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":13576,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning9"},"13610":{"connections":[{"id":41447,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Faster Ignites and Flammability Magnitude","orbit":3,"orbitIndex":11,"skill":13610,"stats":["15% increased Flammability Magnitude","Ignites you inflict deal Damage 4% faster"],"stringId":"fire60_"},"13619":{"connections":[{"id":12208,"orbit":0},{"id":59600,"orbit":0}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":0,"skill":13619,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks19"},"13624":{"connections":[{"id":28258,"orbit":-2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Duration","orbit":2,"orbitIndex":23,"skill":13624,"stats":["Mark Skills have 25% increased Skill Effect Duration"],"stringId":"marks15"},"13634":{"connections":[],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":18,"skill":13634,"stats":["Offering Skills have 30% increased Duration"],"stringId":"corpses4_"},"13673":{"ascendancyName":"Stormweaver","connections":[{"id":61985,"orbit":-8}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Chill Duration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":1,"skill":13673,"stats":["25% increased Chill Duration on Enemies"],"stringId":"AscendancySorceress1Small7"},"13691":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connectionArt":"CharacterPlanned","connections":[],"group":114,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":13691,"stats":[],"stringId":"oracle_totems_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13693":{"connections":[],"group":298,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Rhythm of Ice","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Guilt"],"skill":13693,"stats":["20% increased Cold Damage","6% increased Cast Speed per Spell Echoed Recently, up to 30%"],"stringId":"cold58"},"13701":{"connections":[{"id":17871,"orbit":0},{"id":59538,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze and Chill Resistance","orbit":2,"orbitIndex":2,"skill":13701,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"stringId":"freeze_and_chill_mitigation4"},"13708":{"connections":[],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Curved Weapon","orbit":4,"orbitIndex":40,"recipe":["Greed","Fear","Greed"],"skill":13708,"stats":["15% increased Accuracy Rating","+10 to Dexterity"],"stringId":"two_handed15"},"13711":{"connections":[{"id":30562,"orbit":4}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":22,"skill":13711,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield18"},"13715":{"ascendancyName":"Titan","connections":[{"id":59372,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Stun Buildup","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":5,"orbitIndex":44,"skill":13715,"stats":["18% increased Stun Buildup"],"stringId":"AscendancyWarrior1Small3"},"13724":{"connections":[{"id":20236,"orbit":0},{"id":33823,"orbit":0}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Deadly Force","orbit":4,"orbitIndex":54,"recipe":["Disgust","Suffering","Envy"],"skill":13724,"stats":["15% increased Damage if you've dealt a Critical Hit in the past 8 seconds","15% increased Critical Hit Chance"],"stringId":"criticals50"},"13738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1013,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Lightning Quick","orbit":0,"orbitIndex":0,"recipe":["Fear","Fear","Isolation"],"skill":13738,"stats":["14% increased Lightning Damage","8% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning39"},"13748":{"connections":[{"id":38338,"orbit":-6},{"id":41029,"orbit":9}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":0,"skill":13748,"stats":["10% increased Elemental Damage"],"stringId":"elemental43"},"13769":{"connections":[{"id":2254,"orbit":-4}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":13769,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration21"},"13772":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":39,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds","isNotable":true,"name":"Flowing Metal","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":13772,"stats":["Body Armour grants +50% of Armour also applies to Elemental Damage"],"stringId":"AscendancyWarrior3Notable6_8"},"13777":{"connections":[{"id":38532,"orbit":0}],"group":220,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration and Energy Shield","orbit":2,"orbitIndex":15,"skill":13777,"stats":["10% increased Power Charge Duration","10% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_endurance_charges2"},"13783":{"connections":[{"id":28992,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","isSwitchable":true,"name":"Ailment Chance","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","id":53191,"name":"Accuracy","stats":["8% increased Accuracy Rating"]}},"orbit":7,"orbitIndex":19,"skill":13783,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments8"},"13799":{"connections":[{"id":36576,"orbit":-3}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Slow Effect","orbit":2,"orbitIndex":20,"skill":13799,"stats":["8% increased Attack Damage","Debuffs you inflict have 4% increased Slow Magnitude"],"stringId":"attack3"},"13823":{"connections":[{"id":63861,"orbit":0},{"id":32054,"orbit":0}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Controlling Magic","orbit":3,"orbitIndex":13,"recipe":["Envy","Fear","Isolation"],"skill":13823,"stats":["25% increased Critical Hit Chance for Spells","Hits have 25% reduced Critical Hit Chance against you"],"stringId":"spell_criticals15"},"13828":{"connections":[{"id":1140,"orbit":0}],"group":919,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":13828,"stats":["+16 to Evasion Rating"],"stringId":"evasion11"},"13839":{"connections":[{"id":65287,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":6,"skill":13839,"stats":["15% increased Totem Damage"],"stringId":"totems40"},"13844":{"connections":[],"group":1024,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Growing Peril","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Suffering","Despair"],"skill":13844,"stats":["1% increased Chaos Damage over Time per Volatility"],"stringId":"DeliriumAnoint_GrowingPeril"},"13845":{"connections":[{"id":28408,"orbit":-7}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":13845,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage26"},"13855":{"connections":[{"id":50626,"orbit":0},{"id":64370,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":0,"orbitIndex":0,"skill":13855,"stats":["+10 to Armour","+5 to maximum Energy Shield"],"stringId":"placeholder1"},"13856":{"connections":[{"id":18496,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":9,"skill":13856,"stats":["12% increased Magnitude of Ailments you inflict"],"stringId":"slow_attacks6_"},"13862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":13862,"stats":[],"stringId":"mastery_mana162"},"13882":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":760,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":13882,"stats":[],"stringId":"mastery_infusion296"},"13893":{"connections":[{"id":42390,"orbit":-5}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration and Stun Buildup","orbit":7,"orbitIndex":5,"skill":13893,"stats":["10% increased Stun Buildup","Damage Penetrates 5% Fire Resistance"],"stringId":"fire_penetration20"},"13895":{"connections":[{"id":36071,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Precise Point","orbit":5,"orbitIndex":10,"recipe":["Guilt","Envy","Despair"],"skill":13895,"stats":["25% increased Damage with Spears","25% increased Accuracy Rating with Spears"],"stringId":"spear13"},"13909":{"connections":[{"id":31037,"orbit":0},{"id":62679,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":18,"skill":13909,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant1"},"13937":{"connections":[{"id":17791,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":7,"skill":13937,"stats":["14% increased Damage with Maces"],"stringId":"mace13"},"13942":{"connections":[{"id":65023,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":13942,"stats":["15% increased Armour"],"stringId":"armour28_"},"13950":{"connectionArt":"CharacterPlanned","connections":[{"id":11666,"orbit":2147483647}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Reduced Movement Penalty","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":5,"skill":13950,"stats":["6% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"oracle_bow_movement5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13980":{"connections":[{"id":14832,"orbit":0},{"id":14693,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Split the Earth","orbit":4,"orbitIndex":33,"recipe":["Isolation","Paranoia","Disgust"],"skill":13980,"stats":["10% chance for Mace Slam Skills you use yourself to cause an additional Aftershock","Strike Skills you use yourself with Maces have 10% chance to deal Splash Damage"],"stringId":"mace15"},"13987":{"connections":[{"id":7604,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":2,"orbitIndex":8,"skill":13987,"stats":["3% increased Melee Attack Speed"],"stringId":"melee16"},"14001":{"connections":[{"id":56893,"orbit":-3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":2,"orbitIndex":22,"skill":14001,"stats":["6% reduced Charm Charges used"],"stringId":"charms11"},"14026":{"connections":[],"group":156,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage against Immobilised","orbit":0,"orbitIndex":0,"skill":14026,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"stringId":"bear12"},"14033":{"connections":[{"id":34553,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","orbit":2,"orbitIndex":16,"skill":14033,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"stringId":"spells55"},"14045":{"connections":[{"id":33848,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":48,"skill":14045,"stats":["10% increased Projectile Damage"],"stringId":"ranged12"},"14048":{"connections":[{"id":34717,"orbit":7}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration while not on Low Mana","orbit":4,"orbitIndex":54,"skill":14048,"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"stringId":"mana35"},"14082":{"connections":[{"id":43964,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":7,"orbitIndex":8,"skill":14082,"stats":["10% increased Physical Damage"],"stringId":"physical25"},"14091":{"connections":[{"id":28860,"orbit":0},{"id":36449,"orbit":0},{"id":23993,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Physical Damage","orbit":1,"orbitIndex":0,"skill":14091,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"stringId":"armour_break28"},"14096":{"connections":[{"id":44293,"orbit":7}],"group":690,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":14096,"stats":["3% increased Cast Speed"],"stringId":"cast_speed29"},"14110":{"connections":[{"id":22484,"orbit":-4},{"id":35974,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":22,"skill":14110,"stats":["15% increased Totem Damage"],"stringId":"totems37"},"14113":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":10029,"orbit":0},{"id":8660,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":14113,"stats":[],"stringId":"mastery_caster42"},"14122":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":798,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":14122,"stats":[],"stringId":"mastery_caster41"},"14127":{"connections":[],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":13,"skill":14127,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration7"},"14131":{"ascendancyName":"Disciple of Varashta","connections":[{"id":34207,"orbit":0}],"flavourText":"\"Yes... they fell by my blade and fire lashed them for their betrayal! No {dekhara} is exempt from fighting back the Winter before us, lest they too know the Doom of the Desert!\" \\n\\nRuzhan fumed at Varashta, in pure defiance.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds","isNotable":true,"name":"Ruzhan's Fury","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":53,"skill":14131,"stats":["Grants Skill: Ruzhan's Fury"],"stringId":"AscendancySorceress3Notable18"},"14176":{"connections":[{"id":18004,"orbit":0}],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":2,"orbitIndex":16,"skill":14176,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage12"},"14205":{"connections":[{"id":25753,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Ignite","orbit":1,"orbitIndex":1,"skill":14205,"stats":["Gain 1 Rage when your Hit Ignites a target"],"stringId":"rage42"},"14211":{"connections":[{"id":44540,"orbit":0}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","isNotable":true,"name":"Shredding Contraptions","orbit":1,"orbitIndex":10,"recipe":["Despair","Despair","Envy"],"skill":14211,"stats":["Enemies affected by your Hazards Recently have 25% reduced Armour","Enemies affected by your Hazards Recently have 25% reduced Evasion Rating"],"stringId":"hazards2"},"14226":{"connections":[],"flavourText":"You circle the black scorpion with enmity, daring it time and again.","group":1447,"icon":"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds","isKeystone":true,"name":"Dance with Death","orbit":0,"orbitIndex":0,"skill":14226,"stats":["25% more Skill Speed while Off Hand is empty and you have","a One-Handed Martial Weapon equipped in your Main Hand"],"stringId":"passive_keystone_dance_with_death"},"14231":{"connections":[{"id":40453,"orbit":-7}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":13,"skill":14231,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers1"},"14254":{"connections":[{"id":97,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":4,"skill":14254,"stats":["3% increased Attack Speed"],"stringId":"attack_speed14"},"14258":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":13123,"orbit":-7}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds","isNotable":true,"name":"Puppet Master chance","orbit":2,"orbitIndex":3,"recipe":["Paranoia","Ire","Suffering"],"skill":14258,"stats":["35% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster9"},"14262":{"connections":[{"id":32763,"orbit":0},{"id":21945,"orbit":0}],"group":1490,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14262,"stats":["+5 to any Attribute"],"stringId":"attributes27"},"14265":{"connections":[],"group":428,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Pyromancer","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Guilt"],"skill":14265,"stats":["20% increased Fire Damage","10% increased Cast Speed while Ignited","5% reduced Movement Speed Penalty from using Fire Skills while moving"],"stringId":"fire85"},"14267":{"connections":[{"id":32763,"orbit":0},{"id":28976,"orbit":0},{"id":38212,"orbit":0},{"id":1499,"orbit":0}],"group":1512,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14267,"stats":["+5 to any Attribute"],"stringId":"dexterity48"},"14272":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":2,"orbitIndex":7,"skill":14272,"stats":[],"stringId":"mastery_spell_suppression_6709"},"14294":{"connections":[{"id":43818,"orbit":0}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Sacrificial Blood","orbit":2,"orbitIndex":14,"recipe":["Envy","Greed","Suffering"],"skill":14294,"stats":["15% increased Life Cost of Skills","40% increased Spell Damage with Spells that cost Life"],"stringId":"life_costs10"},"14310":{"connections":[{"id":32340,"orbit":-7}],"group":1244,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":14310,"stats":["12% increased Cold Damage"],"stringId":"cold63"},"14324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":1468,"orbit":-2}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Arcane Blossom","orbit":7,"orbitIndex":3,"recipe":["Envy","Despair","Despair"],"skill":14324,"stats":["15% increased Mana Recovery rate"],"stringId":"mana_regeneration19"},"14328":{"connections":[{"id":18959,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Energy Shield and Armour applies to Elemental Damage Hits","orbit":7,"orbitIndex":19,"skill":14328,"stats":["12% increased maximum Energy Shield","+5% of Armour also applies to Elemental Damage"],"stringId":"energy_shield_and_armour33"},"14340":{"connections":[{"id":26786,"orbit":0},{"id":26319,"orbit":0}],"group":944,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14340,"stats":["+5 to any Attribute"],"stringId":"dexterity70"},"14342":{"connections":[{"id":49256,"orbit":4}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":16,"skill":14342,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour5"},"14343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1126,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Deterioration","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Paranoia","Isolation"],"skill":14343,"stats":["Damaging Ailments Cannot Be inflicted on you while you already have one","20% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments17"},"14355":{"connections":[{"id":8483,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":3,"skill":14355,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells13_"},"14363":{"connections":[{"id":61338,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":3,"orbitIndex":2,"skill":14363,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration10"},"14383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46601,"orbit":0}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Suffusion","orbit":0,"orbitIndex":0,"recipe":["Fear","Despair","Guilt"],"skill":14383,"stats":["30% increased amount of Mana Leeched","Unaffected by Chill while Leeching Mana"],"stringId":"mana_leech17"},"14394":{"connections":[{"id":35743,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":16,"skill":14394,"stats":["+2% to Lightning Resistance","8% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion31"},"14418":{"connections":[{"id":16602,"orbit":2147483647}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":6,"skill":14418,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals9"},"14428":{"connections":[{"id":6287,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":14428,"stats":["+8 to Intelligence"],"stringId":"attributes102"},"14429":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":416,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds","isNotable":true,"name":"Advanced Thaumaturgy","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":14429,"stats":["Gem Quality grants Socketed Skills an additional effect"],"stringId":"AscendancyMercenary3Notable4"},"14432":{"connectionArt":"CharacterPlanned","connections":[],"group":122,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Lunar Boon","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":14432,"stats":["40% increased Mana Regeneration Rate while Shapeshifted"],"stringId":"oracle_wolf_addon2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14439":{"connections":[{"id":5728,"orbit":3}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":8,"skill":14439,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour7"},"14446":{"connections":[{"id":61403,"orbit":0},{"id":22713,"orbit":0},{"id":58022,"orbit":9},{"id":45702,"orbit":0}],"group":1334,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14446,"stats":["+5 to any Attribute"],"stringId":"intelligence68"},"14459":{"connections":[{"id":5544,"orbit":3}],"group":331,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":2,"skill":14459,"stats":["30% increased Thorns Critical Damage Bonus"],"stringId":"getting_hit23"},"14505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":504,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":14505,"stats":[],"stringId":"mastery_minionoffence192"},"14508":{"ascendancyName":"Pathfinder","connections":[{"id":29074,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Poison Effect","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":8,"orbitIndex":29,"skill":14508,"stats":["12% increased Magnitude of Poison you inflict"],"stringId":"AscendancyRanger3Small1"},"14509":{"connections":[{"id":9323,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Rage on Melee Hit","orbit":3,"orbitIndex":1,"skill":14509,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"glory22"},"14511":{"connections":[{"id":18207,"orbit":-3},{"id":53719,"orbit":0}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee and Stun","orbit":4,"orbitIndex":15,"skill":14511,"stats":["10% increased Stun Buildup","10% increased Melee Damage"],"stringId":"melee57"},"14515":{"connections":[{"id":43778,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Jagged Ground Effect","orbit":3,"orbitIndex":8,"skill":14515,"stats":["15% increased Magnitude of Jagged Ground you create"],"stringId":"jagged_ground4"},"14539":{"connections":[{"id":44776,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Deflection and Evasion","orbit":7,"orbitIndex":4,"skill":14539,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"evasion27"},"14540":{"connections":[{"id":31903,"orbit":0}],"flavourText":"Stand your ground, child, keep your senses.\\nThe pain is fleeting, but victory is forever.","group":489,"icon":"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds","isKeystone":true,"name":"Unwavering Stance","orbit":0,"orbitIndex":0,"skill":14540,"stats":["Cannot be Light Stunned","Cannot Dodge Roll or Sprint"],"stringId":"passive_keystone_unwavering_stance_"},"14548":{"connections":[{"id":59541,"orbit":7}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":0,"skill":14548,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence13"},"14572":{"connections":[{"id":49657,"orbit":-6},{"id":11037,"orbit":0}],"group":803,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":8,"skill":14572,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns2"},"14575":{"connections":[],"group":634,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":14575,"stats":["Minions have +20% to Lightning Resistance","Minions have +3% to Maximum Lightning Resistances"],"stringId":"minion_defence39"},"14598":{"connections":[{"id":4345,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Speed","orbit":3,"orbitIndex":12,"skill":14598,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon20_"},"14601":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":730,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":0,"skill":14601,"stats":[],"stringId":"mastery_elemental_6470"},"14602":{"connections":[{"id":42737,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Specialised Shots","orbit":7,"orbitIndex":3,"recipe":["Guilt","Guilt","Suffering"],"skill":14602,"stats":["15% increased Bolt Speed","20% increased Damage with Crossbows"],"stringId":"crossbow29"},"14654":{"connections":[{"id":22616,"orbit":0},{"id":14459,"orbit":0},{"id":21017,"orbit":0},{"id":52807,"orbit":0},{"id":58295,"orbit":0},{"id":6222,"orbit":0}],"group":358,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14654,"stats":["+5 to any Attribute"],"stringId":"strength2"},"14655":{"connections":[{"id":372,"orbit":7}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Fire Damage","orbit":3,"orbitIndex":3,"skill":14655,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"stringId":"armour16"},"14658":{"connections":[{"id":12253,"orbit":0},{"id":22517,"orbit":0},{"id":52053,"orbit":0},{"id":1631,"orbit":0},{"id":57945,"orbit":0}],"group":1331,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14658,"stats":["+5 to any Attribute"],"stringId":"dexterity42"},"14666":{"connections":[],"group":858,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":3,"orbitIndex":18,"skill":14666,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"energy_shield10_"},"14686":{"connections":[{"id":48552,"orbit":0},{"id":53795,"orbit":-3}],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":17,"skill":14686,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster1"},"14693":{"connections":[{"id":13937,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":4,"orbitIndex":27,"skill":14693,"stats":["14% increased Damage with Maces"],"stringId":"mace12"},"14712":{"connections":[{"id":3866,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":2,"skill":14712,"stats":["Minions have 12% increased maximum Life"],"stringId":"minion_defence8"},"14724":{"connections":[{"id":62185,"orbit":0}],"group":1351,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":14724,"stats":["20% increased Shock Duration"],"stringId":"shock17"},"14725":{"connections":[{"id":49220,"orbit":-5},{"id":34233,"orbit":0}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":18,"skill":14725,"stats":["3% increased Skill Speed"],"stringId":"attack_speed46"},"14739":{"connections":[{"id":49235,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":3,"skill":14739,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery31"},"14761":{"connections":[{"id":45215,"orbit":0},{"id":57775,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Warlord Leader","orbit":2,"orbitIndex":6,"recipe":["Fear","Fear","Paranoia"],"skill":14761,"stats":["Allies in your Presence deal 40% increased Damage","40% increased Presence Area of Effect"],"stringId":"auras23"},"14769":{"connections":[{"id":40471,"orbit":-2}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":14769,"stats":["+8 to Dexterity"],"stringId":"azmerianimals17"},"14777":{"connections":[{"id":59466,"orbit":5},{"id":20015,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Bravado","orbit":2,"orbitIndex":20,"recipe":["Suffering","Guilt","Despair"],"skill":14777,"stats":["Empowered Attacks have 50% increased Stun Buildup","100% increased Stun Threshold during Empowered Attacks"],"stringId":"warcries16"},"14832":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":136,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":14832,"stats":[],"stringId":"mastery_mace153"},"14882":{"connections":[{"id":5048,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":18,"skill":14882,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison39_"},"14890":{"connections":[{"id":21080,"orbit":-4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude and Duration","orbit":2,"orbitIndex":13,"skill":14890,"stats":["10% increased Chill Duration on Enemies","10% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze9_"},"14923":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":666,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":14923,"stats":[],"stringId":"mastery_attack_6297"},"14926":{"connections":[{"id":50609,"orbit":0},{"id":56910,"orbit":-6}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":3,"orbitIndex":20,"skill":14926,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration24"},"14934":{"connections":[{"id":32523,"orbit":0}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Spiral into Mania","orbit":2,"orbitIndex":4,"recipe":["Ire","Envy","Suffering"],"skill":14934,"stats":["10% increased Cast Speed","+13% to Chaos Resistance"],"stringId":"cast_speed34"},"14945":{"connections":[{"id":34552,"orbit":0},{"id":1447,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Growing Swarm","orbit":3,"orbitIndex":16,"recipe":["Guilt","Paranoia","Fear"],"skill":14945,"stats":["Minions have 20% increased Area of Effect","Minions have 20% increased Cooldown Recovery Rate"],"stringId":"minion_offence40"},"14952":{"connections":[{"id":21985,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":8,"skill":14952,"stats":["10% increased Skill Effect Duration"],"stringId":"chill_and_freeze29"},"14958":{"connections":[{"id":17548,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":1,"orbitIndex":10,"skill":14958,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals41"},"14960":{"ascendancyName":"Smith of Kitava","connections":[{"id":57959,"orbit":0}],"group":10,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Resistance","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":14960,"stats":["+8% to Fire Resistance"],"stringId":"AscendancyWarrior3Small4"},"14980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":293,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":14980,"stats":[],"stringId":"oracle_glory_elemental_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14996":{"connections":[{"id":41620,"orbit":-7}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Stun Buildup","orbit":7,"orbitIndex":2,"skill":14996,"stats":["20% increased Stun buildup if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting31"},"14997":{"connections":[{"id":47856,"orbit":0},{"id":28370,"orbit":0}],"group":789,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":0,"orbitIndex":0,"skill":14997,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed7"},"15030":{"connections":[{"id":45693,"orbit":0},{"id":21324,"orbit":0}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Consistent Intake","orbit":7,"orbitIndex":5,"recipe":["Guilt","Greed","Ire"],"skill":15030,"stats":["15% increased Parried Debuff Magnitude","Cannot be Critically Hit while Parrying"],"stringId":"deflect11"},"15044":{"ascendancyName":"Tactician","connections":[{"id":32560,"orbit":0},{"id":42845,"orbit":0}],"group":326,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds","isNotable":true,"name":"A Solid Plan","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":15044,"stats":["Persistent Buffs have 50% less Reservation"],"stringId":"AscendancyMercenary1Notable1"},"15083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":883,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Power Conduction","orbit":0,"orbitIndex":0,"recipe":["Guilt","Suffering","Suffering"],"skill":15083,"stats":["25% increased Shock Duration","25% increased Magnitude of Shock you inflict"],"stringId":"lightning32"},"15114":{"connections":[{"id":6356,"orbit":5},{"id":71,"orbit":-5},{"id":7642,"orbit":0}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Boundless Growth","orbit":0,"orbitIndex":0,"recipe":["Fear","Paranoia","Greed"],"skill":15114,"stats":["Plants have a 20% chance to immediately Overgrow"],"stringId":"physical62"},"15141":{"connectionArt":"CharacterPlanned","connections":[],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Impale Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":63,"skill":15141,"stats":["30% chance to Impale on Spell Hit"],"stringId":"oracle_duration_physical7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15180":{"connections":[{"id":61444,"orbit":-2}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Hinder","orbit":2,"orbitIndex":3,"skill":15180,"stats":["10% chance to Hinder Enemies on Hit with Spells"],"stringId":"spells8"},"15182":{"connections":[{"id":54818,"orbit":0}],"group":771,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15182,"stats":["+5 to any Attribute"],"stringId":"attributes45"},"15194":{"connections":[{"id":25303,"orbit":0}],"group":615,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":15194,"stats":["Minions have +20% to Fire Resistance"],"stringId":"minion_defence38"},"15207":{"connections":[{"id":6330,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Damage","orbit":7,"orbitIndex":0,"skill":15207,"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"stringId":"accuracy22"},"15247":{"connections":[{"id":46683,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":7,"skill":15247,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries48"},"15270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":15270,"stats":[],"stringId":"mastery_attack279"},"15275":{"ascendancyName":"Oracle","connections":[{"id":52374,"orbit":-6}],"group":7,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Totem Cast and Attack Speed","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":15275,"stats":["Spells Cast by Totems have 5% increased Cast Speed","Attacks used by Totems have 5% increased Attack Speed"],"stringId":"AscendancyDruid1Small6"},"15301":{"connections":[{"id":4709,"orbit":0},{"id":64064,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":15301,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy23"},"15304":{"connections":[{"id":16466,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":15304,"stats":["3% increased Cast Speed"],"stringId":"cast_speed18"},"15343":{"connections":[{"id":58692,"orbit":5}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":5,"orbitIndex":12,"skill":15343,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield33"},"15356":{"connections":[{"id":18815,"orbit":0}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":15356,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration5"},"15358":{"connections":[{"id":10320,"orbit":7},{"id":44255,"orbit":-7}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Minion Revive Speed","orbit":3,"orbitIndex":15,"skill":15358,"stats":["Minions have 10% increased maximum Life","Minions Revive 8% faster"],"stringId":"minion_defence20"},"15374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":48035,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Hale Heart","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Greed"],"skill":15374,"stats":["15% increased Life Recovery rate"],"stringId":"life_regeneration27_"},"15408":{"connections":[{"id":2254,"orbit":4},{"id":6338,"orbit":0}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":23,"skill":15408,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield27"},"15424":{"connections":[{"id":58157,"orbit":0},{"id":35151,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":15424,"stats":["15% increased Stun Threshold"],"stringId":"monkchakra25"},"15427":{"connections":[{"id":57379,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":6,"skill":15427,"stats":["12% increased Melee Damage"],"stringId":"melee12"},"15443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Endured Suffering","orbit":0,"orbitIndex":0,"recipe":["Greed","Guilt","Fear"],"skill":15443,"stats":["10% of Physical Damage taken Recouped as Life","20% increased Physical Damage"],"stringId":"physical50"},"15494":{"connections":[{"id":1865,"orbit":0},{"id":43584,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Fire Damage when consuming an Endurance Charge","orbit":2,"orbitIndex":20,"skill":15494,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges15"},"15507":{"connections":[{"id":48401,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":10,"skill":15507,"stats":["+5 to any Attribute"],"stringId":"dexterity24_"},"15522":{"connections":[{"id":17348,"orbit":6},{"id":24630,"orbit":-6}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":3,"orbitIndex":21,"skill":15522,"stats":["12% increased Ignite Magnitude"],"stringId":"fire21_"},"15580":{"connectionArt":"CharacterPlanned","connections":[{"id":61977,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":48,"skill":15580,"stats":["15% increased Damage","Minions deal 15% increased Damage"],"stringId":"oracle_damage_and_minions3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15590":{"connections":[{"id":26356,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Detonator Area","orbit":7,"orbitIndex":17,"skill":15590,"stats":["Detonator skills have 8% increased Area of Effect"],"stringId":"area_attacks42"},"15606":{"connections":[{"id":41821,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Thrill of the Fight","orbit":4,"orbitIndex":30,"recipe":["Despair","Envy","Suffering"],"skill":15606,"stats":["Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%"],"stringId":"glory16"},"15617":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Heavy Drinker","orbit":0,"orbitIndex":0,"recipe":["Envy","Envy","Envy"],"skill":15617,"stats":["20% increased Life Recovery from Flasks","Life Flasks applied to you grant Guard for 4 seconds equal to 8% of the Life Recovery per Second they apply"],"stringId":"life_flasks32"},"15618":{"connections":[{"id":57710,"orbit":0}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":0,"skill":15618,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals4"},"15625":{"connections":[{"id":65161,"orbit":0},{"id":24287,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":12,"skill":15625,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals38"},"15628":{"connections":[{"id":36880,"orbit":3}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Effect","orbit":5,"orbitIndex":59,"skill":15628,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration27"},"15644":{"connections":[{"id":41538,"orbit":6},{"id":44612,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Shedding Skin","orbit":3,"orbitIndex":10,"recipe":["Envy","Ire","Paranoia"],"skill":15644,"stats":["40% increased Elemental Ailment Threshold","10% reduced Duration of Ailments on You"],"stringId":"spell_suppression32"},"15672":{"connectionArt":"CharacterPlanned","connections":[{"id":45400,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":5,"skill":15672,"stats":["Totems gain +2% to all Maximum Elemental Resistances"],"stringId":"oracle_totems3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15698":{"connections":[{"id":55260,"orbit":0},{"id":28982,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":3,"skill":15698,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze23"},"15775":{"connections":[{"id":30808,"orbit":0},{"id":11598,"orbit":0},{"id":29959,"orbit":0},{"id":15343,"orbit":-5}],"group":1494,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15775,"stats":["+5 to any Attribute"],"stringId":"dexterity47"},"15782":{"connections":[{"id":1433,"orbit":0},{"id":46628,"orbit":0},{"id":53675,"orbit":0}],"group":472,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15782,"stats":["+5 to any Attribute"],"stringId":"attributes53"},"15801":{"connections":[],"group":659,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":15801,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup37"},"15809":{"connections":[{"id":31175,"orbit":0},{"id":26945,"orbit":7},{"id":18485,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Chance","orbit":3,"orbitIndex":22,"skill":15809,"stats":["Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence30_"},"15814":{"connections":[{"id":12800,"orbit":0}],"group":1424,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":15814,"stats":["25% increased Evasion Rating while Sprinting"],"stringId":"Sprint5"},"15825":{"connections":[{"id":26592,"orbit":-3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Bhatair's Storm","orbit":2,"orbitIndex":16,"recipe":["Guilt","Fear","Isolation"],"skill":15825,"stats":["+12% of Armour also applies to Elemental Damage","8% faster start of Energy Shield Recharge","Archon recovery period expires 10% faster","10% increased effect of Archon Buffs on you"],"stringId":"energy_shield_and_armour49_"},"15829":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46146,"orbit":0}],"group":1128,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Siphon","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Envy","Guilt"],"skill":15829,"stats":["Recover 2% of maximum Mana on Kill","25% increased amount of Mana Leeched"],"stringId":"mana_leech18"},"15838":{"connections":[{"id":15969,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":2,"skill":15838,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments6"},"15839":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Ailment Duration","orbit":1,"orbitIndex":5,"skill":15839,"stats":["10% increased Duration of Ailments on Beasts"],"stringId":"mercenary2"},"15842":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":89,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":3,"orbitIndex":10,"skill":15842,"stats":[],"stringId":"oracle_big_family_mastery1__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15855":{"connections":[{"id":37963,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":41,"skill":15855,"stats":["10% increased Damage with Swords"],"stringId":"sword13"},"15876":{"connections":[{"id":7947,"orbit":2},{"id":46554,"orbit":0}],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Energy Shield as Freeze Threshold","orbit":2,"orbitIndex":10,"skill":15876,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"cold23"},"15885":{"connections":[{"id":12367,"orbit":3},{"id":22783,"orbit":0},{"id":11679,"orbit":0},{"id":42680,"orbit":0}],"group":720,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15885,"stats":["+5 to any Attribute"],"stringId":"intelligence47"},"15892":{"connections":[],"group":193,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Damage vs Armour Broken Enemies","orbit":3,"orbitIndex":13,"skill":15892,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"stringId":"armour_break8"},"15899":{"connections":[{"id":21627,"orbit":9}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":6,"skill":15899,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed17"},"15913":{"connections":[{"id":32599,"orbit":2},{"id":61362,"orbit":-2},{"id":49734,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect and Damage","orbit":2,"orbitIndex":16,"skill":15913,"stats":["4% increased Area of Effect","5% increased Area Damage"],"stringId":"area_of_effect15"},"15969":{"connections":[{"id":41129,"orbit":0},{"id":59376,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":3,"orbitIndex":0,"skill":15969,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments3"},"15975":{"connections":[{"id":48198,"orbit":5}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":13,"skill":15975,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield27"},"15984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":876,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":15984,"stats":[],"stringId":"mastery_lightning_6564"},"15986":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":6030,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Building Toxins","orbit":2,"orbitIndex":5,"recipe":["Greed","Isolation","Isolation"],"skill":15986,"stats":["25% reduced Poison Duration","Targets can be affected by +1 of your Poisons at the same time"],"stringId":"poison16"},"15991":{"connections":[{"id":15984,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Embodiment of Lightning","orbit":2,"orbitIndex":19,"recipe":["Isolation","Paranoia","Ire"],"skill":15991,"stats":["Immune to Shock while affected by an Archon Buff"],"stringId":"lightning57"},"16013":{"connections":[{"id":41811,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":7,"orbitIndex":6,"skill":16013,"stats":["5% chance to Daze on Hit"],"stringId":"physical3"},"16024":{"connections":[{"id":29288,"orbit":2}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Critical Damage","orbit":2,"orbitIndex":22,"skill":16024,"stats":["Invocation Spells have 20% increased Critical Damage Bonus"],"stringId":"triggers27"},"16051":{"connections":[],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Attack Speed","orbit":5,"orbitIndex":4,"skill":16051,"stats":["Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems51"},"16084":{"connections":[{"id":57552,"orbit":0}],"group":419,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":0,"orbitIndex":0,"skill":16084,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed18"},"16090":{"connections":[{"id":50302,"orbit":0}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","orbit":3,"orbitIndex":8,"skill":16090,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"stringId":"life_costs3"},"16100":{"ascendancyName":"Invoker","connections":[{"id":65173,"orbit":7}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Evasion","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":0,"skill":16100,"stats":["20% increased Evasion Rating"],"stringId":"AscendancyMonk2Small2"},"16111":{"connections":[{"id":46268,"orbit":9},{"id":2397,"orbit":0},{"id":54099,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage while Surrounded","orbit":7,"orbitIndex":4,"skill":16111,"stats":["20% increased Attack Damage while Surrounded"],"stringId":"attack38_"},"16114":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":473,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":16114,"stats":[],"stringId":"mastery_aura_6310"},"16121":{"connections":[{"id":56334,"orbit":7}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":16121,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"monkelemental1"},"16123":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":3,"orbitIndex":22,"skill":16123,"stats":[],"stringId":"mastery_criticals67"},"16140":{"connections":[{"id":16013,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":2,"orbitIndex":10,"skill":16140,"stats":["5% chance to Daze on Hit"],"stringId":"physical4"},"16142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Deep Freeze","orbit":3,"orbitIndex":10,"recipe":["Disgust","Isolation","Ire"],"skill":16142,"stats":["20% increased Freeze Buildup","Enemies Frozen by you have -8% to Cold Resistance"],"stringId":"cold48"},"16150":{"connections":[{"id":37971,"orbit":0}],"group":1542,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Inspiring Ally","orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Despair"],"skill":16150,"stats":["Increases and Reductions to Companion Damage also apply to you"],"stringId":"companions2"},"16168":{"connections":[{"id":54232,"orbit":-5},{"id":25374,"orbit":0},{"id":45916,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":16168,"stats":["+5 to any Attribute"],"stringId":"strength27"},"16204":{"ascendancyName":"Shaman","connections":[],"group":58,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds","isNotable":true,"name":"Sacred Flow","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16204,"stats":["+40 to Spirit for each of your empty Charm slots"],"stringId":"AscendancyDruid2Notable7"},"16249":{"ascendancyName":"Tactician","connections":[],"group":307,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds","isNotable":true,"name":"Watch How I Do It","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16249,"stats":["Allies in your Presence gain added Attack Damage equal","to 25% of your main hand Weapon's damage"],"stringId":"AscendancyMercenary1Notable2"},"16256":{"connections":[{"id":53188,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Ether Flow","orbit":3,"orbitIndex":8,"recipe":["Envy","Greed","Envy"],"skill":16256,"stats":["25% reduced Mana Regeneration Rate while stationary","50% increased Mana Regeneration Rate while moving","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"mana_regeneration40"},"16276":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":57,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds","isNotable":true,"name":"Kitavan Imprint","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16276,"stats":["Body Armour grants 60% increased Glory generation"],"stringId":"AscendancyWarrior3Notable6_2"},"16311":{"connections":[{"id":32600,"orbit":0},{"id":14654,"orbit":0}],"group":403,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":20,"skill":16311,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration23"},"16329":{"connections":[{"id":39607,"orbit":-2}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Used","orbit":2,"orbitIndex":2,"skill":16329,"stats":["5% reduced Flask Charges used"],"stringId":"flasks5"},"16332":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":-7},{"id":11160,"orbit":-9}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":64,"skill":16332,"stats":["17% increased Stun Threshold"],"stringId":"oracle_beast_corruption2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16347":{"connections":[{"id":52373,"orbit":0}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":2,"skill":16347,"stats":["+2 to Maximum Rage"],"stringId":"rage2"},"16367":{"connections":[],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":16367,"stats":["10% increased Elemental Damage"],"stringId":"elemental46"},"16385":{"connections":[{"id":53320,"orbit":2147483647}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":14,"skill":16385,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners19"},"16401":{"connections":[{"id":44490,"orbit":0}],"group":1401,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage and Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":16401,"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"stringId":"lightning47"},"16413":{"connections":[{"id":42660,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack and Minion Damage","orbit":2,"orbitIndex":4,"skill":16413,"stats":["8% increased Attack Damage","Minions deal 8% increased Damage"],"stringId":"minion_attack2"},"16433":{"ascendancyName":"Pathfinder","connections":[{"id":12795,"orbit":0},{"id":57253,"orbit":0},{"id":36676,"orbit":0}],"group":1574,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds","isMultipleChoice":true,"isNotable":true,"name":"Path Seeker","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16433,"stats":[],"stringId":"AscendancyRanger3Notable8_Choice_"},"16460":{"connections":[{"id":28992,"orbit":0},{"id":6772,"orbit":0}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":18,"skill":16460,"stats":["+5 to any Attribute"],"stringId":"dexterity15"},"16466":{"connections":[{"id":40196,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Mental Alacrity","orbit":2,"orbitIndex":0,"recipe":["Fear","Envy","Paranoia"],"skill":16466,"stats":["5% increased Cast Speed","15% increased Mana Regeneration Rate","+10 to Intelligence"],"stringId":"cast_speed38"},"16484":{"connections":[{"id":25100,"orbit":0},{"id":18923,"orbit":0}],"group":1078,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":0,"skill":16484,"stats":["+5 to any Attribute"],"stringId":"strength87"},"16485":{"connections":[{"id":2344,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":16485,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"oracle6"},"16489":{"connections":[{"id":28556,"orbit":6},{"id":49799,"orbit":7}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":16489,"stats":["+5 to any Attribute"],"stringId":"dexterity33"},"16499":{"connections":[{"id":36814,"orbit":0}],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Lingering Whispers","orbit":7,"orbitIndex":12,"recipe":["Isolation","Despair","Envy"],"skill":16499,"stats":["40% increased Curse Duration","10% increased Curse Magnitudes"],"stringId":"curses18"},"16506":{"connections":[{"id":35417,"orbit":-2}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Elemental Ailment Chance","orbit":7,"orbitIndex":10,"skill":16506,"stats":["20% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting30"},"16538":{"connections":[{"id":44330,"orbit":0}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":2,"orbitIndex":2,"skill":16538,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed21"},"16568":{"connections":[{"id":60992,"orbit":-2}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defenses and Companion Life","orbit":3,"orbitIndex":2,"skill":16568,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions24"},"16596":{"connections":[{"id":38535,"orbit":7},{"id":5088,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Speed with Elemental Skills","orbit":3,"orbitIndex":20,"skill":16596,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental6"},"16602":{"connections":[{"id":29285,"orbit":2},{"id":30657,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":23,"skill":16602,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals8"},"16615":{"connectionArt":"CharacterPlanned","connections":[{"id":18713,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Unmoving Craiceann","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":16615,"stats":["30% increased Armour while stationary","30% increased Life Regeneration Rate while stationary"],"stringId":"oracle_crab_claw5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16618":{"connections":[{"id":24511,"orbit":0},{"id":4492,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","isNotable":true,"name":"Jack of all Trades","orbit":5,"orbitIndex":24,"recipe":["Greed","Fear","Envy"],"skill":16618,"stats":["2% increased Damage per 5 of your lowest Attribute"],"stringId":"all_attributes10"},"16620":{"connections":[{"id":21161,"orbit":4}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Movement Penalty with Raised Shield","orbit":3,"orbitIndex":10,"skill":16620,"stats":["10% reduced Movement Speed Penalty while Actively Blocking"],"stringId":"shield30"},"16626":{"connections":[{"id":53089,"orbit":0},{"id":62023,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Impact Area","orbit":2,"orbitIndex":20,"recipe":["Paranoia","Envy","Disgust"],"skill":16626,"stats":["12% increased Area of Effect if you have Stunned an Enemy Recently","12% increased Area of Effect for Attacks"],"stringId":"area_attacks27"},"16647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":575,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":16647,"stats":[],"stringId":"mastery_mana6192"},"16680":{"connections":[{"id":48137,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":15,"skill":16680,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow15_"},"16691":{"connections":[{"id":21716,"orbit":-5}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech Speed","orbit":7,"orbitIndex":6,"skill":16691,"stats":["Leech Life 15% faster"],"stringId":"life_leech27"},"16695":{"connections":[{"id":61926,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Recoup","orbit":2,"orbitIndex":6,"skill":16695,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery38"},"16705":{"connections":[{"id":25851,"orbit":4},{"id":34621,"orbit":0},{"id":61834,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":66,"skill":16705,"stats":["+5 to any Attribute"],"stringId":"intelligence66"},"16721":{"connections":[{"id":32239,"orbit":4},{"id":34187,"orbit":6},{"id":18270,"orbit":6}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":0,"orbitIndex":0,"skill":16721,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical66"},"16725":{"connections":[{"id":27373,"orbit":6},{"id":36629,"orbit":-6},{"id":54811,"orbit":0},{"id":36163,"orbit":0}],"group":510,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":16725,"stats":["+5 to any Attribute"],"stringId":"strength21"},"16744":{"connections":[{"id":24009,"orbit":-5},{"id":24748,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":12,"skill":16744,"stats":["15% increased Evasion Rating"],"stringId":"evasion25"},"16784":{"connections":[{"id":31650,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":68,"skill":16784,"stats":["16% increased Totem Life"],"stringId":"totems12_"},"16786":{"connections":[{"id":20467,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":14,"skill":16786,"stats":["15% increased Immobilisation buildup"],"stringId":"slaying6"},"16790":{"connections":[{"id":27234,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Efficient Casting","orbit":7,"orbitIndex":0,"recipe":["Greed","Paranoia","Envy"],"skill":16790,"stats":["15% increased Mana Regeneration Rate","20% increased Mana Cost Efficiency"],"stringId":"mana_regeneration50_"},"16816":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Pinpoint Shot","orbit":0,"orbitIndex":0,"recipe":["Isolation","Envy","Envy"],"skill":16816,"stats":["Attacks gain increased Accuracy Rating equal to their Critical Hit Chance"],"stringId":"accuracy35"},"16861":{"connections":[{"id":27303,"orbit":-5}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":22,"skill":16861,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals70"},"16871":{"connections":[{"id":9532,"orbit":2}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":18,"skill":16871,"stats":["+4 to Strength","+4 to Dexterity"],"stringId":"azmerianimals5"},"16938":{"connections":[{"id":8789,"orbit":3}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":7,"orbitIndex":18,"skill":16938,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"duelist_minions4"},"16940":{"connections":[{"id":25446,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Arcane Nature","orbit":7,"orbitIndex":1,"recipe":["Guilt","Isolation","Ire"],"skill":16940,"stats":["12% increased Area of Effect while you have Arcane Surge","30% increased Spell Damage while you have Arcane Surge"],"stringId":"mana_regeneration44_"},"16947":{"connectionArt":"CharacterPlanned","connections":[{"id":18713,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Shelter from the Rain","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":54,"skill":16947,"stats":["20% faster start of Energy Shield Recharge","15% increased Block chance"],"stringId":"oracle_crab_claw9_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17024":{"connections":[{"id":37372,"orbit":0}],"group":1010,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":17024,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning16"},"17025":{"connections":[{"id":13515,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":18,"skill":17025,"stats":["10% increased Lightning Damage"],"stringId":"ground13"},"17026":{"connections":[{"id":23373,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":2,"orbitIndex":2,"skill":17026,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades25"},"17029":{"connections":[{"id":45992,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Blade Catcher","orbit":2,"orbitIndex":12,"recipe":["Fear","Envy","Guilt"],"skill":17029,"stats":["Defend with 200% of Armour against Critical Hits","+15 to Strength"],"stringId":"armour32"},"17044":{"connections":[],"group":802,"icon":"Art/2DArt/SkillIcons/passives/ColdLightningNode.dds","name":"Cold and Lightning Damage","orbit":0,"orbitIndex":0,"skill":17044,"stats":["10% increased Cold Damage","10% increased Lightning Damage"],"stringId":"elemental47"},"17045":{"connections":[{"id":55131,"orbit":6}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":4,"orbitIndex":42,"skill":17045,"stats":["2% increased Movement Speed"],"stringId":"slow_mitigation4_"},"17057":{"connections":[{"id":17025,"orbit":2}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":1,"orbitIndex":0,"skill":17057,"stats":["10% increased Lightning Damage"],"stringId":"ground11"},"17058":{"ascendancyName":"Ritualist","connections":[],"group":1610,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Resistances","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":17058,"stats":["-20% to all Elemental Resistances"],"stringId":"AscendancyHuntress3Small1_3"},"17059":{"connectionArt":"CharacterPlanned","connections":[{"id":6874,"orbit":-7}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":17059,"stats":["25% increased Stun Threshold while Channelling"],"stringId":"oracle_channelling3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17061":{"connections":[{"id":31773,"orbit":2}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":3,"orbitIndex":4,"skill":17061,"stats":["Archon recovery period expires 10% faster"],"stringId":"archon6_"},"17077":{"connections":[{"id":51463,"orbit":0},{"id":36114,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Attack Damage while Moving","orbit":0,"orbitIndex":0,"skill":17077,"stats":["12% increased Attack Damage while moving"],"stringId":"slow_mitigation9"},"17088":{"connections":[{"id":51416,"orbit":4}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":17088,"stats":["+5 to any Attribute"],"stringId":"intelligence7"},"17092":{"connections":[{"id":10484,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":18,"skill":17092,"stats":["+2 to Maximum Rage"],"stringId":"minion_attack3"},"17101":{"connections":[{"id":25362,"orbit":-2}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":17,"skill":17101,"stats":["10% increased Attack Damage"],"stringId":"unarmed4_"},"17107":{"connections":[{"id":11788,"orbit":4}],"group":910,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":0,"orbitIndex":0,"skill":17107,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells7"},"17112":{"connections":[{"id":64900,"orbit":-7},{"id":4331,"orbit":2}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Attack Damage and Stun","orbit":2,"orbitIndex":19,"skill":17112,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"stringId":"melee63"},"17118":{"connections":[{"id":38814,"orbit":0},{"id":20049,"orbit":0},{"id":8789,"orbit":4}],"group":1055,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":17118,"stats":["+5 to any Attribute"],"stringId":"attributes47"},"17138":{"connections":[{"id":51903,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":17138,"stats":["10% increased Melee Damage"],"stringId":"melee45_"},"17146":{"connections":[{"id":3843,"orbit":4}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":17,"skill":17146,"stats":["20% increased Parry Damage"],"stringId":"deflect2_"},"17150":{"connections":[{"id":53647,"orbit":7},{"id":19750,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"General's Bindings","orbit":3,"orbitIndex":8,"recipe":["Paranoia","Fear","Envy"],"skill":17150,"stats":["Gain 8% of Evasion Rating as extra Armour"],"stringId":"armour37"},"17215":{"connections":[{"id":4552,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration and Attack Speed","orbit":7,"orbitIndex":19,"skill":17215,"stats":["2% increased Attack Speed","5% increased Mana Regeneration Rate"],"stringId":"monkchakra2_"},"17229":{"connections":[{"id":34493,"orbit":0},{"id":47242,"orbit":0},{"id":29985,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","isNotable":true,"name":"Silent Guardian","orbit":3,"orbitIndex":9,"recipe":["Fear","Greed","Disgust"],"skill":17229,"stats":["Minions have +20% to all Elemental Resistances","20% increased Elemental Ailment Threshold"],"stringId":"sentinels9"},"17248":{"connections":[{"id":53960,"orbit":-5}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":0,"skill":17248,"stats":["+5 to any Attribute"],"stringId":"intelligence4"},"17254":{"connections":[{"id":14272,"orbit":0},{"id":26596,"orbit":0}],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Spell Haste","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Isolation"],"skill":17254,"stats":["15% increased Evasion Rating","8% increased Cast Speed"],"stringId":"cast_speed35"},"17260":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Piercing Claw","orbit":3,"orbitIndex":2,"recipe":["Greed","Ire","Despair"],"skill":17260,"stats":["Damage Penetrates 15% of Enemy Elemental Resistances while Shapeshifted"],"stringId":"shapeshifting11"},"17268":{"ascendancyName":"Invoker","connections":[{"id":7621,"orbit":3}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Shock Effect","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":6,"orbitIndex":13,"skill":17268,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"AscendancyMonk2Small3"},"17282":{"connections":[{"id":47252,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":20,"skill":17282,"stats":["16% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration7_"},"17283":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":17283,"stats":[],"stringId":"mastery_evasion_and_energy_shield_6496"},"17294":{"connections":[{"id":19330,"orbit":-5},{"id":27501,"orbit":4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":17294,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration33"},"17303":{"connections":[{"id":17026,"orbit":0},{"id":27992,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Utility Ordnance","orbit":7,"orbitIndex":6,"recipe":["Disgust","Despair","Envy"],"skill":17303,"stats":["40% increased Cooldown Recovery Rate for Grenade Skills","80% reduced Grenade Damage"],"stringId":"grenades27"},"17316":{"connections":[{"id":40244,"orbit":-4},{"id":62986,"orbit":5}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":4,"orbitIndex":51,"skill":17316,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed3"},"17330":{"connections":[{"id":61927,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","isNotable":true,"name":"Perforation","orbit":2,"orbitIndex":23,"recipe":["Greed","Greed","Suffering"],"skill":17330,"stats":["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground","40% increased Jagged Ground Duration"],"stringId":"jagged_ground25"},"17340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62051,"orbit":-4}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","isNotable":true,"name":"Adrenaline Rush","orbit":4,"orbitIndex":9,"recipe":["Disgust","Ire","Fear"],"skill":17340,"stats":["4% increased Movement Speed if you've Killed Recently","8% increased Attack Speed if you've killed Recently"],"stringId":"movement_speed11"},"17348":{"connections":[{"id":11275,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":17,"skill":17348,"stats":["12% increased Ignite Magnitude"],"stringId":"fire17"},"17349":{"connections":[{"id":23940,"orbit":-3},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":0,"skill":17349,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour10"},"17356":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds","isNotable":true,"name":"Hollow Resonance Technique","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":8,"orbitIndex":58,"skill":17356,"stats":["Grants Skill: Hollow Resonance"],"stringId":"AscendancyMonk1Notable4"},"17366":{"connections":[{"id":29361,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":10,"skill":17366,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield2"},"17367":{"connections":[{"id":53941,"orbit":-6},{"id":12761,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":4,"skill":17367,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield16"},"17372":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Reaching Strike","orbit":3,"orbitIndex":4,"recipe":["Isolation","Paranoia","Guilt"],"skill":17372,"stats":["25% increased Melee Damage","+0.2 metres to Melee Strike Range"],"stringId":"melee38"},"17378":{"connections":[{"id":40894,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":22,"skill":17378,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence5"},"17380":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":41972,"orbit":0},{"id":23427,"orbit":0},{"id":47270,"orbit":0},{"id":19955,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":6,"skill":17380,"stats":[],"stringId":"mastery_cold58"},"17394":{"connections":[{"id":45530,"orbit":-3}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":0,"skill":17394,"stats":["Minions cause 15% increased Stun Buildup"],"stringId":"minion_offence23"},"17411":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":527,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":17411,"stats":[],"stringId":"mastery_dualwield89"},"17417":{"connections":[{"id":3652,"orbit":3},{"id":27999,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed and Physical Damage","orbit":3,"orbitIndex":4,"skill":17417,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"stringId":"projectiles45"},"17420":{"connections":[{"id":18717,"orbit":0},{"id":25565,"orbit":0},{"id":15356,"orbit":0}],"group":1448,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":17420,"stats":["12% increased Lightning Damage"],"stringId":"lightning4"},"17447":{"connections":[{"id":24843,"orbit":-7},{"id":29320,"orbit":7}],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":2,"orbitIndex":14,"skill":17447,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"buckler19"},"17468":{"connections":[],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":17468,"stats":["+5 to any Attribute"],"stringId":"strength57"},"17501":{"connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":2,"orbitIndex":7,"skill":17501,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation5"},"17505":{"connections":[{"id":52106,"orbit":0},{"id":28774,"orbit":0},{"id":23382,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":30,"skill":17505,"stats":["3% increased Cast Speed"],"stringId":"cast_speed2"},"17517":{"connections":[{"id":13233,"orbit":-4},{"id":17655,"orbit":9}],"group":623,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":12,"skill":17517,"stats":["5% increased Area of Effect"],"stringId":"area_of_effect1"},"17523":{"connections":[{"id":42032,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":17523,"stats":["16% increased Hazard Damage"],"stringId":"hazards12"},"17532":{"connections":[{"id":61934,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":17532,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold23"},"17548":{"connections":[{"id":630,"orbit":0},{"id":31039,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Moment of Truth","orbit":7,"orbitIndex":2,"recipe":["Ire","Suffering","Disgust"],"skill":17548,"stats":["25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently","15% increased Critical Hit Chance"],"stringId":"criticals38_"},"17553":{"connections":[],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Pierce","orbit":7,"orbitIndex":5,"skill":17553,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"stringId":"ranged28"},"17584":{"connections":[],"group":680,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isSwitchable":true,"name":"Attack Area","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","id":53526,"name":"Spell and Attack Damage","stats":["8% increased Spell Damage","8% increased Attack Damage"]}},"orbit":2,"orbitIndex":17,"skill":17584,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks4"},"17587":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":176,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":9,"skill":17587,"stats":[],"stringId":"oracle_slow_crit_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17589":{"connections":[{"id":36085,"orbit":0},{"id":64462,"orbit":7}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":23,"skill":17589,"stats":["10% increased Attack Damage"],"stringId":"attack17"},"17600":{"connections":[{"id":18519,"orbit":3},{"id":32096,"orbit":0},{"id":10041,"orbit":-2}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Thirsting Ally","orbit":3,"orbitIndex":19,"recipe":["Ire","Greed","Suffering"],"skill":17600,"stats":["Leeching Life from your Hits causes your Companion to also Leech the same amount of Life"],"stringId":"duelist_minions10"},"17602":{"connections":[{"id":59799,"orbit":4},{"id":59798,"orbit":-4}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":7,"orbitIndex":15,"skill":17602,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield13"},"17625":{"connections":[{"id":10873,"orbit":-5}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":9,"skill":17625,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"shapeshifting14"},"17646":{"ascendancyName":"Witchhunter","connections":[],"group":256,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds","isNotable":true,"name":"Judge, Jury, and Executioner","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":17646,"stats":["Decimating Strike"],"stringId":"AscendancyMercenary2Notable2"},"17655":{"connections":[],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isSwitchable":true,"name":"Aura Effect","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":14942,"name":"Damage","stats":["8% increased Damage"]}},"orbit":2,"orbitIndex":8,"skill":17655,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras1"},"17664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":11463,"orbit":0},{"id":33348,"orbit":0}],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Decisive Retreat","orbit":0,"orbitIndex":0,"recipe":["Envy","Envy","Ire"],"skill":17664,"stats":["50% increased Critical Damage Bonus against Enemies that have exited your Presence Recently"],"stringId":"criticals97"},"17668":{"connections":[{"id":17215,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration and Attack Speed","orbit":2,"orbitIndex":22,"skill":17668,"stats":["2% increased Attack Speed","5% increased Mana Regeneration Rate"],"stringId":"monkchakra3"},"17672":{"connections":[{"id":38732,"orbit":0},{"id":64427,"orbit":0}],"group":950,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":17672,"stats":["+5 to any Attribute"],"stringId":"attributes77_"},"17686":{"connections":[{"id":53996,"orbit":0},{"id":43575,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":19,"skill":17686,"stats":["10% increased Melee Damage"],"stringId":"melee23_"},"17687":{"connections":[{"id":2021,"orbit":-5}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges","orbit":7,"orbitIndex":0,"skill":17687,"stats":["15% increased Mana Flask Charges gained"],"stringId":"mana_flasks2"},"17696":{"connections":[],"group":741,"icon":"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds","isNotable":true,"name":"Augmented Flesh","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Suffering","Suffering"],"skill":17696,"stats":["Grants 2 additional Skill Slots"],"stringId":"DeliriumAnoint_AugmentedFlesh"},"17702":{"connections":[{"id":46882,"orbit":0},{"id":27262,"orbit":-3},{"id":20467,"orbit":2147483647}],"group":1178,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":17702,"stats":["+5 to any Attribute"],"stringId":"dexterity75"},"17706":{"connections":[{"id":46972,"orbit":-2}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":2,"orbitIndex":20,"skill":17706,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"energy_shield_recovery36"},"17711":{"connections":[{"id":46989,"orbit":3}],"group":888,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":0,"orbitIndex":0,"skill":17711,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells8_"},"17724":{"connections":[{"id":17101,"orbit":-4}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":13,"skill":17724,"stats":["10% increased Attack Damage"],"stringId":"unarmed3"},"17725":{"connections":[{"id":9221,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Bonded Precision","orbit":7,"orbitIndex":10,"recipe":["Disgust","Envy","Suffering"],"skill":17725,"stats":["Allies in your Presence have 25% increased Critical Hit Chance","25% increased Critical Hit Chance"],"stringId":"criticals101"},"17726":{"connections":[{"id":33053,"orbit":7}],"group":967,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Stun Buildup","orbit":7,"orbitIndex":5,"skill":17726,"stats":["15% increased Stun Buildup"],"stringId":"ranged3"},"17729":{"connectionArt":"CharacterPlanned","connections":[{"id":56466,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":5,"skill":17729,"stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"stringId":"oracle_spell_poison3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":508,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":17745,"stats":[],"stringId":"mastery_totem_6149"},"17750":{"connections":[{"id":658,"orbit":4}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":7,"orbitIndex":22,"skill":17750,"stats":["+6% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"armour_and_evasion48"},"17754":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds","isNotable":true,"name":"Loyal Hellhound","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":7,"skill":17754,"stats":["Grants Skill: Summon Infernal Hound"],"stringId":"AscendancyWitch1Notable10"},"17762":{"connections":[{"id":2964,"orbit":-7},{"id":28476,"orbit":0}],"group":523,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Vengeance","orbit":2,"orbitIndex":23,"recipe":["Guilt","Fear","Envy"],"skill":17762,"stats":["10% of Thorns Damage Leeched as Life"],"stringId":"getting_hit12"},"17788":{"ascendancyName":"Lich","connections":[],"containJewelSocket":true,"group":1215,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isNotable":true,"isSwitchable":true,"name":"Crystalline Phylactery","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds"}}},"orbit":6,"orbitIndex":0,"skill":17788,"stats":["Can Socket a non-Unique Basic Jewel into the Phylactery","100% increased Effect of bonuses gained from Socketed Jewel","50% more Mana Cost of Skills if you have no Energy Shield"],"stringId":"AscendancyWitch3Notable1"},"17791":{"connections":[{"id":526,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":7,"orbitIndex":3,"skill":17791,"stats":["18% increased Stun Buildup with Maces"],"stringId":"mace3"},"17792":{"connections":[{"id":48734,"orbit":3}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Presence Area","orbit":2,"orbitIndex":9,"skill":17792,"stats":["20% increased Presence Area of Effect"],"stringId":"azmerianimals56"},"17796":{"connections":[{"id":12412,"orbit":2147483647}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Cooldown Recovery Rate","orbit":2,"orbitIndex":12,"skill":17796,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"slowed_enemies22"},"17825":{"connections":[{"id":45585,"orbit":-7},{"id":46931,"orbit":-7},{"id":5681,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Tactical Retreat","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Disgust","Despair"],"skill":17825,"stats":["+0.5 metres to Dodge Roll distance while Surrounded","10% increased Movement Speed while Surrounded"],"stringId":"being_surrounded21"},"17854":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":55275,"orbit":7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Escape Velocity","orbit":4,"orbitIndex":0,"recipe":["Greed","Disgust","Suffering"],"skill":17854,"stats":["3% increased Movement Speed","30% increased Evasion Rating"],"stringId":"evasion31"},"17867":{"connections":[{"id":37092,"orbit":0}],"group":695,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Exposure Effect and Slow Effect","orbit":7,"orbitIndex":10,"skill":17867,"stats":["Debuffs you inflict have 7% increased Slow Magnitude","7% increased Exposure Effect"],"stringId":"slowed_enemies28"},"17871":{"connections":[{"id":32672,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze and Chill Resistance","orbit":2,"orbitIndex":12,"skill":17871,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"stringId":"freeze_and_chill_mitigation2"},"17882":{"connections":[{"id":33596,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Volatile Grenades","orbit":7,"orbitIndex":0,"recipe":["Paranoia","Ire","Despair"],"skill":17882,"stats":["25% reduced Grenade Detonation Time"],"stringId":"grenades18"},"17885":{"connections":[{"id":11392,"orbit":-7}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude on You","orbit":3,"orbitIndex":2,"skill":17885,"stats":["15% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation7"},"17894":{"connectionArt":"CharacterPlanned","connections":[{"id":58058,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Her Final Bite","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":42,"skill":17894,"stats":["20% increased Physical Damage with Bows","Bow Attacks have Culling Strike"],"stringId":"oracle_bow_movement9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17903":{"connections":[{"id":40117,"orbit":-7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":8,"skill":17903,"stats":["16% increased Thorns damage"],"stringId":"getting_hit19_"},"17906":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":17906,"stats":[],"stringId":"mastery_trap237"},"17923":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":18826,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Volatility","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":16,"skill":17923,"stats":["10% chance to gain Volatility on Kill"],"stringId":"AscendancyMonk3Small1"},"17924":{"connections":[{"id":51867,"orbit":-7}],"group":408,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":3,"orbitIndex":20,"skill":17924,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life2"},"17955":{"connections":[{"id":51708,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Careful Consideration","orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Greed"],"skill":17955,"stats":["30% reduced Evasion Rating if you have been Hit Recently","100% increased Evasion Rating if you haven't been Hit Recently"],"stringId":"evasion7_"},"17973":{"connections":[{"id":4748,"orbit":4},{"id":22691,"orbit":-6}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"isSwitchable":true,"name":"Rapid Recharge","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":48926,"name":"Living Death","stats":["Minions have 15% increased maximum Life","Minions Revive 15% faster"]}},"orbit":7,"orbitIndex":3,"skill":17973,"stats":["12% increased Energy Shield Recharge Rate","12% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery14"},"17994":{"connections":[{"id":22565,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":5,"skill":17994,"stats":["10% increased Armour","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"deflect32"},"17999":{"connections":[{"id":51561,"orbit":0},{"id":42026,"orbit":0},{"id":63979,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown and Speed","orbit":7,"orbitIndex":4,"skill":17999,"stats":["8% increased Warcry Speed","6% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries29"},"18004":{"connections":[{"id":8881,"orbit":0}],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":3,"orbitIndex":19,"skill":18004,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage13"},"18049":{"connections":[{"id":5802,"orbit":0}],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":22,"skill":18049,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"],"stringId":"projectiles27"},"18073":{"connections":[{"id":49952,"orbit":7},{"id":63114,"orbit":4}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":2,"skill":18073,"stats":["12% increased Attack Damage"],"stringId":"slow_attacks2_"},"18081":{"connectionArt":"CharacterPlanned","connections":[{"id":52993,"orbit":0},{"id":14980,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Call Upon the Deep","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":7,"skill":18081,"stats":["Damage Penetrates 20% Elemental Resistances for each time you've used a Skill that Requires Glory in the past 6 seconds"],"stringId":"oracle_glory_elemental5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18086":{"connections":[{"id":62844,"orbit":0},{"id":7333,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Breath of Ice","orbit":4,"orbitIndex":54,"recipe":["Suffering","Disgust","Suffering"],"skill":18086,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"stringId":"cold_penetration25"},"18101":{"connections":[{"id":61615,"orbit":3},{"id":59413,"orbit":-3}],"group":657,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":18101,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup30"},"18115":{"connections":[{"id":48856,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":7,"skill":18115,"stats":["12% increased Grenade Damage"],"stringId":"grenades16"},"18121":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":18121,"stats":[],"stringId":"mastery_caster_6354__"},"18146":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":57819,"orbit":2147483647}],"group":515,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18146,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"AscendancyMercenary3Small3"},"18157":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":29447,"orbit":-8}],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Tempered Defences","orbit":2,"orbitIndex":17,"recipe":["Fear","Guilt","Envy"],"skill":18157,"stats":["25% increased Armour","+15% of Armour also applies to Elemental Damage"],"stringId":"armour49"},"18158":{"ascendancyName":"Infernalist","connections":[],"group":766,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds","isNotable":true,"name":"Bringer of Flame","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":18158,"stats":["All Damage from you and Allies in your Presence","contributes to Flammability and Ignite Magnitudes"],"stringId":"AscendancyWitch1Notable8"},"18160":{"connections":[{"id":26945,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Chance","orbit":7,"orbitIndex":14,"skill":18160,"stats":["Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence29"},"18167":{"connections":[{"id":49150,"orbit":-2}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Critical Hits","orbit":2,"orbitIndex":10,"skill":18167,"stats":["Invocated Spells have 12% increased Critical Hit Chance"],"stringId":"triggers29"},"18186":{"connections":[{"id":13942,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":18186,"stats":["15% increased Armour"],"stringId":"armour9"},"18207":{"connections":[{"id":53261,"orbit":-3}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Area and Damage","orbit":3,"orbitIndex":8,"skill":18207,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"stringId":"melee62"},"18245":{"connections":[{"id":30554,"orbit":0},{"id":21164,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Physical Damage Reduction","orbit":7,"orbitIndex":16,"skill":18245,"stats":["Minions have 8% increased maximum Life","Minions have 8% additional Physical Damage Reduction"],"stringId":"minion_defence3"},"18270":{"connections":[{"id":45874,"orbit":3}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":55,"skill":18270,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical69"},"18280":{"ascendancyName":"Ritualist","connections":[],"group":1608,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds","isNotable":true,"name":"Mind Phylacteries","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":18280,"stats":["Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges"],"stringId":"AscendancyHuntress3Notable4"},"18308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Bleeding Out","orbit":4,"orbitIndex":48,"recipe":["Despair","Suffering","Fear"],"skill":18308,"stats":["+250 to Accuracy against Bleeding Enemies","Bleeding you inflict deals Damage 10% faster"],"stringId":"bleed18"},"18314":{"connections":[{"id":60239,"orbit":-4},{"id":58593,"orbit":-6}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":13,"skill":18314,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield36"},"18348":{"ascendancyName":"Infernalist","connections":[{"id":19482,"orbit":5},{"id":8854,"orbit":0},{"id":46016,"orbit":8}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds","isNotable":true,"name":"Altered Flesh","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":60,"skill":18348,"stats":["20% of Physical Damage taken as Chaos Damage","20% of Lightning Damage taken as Fire Damage","20% of Cold Damage taken as Fire Damage"],"stringId":"AscendancyWitch1Notable4"},"18353":{"connectionArt":"CharacterPlanned","connections":[{"id":20496,"orbit":0},{"id":3544,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Physical and Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":20,"skill":18353,"stats":["12% increased Lightning Damage","12% increased Physical Damage"],"stringId":"oracle_rust_king1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18374":{"connections":[],"group":523,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Leech","orbit":2,"orbitIndex":7,"skill":18374,"stats":["8% increased amount of Life Leeched","12% increased Thorns damage"],"stringId":"getting_hit8_"},"18397":{"connections":[{"id":55063,"orbit":0},{"id":4139,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Savoured Blood","orbit":3,"orbitIndex":5,"recipe":["Despair","Ire","Ire"],"skill":18397,"stats":["35% increased amount of Life Leeched","Leech Life 20% slower"],"stringId":"life_leech17"},"18407":{"connections":[],"group":764,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":18407,"stats":["+5 to any Attribute"],"stringId":"intelligence12"},"18419":{"connections":[{"id":11014,"orbit":0},{"id":16784,"orbit":0},{"id":23667,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Mending","orbit":7,"orbitIndex":18,"recipe":["Envy","Fear","Paranoia"],"skill":18419,"stats":["Regenerate 1% of maximum Life per second while you have a Totem","Totems Regenerate 3% of maximum Life per second"],"stringId":"totems34"},"18441":{"connectionArt":"CharacterPlanned","connections":[{"id":34181,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":18441,"stats":["+3 to Maximum Rage"],"stringId":"oracle_rage1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18448":{"connections":[{"id":30141,"orbit":0},{"id":6872,"orbit":0},{"id":30457,"orbit":0},{"id":59039,"orbit":0}],"group":164,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":18448,"stats":["+5 to any Attribute"],"stringId":"attributes16"},"18451":{"connections":[],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":12,"skill":18451,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges5"},"18465":{"connections":[{"id":39540,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"isSwitchable":true,"name":"Cruel Fate","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds","id":50882,"name":"Primal Spirit","stats":["10% increased Critical Hit Chance while Shapeshifted","8% increased Skill Speed while Shapeshifted"]}},"orbit":4,"orbitIndex":44,"skill":18465,"stats":["20% increased Critical Damage Bonus","20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"stringId":"criticals25_"},"18470":{"connections":[{"id":4447,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":1,"orbitIndex":4,"skill":18470,"stats":["15% increased Pin Buildup"],"stringId":"pin7"},"18472":{"connections":[{"id":46533,"orbit":0}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":12,"skill":18472,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise4"},"18485":{"connections":[{"id":20119,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Unstable Bond","orbit":3,"orbitIndex":0,"recipe":["Envy","Guilt","Despair"],"skill":18485,"stats":["Gain 3 Volatility when an Allied Persistent Reviving Minion is Killed"],"stringId":"volatility1"},"18489":{"connections":[{"id":13356,"orbit":7},{"id":12751,"orbit":-7},{"id":37258,"orbit":0}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":7,"orbitIndex":19,"skill":18489,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed4"},"18496":{"connections":[{"id":50616,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Lasting Trauma","orbit":7,"orbitIndex":12,"recipe":["Suffering","Paranoia","Envy"],"skill":18496,"stats":["5% reduced Attack Speed","30% increased Magnitude of Ailments you inflict","20% increased Duration of Damaging Ailments on Enemies"],"stringId":"slow_attacks11"},"18505":{"connections":[{"id":45090,"orbit":0},{"id":50616,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Crushing Verdict","orbit":7,"orbitIndex":16,"recipe":["Envy","Suffering","Ire"],"skill":18505,"stats":["5% reduced Attack Speed","30% increased Stun Buildup","50% increased Attack Damage"],"stringId":"slow_attacks10"},"18519":{"connections":[{"id":30910,"orbit":-7}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Life Leech and Companion Damage","orbit":7,"orbitIndex":16,"skill":18519,"stats":["8% increased amount of Life Leeched","Companions deal 12% increased Damage"],"stringId":"duelist_minions2"},"18548":{"connections":[{"id":28992,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":8,"skill":18548,"stats":["3% increased Attack Speed"],"stringId":"attack_speed7"},"18568":{"connections":[{"id":46887,"orbit":-5}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech and Cold Resistance","orbit":2,"orbitIndex":1,"skill":18568,"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"stringId":"mana_leech3"},"18585":{"ascendancyName":"Warbringer","connections":[{"id":6127,"orbit":0}],"group":34,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18585,"stats":["20% increased Armour"],"stringId":"AscendancyWarrior2Small3"},"18593":{"connections":[{"id":47080,"orbit":0}],"group":113,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18593,"stats":["12% increased Lightning Damage"],"stringId":"lightning61"},"18624":{"connections":[{"id":39608,"orbit":-2},{"id":12329,"orbit":2}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":3,"orbitIndex":22,"skill":18624,"stats":["16% increased Hazard Damage"],"stringId":"hazards10"},"18629":{"connections":[{"id":64327,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":0,"skill":18629,"stats":["5% increased Block chance"],"stringId":"block7_"},"18651":{"connections":[{"id":11736,"orbit":0},{"id":63863,"orbit":0}],"group":896,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18651,"stats":["12% increased Lightning Damage"],"stringId":"lightning19"},"18678":{"ascendancyName":"Chronomancer","connections":[{"id":28153,"orbit":9}],"group":336,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Buff Expiry Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18678,"stats":["Buffs on you expire 10% slower"],"stringId":"AscendancySorceress2Small1"},"18684":{"connections":[],"flavourText":"\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"","group":137,"icon":"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds","isKeystone":true,"name":"Avatar of Fire","orbit":0,"orbitIndex":0,"skill":18684,"stats":["75% of Damage Converted to Fire Damage","Deal no Non-Fire Damage"],"stringId":"passive_keystone_avatar_of_fire"},"18713":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connectionArt":"CharacterPlanned","connections":[],"group":91,"icon":"Art/2DArt/SkillIcons/passives/MasteryArmourandEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":18713,"stats":[],"stringId":"oracle_crab_claw_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18717":{"connections":[{"id":60483,"orbit":0}],"group":1437,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18717,"stats":["12% increased Lightning Damage"],"stringId":"lightning8"},"18737":{"connections":[{"id":17725,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":6,"skill":18737,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals95"},"18742":{"connections":[{"id":7721,"orbit":-6},{"id":62732,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":6,"skill":18742,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold7"},"18744":{"connections":[{"id":60324,"orbit":2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":10,"skill":18744,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant18"},"18746":{"connections":[],"group":138,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":18746,"stats":["5% increased Block chance"],"stringId":"shield6"},"18793":{"connections":[{"id":33639,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":7,"orbitIndex":22,"skill":18793,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"],"stringId":"infusion14"},"18801":{"connections":[{"id":11752,"orbit":2147483647},{"id":63360,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":10,"skill":18801,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners5"},"18815":{"connections":[{"id":40990,"orbit":0}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":18815,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration6"},"18818":{"connections":[{"id":29517,"orbit":0},{"id":49461,"orbit":2},{"id":21314,"orbit":-2}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Speed","orbit":0,"orbitIndex":0,"skill":18818,"stats":["2% increased Attack Speed","5% increased Attack Damage"],"stringId":"attack51"},"18822":{"connections":[{"id":21567,"orbit":-3},{"id":47790,"orbit":3}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Damage","orbit":1,"orbitIndex":7,"skill":18822,"stats":["10% increased Damage"],"stringId":"shapeshifting17"},"18826":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":47344,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds","isNotable":true,"name":"Inner Turmoil","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":8,"skill":18826,"stats":["Gain 1 Volatility on inflicting an Elemental Ailment","Take no Damage from Volatility"],"stringId":"AscendancyMonk3Notable1"},"18831":{"connections":[{"id":49545,"orbit":7}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":2,"orbitIndex":19,"skill":18831,"stats":["5% increased Block chance"],"stringId":"deflect7"},"18845":{"connections":[{"id":55807,"orbit":-5}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":27384,"name":"Spell and Minion Damage","stats":["10% increased Spell Damage","Minions deal 10% increased Damage"]}},"orbit":7,"orbitIndex":11,"skill":18845,"stats":["10% increased Spell Damage"],"stringId":"spells15"},"18846":{"connections":[],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":3,"orbitIndex":8,"skill":18846,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells3"},"18849":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds","isNotable":true,"name":"Shaper of Winter","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":5,"orbitIndex":2,"skill":18849,"stats":["All Damage from Hits Contributes to Chill Magnitude"],"stringId":"AscendancySorceress1Notable8"},"18856":{"connections":[{"id":24491,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":0,"skill":18856,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers22"},"18864":{"connections":[{"id":2745,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":2,"skill":18864,"stats":["10% increased Magnitude of Ailments you inflict"],"stringId":"azmerianimals44"},"18882":{"connections":[{"id":24045,"orbit":-2},{"id":26786,"orbit":0},{"id":30047,"orbit":0},{"id":29941,"orbit":0}],"group":996,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":6,"skill":18882,"stats":["+5 to any Attribute"],"stringId":"dexterity68"},"18895":{"connections":[{"id":12661,"orbit":3}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":1,"orbitIndex":6,"skill":18895,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield3"},"18897":{"connections":[{"id":53185,"orbit":5}],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Evasion Rating","orbit":2,"orbitIndex":4,"skill":18897,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals51"},"18910":{"connections":[{"id":10265,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Critical Chance","orbit":5,"orbitIndex":48,"skill":18910,"stats":["10% increased Critical Hit Chance with Spears"],"stringId":"spear2"},"18913":{"connections":[{"id":12419,"orbit":-2}],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage and Duration","orbit":7,"orbitIndex":22,"skill":18913,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"stringId":"chaos2"},"18923":{"connections":[{"id":61976,"orbit":0},{"id":17118,"orbit":0},{"id":39570,"orbit":0},{"id":9085,"orbit":0}],"group":1127,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":18923,"stats":["+5 to any Attribute"],"stringId":"dexterity64"},"18940":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1566,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds","isMultipleChoiceOption":true,"name":"Shattering Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18940,"stats":["Grants Skill: Shattering Concoction"],"stringId":"AscendancyRanger3Notable7_2"},"18959":{"connections":[{"id":55843,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Ruinic Helm","orbit":2,"orbitIndex":14,"recipe":["Paranoia","Isolation","Fear"],"skill":18959,"stats":["+1 to Maximum Energy Shield per 8 Item Armour on Equipped Helmet"],"stringId":"energy_shield_and_armour35"},"18969":{"connections":[],"group":1515,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":0,"orbitIndex":0,"skill":18969,"stats":["3% increased Attack Speed with Bows"],"stringId":"bow16"},"18970":{"connections":[{"id":17366,"orbit":-3},{"id":11938,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":16,"skill":18970,"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"stringId":"evasion_and_energy_shield3"},"18972":{"connectionArt":"CharacterPlanned","connections":[{"id":34782,"orbit":0}],"group":165,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Echoes of Ferocity","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":18972,"stats":["15% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"oracle_bear_addon2__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19001":{"connections":[{"id":16786,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":18,"skill":19001,"stats":["15% increased Immobilisation buildup"],"stringId":"slaying7"},"19003":{"connections":[{"id":12166,"orbit":0},{"id":3128,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":19003,"stats":["10% increased Cold Damage"],"stringId":"cold4_"},"19006":{"connections":[{"id":39461,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":18,"skill":19006,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation12"},"19011":{"connections":[{"id":45363,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":20,"skill":19011,"stats":["10% increased Melee Damage"],"stringId":"melee56"},"19027":{"connections":[{"id":21156,"orbit":-2},{"id":7847,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Charge Duration","orbit":7,"orbitIndex":12,"skill":19027,"stats":["15% increased Endurance, Frenzy and Power Charge Duration"],"stringId":"azmerianimals14"},"19044":{"connections":[{"id":53188,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Arcane Intensity","orbit":1,"orbitIndex":0,"recipe":["Disgust","Fear","Despair"],"skill":19044,"stats":["3% increased Spell Damage per 100 maximum Mana"],"stringId":"mana37"},"19074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":7,"orbitIndex":6,"skill":19074,"stats":[],"stringId":"mastery_attack_6301"},"19104":{"connections":[{"id":29582,"orbit":0}],"group":1025,"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","isNotable":true,"isSwitchable":true,"name":"Eagle Eye","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","id":39628,"name":"Reflex Action","stats":["30% increased Parry Damage","30% increased Evasion Rating while Parrying"]}},"orbit":0,"orbitIndex":0,"skill":19104,"stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"],"stringId":"accuracy18"},"19112":{"connections":[{"id":36358,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":19112,"stats":["7% increased Chaos Damage"],"stringId":"chaos18_"},"19122":{"connections":[{"id":28432,"orbit":0}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Armour if Consumed Endurance Charge","orbit":2,"orbitIndex":16,"skill":19122,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"endurance_charges11"},"19125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Potent Incantation","orbit":1,"orbitIndex":8,"recipe":["Paranoia","Paranoia","Disgust"],"skill":19125,"stats":["30% increased Spell Damage","5% reduced Cast Speed"],"stringId":"spells33"},"19129":{"connections":[{"id":55066,"orbit":0},{"id":9290,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":21,"skill":19129,"stats":["15% increased Pin Buildup"],"stringId":"bleed47"},"19156":{"connections":[{"id":12249,"orbit":-7},{"id":17283,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Immaterial","orbit":2,"orbitIndex":12,"recipe":["Ire","Disgust","Envy"],"skill":19156,"stats":["50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds","30% increased Evasion Rating while you have Energy Shield"],"stringId":"evasion_and_energy_shield14"},"19162":{"connectionArt":"CharacterPlanned","connections":[{"id":34143,"orbit":0},{"id":31554,"orbit":5},{"id":15141,"orbit":2147483647}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":60,"skill":19162,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19203":{"connections":[{"id":10260,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":21,"skill":19203,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling2"},"19223":{"connections":[{"id":21755,"orbit":0},{"id":53166,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":18,"skill":19223,"stats":["10% increased Attack Damage"],"stringId":"attack23_"},"19224":{"connections":[{"id":32555,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":4,"orbitIndex":66,"skill":19224,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion38"},"19233":{"ascendancyName":"Amazon","connections":[{"id":42441,"orbit":0}],"group":1590,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":19233,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyHuntress1Small6"},"19236":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Projectile Bulwark","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Despair"],"skill":19236,"stats":["30% increased Armour","Defend with 120% of Armour against Projectile Attacks"],"stringId":"armour31"},"19240":{"connections":[{"id":46358,"orbit":-6},{"id":4847,"orbit":5}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":19240,"stats":["+5 to any Attribute"],"stringId":"intelligence27"},"19249":{"connections":[{"id":33209,"orbit":4},{"id":40550,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Supportive Ancestors","orbit":6,"orbitIndex":0,"recipe":["Fear","Disgust","Isolation"],"skill":19249,"stats":["25% increased Damage while you have a Totem","Spells Cast by Totems have 3% increased Cast Speed per Summoned Totem","Attacks used by Totems have 3% increased Attack Speed per Summoned Totem"],"stringId":"totems7"},"19277":{"connections":[{"id":44783,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":12,"skill":19277,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells16"},"19288":{"connections":[],"flavourText":"Utter trust in your defence unleashes ultimate potential.","group":1000,"icon":"Art/2DArt/SkillIcons/passives/GlancingBlows.dds","isKeystone":true,"name":"Glancing Blows","orbit":0,"orbitIndex":0,"skill":19288,"stats":["Chance to Evade is Unlucky","Chance to Deflect is Lucky"],"stringId":"passive_keystone_glancing_blows_"},"19318":{"connections":[{"id":53795,"orbit":5}],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":13,"skill":19318,"stats":["20% increased Effect of Puppet Master"],"stringId":"Puppetmaster5"},"19330":{"connections":[],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":52,"skill":19330,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration35"},"19337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Precision Salvo","orbit":0,"orbitIndex":0,"recipe":["Despair","Envy","Envy"],"skill":19337,"stats":["8% increased Projectile Speed","6% increased Attack Speed","12% increased Accuracy Rating"],"stringId":"accuracy40"},"19338":{"connections":[{"id":60,"orbit":0}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":0,"skill":19338,"stats":["+8 to Dexterity"],"stringId":"dexterity104_"},"19341":{"connections":[],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":7,"orbitIndex":10,"skill":19341,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life3"},"19342":{"connections":[{"id":17553,"orbit":-3},{"id":46296,"orbit":0},{"id":27493,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":8,"skill":19342,"stats":["10% increased Projectile Damage"],"stringId":"ranged41"},"19355":{"connections":[],"group":1040,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":4,"skill":19355,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield44"},"19359":{"connections":[{"id":35095,"orbit":4},{"id":52245,"orbit":0}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage and Resistance","orbit":3,"orbitIndex":2,"skill":19359,"stats":["5% increased Chaos Damage","+3% to Chaos Resistance"],"stringId":"monkchaos3"},"19370":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds","isNotable":true,"name":"Hollow Focus Technique","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":5,"orbitIndex":71,"skill":19370,"stats":["Grants Skill: Hollow Focus"],"stringId":"AscendancyMonk1Notable3"},"19424":{"ascendancyName":"Titan","connections":[{"id":60634,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Strength","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":6,"orbitIndex":48,"skill":19424,"stats":["4% increased Strength"],"stringId":"AscendancyWarrior1Small5"},"19426":{"connections":[{"id":15443,"orbit":0}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":4,"skill":19426,"stats":["10% increased Physical Damage"],"stringId":"physical48"},"19442":{"connections":[{"id":25170,"orbit":-3},{"id":8606,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Prolonged Assault","orbit":2,"orbitIndex":8,"recipe":["Guilt","Despair","Suffering"],"skill":19442,"stats":["16% increased Attack Damage","16% increased Skill Effect Duration","Buffs on you expire 10% slower"],"stringId":"attack11"},"19461":{"connections":[{"id":64415,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Lightning and Cold Damage","orbit":3,"orbitIndex":16,"skill":19461,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"stringId":"daze_12"},"19470":{"connections":[],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Life and Mana Flask Recovery","orbit":3,"orbitIndex":17,"skill":19470,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks19_"},"19482":{"ascendancyName":"Infernalist","connections":[{"id":36564,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":109,"skill":19482,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small1"},"19542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":1448,"orbit":0}],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":19542,"stats":[],"stringId":"mastery_companion293"},"19546":{"connections":[{"id":5681,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Favourable Odds","orbit":2,"orbitIndex":4,"recipe":["Despair","Greed","Disgust"],"skill":19546,"stats":["30% increased Block chance while Surrounded","10% increased Deflection Rating while Surrounded","40% increased Ailment and Stun Threshold while Surrounded"],"stringId":"being_surrounded23"},"19563":{"connections":[{"id":47931,"orbit":0},{"id":58496,"orbit":-7},{"id":6735,"orbit":7}],"group":165,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":19563,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear1"},"19573":{"connections":[{"id":38479,"orbit":-5},{"id":19342,"orbit":-3}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Pierce","orbit":7,"orbitIndex":11,"skill":19573,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"stringId":"ranged27"},"19644":{"connections":[{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Left Hand of Darkness","orbit":4,"orbitIndex":29,"recipe":["Isolation","Suffering","Envy"],"skill":19644,"stats":["Minions have 20% additional Physical Damage Reduction","Minions have +23% to Chaos Resistance","Attacks Gain 5% of Damage as extra Chaos Damage"],"stringId":"minion_defence16"},"19674":{"connections":[{"id":41493,"orbit":0}],"group":345,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":3,"orbitIndex":2,"skill":19674,"stats":["8% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"slams4"},"19715":{"connections":[{"id":34927,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Cremation","orbit":4,"orbitIndex":66,"recipe":["Isolation","Disgust","Isolation"],"skill":19715,"stats":["Damage Penetrates 18% Fire Resistance","Gain 6% of Elemental Damage as Extra Fire Damage"],"stringId":"fire_penetration24"},"19722":{"connections":[],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Thin Ice","orbit":7,"orbitIndex":10,"recipe":["Suffering","Ire","Greed"],"skill":19722,"stats":["20% increased Freeze Buildup","50% increased Damage with Hits against Frozen Enemies"],"stringId":"cold32"},"19749":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19749,"stats":[],"stringId":"mastery_fire120"},"19750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":739,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":19750,"stats":[],"stringId":"mastery_evasion115"},"19751":{"connections":[{"id":35618,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Threshold","orbit":2,"orbitIndex":19,"skill":19751,"stats":["15% increased Freeze Threshold"],"stringId":"chill_and_freeze22"},"19767":{"connections":[{"id":35223,"orbit":0},{"id":13895,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":10,"skill":19767,"stats":["3% increased Attack Speed with Spears"],"stringId":"spear6"},"19779":{"connections":[{"id":63891,"orbit":2}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":2,"orbitIndex":22,"skill":19779,"stats":["7% increased Chaos Damage"],"stringId":"chaos10"},"19794":{"connections":[],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude on You","orbit":3,"orbitIndex":22,"skill":19794,"stats":["15% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation5"},"19796":{"connections":[{"id":18308,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Attack Damage vs Bleeding Enemies","orbit":7,"orbitIndex":16,"skill":19796,"stats":["16% increased Attack Damage against Bleeding Enemies"],"stringId":"bleed16"},"19802":{"connections":[{"id":64399,"orbit":2}],"group":574,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":2,"orbitIndex":8,"skill":19802,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals66"},"19808":{"connections":[],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","isSwitchable":true,"name":"Ailment Chance","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","id":28615,"name":"Accuracy","stats":["8% increased Accuracy Rating"]}},"orbit":0,"orbitIndex":0,"skill":19808,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments9_"},"19820":{"connections":[{"id":5686,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Cold Damage","orbit":2,"orbitIndex":20,"skill":19820,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"stringId":"armour40"},"19846":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":382,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19846,"stats":[],"stringId":"mastery_fire6171"},"19873":{"connections":[{"id":13233,"orbit":4},{"id":17655,"orbit":-9}],"group":623,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":4,"skill":19873,"stats":["5% increased Area of Effect"],"stringId":"area_of_effect4"},"19880":{"connections":[{"id":59390,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Evasion if Consumed Frenzy Charge","orbit":2,"orbitIndex":0,"skill":19880,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"stringId":"frenzy_charges2"},"19936":{"connections":[{"id":290,"orbit":3}],"group":280,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":19936,"stats":["12% increased Fire Damage"],"stringId":"fire71"},"19942":{"connections":[{"id":1144,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":1,"skill":19942,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"accuracy53"},"19953":{"connectionArt":"CharacterPlanned","connections":[{"id":50142,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":19953,"stats":["15% increased Lightning Damage"],"stringId":"oracle_rust_king6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19955":{"connections":[],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Endless Blizzard","orbit":4,"orbitIndex":6,"recipe":["Isolation","Suffering","Fear"],"skill":19955,"stats":["+1 to Level of all Cold Skills"],"stringId":"cold38"},"19966":{"connectionArt":"CharacterPlanned","connections":[{"id":829,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":19,"skill":19966,"stats":["25% increased Minion Duration"],"stringId":"oracle_big_family5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19998":{"connections":[{"id":44430,"orbit":0}],"group":928,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":19998,"stats":["12% increased Damage with Crossbows"],"stringId":"crossbow2"},"20008":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Unleash Fire","orbit":7,"orbitIndex":4,"recipe":["Disgust","Guilt","Greed"],"skill":20008,"stats":["30% increased Stun Buildup with Melee Damage","Projectiles deal 75% increased Damage against Heavy Stunned Enemies"],"stringId":"ranged25"},"20015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":426,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":20015,"stats":[],"stringId":"mastery_warcry_6793"},"20024":{"connections":[{"id":44223,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":22,"skill":20024,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals14"},"20032":{"connections":[{"id":28680,"orbit":0},{"id":56762,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Erraticism","orbit":2,"orbitIndex":0,"recipe":["Despair","Greed","Guilt"],"skill":20032,"stats":["16% increased Cast Speed if you've dealt a Critical Hit Recently","10% reduced Critical Hit Chance"],"stringId":"cast_speed37"},"20044":{"connections":[{"id":30736,"orbit":0}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":7,"skill":20044,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect56"},"20049":{"connections":[{"id":32818,"orbit":5}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":0,"skill":20049,"stats":["10% increased Charm Charges gained"],"stringId":"charms16"},"20091":{"connections":[{"id":46565,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":43,"skill":20091,"stats":["10% increased Damage with Swords"],"stringId":"sword5"},"20105":{"connections":[{"id":13895,"orbit":0}],"group":1481,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Accuracy","orbit":0,"orbitIndex":0,"skill":20105,"stats":["10% increased Accuracy Rating with Spears"],"stringId":"spear8"},"20115":{"connections":[{"id":49734,"orbit":0},{"id":24420,"orbit":0},{"id":63243,"orbit":0},{"id":30258,"orbit":0}],"group":247,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":20115,"stats":["+5 to any Attribute"],"stringId":"attributes80"},"20119":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":20119,"stats":[],"stringId":"mastery_minion_offence_6620_"},"20140":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":953,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":20140,"stats":[],"stringId":"mastery_caster_6362"},"20195":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":56,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds","isNotable":true,"name":"Spiked Plates","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":20195,"stats":["Body Armour grants 100% increased Thorns damage"],"stringId":"AscendancyWarrior3Notable6_3"},"20205":{"connections":[{"id":33059,"orbit":0}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if no recent Stun","orbit":2,"orbitIndex":4,"skill":20205,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun15"},"20236":{"connections":[{"id":4346,"orbit":0}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack and Cast Speed on Critical","orbit":0,"orbitIndex":0,"skill":20236,"stats":["3% increased Attack Speed if you've dealt a Critical Hit Recently","3% increased Cast Speed if you've dealt a Critical Hit Recently"],"stringId":"criticals19"},"20251":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Splitting Ground","orbit":3,"orbitIndex":23,"recipe":["Suffering","Suffering","Isolation"],"skill":20251,"stats":["Skills which create Fissures have a 20% chance to create an additional Fissure"],"stringId":"area_attacks40_"},"20289":{"connections":[{"id":61896,"orbit":0},{"id":50767,"orbit":0}],"group":121,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Frozen Claw","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Ire"],"skill":20289,"stats":["Gain 8% of Damage as Extra Cold Damage while Shapeshifted"],"stringId":"wolf18"},"20303":{"connections":[{"id":9908,"orbit":0}],"group":402,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":20303,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration31"},"20350":{"connections":[{"id":4948,"orbit":0},{"id":47006,"orbit":0},{"id":28304,"orbit":0}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":10,"skill":20350,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"stringId":"armour_break11"},"20387":{"connections":[{"id":57810,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":20387,"stats":["15% increased chance to Shock"],"stringId":"shock11"},"20388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":627,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Regenerative Flesh","orbit":2,"orbitIndex":22,"recipe":["Greed","Disgust","Greed"],"skill":20388,"stats":["6% of Damage taken Recouped as Life","Minions Recoup 15% of Damage taken as Life"],"stringId":"minion_defence36_"},"20390":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":37619,"orbit":2147483647},{"id":13693,"orbit":2147483647}],"group":311,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":20390,"stats":[],"stringId":"mastery_elemental_6472"},"20391":{"connectionArt":"CharacterPlanned","connections":[{"id":16947,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":15,"skill":20391,"stats":["8% increased Block chance"],"stringId":"oracle_crab_claw8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20397":{"connections":[{"id":4577,"orbit":3},{"id":8556,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Authority","orbit":7,"orbitIndex":11,"recipe":["Greed","Envy","Suffering"],"skill":20397,"stats":["10% increased Cooldown Recovery Rate","15% increased Area of Effect for Attacks"],"stringId":"area_attacks30"},"20414":{"connections":[{"id":35043,"orbit":0},{"id":52410,"orbit":0},{"id":50146,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Reprisal","orbit":4,"orbitIndex":31,"recipe":["Ire","Despair","Despair"],"skill":20414,"stats":["25% increased Parried Debuff Magnitude"],"stringId":"buckler12"},"20416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Grit","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Envy"],"skill":20416,"stats":["10% chance when you gain an Endurance Charge to gain an additional Endurance Charge","+1 to Maximum Endurance Charges"],"stringId":"endurance_charges9"},"20429":{"connections":[{"id":28797,"orbit":0}],"group":1517,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":62,"skill":20429,"stats":["3% increased Attack Speed with Daggers"],"stringId":"dagger7"},"20437":{"ascendancyName":"Martial Artist","connections":[{"id":39552,"orbit":5}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Attributes","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":4,"orbitIndex":7,"skill":20437,"stats":["+5 to all Attributes"],"stringId":"AscendancyMonk1Small7"},"20467":{"connections":[{"id":58312,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":3,"orbitIndex":12,"skill":20467,"stats":["5% increased Culling Strike Threshold"],"stringId":"slaying1"},"20495":{"connections":[],"group":750,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Dark Entropy","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Isolation","Disgust"],"skill":20495,"stats":["Withered also causes enemies to deal 1% reduced Damage"],"stringId":"DeliriumAnoint_DarkEntropy"},"20496":{"connectionArt":"CharacterPlanned","connections":[{"id":11984,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":6,"skill":20496,"stats":["15% increased Physical Damage"],"stringId":"oracle_rust_king4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20499":{"connections":[{"id":34327,"orbit":0},{"id":2336,"orbit":-2}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Effect","orbit":7,"orbitIndex":13,"skill":20499,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration41"},"20504":{"connections":[{"id":62341,"orbit":-5}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":0,"orbitIndex":0,"skill":20504,"stats":["Recover 5 Life when you Block"],"stringId":"block10"},"20511":{"connections":[{"id":53804,"orbit":-7},{"id":49259,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","isNotable":true,"name":"Cremating Cries","orbit":3,"orbitIndex":14,"recipe":["Despair","Suffering","Paranoia"],"skill":20511,"stats":["Empowered Attacks Gain 15% of Physical Damage as Extra Fire damage"],"stringId":"warcries44"},"20547":{"connections":[{"id":33340,"orbit":0},{"id":34412,"orbit":-2}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":11,"skill":20547,"stats":["15% increased Stun Buildup"],"stringId":"stun23"},"20558":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":235,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","isNotable":true,"name":"Among the Hordes","orbit":2,"orbitIndex":20,"recipe":["Suffering","Greed","Suffering"],"skill":20558,"stats":["3% increased Movement Speed","15% increased Attack Damage","Minions have 10% increased Movement Speed"],"stringId":"minion_offence59"},"20582":{"connections":[{"id":55329,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":6,"orbitIndex":21,"skill":20582,"stats":["15% increased Parried Debuff Duration"],"stringId":"buckler3"},"20637":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":566,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Damage Mastery","orbit":0,"orbitIndex":0,"skill":20637,"stats":[],"stringId":"oracle_hiearchy_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51934,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":1,"orbitIndex":1,"skill":20641,"stats":[],"stringId":"mastery_caster_6353"},"20645":{"connections":[{"id":64284,"orbit":4}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":14,"skill":20645,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks25_"},"20649":{"connections":[{"id":62998,"orbit":0},{"id":2582,"orbit":0},{"id":65290,"orbit":0}],"group":1486,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":20649,"stats":["10% increased Lightning Damage"],"stringId":"shock_mitigation1__"},"20677":{"connections":[{"id":9586,"orbit":0},{"id":535,"orbit":0}],"group":1203,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"For the Jugular","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Guilt"],"skill":20677,"stats":["25% increased Critical Damage Bonus","+10 to Intelligence"],"stringId":"criticals29"},"20686":{"connections":[],"group":914,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isNotable":true,"name":"Paragon","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Isolation","Despair"],"skill":20686,"stats":["+5% to Quality of all Skills","+5 to all Attributes"],"stringId":"DeliriumAnoint_Paragon"},"20691":{"connections":[{"id":41739,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":8,"skill":20691,"stats":["15% increased Stun Buildup"],"stringId":"stun20"},"20701":{"ascendancyName":"Disciple of Varashta","connections":[{"id":35880,"orbit":3}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds","isNotable":true,"name":"Instruments of Power","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":3,"orbitIndex":4,"skill":20701,"stats":["You can equip a Focus while wielding a Staff","50% reduced bonuses gained from Equipped Focus"],"stringId":"AscendancySorceress3Notable5_"},"20718":{"connections":[{"id":30979,"orbit":-3}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":7,"orbitIndex":12,"skill":20718,"stats":["10% increased Skill Effect Duration"],"stringId":"slowed_enemies6"},"20744":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":991,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":1,"orbitIndex":3,"skill":20744,"stats":[],"stringId":"mastery_projectile_6650"},"20772":{"ascendancyName":"Lich","connections":[{"id":2877,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Mana","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":15028,"name":"Minion Duration","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["15% increased Minion Duration"]}},"orbit":9,"orbitIndex":114,"skill":20772,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch3Small3"},"20779":{"connections":[{"id":43431,"orbit":9},{"id":50239,"orbit":5}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":3,"orbitIndex":0,"skill":20779,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion36_"},"20782":{"connections":[{"id":52191,"orbit":-3},{"id":42361,"orbit":0}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":20782,"stats":["7% increased Chaos Damage"],"stringId":"chaos5"},"20787":{"connections":[{"id":5390,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":21,"skill":20787,"stats":["15% increased Freeze Buildup"],"stringId":"cold46"},"20791":{"connections":[{"id":13777,"orbit":0},{"id":11741,"orbit":0}],"group":220,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration and Energy Shield","orbit":2,"orbitIndex":10,"skill":20791,"stats":["10% increased Power Charge Duration","10% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_endurance_charges1"},"20820":{"connections":[{"id":40166,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":20820,"stats":["3% increased Attack Speed"],"stringId":"attack_speed10"},"20830":{"ascendancyName":"Witchhunter","connections":[{"id":37078,"orbit":8}],"group":339,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":20830,"stats":["8% increased Area of Effect"],"stringId":"AscendancyMercenary2Small7"},"20831":{"connections":[{"id":29843,"orbit":0},{"id":44875,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds","isNotable":true,"name":"Catlike Agility","orbit":2,"orbitIndex":14,"skill":20831,"stats":["25% increased Evasion Rating","40% increased Evasion Rating if you've Dodge Rolled Recently","3% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion39"},"20837":{"connections":[{"id":61104,"orbit":0}],"group":1088,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":0,"orbitIndex":0,"skill":20837,"stats":["8% increased Knockback Distance"],"stringId":"bleed46"},"20842":{"connections":[{"id":48026,"orbit":0},{"id":4661,"orbit":2147483647}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":3,"orbitIndex":12,"skill":20842,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners16"},"20848":{"connections":[{"id":16721,"orbit":2147483647}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":7,"orbitIndex":8,"skill":20848,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical64"},"20861":{"connections":[{"id":8522,"orbit":0},{"id":45350,"orbit":0},{"id":17672,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":12,"skill":20861,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers11"},"20895":{"ascendancyName":"Smith of Kitava","connections":[{"id":47184,"orbit":0}],"group":18,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Strength","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":20895,"stats":["5% increased Strength"],"stringId":"AscendancyWarrior3Small2"},"20909":{"connections":[{"id":44891,"orbit":2147483647}],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":1,"skill":20909,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration3"},"20916":{"connections":[{"id":59355,"orbit":0}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Blinding Strike","orbit":7,"orbitIndex":8,"recipe":["Envy","Fear","Envy"],"skill":20916,"stats":["24% increased Attack Damage","10% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack16"},"20963":{"connectionArt":"CharacterPlanned","connections":[{"id":17587,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Calculated Hunter","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":18,"skill":20963,"stats":["5% reduced Skill Speed","50% increased Critical Hit Chance"],"stringId":"oracle_slow_crits4__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20989":{"connections":[{"id":42984,"orbit":0},{"id":30141,"orbit":0}],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":3,"orbitIndex":9,"skill":20989,"stats":["6% increased Area of Effect"],"stringId":"area_attacks37"},"21017":{"connections":[{"id":26969,"orbit":-7},{"id":55789,"orbit":7}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":5,"orbitIndex":0,"skill":21017,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals68"},"21070":{"connections":[{"id":57388,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":7,"orbitIndex":20,"skill":21070,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals63"},"21077":{"connections":[{"id":354,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":3,"orbitIndex":12,"skill":21077,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades2"},"21080":{"connections":[{"id":1869,"orbit":-4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":19,"skill":21080,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze1"},"21081":{"connections":[{"id":25745,"orbit":5}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":5,"orbitIndex":42,"skill":21081,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour20"},"21089":{"connections":[{"id":31848,"orbit":7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns Ignore Armour","orbit":7,"orbitIndex":20,"skill":21089,"stats":["Thorns Damage has 25% chance to ignore Enemy Armour"],"stringId":"getting_hit18"},"21096":{"connections":[{"id":56388,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":4,"orbitIndex":69,"skill":21096,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners25"},"21111":{"connections":[{"id":33099,"orbit":-5}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Activation Chance","orbit":7,"orbitIndex":11,"skill":21111,"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"stringId":"charms15"},"21112":{"connections":[{"id":31055,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":4,"orbitIndex":57,"skill":21112,"stats":["10% increased Damage with Bows"],"stringId":"bow5"},"21127":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":305,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":30,"skill":21127,"stats":[],"stringId":"mastery_totem_6748"},"21142":{"connections":[{"id":55829,"orbit":7}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":5,"skill":21142,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks51"},"21156":{"connections":[{"id":34623,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Charge Duration","orbit":7,"orbitIndex":8,"skill":21156,"stats":["15% increased Endurance, Frenzy and Power Charge Duration"],"stringId":"azmerianimals13"},"21161":{"connections":[{"id":10500,"orbit":5}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Movement Penalty with Raised Shield","orbit":3,"orbitIndex":7,"skill":21161,"stats":["10% reduced Movement Speed Penalty while Actively Blocking"],"stringId":"shield32"},"21164":{"connections":[{"id":62670,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Fleshcrafting","orbit":7,"orbitIndex":10,"recipe":["Isolation","Greed","Fear"],"skill":21164,"stats":["Minions gain 15% of their maximum Life as Extra maximum Energy Shield","4% of Maximum Life Converted to Energy Shield"],"stringId":"minion_defence22_"},"21184":{"connections":[{"id":20251,"orbit":0}],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":7,"orbitIndex":3,"skill":21184,"stats":["6% increased Area of Effect"],"stringId":"area_attacks39"},"21205":{"connections":[{"id":44176,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":60,"skill":21205,"stats":["+3 to all Attributes"],"stringId":"all_attributes3"},"21206":{"connections":[{"id":45899,"orbit":0},{"id":11505,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Explosive Impact","orbit":3,"orbitIndex":8,"recipe":["Greed","Disgust","Fear"],"skill":21206,"stats":["15% increased Area of Effect","Burning Enemies you kill have a 5% chance to Explode, dealing a","tenth of their maximum Life as Fire Damage"],"stringId":"fire36"},"21208":{"connections":[],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Activation Speed and Effect","orbit":7,"orbitIndex":14,"skill":21208,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"stringId":"curses4"},"21213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Cirel of Tarth's Light","orbit":7,"orbitIndex":10,"recipe":["Isolation","Ire","Paranoia"],"skill":21213,"stats":["+10% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","10% increased Light Radius","10% increased Accuracy Rating","10% increased Area of Effect"],"stringId":"energy_shield_and_armour56_"},"21218":{"connectionArt":"CharacterPlanned","connections":[{"id":7066,"orbit":0},{"id":13950,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":5,"skill":21218,"stats":["16% increased Damage with Bows"],"stringId":"oracle_bow_movement1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21225":{"connections":[{"id":38369,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":3,"orbitIndex":16,"skill":21225,"stats":["10% increased Damage with Spears"],"stringId":"spear3"},"21227":{"connections":[{"id":36290,"orbit":-2}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":4,"orbitIndex":39,"skill":21227,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery6"},"21245":{"connections":[],"group":548,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":21245,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical15"},"21251":{"connections":[],"group":506,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Replenishing Horde","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Isolation","Disgust"],"skill":21251,"stats":["25% Chance to revive a random Permanent Minion whenever you use a Command Skill","25% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"DeliriumAnoint_ReplenishingHorde"},"21274":{"connections":[{"id":39298,"orbit":0}],"group":904,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21274,"stats":["+5 to any Attribute"],"stringId":"attributes46"},"21279":{"connections":[{"id":35534,"orbit":-3}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect and Blind Effect","orbit":2,"orbitIndex":21,"skill":21279,"stats":["8% increased Effect of your Mark Skills","10% increased Blind Effect"],"stringId":"marks29"},"21280":{"connections":[{"id":28050,"orbit":0},{"id":61312,"orbit":0},{"id":40630,"orbit":0}],"group":1085,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21280,"stats":["+5 to any Attribute"],"stringId":"dexterity21"},"21284":{"ascendancyName":"Oracle","connections":[{"id":30904,"orbit":2147483647}],"group":8,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Life and Mana Regeneration Rate","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":21284,"stats":["8% increased Life Regeneration rate","8% increased Mana Regeneration Rate"],"stringId":"AscendancyDruid1Small3"},"21286":{"connections":[{"id":4128,"orbit":4},{"id":45992,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":14,"skill":21286,"stats":["15% increased Armour"],"stringId":"armour21_"},"21291":{"connections":[{"id":59785,"orbit":0},{"id":32836,"orbit":-7}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Slow Effect on You","orbit":2,"orbitIndex":17,"skill":21291,"stats":["10% increased Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"armour24_"},"21314":{"connections":[{"id":50912,"orbit":-4}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":17,"skill":21314,"stats":["10% increased Attack Damage"],"stringId":"attack50"},"21324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":2,"orbitIndex":7,"skill":21324,"stats":[],"stringId":"mastery_block87"},"21327":{"connections":[{"id":56876,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Energy Shield if Consumed Power Charge","orbit":2,"orbitIndex":14,"skill":21327,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_charges11"},"21336":{"connections":[{"id":62984,"orbit":0}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":19,"skill":21336,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield26"},"21349":{"connections":[],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds","isNotable":true,"name":"The Quick Fox","orbit":2,"orbitIndex":4,"recipe":["Isolation","Despair","Suffering"],"skill":21349,"stats":["20% increased Deflection Rating while moving"],"stringId":"azmerianimals24_"},"21374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":243,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":7,"orbitIndex":21,"skill":21374,"stats":[],"stringId":"oracle_beast_corruption_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21380":{"connections":[],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Preemptive Strike","orbit":7,"orbitIndex":9,"recipe":["Guilt","Disgust","Greed"],"skill":21380,"stats":["100% increased Critical Damage Bonus against Enemies that are on Full Life"],"stringId":"criticals39"},"21387":{"connections":[{"id":53719,"orbit":0},{"id":3988,"orbit":0}],"group":192,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21387,"stats":["+5 to any Attribute"],"stringId":"strength67"},"21390":{"connections":[{"id":7972,"orbit":0}],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":12,"skill":21390,"stats":["20% increased Endurance Charge Duration"],"stringId":"endurance_charges3"},"21404":{"connections":[{"id":42825,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":18,"skill":21404,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery33"},"21413":{"connections":[{"id":28408,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start ","orbit":7,"orbitIndex":19,"skill":21413,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage28"},"21438":{"connections":[{"id":1019,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":21438,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion7"},"21453":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":10286,"orbit":0}],"group":230,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Breakage","orbit":0,"orbitIndex":0,"recipe":["Fear","Envy","Greed"],"skill":21453,"stats":["Break 60% increased Armour","10% chance to Defend with 200% of Armour"],"stringId":"armour_break34"},"21468":{"connections":[{"id":39274,"orbit":6}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":3,"orbitIndex":12,"skill":21468,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech19"},"21495":{"connections":[],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":14,"skill":21495,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks12"},"21519":{"ascendancyName":"Spirit Walker","connections":[{"id":765,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Shared Companion Damage","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":6,"orbitIndex":41,"skill":21519,"stats":["Companions deal 10% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"AscendancyHuntress2Small4"},"21537":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Fervour","orbit":2,"orbitIndex":16,"recipe":["Fear","Guilt","Isolation"],"skill":21537,"stats":["+2 to Maximum Frenzy Charges"],"stringId":"frenzy_charges9"},"21540":{"connections":[{"id":27658,"orbit":-3}],"group":874,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":21540,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup3"},"21549":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":58,"skill":21549,"stats":["20% increased Physical Damage"],"stringId":"oracle_hierarchy2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21560":{"connections":[{"id":44405,"orbit":-2},{"id":46819,"orbit":2147483647}],"group":800,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":21560,"stats":["12% increased Lightning Damage"],"stringId":"lightning62"},"21567":{"connections":[{"id":59710,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Spell Damage","orbit":7,"orbitIndex":23,"skill":21567,"stats":["12% increased Spell Damage if you have Shapeshifted to Human form Recently"],"stringId":"shapeshifting16"},"21568":{"connections":[{"id":26196,"orbit":0},{"id":26300,"orbit":-5},{"id":41105,"orbit":0},{"id":1040,"orbit":-7}],"group":303,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21568,"stats":["+5 to any Attribute"],"stringId":"attributes52"},"21572":{"connections":[{"id":6660,"orbit":-7},{"id":7526,"orbit":0}],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":2,"orbitIndex":20,"skill":21572,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments1"},"21606":{"connections":[{"id":2606,"orbit":0},{"id":29148,"orbit":0}],"group":627,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":12,"skill":21606,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence32"},"21627":{"connections":[{"id":19796,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":12,"skill":21627,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed24"},"21670":{"connections":[{"id":29358,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":1,"orbitIndex":7,"skill":21670,"stats":["15% increased Stun Buildup"],"stringId":"stun7"},"21684":{"connections":[{"id":1214,"orbit":5}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block and Shield Defences","orbit":2,"orbitIndex":6,"skill":21684,"stats":["4% increased Block chance","15% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block3"},"21713":{"connections":[{"id":11604,"orbit":0},{"id":50588,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":20,"skill":21713,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy12"},"21716":{"connections":[{"id":9583,"orbit":-5}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":4,"orbitIndex":9,"skill":21716,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech25"},"21721":{"connections":[{"id":15899,"orbit":0},{"id":55066,"orbit":0},{"id":62194,"orbit":2147483647}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":3,"orbitIndex":4,"skill":21721,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed23"},"21746":{"connections":[{"id":46782,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":21746,"stats":["+5 to any Attribute"],"stringId":"dexterity11"},"21748":{"connections":[{"id":54725,"orbit":0},{"id":6570,"orbit":0}],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Impending Doom","orbit":7,"orbitIndex":6,"recipe":["Envy","Isolation","Ire"],"skill":21748,"stats":["40% faster Curse Activation","Your Curses have 20% increased Magnitudes if 50% of Curse Duration expired"],"stringId":"curses5"},"21755":{"connections":[{"id":54127,"orbit":0},{"id":48635,"orbit":0},{"id":61281,"orbit":0},{"id":52274,"orbit":0}],"group":829,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21755,"stats":["+5 to any Attribute"],"stringId":"dexterity13"},"21779":{"connections":[{"id":57204,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":19,"skill":21779,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals20"},"21784":{"connections":[{"id":50118,"orbit":0},{"id":34443,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","isNotable":true,"name":"Pack Encouragement","orbit":7,"orbitIndex":11,"recipe":["Isolation","Disgust","Despair"],"skill":21784,"stats":["5% increased Attack Damage for each Minion in your Presence, up to a maximum of 80%"],"stringId":"companions35"},"21788":{"connections":[{"id":8573,"orbit":0},{"id":34612,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":21,"skill":21788,"stats":["12% increased Damage with Bows"],"stringId":"bow4"},"21792":{"connections":[{"id":29899,"orbit":2}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Life and Mana on Kill","orbit":1,"orbitIndex":0,"skill":21792,"stats":["Recover 1% of maximum Life on Kill","Recover 1% of maximum Mana on Kill"],"stringId":"slaying4"},"21801":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":1,"orbitIndex":10,"skill":21801,"stats":[],"stringId":"mastery_chaos47"},"21809":{"connectionArt":"CharacterPlanned","connections":[{"id":19162,"orbit":-6}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":54,"skill":21809,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21861":{"connections":[{"id":65243,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":18,"skill":21861,"stats":["20% increased Presence Area of Effect"],"stringId":"auras12"},"21871":{"connections":[{"id":51847,"orbit":0},{"id":37872,"orbit":0},{"id":25213,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage with nearby Ally","orbit":7,"orbitIndex":8,"skill":21871,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"stringId":"attack30"},"21885":{"connections":[{"id":1352,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":7,"orbitIndex":14,"skill":21885,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold27"},"21945":{"connections":[{"id":61718,"orbit":0},{"id":26572,"orbit":0},{"id":39128,"orbit":0},{"id":54545,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Damage and Criticals vs Dazed Enemies","orbit":0,"orbitIndex":0,"skill":21945,"stats":["5% chance to Daze on Hit"],"stringId":"daze_3"},"21982":{"connections":[{"id":47371,"orbit":0}],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Bleeding Chance","orbit":2,"orbitIndex":18,"skill":21982,"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"stringId":"warcries2"},"21984":{"connections":[{"id":61403,"orbit":0}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":4,"skill":21984,"stats":[],"stringId":"jewel_slot1979"},"21985":{"connections":[{"id":48925,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":4,"skill":21985,"stats":["10% increased Skill Effect Duration"],"stringId":"chill_and_freeze30"},"22045":{"connections":[{"id":13505,"orbit":3}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":14,"skill":22045,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration10"},"22049":{"connections":[{"id":60505,"orbit":0}],"group":1099,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","id":28255,"name":"Melee and Projectile Damage","stats":["10% increased Melee Damage","10% increased Projectile Damage"]}},"orbit":0,"orbitIndex":0,"skill":22049,"stats":["10% increased Projectile Damage"],"stringId":"ranged6"},"22057":{"connections":[{"id":30143,"orbit":2},{"id":36808,"orbit":4}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Defences","orbit":7,"orbitIndex":21,"skill":22057,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block20"},"22063":{"connections":[{"id":5797,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Freeze Buildup and Cold Damage","orbit":2,"orbitIndex":22,"skill":22063,"stats":["8% increased Cold Damage","8% increased Freeze Buildup"],"stringId":"daze_16"},"22115":{"connections":[{"id":61263,"orbit":0},{"id":59446,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Intelligence","orbit":1,"orbitIndex":10,"skill":22115,"stats":["+8 to Intelligence"],"stringId":"azmerianimals65"},"22133":{"connectionArt":"CharacterPlanned","connections":[{"id":39857,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":22133,"stats":["Minions have 25% increased Cooldown Recovery Rate for Command Skills"],"stringId":"oracle_solo_commander2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22141":{"connections":[{"id":54521,"orbit":0},{"id":51797,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":6,"skill":22141,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup8"},"22147":{"ascendancyName":"Chronomancer","connections":[{"id":18678,"orbit":0},{"id":50219,"orbit":0},{"id":1579,"orbit":0},{"id":27990,"orbit":-4},{"id":43128,"orbit":4},{"id":54194,"orbit":0}],"group":379,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Chronomancer","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":22147,"stats":[],"stringId":"AscendancySorceress2Start"},"22152":{"connections":[{"id":10382,"orbit":0},{"id":15304,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":10,"skill":22152,"stats":["3% increased Cast Speed"],"stringId":"cast_speed13"},"22185":{"connections":[{"id":17796,"orbit":5}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":9,"skill":22185,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies21"},"22188":{"connections":[{"id":38763,"orbit":-4},{"id":21274,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":0,"skill":22188,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds7"},"22208":{"connections":[{"id":15207,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Critical Chance","orbit":7,"orbitIndex":18,"skill":22208,"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"stringId":"accuracy11"},"22219":{"connections":[{"id":52351,"orbit":-7}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":16,"skill":22219,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers6"},"22221":{"connectionArt":"CharacterPlanned","connections":[{"id":57079,"orbit":-7}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":22221,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_big_family7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22270":{"connections":[{"id":1144,"orbit":0},{"id":12471,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":22270,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy50"},"22271":{"connections":[{"id":15083,"orbit":0}],"group":887,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":22271,"stats":["15% increased chance to Shock"],"stringId":"lightning23_"},"22290":{"connections":[{"id":48821,"orbit":-6},{"id":36302,"orbit":0}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":3,"orbitIndex":12,"skill":22290,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals10"},"22314":{"connections":[{"id":51184,"orbit":0},{"id":51968,"orbit":5}],"group":775,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":53140,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":0,"orbitIndex":0,"skill":22314,"stats":["8% increased Elemental Damage"],"stringId":"elemental14"},"22329":{"connections":[{"id":58526,"orbit":-2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":11,"skill":22329,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect36"},"22331":{"connections":[{"id":8983,"orbit":0},{"id":40200,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Resistances","orbit":1,"orbitIndex":3,"skill":22331,"stats":["Minions have +8% to all Elemental Resistances"],"stringId":"minion_defence11__"},"22359":{"connections":[{"id":60692,"orbit":-2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":22359,"stats":["10% increased Elemental Damage"],"stringId":"elemental41_"},"22368":{"connections":[{"id":63182,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":4,"orbitIndex":5,"skill":22368,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions20"},"22393":{"connections":[{"id":28458,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":22393,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence5"},"22419":{"connections":[{"id":18407,"orbit":0},{"id":4739,"orbit":0}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":22419,"stats":["+5 to any Attribute"],"stringId":"intelligence11"},"22439":{"connections":[{"id":5936,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":22439,"stats":["10% increased Elemental Damage"],"stringId":"elemental21"},"22484":{"connections":[{"id":5398,"orbit":-4}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast Speed","orbit":7,"orbitIndex":18,"skill":22484,"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"stringId":"totems32"},"22517":{"connections":[{"id":59644,"orbit":4},{"id":32896,"orbit":-4}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":0,"skill":22517,"stats":["8% chance to Poison on Hit"],"stringId":"poison33"},"22532":{"connections":[{"id":60488,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Fearful Paralysis","orbit":2,"orbitIndex":1,"recipe":["Disgust","Fear","Ire"],"skill":22532,"stats":["Enemies are Intimidated for 4 seconds when you Immobilise them"],"stringId":"immobilisation6"},"22533":{"connections":[{"id":26663,"orbit":-2},{"id":21274,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":23,"skill":22533,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns17"},"22538":{"connections":[{"id":64659,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":18,"skill":22538,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slowed_enemies17"},"22541":{"ascendancyName":"Smith of Kitava","connections":[],"group":5,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds","isNotable":true,"name":"Heat of the Forge","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":22541,"stats":["Grants Skill: Fire Spell on Hit"],"stringId":"AscendancyWarrior3Notable1"},"22556":{"connections":[{"id":11257,"orbit":0},{"id":35028,"orbit":7}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":15,"skill":22556,"stats":["30% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded4"},"22558":{"connections":[{"id":55933,"orbit":0},{"id":20547,"orbit":0},{"id":62378,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":66,"skill":22558,"stats":["+5 to any Attribute"],"stringId":"strength9"},"22565":{"connections":[{"id":26648,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":1,"skill":22565,"stats":["10% increased Armour","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"deflect31"},"22616":{"connections":[{"id":51052,"orbit":0},{"id":17468,"orbit":0},{"id":48631,"orbit":0},{"id":19122,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":22616,"stats":["+5 to any Attribute"],"stringId":"strength11"},"22626":{"connections":[{"id":45227,"orbit":0},{"id":48717,"orbit":0}],"group":208,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Irreparable","orbit":7,"orbitIndex":4,"recipe":["Guilt","Despair","Disgust"],"skill":22626,"stats":["100% increased Armour Break Duration"],"stringId":"armour_break36"},"22661":{"ascendancyName":"Ritualist","connections":[{"id":30233,"orbit":8}],"group":1622,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":22661,"stats":["3% increased Movement Speed"],"stringId":"AscendancyHuntress3Small8"},"22682":{"connections":[],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":4,"skill":22682,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"spells21_"},"22691":{"connections":[{"id":39037,"orbit":-6},{"id":61027,"orbit":-9}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":19990,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":0,"orbitIndex":0,"skill":22691,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery29"},"22697":{"connections":[{"id":43250,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":2,"orbitIndex":10,"skill":22697,"stats":["+5% to Lightning Resistance"],"stringId":"shaman3"},"22710":{"connections":[{"id":45111,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":8,"skill":22710,"stats":["20% increased Curse Duration"],"stringId":"curses12"},"22713":{"connections":[{"id":19722,"orbit":0},{"id":4959,"orbit":0},{"id":19003,"orbit":0}],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":6,"skill":22713,"stats":["10% increased Cold Damage"],"stringId":"cold3"},"22726":{"connections":[],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"Storm's Rebuke","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Suffering","Suffering"],"skill":22726,"stats":["Fully Broken Armour you inflict also increases Cold and Lightning Damage Taken from Hits"],"stringId":"DeliriumAnoint_StormsRebuke_"},"22783":{"connections":[{"id":18160,"orbit":0},{"id":17501,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":10,"skill":22783,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation1"},"22784":{"connections":[{"id":17057,"orbit":7},{"id":13515,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect on You","orbit":2,"orbitIndex":6,"skill":22784,"stats":["10% reduced effect of Shock on you"],"stringId":"ground12"},"22795":{"connections":[{"id":28992,"orbit":0},{"id":42781,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","id":29915,"name":"Melee and Projectile Damage","stats":["10% increased Melee Damage","10% increased Projectile Damage"]}},"orbit":7,"orbitIndex":21,"skill":22795,"stats":["10% increased Projectile Damage"],"stringId":"projectiles16"},"22811":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":3170,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds","isNotable":true,"name":"The Wild Cat","orbit":2,"orbitIndex":0,"recipe":["Disgust","Fear","Guilt"],"skill":22811,"stats":["Gain Deflection Rating equal to 12% of Evasion Rating","40% increased Evasion Rating while moving","+10 to Dexterity"],"stringId":"azmerianimals42"},"22817":{"connections":[{"id":55724,"orbit":0},{"id":29065,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Inevitable Rupture","orbit":3,"orbitIndex":18,"recipe":["Greed","Ire","Paranoia"],"skill":22817,"stats":["10% chance for Attack Hits to apply ten Incision"],"stringId":"bleed31"},"22821":{"connections":[{"id":3823,"orbit":0},{"id":22314,"orbit":0}],"group":775,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":183,"name":"Minion Damage","stats":["Minions deal 10% increased Damage"]}},"orbit":7,"orbitIndex":0,"skill":22821,"stats":["10% increased Elemental Damage"],"stringId":"cold2"},"22851":{"connections":[{"id":50268,"orbit":2147483647}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Cold and Lightning Damage","orbit":2,"orbitIndex":0,"skill":22851,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"stringId":"monkchakra21"},"22864":{"connections":[{"id":57966,"orbit":0}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Tainted Strike","orbit":3,"orbitIndex":21,"recipe":["Ire","Despair","Greed"],"skill":22864,"stats":["20% increased Critical Hit Chance for Attacks","30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"stringId":"criticals79"},"22873":{"connections":[{"id":7777,"orbit":7},{"id":64318,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":4,"skill":22873,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"stringId":"elemental4"},"22908":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":24,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds","isNotable":true,"name":"Tribute to Utula","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":22908,"stats":["Body Armour grants 30% increased Spirit"],"stringId":"AscendancyWarrior3Notable6_6"},"22927":{"connections":[{"id":20582,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude and Duration","orbit":6,"orbitIndex":24,"skill":22927,"stats":["6% increased Parried Debuff Magnitude","8% increased Parried Debuff Duration"],"stringId":"buckler11"},"22928":{"connections":[{"id":27373,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":69,"skill":22928,"stats":["+5 to any Attribute"],"stringId":"strength20"},"22949":{"connections":[{"id":35171,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":3,"orbitIndex":20,"skill":22949,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells4_"},"22959":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":999,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":22959,"stats":[],"stringId":"mastery_curse75"},"22962":{"connections":[{"id":22817,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":7,"orbitIndex":14,"skill":22962,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed39"},"22967":{"connections":[{"id":49198,"orbit":-7},{"id":38921,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Vigilance","orbit":3,"orbitIndex":1,"recipe":["Guilt","Envy","Guilt"],"skill":22967,"stats":["12% increased Block chance","10 Life gained when you Block","+2% to maximum Block chance"],"stringId":"shield25"},"22972":{"connections":[{"id":43238,"orbit":0},{"id":50879,"orbit":0}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":22972,"stats":["16% increased Hazard Damage"],"stringId":"hazards6"},"22975":{"connections":[{"id":27439,"orbit":0},{"id":26725,"orbit":0},{"id":51702,"orbit":0}],"group":325,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":22975,"stats":["+5 to any Attribute"],"stringId":"attributes58"},"22976":{"connections":[{"id":42250,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":6,"orbitIndex":12,"skill":22976,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life14"},"23005":{"ascendancyName":"Warbringer","connections":[{"id":10072,"orbit":0}],"group":54,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds","isNotable":true,"name":"Renly's Training","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":23005,"stats":["Gain 35% Base Chance to Block from Equipped Shield instead of the Shield's value"],"stringId":"AscendancyWarrior2Notable8"},"23013":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":42,"skill":23013,"stats":[],"stringId":"mastery_attack280"},"23036":{"connections":[{"id":3339,"orbit":0},{"id":59208,"orbit":2}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":15,"skill":23036,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded14"},"23039":{"connections":[{"id":64770,"orbit":-5}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Energy Shield Delay and Armour Applies to Elemental Damage","orbit":3,"orbitIndex":16,"skill":23039,"stats":["+3% of Armour also applies to Elemental Damage","5% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour23"},"23040":{"connections":[{"id":38493,"orbit":4}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":23040,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals58"},"23046":{"connections":[{"id":47976,"orbit":5}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":4,"orbitIndex":27,"skill":23046,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery8"},"23062":{"connections":[{"id":19122,"orbit":0}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Armour if Consumed Endurance Charge","orbit":2,"orbitIndex":0,"skill":23062,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"endurance_charges10"},"23078":{"connections":[{"id":47242,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","isNotable":true,"name":"Holy Protector","orbit":3,"orbitIndex":16,"recipe":["Disgust","Despair","Suffering"],"skill":23078,"stats":["Minions have 25% increased maximum Life","10% increased Block chance"],"stringId":"sentinels11"},"23091":{"connections":[{"id":45885,"orbit":0},{"id":39515,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":23091,"stats":["12% increased Fire Damage"],"stringId":"fire13"},"23105":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1496,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":23105,"stats":[],"stringId":"mastery_attack6"},"23153":{"connections":[{"id":23996,"orbit":0},{"id":39298,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":14,"skill":23153,"stats":["15% increased Ballista damage"],"stringId":"ballista10"},"23192":{"connections":[],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":42,"skill":23192,"stats":["5% increased Block chance"],"stringId":"block2"},"23195":{"connections":[{"id":55375,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","name":"Life and Mana Regeneration Rate","orbit":2,"orbitIndex":1,"skill":23195,"stats":["10% increased Life Regeneration rate","10% increased Mana Regeneration Rate"],"stringId":"companions48"},"23221":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Trick Shot","orbit":3,"orbitIndex":23,"recipe":["Suffering","Isolation","Guilt"],"skill":23221,"stats":["Projectiles have 15% chance to Chain an additional time from terrain"],"stringId":"ranged33"},"23227":{"connections":[],"group":643,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Initiative","orbit":4,"orbitIndex":0,"recipe":["Greed","Ire","Envy"],"skill":23227,"stats":["30% increased Melee Damage when on Full Life","16% increased Attack Speed if you haven't Attacked Recently"],"stringId":"melee40"},"23244":{"connections":[{"id":21792,"orbit":2},{"id":6912,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Bounty Hunter","orbit":7,"orbitIndex":3,"recipe":["Despair","Suffering","Guilt"],"skill":23244,"stats":["Recover 1% of maximum Life on Kill","Recover 1% of maximum Mana on Kill","25% increased Culling Strike Threshold"],"stringId":"slaying11"},"23253":{"connections":[{"id":15625,"orbit":0},{"id":22811,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":6,"skill":23253,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals39"},"23259":{"connections":[{"id":22864,"orbit":0}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":21,"skill":23259,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals78"},"23265":{"ascendancyName":"Disciple of Varashta","connections":[{"id":13289,"orbit":8}],"flavourText":"\"Listen not to his simpering words. He means to languish before you to weaken your resolve! He is duplicitous. An assassin, thriving on deception and lies. His lust for power is what drove his choice!\" \\n\\nOutrage trembled in Ruzhan's voice at the sentencing.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds","isNotable":true,"name":"Kelari's Deception","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":9,"orbitIndex":38,"skill":23265,"stats":["Grants Skill: Kelari's Deception"],"stringId":"AscendancySorceress3Notable13"},"23305":{"connections":[{"id":21279,"orbit":-3},{"id":51602,"orbit":0}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":3,"skill":23305,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks28"},"23307":{"connections":[{"id":10100,"orbit":0},{"id":59945,"orbit":0},{"id":59886,"orbit":0}],"group":200,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":23307,"stats":["+5 to any Attribute"],"stringId":"strength59_"},"23331":{"connections":[{"id":2344,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":3,"skill":23331,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"oracle2"},"23343":{"connections":[{"id":58388,"orbit":3}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":21,"skill":23343,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks24"},"23352":{"ascendancyName":"Lich","connections":[{"id":8611,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds","isNotable":true,"isSwitchable":true,"name":"Rupture the Soul","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds","id":390,"name":"Rupture the Flesh","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Cursed Enemies Killed by you, or by Allies in your Presence, have a 33% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"]}},"orbit":8,"orbitIndex":62,"skill":23352,"stats":["Cursed Enemies killed by you, or by Allies in your Presence, have a 33% chance to explode, dealing a quarter of their maximum Life as Chaos damage"],"stringId":"AscendancyWitch3Notable2"},"23360":{"connections":[{"id":53566,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Reduced Movement Penalty and Attack Damage while Moving","orbit":4,"orbitIndex":33,"skill":23360,"stats":["8% increased Attack Damage while moving","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"slow_mitigation13"},"23362":{"connections":[{"id":32672,"orbit":0},{"id":50403,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Slippery Ice","orbit":3,"orbitIndex":9,"recipe":["Despair","Disgust","Greed"],"skill":23362,"stats":["25% reduced Effect of Chill on you","Unaffected by Chill during Dodge Roll"],"stringId":"freeze_and_chill_mitigation10"},"23364":{"connections":[{"id":33781,"orbit":2},{"id":48614,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area and Presence","orbit":0,"orbitIndex":0,"skill":23364,"stats":["9% increased Presence Area of Effect","3% increased Area of Effect"],"stringId":"auras31"},"23373":{"connections":[{"id":23428,"orbit":0},{"id":8493,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":22,"skill":23373,"stats":["12% increased Grenade Damage"],"stringId":"grenades19"},"23374":{"connections":[{"id":2500,"orbit":0}],"group":1536,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":0,"orbitIndex":0,"skill":23374,"stats":["8% chance to Poison on Hit"],"stringId":"poison10"},"23382":{"connections":[{"id":59093,"orbit":0},{"id":7960,"orbit":0},{"id":9065,"orbit":0},{"id":54297,"orbit":0},{"id":8982,"orbit":0},{"id":9884,"orbit":4}],"group":344,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":23382,"stats":["+5 to any Attribute"],"stringId":"intelligence41__"},"23415":{"ascendancyName":"Invoker","connections":[{"id":8143,"orbit":9}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Evasion and Energy Shield","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":9,"orbitIndex":14,"skill":23415,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"stringId":"AscendancyMonk2Small1"},"23416":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds","isNotable":true,"name":"Vitality Siphon","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":6,"orbitIndex":64,"skill":23416,"stats":["20% of Spell Damage Leeched as Life"],"stringId":"AscendancyWitch2Notable6"},"23419":{"connections":[{"id":55930,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":20,"skill":23419,"stats":["15% increased Glory generation"],"stringId":"glory18"},"23427":{"connections":[{"id":62914,"orbit":5}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Chilled to the Bone","orbit":4,"orbitIndex":54,"recipe":["Suffering","Despair","Despair"],"skill":23427,"stats":["20% increased Chill Duration on Enemies","30% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze14"},"23428":{"connections":[{"id":47623,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":18,"skill":23428,"stats":["12% increased Grenade Damage"],"stringId":"grenades20"},"23436":{"connectionArt":"CharacterPlanned","connections":[{"id":29197,"orbit":-3}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":39,"skill":23436,"stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"stringId":"oracle_archon_crit2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23450":{"connections":[{"id":558,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":6,"skill":23450,"stats":["12% increased Fire Damage"],"stringId":"fire11_"},"23455":{"connections":[{"id":49740,"orbit":0},{"id":55847,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":23455,"stats":["10% increased Cold Damage"],"stringId":"cold_penetration13"},"23508":{"ascendancyName":"Deadeye","connections":[],"group":1560,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds","isNotable":true,"name":"Thrilling Chase","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":23508,"stats":["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"],"stringId":"AscendancyRanger1Notable6"},"23547":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":23547,"stats":[],"stringId":"mastery_chaos48"},"23570":{"connections":[{"id":41031,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":18,"skill":23570,"stats":["+5 to any Attribute"],"stringId":"strength26"},"23587":{"ascendancyName":"Invoker","connections":[{"id":25434,"orbit":7},{"id":29133,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds","isNotable":true,"name":"I am the Blizzard...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":5,"orbitIndex":9,"skill":23587,"stats":["Gain 10% of Damage as Extra Cold Damage","On Freezing Enemies create Chilled Ground"],"stringId":"AscendancyMonk2Notable4"},"23608":{"connections":[{"id":61741,"orbit":2},{"id":24401,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":20,"skill":23608,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison19"},"23630":{"connections":[{"id":19794,"orbit":7},{"id":17885,"orbit":7},{"id":38320,"orbit":0}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Self Immolation","orbit":4,"orbitIndex":0,"recipe":["Suffering","Despair","Fear"],"skill":23630,"stats":["Ignites you cause are reflected back to you","40% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation13"},"23650":{"connections":[{"id":43895,"orbit":3}],"group":618,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration on Low Life","orbit":2,"orbitIndex":12,"skill":23650,"stats":["15% increased Life Regeneration Rate while on Low Life"],"stringId":"life_regeneration5"},"23667":{"connections":[{"id":25312,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":40,"skill":23667,"stats":["16% increased Totem Life"],"stringId":"totems45"},"23702":{"connections":[{"id":55802,"orbit":0},{"id":57196,"orbit":0},{"id":63445,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":10,"skill":23702,"stats":["3% increased Attack Speed"],"stringId":"attack_speed42"},"23708":{"connectionArt":"CharacterPlanned","connections":[{"id":3896,"orbit":2147483647}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":12,"skill":23708,"stats":["30% increased Armour while Bleeding"],"stringId":"oracle_iron_blood3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23710":{"ascendancyName":"Lich","connections":[{"id":58751,"orbit":0},{"id":2995,"orbit":5},{"id":51142,"orbit":-4},{"id":39241,"orbit":-6},{"id":33141,"orbit":5},{"id":62797,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"isSwitchable":true,"name":"Lich","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":9,"orbitIndex":0,"skill":23710,"stats":[],"stringId":"AscendancyWitch3Start_"},"23724":{"connections":[{"id":7275,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":7,"orbitIndex":22,"skill":23724,"stats":["10% increased Lightning Damage"],"stringId":"shock_mitigation11"},"23736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Spray and Pray","orbit":4,"orbitIndex":38,"recipe":["Fear","Greed","Suffering"],"skill":23736,"stats":["20% reduced Accuracy Rating while moving","50% increased Attack Damage while moving","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"slow_mitigation15"},"23738":{"connections":[{"id":34520,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Madness in the Bones","orbit":0,"orbitIndex":0,"recipe":["Ire","Paranoia","Suffering"],"skill":23738,"stats":["Gain 8% of Physical Damage as extra Chaos Damage"],"stringId":"physical33"},"23764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":997,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Alternating Current","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Suffering"],"skill":23764,"stats":["25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently","20% increased Magnitude of Shock you inflict"],"stringId":"lightning45"},"23786":{"connections":[{"id":33391,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Critical Bleeding Effect","orbit":2,"orbitIndex":9,"skill":23786,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"stringId":"bleed3"},"23797":{"connections":[{"id":31370,"orbit":2147483647}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Lightning Damage","orbit":2,"orbitIndex":8,"skill":23797,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"stringId":"armour43"},"23822":{"connections":[{"id":9652,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":0,"skill":23822,"stats":["3% of Damage taken Recouped as Life"],"stringId":"deflect61"},"23825":{"connections":[{"id":24325,"orbit":7},{"id":11572,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate","orbit":7,"orbitIndex":15,"skill":23825,"stats":["10% increased Life Regeneration rate"],"stringId":"life_recoup10"},"23839":{"connections":[{"id":51006,"orbit":-2}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":2,"orbitIndex":2,"skill":23839,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"mana_flasks7"},"23861":{"connections":[],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage and Stun","orbit":7,"orbitIndex":8,"skill":23861,"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"stringId":"two_handed10"},"23879":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":374,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":23879,"stats":[],"stringId":"mastery_shapeshifting_6688"},"23880":{"ascendancyName":"Infernalist","connections":[{"id":13174,"orbit":3}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Mana","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":0,"skill":23880,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch1Small7"},"23888":{"connections":[{"id":7390,"orbit":7},{"id":54099,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":0,"skill":23888,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion21"},"23905":{"connections":[{"id":27875,"orbit":0}],"group":1255,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":23905,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock20"},"23907":{"connections":[{"id":17044,"orbit":2147483647},{"id":39476,"orbit":0},{"id":6554,"orbit":-2}],"group":792,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Ice Storm","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Disgust"],"skill":23907,"stats":["15% reduced Effect of Chill on you","Gain 6% of Cold damage as Extra Lightning damage","15% increased Magnitude of Chill you inflict"],"stringId":"cold68"},"23915":{"connections":[{"id":41529,"orbit":-1}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":23915,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals23"},"23930":{"connections":[{"id":46024,"orbit":0},{"id":58295,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":40,"skill":23930,"stats":["10% increased Elemental Damage"],"stringId":"elemental8_"},"23932":{"connectionArt":"CharacterPlanned","connections":[{"id":8423,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":69,"skill":23932,"stats":["5% increased Attack Speed with Bows"],"stringId":"oracle_bow_movement7_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23939":{"connections":[{"id":857,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Glazed Flesh","orbit":7,"orbitIndex":12,"recipe":["Isolation","Fear","Fear"],"skill":23939,"stats":["3% of Damage Taken Recouped as Life, Mana and Energy Shield"],"stringId":"life_recoup18"},"23940":{"connections":[{"id":14342,"orbit":3},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Fortified Aegis","orbit":7,"orbitIndex":20,"recipe":["Isolation","Envy","Ire"],"skill":23940,"stats":["100% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"energy_shield_and_armour12"},"23960":{"aliasPassiveSocket":"voices_jewel_slot3__","connections":[],"group":701,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":23960,"stats":[],"stringId":"voices_jewel_slot3__"},"23961":{"connections":[{"id":8791,"orbit":-2}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Ailment Threshold and Companion Resistance","orbit":7,"orbitIndex":4,"skill":23961,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"stringId":"companions33"},"23993":{"connections":[{"id":42981,"orbit":0},{"id":52684,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":23993,"stats":["12% increased Physical Damage"],"stringId":"armour_break29"},"23996":{"connections":[{"id":63828,"orbit":0},{"id":57785,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":23996,"stats":["15% increased Ballista damage"],"stringId":"ballista9"},"24009":{"connections":[{"id":34433,"orbit":-4},{"id":21755,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":27,"skill":24009,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion19"},"24035":{"connections":[{"id":60741,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":18,"skill":24035,"stats":["10% increased Elemental Damage"],"stringId":"elemental60"},"24039":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds","isNotable":true,"name":"Beidat's Hand","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":5,"orbitIndex":51,"skill":24039,"stats":["Reserves 25% of Life","+1 to Maximum Energy Shield per 8 Maximum Life"],"stringId":"AscendancyWitch1Notable2"},"24045":{"connections":[],"group":995,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":9,"skill":24045,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks3"},"24060":{"connections":[{"id":3091,"orbit":2147483647}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":1,"orbitIndex":2,"skill":24060,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion12"},"24062":{"connections":[{"id":54351,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","isNotable":true,"name":"Immortal Infamy","orbit":5,"orbitIndex":21,"recipe":["Envy","Suffering","Fear"],"skill":24062,"stats":["6% increased Life Recovery rate","Recover 2% of maximum Life on Kill","+10 to Intelligence"],"stringId":"life_on_kill13"},"24070":{"connections":[{"id":58397,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":24070,"stats":["+8 to Dexterity"],"stringId":"dexterity106"},"24087":{"connections":[{"id":13882,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Everlasting Infusions","orbit":3,"orbitIndex":18,"recipe":["Guilt","Suffering","Despair"],"skill":24087,"stats":["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"],"stringId":"infusion3"},"24120":{"connections":[{"id":10495,"orbit":0}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Mental Toughness","orbit":0,"orbitIndex":0,"recipe":["Envy","Fear","Greed"],"skill":24120,"stats":["18% increased Mana Regeneration Rate","25% increased Mana Cost Efficiency while on Low Mana"],"stringId":"mana20"},"24129":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":24129,"stats":[],"stringId":"mastery_critical_268"},"24135":{"ascendancyName":"Infernalist","connections":[{"id":34419,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":6,"skill":24135,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyWitch1Small9"},"24150":{"connections":[{"id":44369,"orbit":-7}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":2,"orbitIndex":3,"skill":24150,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility5"},"24165":{"connections":[{"id":8908,"orbit":0},{"id":25557,"orbit":0},{"id":4328,"orbit":-6},{"id":6079,"orbit":0}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24165,"stats":["+5 to any Attribute"],"stringId":"attributes56"},"24178":{"connections":[{"id":32655,"orbit":-9}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":2,"orbitIndex":15,"skill":24178,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions36"},"24210":{"connections":[{"id":26932,"orbit":-7}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":7,"orbitIndex":0,"skill":24210,"stats":["20% increased Frenzy Charge Duration"],"stringId":"azmerianimals26"},"24224":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","connections":[],"group":186,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","isOnlyImage":true,"name":"Axe Mastery","orbit":0,"orbitIndex":0,"skill":24224,"stats":[],"stringId":"mastery_axe26"},"24226":{"ascendancyName":"Deadeye","connections":[],"group":1550,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds","isNotable":true,"name":"Bullseye","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":24226,"stats":["Apply 10 Critical Weakness to Enemies when Consuming a Mark on them"],"stringId":"AscendancyRanger1Notable8"},"24239":{"connections":[{"id":34136,"orbit":0}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":9,"skill":24239,"stats":["Gain 5 Life per enemy killed"],"stringId":"life_on_kill10"},"24240":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[{"id":11764,"orbit":-7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Time Manipulation","orbit":0,"orbitIndex":0,"recipe":["Fear","Despair","Envy"],"skill":24240,"stats":["Debuffs you inflict have 10% increased Slow Magnitude","Debuffs on you expire 20% faster"],"stringId":"slowed_enemies9"},"24256":{"connections":[{"id":63541,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":15,"skill":24256,"stats":["10% increased Evasion Rating","+5% of Armour also applies to Elemental Damage"],"stringId":"deflect33"},"24259":{"connections":[{"id":62609,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Attack Speed","orbit":5,"orbitIndex":32,"skill":24259,"stats":["Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems44"},"24269":{"connections":[{"id":1448,"orbit":-4},{"id":42118,"orbit":-5}],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion and Companion Movement Speed","orbit":3,"orbitIndex":2,"skill":24269,"stats":["10% increased Evasion Rating","Companions have 8% increased Movement Speed"],"stringId":"companions57__"},"24287":{"connections":[{"id":34015,"orbit":0},{"id":14226,"orbit":0}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24287,"stats":["+5 to any Attribute"],"stringId":"dexterity82_"},"24295":{"ascendancyName":"Deadeye","connections":[{"id":37336,"orbit":2147483647}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Frenzy Charge Duration","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":8,"orbitIndex":20,"skill":24295,"stats":["25% increased Frenzy Charge Duration"],"stringId":"AscendancyRanger1Small5"},"24325":{"connections":[{"id":40006,"orbit":7}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate and Presence","orbit":7,"orbitIndex":11,"skill":24325,"stats":["5% increased Life Regeneration rate","10% increased Presence Area of Effect"],"stringId":"life_recoup24"},"24338":{"connections":[{"id":48581,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":5,"orbitIndex":70,"skill":24338,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments5"},"24339":{"connections":[{"id":58295,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":24339,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks38"},"24368":{"connections":[{"id":37302,"orbit":0},{"id":40597,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":0,"skill":24368,"stats":["15% increased Ballista damage"],"stringId":"ballista5"},"24401":{"connections":[{"id":63759,"orbit":0}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":24401,"stats":["10% increased Poison Duration"],"stringId":"poison37"},"24420":{"connections":[{"id":33829,"orbit":0},{"id":9442,"orbit":-2}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":22,"skill":24420,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals93_"},"24430":{"connections":[{"id":3601,"orbit":0},{"id":38707,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":66,"skill":24430,"stats":["10% increased Elemental Damage"],"stringId":"elemental9"},"24438":{"connections":[{"id":46748,"orbit":0},{"id":17745,"orbit":0}],"group":519,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Hardened Wood","orbit":0,"orbitIndex":0,"recipe":["Despair","Greed","Despair"],"skill":24438,"stats":["Totems gain +20% to all Elemental Resistances","Totems have 20% additional Physical Damage Reduction"],"stringId":"totems20"},"24475":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":59759,"orbit":-9}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Resistance","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":8,"orbitIndex":8,"skill":24475,"stats":["+7% to Chaos Resistance"],"stringId":"AscendancyMonk3Small4_"},"24477":{"connections":[{"id":17532,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":2,"orbitIndex":16,"skill":24477,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold22"},"24481":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":24481,"stats":[],"stringId":"mastery_dagger80"},"24483":{"connections":[{"id":32660,"orbit":0},{"id":62661,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Direct Approach","orbit":3,"orbitIndex":17,"recipe":["Disgust","Paranoia","Paranoia"],"skill":24483,"stats":["35% increased Critical Hit Chance against Enemies that are affected","by no Elemental Ailments"],"stringId":"criticals27"},"24491":{"connections":[{"id":20140,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Invocated Echoes","orbit":4,"orbitIndex":0,"recipe":["Guilt","Greed","Isolation"],"skill":24491,"stats":["Invocated Spells have 40% chance to consume half as much Energy"],"stringId":"triggers20"},"24511":{"connections":[{"id":49696,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":6,"skill":24511,"stats":["+3 to all Attributes"],"stringId":"all_attributes15"},"24551":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":299,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":24551,"stats":[],"stringId":"mastery_mana_6596"},"24570":{"connections":[{"id":28441,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blinded Enemies Critical","orbit":2,"orbitIndex":19,"skill":24570,"stats":["Enemies Blinded by you have 15% reduced Critical Hit Chance"],"stringId":"blind13"},"24630":{"connections":[{"id":63608,"orbit":0}],"group":97,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Fulmination","orbit":0,"orbitIndex":0,"recipe":["Suffering","Suffering","Greed"],"skill":24630,"stats":["80% increased Flammability Magnitude","40% increased Damage with Hits against Ignited Enemies"],"stringId":"fire40"},"24646":{"connections":[{"id":61409,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":24646,"stats":["+12 to Strength"],"stringId":"strength103"},"24647":{"connections":[{"id":5702,"orbit":4},{"id":43691,"orbit":0},{"id":30634,"orbit":4}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":24647,"stats":["+5 to any Attribute"],"stringId":"dexterity5"},"24655":{"connections":[{"id":7333,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Breath of Fire","orbit":4,"orbitIndex":30,"recipe":["Fear","Ire","Isolation"],"skill":24655,"stats":["Damage Penetrates 15% Fire Resistance","+10 to Strength"],"stringId":"fire_penetration23_"},"24656":{"connections":[{"id":54152,"orbit":0},{"id":15814,"orbit":0}],"group":1410,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion and Movement Speed while Sprinting","orbit":0,"orbitIndex":0,"skill":24656,"stats":["15% increased Evasion Rating while Sprinting","2% increased Movement Speed while Sprinting"],"stringId":"Sprint7"},"24696":{"ascendancyName":"Tactician","connections":[{"id":4086,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Totem Damage","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":24696,"stats":["20% increased Totem Damage"],"stringId":"AscendancyMercenary1Small10"},"24721":{"connections":[],"group":1241,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Brain Freeze","orbit":0,"orbitIndex":0,"recipe":["Greed","Ire","Suffering"],"skill":24721,"stats":["20% increased Cold Damage","Enemies Frozen by you have -8% to Cold Resistance"],"stringId":"cold69_"},"24736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":3191,"orbit":3}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Knight of Chitus","orbit":4,"orbitIndex":32,"recipe":["Isolation","Fear","Envy"],"skill":24736,"stats":["Gain Deflection Rating equal to 12% of Evasion Rating","15% increased Block chance","15% increased Parried Debuff Magnitude"],"stringId":"armour_and_evasion51"},"24748":{"connections":[{"id":4716,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":15,"skill":24748,"stats":["15% increased Evasion Rating"],"stringId":"evasion36"},"24753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":34747,"orbit":0},{"id":56567,"orbit":0},{"id":151,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Determined Precision","orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Envy"],"skill":24753,"stats":["30% increased Accuracy Rating at Close Range","+10 to Dexterity"],"stringId":"accuracy17"},"24764":{"connections":[{"id":65226,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Infusing Power","orbit":7,"orbitIndex":17,"recipe":["Fear","Paranoia","Suffering"],"skill":24764,"stats":["10% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"stringId":"infusion2"},"24766":{"connections":[{"id":11257,"orbit":-3},{"id":31566,"orbit":-7},{"id":51974,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Paranoia","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Suffering"],"skill":24766,"stats":["50% increased Surrounded Area of Effect"],"stringId":"being_surrounded22"},"24767":{"connections":[{"id":36474,"orbit":-3}],"group":354,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":2,"orbitIndex":8,"skill":24767,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus4"},"24786":{"connections":[{"id":24287,"orbit":0},{"id":30657,"orbit":0},{"id":4378,"orbit":0},{"id":21225,"orbit":0},{"id":58848,"orbit":0},{"id":12893,"orbit":0}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24786,"stats":["+5 to any Attribute"],"stringId":"dexterity81"},"24801":{"connections":[{"id":40736,"orbit":7}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage and Presence Area","orbit":3,"orbitIndex":14,"skill":24801,"stats":["10% increased Presence Area of Effect","6% increased Attack Damage"],"stringId":"glory10"},"24807":{"ascendancyName":"Titan","connections":[],"group":69,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds","isNotable":true,"name":"Stone Skin","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":24807,"stats":["50% more Armour from Equipped Body Armour"],"stringId":"AscendancyWarrior1Notable8"},"24812":{"connections":[{"id":64643,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":11,"skill":24812,"stats":["20% increased Power Charge Duration"],"stringId":"power_charges1"},"24813":{"connections":[{"id":20397,"orbit":3}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":14,"skill":24813,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks19"},"24825":{"connections":[{"id":16460,"orbit":-3},{"id":29479,"orbit":-3},{"id":60738,"orbit":-3}],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":10,"skill":24825,"stats":["+5 to any Attribute"],"stringId":"dexterity14"},"24843":{"connections":[{"id":1680,"orbit":-7},{"id":56860,"orbit":0}],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Evasion during Parry","orbit":7,"orbitIndex":20,"skill":24843,"stats":["25% increased Evasion Rating while Parrying"],"stringId":"buckler20"},"24855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":39347,"orbit":0},{"id":48014,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":58,"skill":24855,"stats":[],"stringId":"mastery_attack3"},"24868":{"ascendancyName":"Pathfinder","connections":[{"id":33736,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds","isNotable":true,"name":"Relentless Pursuit","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":9,"orbitIndex":72,"skill":24868,"stats":["Your speed is unaffected by Slows"],"stringId":"AscendancyRanger3Notable2"},"24871":{"connections":[{"id":10602,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Attack Speed","orbit":4,"orbitIndex":4,"skill":24871,"stats":["3% increased Attack Speed with One Handed Weapons"],"stringId":"attack_speed6"},"24880":{"connections":[{"id":38501,"orbit":-7}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":5,"orbitIndex":36,"skill":24880,"stats":["3% increased Attack Speed"],"stringId":"attack_speed4"},"24883":{"connections":[{"id":44573,"orbit":1}],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Combo","orbit":2,"orbitIndex":10,"skill":24883,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"stringId":"area_attacks49"},"24889":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":7,"orbitIndex":2,"skill":24889,"stats":[],"stringId":"mastery_companion291"},"24922":{"connections":[{"id":18923,"orbit":0},{"id":64345,"orbit":0},{"id":17077,"orbit":0}],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24922,"stats":["+5 to any Attribute"],"stringId":"attributes19"},"24929":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":202,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":2,"orbitIndex":19,"skill":24929,"stats":[],"stringId":"oracle_self_sacrificing_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"24948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1434,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":24948,"stats":[],"stringId":"mastery_companion297"},"24958":{"connections":[{"id":52464,"orbit":-4},{"id":41877,"orbit":6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":24958,"stats":["+5 to any Attribute"],"stringId":"dexterity44"},"24963":{"connections":[{"id":39298,"orbit":0},{"id":19224,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":4,"orbitIndex":63,"skill":24963,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion42_"},"24993":{"connectionArt":"CharacterPlanned","connections":[{"id":54297,"orbit":6}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":5,"skill":24993,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption11_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":569,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":25011,"stats":[],"stringId":"mastery_life141"},"25014":{"connections":[{"id":50228,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":6,"skill":25014,"stats":["16% increased Warcry Speed"],"stringId":"warcries40"},"25026":{"connections":[{"id":3567,"orbit":6}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":25026,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana31"},"25029":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Charms Mastery","orbit":5,"orbitIndex":51,"skill":25029,"stats":[],"stringId":"mastery_charms_1"},"25031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":25031,"stats":[],"stringId":"mastery_warcry250"},"25055":{"connections":[{"id":41580,"orbit":3}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Movement Speed","orbit":2,"orbitIndex":8,"skill":25055,"stats":["2% increased Movement Speed","8% increased Attack Damage"],"stringId":"attack2"},"25058":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":4681,"orbit":2147483647}],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":12,"skill":25058,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"stringId":"oracle_frenzy_charge2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25070":{"connections":[{"id":32903,"orbit":0},{"id":11252,"orbit":0},{"id":57821,"orbit":0}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":19,"skill":25070,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks53"},"25092":{"ascendancyName":"Oracle","connections":[{"id":34313,"orbit":-6}],"group":2,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Critical Damage Bonus on You","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":25092,"stats":["Hits against you have 12% reduced Critical Damage Bonus"],"stringId":"AscendancyDruid1Small7"},"25100":{"connections":[],"flavourText":"The fewer there are, the less you have to share.","group":1105,"icon":"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds","isKeystone":true,"name":"Oasis","orbit":0,"orbitIndex":0,"skill":25100,"stats":["Cannot use Charms","30% more Recovery from Flasks"],"stringId":"passive_keystone_oasis"},"25101":{"connections":[{"id":22439,"orbit":5},{"id":52199,"orbit":0},{"id":44498,"orbit":-5}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":4,"skill":25101,"stats":["10% increased Exposure Effect"],"stringId":"elemental35"},"25162":{"connections":[{"id":59785,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":10,"skill":25162,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks34"},"25170":{"connections":[{"id":30820,"orbit":3}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Skill Duration","orbit":2,"orbitIndex":22,"skill":25170,"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"stringId":"attack10"},"25172":{"ascendancyName":"Witchhunter","connections":[{"id":3704,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":25172,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancyMercenary2Small3"},"25211":{"connections":[{"id":11330,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Waning Hindrances","orbit":3,"orbitIndex":3,"recipe":["Greed","Suffering","Fear"],"skill":25211,"stats":["Debuffs on you expire 25% faster"],"stringId":"slowed_enemies19"},"25213":{"connections":[{"id":19223,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage with nearby Ally","orbit":7,"orbitIndex":12,"skill":25213,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"stringId":"attack26"},"25229":{"connections":[{"id":21390,"orbit":0}],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":20,"skill":25229,"stats":["20% increased Endurance Charge Duration"],"stringId":"endurance_charges1_"},"25239":{"ascendancyName":"Infernalist","connections":[{"id":63894,"orbit":-3}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds","isNotable":true,"name":"Demonic Possession","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":66,"skill":25239,"stats":["Grants Skill: Demon Form"],"stringId":"AscendancyWitch1Notable5"},"25281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":10,"skill":25281,"stats":[],"stringId":"mastery_life140"},"25300":{"connections":[{"id":61796,"orbit":0}],"group":210,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":0,"orbitIndex":0,"skill":25300,"stats":["Break 20% increased Armour"],"stringId":"armour_break1"},"25303":{"connections":[],"group":602,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":25303,"stats":["Minions have +3% to Maximum Fire Resistances","Minions have +20% to Fire Resistance"],"stringId":"minion_defence41"},"25304":{"connections":[{"id":61056,"orbit":-2}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":5,"skill":25304,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers3"},"25312":{"connections":[{"id":24259,"orbit":0},{"id":64405,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":36,"skill":25312,"stats":["15% increased Totem Damage"],"stringId":"totems43"},"25315":{"connections":[{"id":19820,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Cold Damage","orbit":2,"orbitIndex":2,"skill":25315,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"stringId":"armour38"},"25337":{"connectionArt":"CharacterPlanned","connections":[{"id":34990,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":19,"skill":25337,"stats":["10% chance to Poison on Hit"],"stringId":"oracle_poison2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25361":{"connections":[],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Resolute Reach","orbit":2,"orbitIndex":10,"recipe":["Ire","Disgust","Despair"],"skill":25361,"stats":["18% increased Area of Effect for Attacks","20% reduced Critical Hit Chance"],"stringId":"area_attacks57_"},"25362":{"connections":[{"id":23105,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","isNotable":true,"name":"Chakra of Impact","orbit":2,"orbitIndex":13,"recipe":["Greed","Greed","Despair"],"skill":25362,"stats":["20% increased Attack Damage","Skills deal 8% increased Damage per Combo consumed, up to 40%"],"stringId":"unarmed5"},"25363":{"connections":[{"id":44098,"orbit":0},{"id":1823,"orbit":0},{"id":34531,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":7,"orbitIndex":20,"skill":25363,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield7"},"25374":{"connections":[{"id":45969,"orbit":6}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":25374,"stats":["+5 to any Attribute"],"stringId":"strength86"},"25429":{"connections":[{"id":38103,"orbit":-8},{"id":34084,"orbit":0}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Grounded in the Earth","orbit":2,"orbitIndex":8,"skill":25429,"stats":["16% increased Skill Effect Duration","16% increased Stun Threshold"],"stringId":"duration15"},"25434":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Chill Effect","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":6,"orbitIndex":11,"skill":25434,"stats":["15% increased Magnitude of Chill you inflict"],"stringId":"AscendancyMonk2Small4"},"25438":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":48,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds","isNotable":true,"name":"Heatproofing","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":25438,"stats":["Body Armour grants Unaffected by Damaging Ailments"],"stringId":"AscendancyWarrior3Notable6_12_"},"25446":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":427,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":25446,"stats":[],"stringId":"mastery_leech159"},"25458":{"connections":[{"id":37568,"orbit":3}],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","name":"Strength and Critical Damage Bonus on You","orbit":7,"orbitIndex":20,"skill":25458,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"stringId":"azmerianimals34"},"25482":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":61472,"orbit":0},{"id":51702,"orbit":0},{"id":60620,"orbit":0}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","isNotable":true,"name":"Beef","orbit":0,"orbitIndex":0,"recipe":["Fear","Disgust","Fear"],"skill":25482,"stats":["+25 to Strength"],"stringId":"strength102"},"25503":{"connections":[{"id":27068,"orbit":0},{"id":45632,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":25503,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana5"},"25513":{"connections":[],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Overwhelm","orbit":6,"orbitIndex":45,"recipe":["Despair","Fear","Envy"],"skill":25513,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"stringId":"two_handed18"},"25520":{"connections":[],"flavourText":"The notes may change, but the song remains the same.","group":1269,"icon":"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds","isKeystone":true,"name":"Resonance","orbit":0,"orbitIndex":0,"skill":25520,"stats":["Gain Power Charges instead of Frenzy Charges","Gain Frenzy Charges instead of Endurance Charges","Gain Endurance Charges instead of Power Charges"],"stringId":"passive_keystone_resonance"},"25528":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":3,"orbitIndex":15,"skill":25528,"stats":[],"stringId":"mastery_mana_6597"},"25557":{"connections":[{"id":29763,"orbit":0},{"id":4059,"orbit":0},{"id":26804,"orbit":0}],"group":1084,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":16,"skill":25557,"stats":["+5 to any Attribute"],"stringId":"intelligence62"},"25565":{"connections":[{"id":722,"orbit":0}],"group":1450,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":2,"skill":25565,"stats":["12% increased Lightning Damage"],"stringId":"lightning2"},"25570":{"connectionArt":"CharacterPlanned","connections":[{"id":44560,"orbit":0},{"id":21549,"orbit":0},{"id":37694,"orbit":0},{"id":64083,"orbit":0},{"id":27572,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":12,"skill":25570,"stats":["12% increased Damage"],"stringId":"oracle_hierarchy1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25586":{"connections":[{"id":38993,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Critical Damage","orbit":6,"orbitIndex":35,"skill":25586,"stats":["16% increased Critical Damage Bonus with Bows"],"stringId":"bow7"},"25591":{"connections":[{"id":25315,"orbit":0},{"id":4527,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Cold Damage","orbit":2,"orbitIndex":8,"skill":25591,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"stringId":"armour39"},"25594":{"connections":[{"id":34030,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":7,"orbitIndex":0,"skill":25594,"stats":["Offerings have 15% increased Maximum Life"],"stringId":"corpses3"},"25618":{"ascendancyName":"Stormweaver","connections":[{"id":38578,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":18,"skill":25618,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancySorceress1Small4"},"25619":{"connections":[{"id":43562,"orbit":3}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Sand in the Eyes","orbit":2,"orbitIndex":12,"recipe":["Despair","Despair","Despair"],"skill":25619,"stats":["10% increased Attack Speed","15% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack_speed35"},"25620":{"connections":[{"id":9083,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Meat Recycling","orbit":7,"orbitIndex":14,"recipe":["Paranoia","Despair","Guilt"],"skill":25620,"stats":["15% chance to not destroy Corpses when Consuming Corpses"],"stringId":"corpses10"},"25648":{"connections":[{"id":10824,"orbit":-4},{"id":58894,"orbit":5},{"id":45736,"orbit":-7}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":8,"skill":25648,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour46"},"25653":{"ascendancyName":"Disciple of Varashta","connections":[{"id":13289,"orbit":0}],"flavourText":"\"Knowing where and when to plunge your knife is more important than the sharpness of your blade. I will not forget my error... and I will be a living example of your wisdom, dear {Sekhema}.\" \\n\\nKelari accepted Varashta's sentence and committed himself to her.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds","isNotable":true,"name":"Kelari's Judgment","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":19,"skill":25653,"stats":["Grants Skill: Kelari's Judgment"],"stringId":"AscendancySorceress3Notable14"},"25678":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":2147483647}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":6,"skill":25678,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25683":{"ascendancyName":"Disciple of Varashta","connections":[{"id":34207,"orbit":-8}],"flavourText":"\"I stand before you, as your humble servant. Though I was betrayed, I would do it all again, if it would have saved us. But I accept your sentence. I will atone. I pledge myself to you... forevermore.\" \\n\\nRuzhan accepted his fate at the {barya} ritual site.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds","isNotable":true,"name":"Ruzhan's Reckoning","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":53,"skill":25683,"stats":["Grants Skill: Ruzhan's Reckoning"],"stringId":"AscendancySorceress3Notable17"},"25700":{"connections":[{"id":41096,"orbit":4}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Shock Chance","orbit":4,"orbitIndex":42,"skill":25700,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"stringId":"elemental25"},"25711":{"connections":[{"id":58038,"orbit":-7}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Thrill of Battle","orbit":2,"orbitIndex":5,"recipe":["Guilt","Suffering","Ire"],"skill":25711,"stats":["20% increased Attack Speed while Surrounded"],"stringId":"being_surrounded10"},"25729":{"connections":[{"id":33093,"orbit":0}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":12,"skill":25729,"stats":["3% increased Cast Speed"],"stringId":"cast_speed4"},"25745":{"connections":[{"id":31890,"orbit":4}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":4,"orbitIndex":30,"skill":25745,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour19"},"25753":{"connections":[{"id":63268,"orbit":0},{"id":25990,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Blazing Arms","orbit":7,"orbitIndex":6,"recipe":["Suffering","Envy","Despair"],"skill":25753,"stats":["16% increased Fire Damage","30% increased Flammability Magnitude","16% increased Attack Damage"],"stringId":"fire57"},"25763":{"connections":[{"id":61170,"orbit":7},{"id":62963,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":25763,"stats":["10% increased Fire Damage"],"stringId":"ground2"},"25779":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":41076,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Darkness","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":34,"skill":25779,"stats":["10% increased maximum Darkness"],"stringId":"AscendancyMonk3Small7_"},"25781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds","isNotable":true,"name":"Sap of Nightmares","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":5,"orbitIndex":2,"skill":25781,"stats":["Leech recovers based on Chaos Damage as well as Physical Damage"],"stringId":"AscendancyMonk3Notable3_"},"25807":{"connections":[{"id":53683,"orbit":0}],"group":940,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":25807,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow24"},"25827":{"connections":[{"id":55241,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":8,"skill":25827,"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells4"},"25829":{"connections":[{"id":57791,"orbit":0}],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Spell Damage and Cast Speed","orbit":2,"orbitIndex":7,"skill":25829,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"stringId":"orb3"},"25851":{"connections":[{"id":52695,"orbit":-6},{"id":36270,"orbit":5}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":6,"orbitIndex":0,"skill":25851,"stats":["5% chance to Daze on Hit"],"stringId":"chaos4"},"25857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":4,"orbitIndex":68,"skill":25857,"stats":[],"stringId":"mastery_flask_6540"},"25885":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":31116,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Damage as Chaos","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":8,"orbitIndex":18,"skill":25885,"stats":["Gain 4% of Damage as Extra Chaos Damage"],"stringId":"AscendancyMonk3Small8"},"25890":{"connections":[{"id":54378,"orbit":0}],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":18,"skill":25890,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges13"},"25893":{"connections":[{"id":51169,"orbit":-2}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":18,"skill":25893,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"mana24"},"25915":{"connections":[{"id":8916,"orbit":2}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":2,"skill":25915,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear15"},"25927":{"connections":[{"id":32847,"orbit":-2}],"group":565,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Damage","orbit":0,"orbitIndex":0,"skill":25927,"stats":["Minions deal 20% increased Damage with Command Skills"],"stringId":"minion_offence44_"},"25934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":424,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":7,"orbitIndex":12,"skill":25934,"stats":[],"stringId":"mastery_twohand244"},"25935":{"ascendancyName":"Warbringer","connections":[{"id":23005,"orbit":0}],"group":45,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Block Chance","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":25935,"stats":["6% increased Block chance"],"stringId":"AscendancyWarrior2Small8"},"25971":{"connections":[],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Tenfold Attacks","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Guilt"],"skill":25971,"stats":["4% increased Attack Speed","6% increased Attack Speed if you've been Hit Recently","+10 to Strength"],"stringId":"attack_speed30"},"25990":{"connections":[{"id":43461,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Attack Damage","orbit":4,"orbitIndex":23,"skill":25990,"stats":["8% increased Fire Damage","8% increased Attack Damage"],"stringId":"fire55"},"25992":{"connections":[],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":6,"orbitIndex":7,"skill":25992,"stats":["10% increased Accuracy Rating with Bows"],"stringId":"bow12"},"26034":{"connections":[{"id":45631,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":10,"skill":26034,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield5"},"26061":{"connections":[{"id":4579,"orbit":2}],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Energy Shield as Freeze Threshold","orbit":2,"orbitIndex":22,"skill":26061,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"cold25"},"26063":{"ascendancyName":"Shaman","connections":[{"id":28745,"orbit":2147483647}],"group":73,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":26063,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyDruid2Small2"},"26068":{"connections":[{"id":37389,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":4,"skill":26068,"stats":["10% increased Attack Damage"],"stringId":"attack35"},"26070":{"connections":[{"id":35977,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Bolstering Yell","orbit":2,"orbitIndex":4,"recipe":["Suffering","Disgust","Paranoia"],"skill":26070,"stats":["Empowered Attacks deal 30% increased Damage","Warcry Skills have 30% increased Area of Effect"],"stringId":"warcries24"},"26085":{"ascendancyName":"Lich","connections":[{"id":20772,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds","isNotable":true,"isSwitchable":true,"name":"Necromantic Conduit","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds","id":41162,"name":"Umbral Well","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created"]}},"orbit":9,"orbitIndex":124,"skill":26085,"stats":["While you are not on Low Mana, you and Allies in your Presence have Unholy Might","Lose 5% of maximum Mana per Second"],"stringId":"AscendancyWitch3Notable3"},"26092":{"connections":[{"id":52392,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":14,"skill":26092,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed4"},"26104":{"connections":[{"id":43282,"orbit":5},{"id":55672,"orbit":4},{"id":32186,"orbit":0},{"id":27611,"orbit":0},{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Spirit of the Wyvern","orbit":4,"orbitIndex":51,"recipe":["Ire","Suffering","Greed"],"skill":26104,"stats":["20% increased Accuracy Rating while Shapeshifted","25% increased Elemental Damage while Shapeshifted"],"stringId":"wyvern5"},"26107":{"connections":[{"id":33713,"orbit":7},{"id":56023,"orbit":0}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Kite Runner","orbit":0,"orbitIndex":0,"recipe":["Ire","Isolation","Despair"],"skill":26107,"stats":["3% increased Movement Speed","15% increased Projectile Speed","15% increased Projectile Damage"],"stringId":"ranged30_"},"26135":{"connections":[{"id":2335,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage and Projectile Speed","orbit":3,"orbitIndex":11,"skill":26135,"stats":["8% increased Spell Damage","8% increased Projectile Speed for Spell Skills"],"stringId":"projectile_spells3"},"26148":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":327,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":26148,"stats":[],"stringId":"mastery_accuracy2"},"26176":{"connections":[{"id":43650,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":2,"orbitIndex":8,"skill":26176,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals61"},"26178":{"aliasPassiveSocket":"voices_jewel_slot2","connections":[],"group":702,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":26178,"stats":[],"stringId":"voices_jewel_slot2"},"26194":{"connections":[{"id":37872,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":0,"skill":26194,"stats":["20% increased Presence Area of Effect"],"stringId":"auras2"},"26196":{"connections":[{"id":11741,"orbit":0},{"id":39710,"orbit":0}],"group":273,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26196,"stats":[],"stringId":"jewel_slot1977"},"26211":{"connections":[{"id":24883,"orbit":0}],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Combo","orbit":2,"orbitIndex":18,"skill":26211,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"stringId":"area_attacks46"},"26214":{"connections":[],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","isNotable":true,"name":"Dominion","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Suffering","Isolation"],"skill":26214,"stats":["50% reduced effect of Archon Buffs on you","Archon Buffs have no recovery period after you lose one"],"stringId":"DeliriumAnoint_Dominion"},"26228":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Prize of the Hunt","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":26228,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","+1 to Maximum Frenzy Charges"],"stringId":"oracle_frenzy_charge4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26236":{"connections":[{"id":38069,"orbit":-2}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":20,"skill":26236,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers13"},"26268":{"connections":[{"id":22710,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":12,"skill":26268,"stats":["20% increased Curse Duration"],"stringId":"curses11"},"26282":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds","isNotable":true,"name":"Blood Barbs","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":5,"orbitIndex":66,"skill":26282,"stats":["Elemental Damage also Contributes to Bleeding Magnitude","Bleeding you inflict on Cursed targets is Aggravated"],"stringId":"AscendancyWitch2Notable4"},"26283":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1586,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds","isMultipleChoiceOption":true,"name":"Choice of Mana","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":26283,"stats":["Remnants you create have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Blue"],"stringId":"AscendancyMonk3Notable6_2"},"26291":{"connections":[{"id":48935,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electrifying Nature","orbit":4,"orbitIndex":28,"recipe":["Envy","Greed","Paranoia"],"skill":26291,"stats":["25% increased Lightning Damage","15% increased Shock Duration"],"stringId":"lightning30"},"26294":{"ascendancyName":"Spirit Walker","connections":[{"id":41401,"orbit":5}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":5,"orbitIndex":22,"skill":26294,"stats":["2% increased Movement Speed"],"stringId":"AscendancyHuntress2Small1"},"26300":{"connectionArt":"CharacterPlanned","connections":[{"id":23436,"orbit":-4}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":33,"skill":26300,"stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"stringId":"oracle_archon_crit3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26308":{"connections":[{"id":27017,"orbit":-9}],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":10,"skill":26308,"stats":["20% increased Evasion Rating while moving"],"stringId":"azmerianimals22"},"26319":{"connections":[{"id":30990,"orbit":-7}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":0,"skill":26319,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals81_"},"26324":{"connections":[{"id":46023,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":26324,"stats":["15% increased Armour"],"stringId":"armour11"},"26331":{"connections":[{"id":3128,"orbit":0},{"id":12166,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Harsh Winter","orbit":7,"orbitIndex":18,"recipe":["Fear","Despair","Ire"],"skill":26331,"stats":["8% increased Cast Speed with Cold Skills","16% increased Skill Effect Duration"],"stringId":"cold35"},"26339":{"connections":[{"id":64405,"orbit":0},{"id":11014,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Artifice","orbit":1,"orbitIndex":0,"recipe":["Suffering","Suffering","Suffering"],"skill":26339,"stats":["Melee Attack Skills have +1 to maximum number of Summoned Totems","20% increased Totem Placement range"],"stringId":"totems14"},"26356":{"connections":[{"id":8556,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Primed to Explode","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Disgust"],"skill":26356,"stats":["Detonator skills have 40% increased Area of Effect","Detonator skills have 80% reduced damage"],"stringId":"area_attacks41"},"26363":{"connections":[{"id":49291,"orbit":0},{"id":52803,"orbit":0}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charge Generation","orbit":7,"orbitIndex":3,"skill":26363,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks11"},"26383":{"ascendancyName":"Blood Mage","connections":[{"id":48551,"orbit":8}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds","isNotable":true,"name":"Sunder the Flesh","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":8,"orbitIndex":59,"skill":26383,"stats":["Base Critical Hit Chance for Spells is 15%"],"stringId":"AscendancyWitch2Notable2_"},"26400":{"connections":[{"id":8904,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":18,"skill":26400,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles25"},"26416":{"connections":[{"id":35792,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":16,"skill":26416,"stats":["15% increased Life Recovery from Flasks"],"stringId":"life_flasks35"},"26432":{"connections":[{"id":12890,"orbit":0},{"id":60735,"orbit":0}],"group":1322,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":26432,"stats":["+5 to any Attribute"],"stringId":"dexterity85_"},"26437":{"connections":[{"id":51129,"orbit":0}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":26437,"stats":["Break 20% increased Armour"],"stringId":"armour_break4"},"26447":{"connections":[{"id":12918,"orbit":0},{"id":49633,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Refocus","orbit":2,"orbitIndex":0,"recipe":["Paranoia","Suffering","Ire"],"skill":26447,"stats":["20% increased Mana Regeneration Rate","20% increased Mana Regeneration Rate while stationary"],"stringId":"energy_shield_recovery17"},"26479":{"connections":[{"id":64324,"orbit":4},{"id":9040,"orbit":0}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Steadfast Resolve","orbit":4,"orbitIndex":60,"recipe":["Guilt","Isolation","Paranoia"],"skill":26479,"stats":["You cannot be Light Stunned if you've been Stunned Recently"],"stringId":"shield35"},"26490":{"connections":[{"id":12751,"orbit":0}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Critical Chance","orbit":2,"orbitIndex":9,"skill":26490,"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"stringId":"one_handed12"},"26518":{"connections":[],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Cold Nature","orbit":4,"orbitIndex":5,"recipe":["Envy","Fear","Guilt"],"skill":26518,"stats":["25% increased Cold Damage","15% increased Chill Duration on Enemies"],"stringId":"cold30"},"26520":{"connections":[{"id":14340,"orbit":0},{"id":37190,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":11,"skill":26520,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech4"},"26532":{"connections":[{"id":46023,"orbit":-3},{"id":41657,"orbit":3},{"id":36629,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":6,"skill":26532,"stats":["15% increased Armour"],"stringId":"armour19"},"26556":{"connections":[{"id":58692,"orbit":4},{"id":59657,"orbit":-2}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":3,"orbitIndex":19,"skill":26556,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield34"},"26563":{"connections":[{"id":12778,"orbit":-4},{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Bone Chains","orbit":4,"orbitIndex":12,"recipe":["Fear","Despair","Fear"],"skill":26563,"stats":["Physical Spell Critical Hits build Pin"],"stringId":"physical_witch12"},"26565":{"connections":[{"id":40024,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":26565,"stats":["10% increased Poison Duration"],"stringId":"poison36"},"26568":{"connections":[{"id":59367,"orbit":0},{"id":37258,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You and Attack Speed","orbit":2,"orbitIndex":12,"skill":26568,"stats":["2% increased Attack Speed","4% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells7"},"26572":{"connections":[{"id":47514,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Criticals vs Dazed Enemies","orbit":2,"orbitIndex":12,"skill":26572,"stats":["12% increased Critical Hit Chance against Dazed Enemies"],"stringId":"daze_7"},"26592":{"connections":[{"id":58894,"orbit":-3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":3,"orbitIndex":19,"skill":26592,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour51"},"26596":{"connections":[{"id":5766,"orbit":5},{"id":51416,"orbit":-5}],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":19,"skill":26596,"stats":["3% increased Cast Speed"],"stringId":"cast_speed8"},"26598":{"connections":[{"id":33366,"orbit":3},{"id":19880,"orbit":0},{"id":14658,"orbit":0},{"id":23915,"orbit":0},{"id":52501,"orbit":0}],"group":1251,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":26598,"stats":["+5 to any Attribute"],"stringId":"dexterity40"},"26614":{"connections":[{"id":44344,"orbit":0},{"id":46275,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":40,"skill":26614,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield17"},"26638":{"ascendancyName":"Chronomancer","connections":[],"group":371,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds","isNotable":true,"name":"Footprints in the Sand","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":26638,"stats":["Grants Skill: Temporal Rift"],"stringId":"AscendancySorceress2Notable1_"},"26648":{"connections":[{"id":24256,"orbit":0},{"id":52125,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":21,"skill":26648,"stats":["10% increased Armour","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"deflect30"},"26663":{"connections":[{"id":44765,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":0,"orbitIndex":0,"skill":26663,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns19"},"26682":{"connections":[{"id":3472,"orbit":-2},{"id":56640,"orbit":2}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":6,"skill":26682,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals8"},"26697":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","connections":[{"id":59263,"orbit":0},{"id":27290,"orbit":0},{"id":46565,"orbit":0}],"group":581,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","isOnlyImage":true,"name":"Sword Mastery","orbit":0,"orbitIndex":0,"skill":26697,"stats":[],"stringId":"mastery_sword225"},"26725":{"connections":[{"id":57703,"orbit":0}],"group":300,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26725,"stats":[],"stringId":"jewel_slot1956"},"26726":{"connections":[{"id":48103,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback and Stun Buildup","orbit":2,"orbitIndex":0,"skill":26726,"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"stringId":"knockback3"},"26739":{"connections":[{"id":43893,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":26739,"stats":["10% increased Elemental Damage"],"stringId":"elemental13"},"26762":{"connections":[{"id":35380,"orbit":-2}],"group":1347,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":0,"orbitIndex":0,"skill":26762,"stats":["10% increased Withered Magnitude"],"stringId":"chaos29"},"26772":{"connections":[{"id":24240,"orbit":2},{"id":45774,"orbit":3}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect","orbit":7,"orbitIndex":22,"skill":26772,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"stringId":"slowed_enemies4"},"26786":{"connections":[{"id":64352,"orbit":0},{"id":48568,"orbit":0}],"group":996,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":26786,"stats":["+5 to any Attribute"],"stringId":"dexterity66"},"26798":{"connections":[{"id":9638,"orbit":-7}],"group":498,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":26798,"stats":["3% increased Skill Speed"],"stringId":"attack_speed53"},"26804":{"connections":[{"id":55405,"orbit":0},{"id":59909,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":7,"orbitIndex":2,"skill":26804,"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"stringId":"corpses5"},"26830":{"connections":[],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":5,"orbitIndex":42,"skill":26830,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break22"},"26863":{"connections":[{"id":25890,"orbit":0},{"id":58198,"orbit":0}],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":10,"skill":26863,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges14"},"26885":{"connections":[{"id":59775,"orbit":-4}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":60,"skill":26885,"stats":["7% increased Chaos Damage"],"stringId":"chaos24"},"26895":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":526,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":26895,"stats":[],"stringId":"mastery_duration_6464"},"26905":{"connections":[{"id":8821,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":2,"skill":26905,"stats":["12% increased Lightning Damage"],"stringId":"lightning22"},"26926":{"connections":[{"id":39416,"orbit":0},{"id":45333,"orbit":-7}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds","isNotable":true,"name":"Archon of Undeath","orbit":3,"orbitIndex":21,"recipe":["Guilt","Suffering","Isolation"],"skill":26926,"stats":["15% chance to gain Archon of Undeath when you use a Command skill"],"stringId":"archon23"},"26931":{"connections":[{"id":48198,"orbit":5}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":10,"skill":26931,"stats":["Gain 3 Life per enemy killed"],"stringId":"life_on_kill2"},"26932":{"connections":[{"id":34543,"orbit":-2}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":6,"skill":26932,"stats":["20% increased Frenzy Charge Duration"],"stringId":"azmerianimals27"},"26945":{"connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Chance","orbit":2,"orbitIndex":17,"skill":26945,"stats":["Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence31"},"26952":{"connections":[{"id":59661,"orbit":0},{"id":31626,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":20,"skill":26952,"stats":["20% increased Flammability Magnitude"],"stringId":"fire62"},"26969":{"connections":[{"id":16861,"orbit":2}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":4,"orbitIndex":69,"skill":26969,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals69"},"27009":{"connections":[{"id":30459,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Lust for Sacrifice","orbit":7,"orbitIndex":6,"recipe":["Disgust","Suffering","Paranoia"],"skill":27009,"stats":["50% increased Minion Damage while you have at least two different active Offerings"],"stringId":"corpses17"},"27017":{"connections":[{"id":21349,"orbit":0}],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":22,"skill":27017,"stats":["20% increased Evasion Rating while moving"],"stringId":"azmerianimals23"},"27048":{"connections":[{"id":47375,"orbit":8}],"group":1524,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":0,"orbitIndex":0,"skill":27048,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions14"},"27068":{"connections":[{"id":35831,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":14,"skill":27068,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana6"},"27082":{"connections":[{"id":3446,"orbit":0},{"id":24646,"orbit":0}],"group":201,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27082,"stats":["+5 to any Attribute"],"stringId":"strength69"},"27095":{"connections":[{"id":14890,"orbit":-4},{"id":48658,"orbit":0}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":7,"skill":27095,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze3"},"27096":{"connectionArt":"CharacterPlanned","connections":[{"id":33423,"orbit":2147483647},{"id":13691,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Rustle of the Leaves","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":16,"skill":27096,"stats":["40% increased Totem Placement speed","Spells Cast by Totems have 6% increased Cast Speed","Attacks used by Totems have 6% increased Attack Speed"],"stringId":"oracle_totems7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27108":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":47796,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Mass Hysteria","orbit":4,"orbitIndex":36,"recipe":["Disgust","Disgust","Envy"],"skill":27108,"stats":["Allies in your Presence have 6% increased Attack Speed","6% increased Attack Speed"],"stringId":"attack_speed33"},"27176":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"The Power Within","orbit":0,"orbitIndex":0,"recipe":["Envy","Paranoia","Suffering"],"skill":27176,"stats":["20% increased Critical Damage Bonus if you've gained a Power Charge Recently","+1 to Maximum Power Charges"],"stringId":"power_charges9"},"27186":{"connections":[{"id":62963,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Ignite Effect on You","orbit":2,"orbitIndex":0,"skill":27186,"stats":["10% reduced Magnitude of Ignite on you"],"stringId":"ground3"},"27216":{"connections":[{"id":30546,"orbit":-7}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Delay","orbit":7,"orbitIndex":4,"skill":27216,"stats":["10% faster start of Energy Shield Recharge while Shapeshifted"],"stringId":"wyvern13__"},"27234":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":942,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":27234,"stats":[],"stringId":"mastery_mana6174"},"27262":{"connections":[{"id":49110,"orbit":7}],"group":1161,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Effect","orbit":0,"orbitIndex":0,"skill":27262,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments15"},"27274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":2,"skill":27274,"stats":[],"stringId":"mastery_cold_6395"},"27290":{"connections":[{"id":38564,"orbit":0}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Heavy Blade","orbit":0,"orbitIndex":0,"skill":27290,"stats":["25% increased Damage with Swords"],"stringId":"sword6"},"27296":{"connections":[{"id":59777,"orbit":0},{"id":11275,"orbit":-9},{"id":18684,"orbit":0},{"id":21670,"orbit":0}],"group":146,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27296,"stats":["+5 to any Attribute"],"stringId":"strength64"},"27303":{"connections":[{"id":43142,"orbit":0}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Vulgar Methods","orbit":7,"orbitIndex":16,"recipe":["Ire","Guilt","Despair"],"skill":27303,"stats":["10% reduced maximum Mana","+10 to Strength","30% increased Critical Hit Chance"],"stringId":"criticals73"},"27307":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":517,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":27307,"stats":[],"stringId":"mastery_energyshield102_"},"27373":{"connections":[{"id":53405,"orbit":-6},{"id":51369,"orbit":-6}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":51,"skill":27373,"stats":["+5 to any Attribute"],"stringId":"strength19"},"27388":{"connections":[{"id":28578,"orbit":0},{"id":24551,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Aspiring Genius","orbit":7,"orbitIndex":23,"recipe":["Suffering","Greed","Greed"],"skill":27388,"stats":["20% increased Mana Regeneration Rate","10% chance to Gain Arcane Surge when you deal a Critical Hit"],"stringId":"mana_regeneration20"},"27405":{"connectionArt":"CharacterPlanned","connections":[{"id":30781,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":58,"skill":27405,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"oracle_movement_cooldown2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27417":{"connections":[{"id":64295,"orbit":0},{"id":37616,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Destructive Apparatus","orbit":6,"orbitIndex":54,"skill":27417,"stats":["25% increased Trap Damage"],"stringId":"trap18"},"27418":{"ascendancyName":"Titan","connections":[{"id":30115,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Strength","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":4,"orbitIndex":48,"skill":27418,"stats":["4% increased Strength"],"stringId":"AscendancyWarrior1Small6"},"27422":{"connections":[{"id":2021,"orbit":5}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":7,"orbitIndex":21,"skill":27422,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks1"},"27434":{"connections":[{"id":15984,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Archon of the Storm","orbit":3,"orbitIndex":21,"recipe":["Fear","Isolation","Guilt"],"skill":27434,"stats":["Gain Elemental Archon after spending 100% of your Maximum Mana"],"stringId":"lightning54"},"27439":{"connections":[{"id":21982,"orbit":0}],"group":347,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27439,"stats":["+5 to any Attribute"],"stringId":"strength73"},"27491":{"connections":[{"id":3471,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Heavy Buffer","orbit":4,"orbitIndex":24,"recipe":["Greed","Paranoia","Isolation"],"skill":27491,"stats":["40% increased maximum Energy Shield","5% of Damage taken bypasses Energy Shield"],"stringId":"energy_shield38"},"27492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":865,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":27492,"stats":[],"stringId":"mastery_recovery_6677"},"27493":{"connections":[{"id":17118,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":24,"skill":27493,"stats":["10% increased Projectile Damage"],"stringId":"ranged42"},"27501":{"connections":[],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":44,"skill":27501,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration34"},"27513":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"Material Solidification","orbit":7,"orbitIndex":4,"recipe":["Envy","Envy","Isolation"],"skill":27513,"stats":["Gain 8% of Damage as Extra Physical Damage","15% increased effect of Fully Broken Armour"],"stringId":"physical40"},"27540":{"connections":[{"id":62973,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Power Counted","orbit":3,"orbitIndex":23,"skill":27540,"stats":["10% increased total Power counted by Warcries"],"stringId":"warcries22"},"27572":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage.dds","name":"Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":14,"skill":27572,"stats":["20% increased Chaos Damage"],"stringId":"oracle_hierarchy6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27581":{"connections":[{"id":50510,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":12,"skill":27581,"stats":["5% increased Block chance"],"stringId":"shield7"},"27611":{"connections":[{"id":30546,"orbit":7},{"id":28489,"orbit":8}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":7,"orbitIndex":18,"skill":27611,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"wyvern12__"},"27626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":15628,"orbit":0}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Touch the Arcane","orbit":5,"orbitIndex":54,"recipe":["Despair","Isolation","Suffering"],"skill":27626,"stats":["40% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration28_"},"27638":{"connections":[{"id":38010,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":3,"skill":27638,"stats":["15% increased Glory generation"],"stringId":"glory5"},"27658":{"connections":[{"id":13542,"orbit":-3}],"group":881,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":27658,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup4__"},"27662":{"connections":[],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":2,"orbitIndex":14,"skill":27662,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells7"},"27667":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds","isNotable":true,"name":"Whispers of the Flesh","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":6,"orbitIndex":8,"skill":27667,"stats":["Targets Cursed by you have 100% reduced Life Regeneration Rate","Targets Cursed by you have at least 15% of Life Reserved"],"stringId":"AscendancyWitch2Notable5"},"27671":{"connections":[{"id":32681,"orbit":2147483647}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Energy Shield Delay","orbit":7,"orbitIndex":23,"skill":27671,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"unarmed7"},"27674":{"connections":[{"id":44082,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":10,"skill":27674,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery34"},"27686":{"ascendancyName":"Invoker","connections":[{"id":12876,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Energy Shield Recharge Rate","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":10,"skill":27686,"stats":["20% increased Energy Shield Recharge Rate"],"stringId":"AscendancyMonk2Small9"},"27687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Greatest Defence","orbit":3,"orbitIndex":4,"recipe":["Suffering","Fear","Disgust"],"skill":27687,"stats":["4% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield"],"stringId":"shield9"},"27704":{"connections":[],"group":1446,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Grace of the Ancestors","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Envy","Fear"],"skill":27704,"stats":["10% increased Attack Speed","Every Rage also grants 1% increased Evasion Rating"],"stringId":"DeliriumAnoint_GraceOfTheAncestors"},"27705":{"connections":[{"id":48773,"orbit":0},{"id":2582,"orbit":0},{"id":65212,"orbit":0},{"id":39495,"orbit":0},{"id":3543,"orbit":0},{"id":20787,"orbit":0}],"group":1503,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27705,"stats":["+5 to any Attribute"],"stringId":"attributes10"},"27726":{"connections":[{"id":7721,"orbit":-4}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":8,"skill":27726,"stats":["15% increased Armour"],"stringId":"armour14"},"27733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":44005,"orbit":0},{"id":2999,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":4,"orbitIndex":30,"skill":27733,"stats":[],"stringId":"mastery_shield215"},"27740":{"connections":[{"id":35792,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":2,"orbitIndex":6,"skill":27740,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"life_flasks36"},"27761":{"connections":[{"id":5826,"orbit":0}],"group":1109,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Counterstancing","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Fear"],"skill":27761,"stats":["Successfully Parrying a Melee Hit grants 40% increased Damage to your next Ranged Attack","Successfully Parrying a Projectile Hit grants 40% increased Damage to your next Melee Attack"],"stringId":"deflect12"},"27773":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds","isNotable":true,"name":"The Mórrigan's Guidance","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":3,"orbitIndex":16,"skill":27773,"stats":["Gain a Vivid Wisp when Vivid Stampede ends","Stags deal 20% more damage per leap","Stags have 20% more Shock Magnitude per leap"],"stringId":"AscendancyHuntress2Notable2"},"27779":{"connections":[],"group":841,"icon":"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds","isNotable":true,"name":"Lord of the Squall","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Isolation","Despair"],"skill":27779,"stats":["Grant Elemental Archon to your Minions for 5 seconds when they Revive"],"stringId":"DeliriumAnoint_LordOfTheSquall"},"27785":{"connections":[{"id":63863,"orbit":0}],"group":917,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":10,"skill":27785,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration12"},"27834":{"connections":[{"id":63659,"orbit":0},{"id":34449,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":41,"skill":27834,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap12"},"27853":{"connections":[{"id":52576,"orbit":0},{"id":3365,"orbit":0},{"id":58109,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised and Buildup","orbit":7,"orbitIndex":13,"skill":27853,"stats":["10% increased Damage against Immobilised Enemies","8% increased Immobilisation buildup"],"stringId":"immobilisation1"},"27859":{"connections":[{"id":38694,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":12,"skill":27859,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds3"},"27875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":32123,"orbit":0}],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"General Electric","orbit":0,"orbitIndex":0,"recipe":["Isolation","Suffering","Greed"],"skill":27875,"stats":["40% increased chance to Shock","5% increased Attack and Cast Speed with Lightning Skills"],"stringId":"shock12"},"27900":{"connections":[{"id":54640,"orbit":5}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","orbit":7,"orbitIndex":5,"skill":27900,"stats":["4% increased Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical55_"},"27910":{"connections":[{"id":64056,"orbit":0},{"id":53938,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":0,"skill":27910,"stats":["10% increased Attack Damage"],"stringId":"attack42"},"27950":{"connections":[{"id":26324,"orbit":0},{"id":52462,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Polished Iron","orbit":2,"orbitIndex":0,"recipe":["Paranoia","Guilt","Despair"],"skill":27950,"stats":["25% increased Armour","Gain additional Stun Threshold equal to 30% of Item Armour on Equipped Armour Items"],"stringId":"armour12"},"27980":{"connections":[{"id":270,"orbit":-2},{"id":28981,"orbit":2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":2,"orbitIndex":12,"skill":27980,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage36"},"27990":{"ascendancyName":"Chronomancer","connections":[{"id":49049,"orbit":-3}],"group":410,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Slow Effect","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":27990,"stats":["Debuffs you inflict have 6% increased Slow Magnitude"],"stringId":"AscendancySorceress2Small7"},"27992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":664,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":27992,"stats":[],"stringId":"mastery_crossbow_6420"},"27999":{"connections":[{"id":45777,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Physical Damage and Ailment Chance","orbit":1,"orbitIndex":2,"skill":27999,"stats":["8% increased chance to inflict Ailments","8% increased Physical Damage"],"stringId":"projectiles49"},"28002":{"connections":[{"id":32194,"orbit":0},{"id":20499,"orbit":0},{"id":42452,"orbit":0},{"id":2955,"orbit":0},{"id":2653,"orbit":0},{"id":49547,"orbit":0},{"id":18441,"orbit":0}],"group":444,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28002,"stats":["+5 to any Attribute"],"stringId":"attributes31"},"28021":{"connections":[{"id":9782,"orbit":0}],"group":1225,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":28021,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals9"},"28022":{"ascendancyName":"Shaman","connections":[{"id":62523,"orbit":8}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":8,"orbitIndex":33,"skill":28022,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyDruid2Small1"},"28038":{"connections":[{"id":56488,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":28038,"stats":["15% increased Evasion Rating"],"stringId":"deflect26"},"28044":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Coming Calamity","orbit":3,"orbitIndex":12,"recipe":["Disgust","Isolation","Suffering"],"skill":28044,"stats":["40% increased Cold Damage while affected by Herald of Ice","40% increased Fire Damage while affected by Herald of Ash","40% increased Lightning Damage while affected by Herald of Thunder"],"stringId":"heralds16_"},"28050":{"connections":[{"id":63888,"orbit":0},{"id":53539,"orbit":0}],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":24,"skill":28050,"stats":["+5 to any Attribute"],"stringId":"dexterity20"},"28061":{"connections":[{"id":35878,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":8,"skill":28061,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental54"},"28086":{"connections":[{"id":57088,"orbit":-6},{"id":144,"orbit":0}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":28086,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration6"},"28092":{"connections":[{"id":17061,"orbit":7}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":7,"orbitIndex":8,"skill":28092,"stats":["Archon recovery period expires 10% faster"],"stringId":"archon5__"},"28101":{"connections":[{"id":57571,"orbit":0},{"id":43867,"orbit":-7}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":12,"skill":28101,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration5"},"28106":{"connections":[{"id":3775,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":8,"skill":28106,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks28"},"28142":{"connections":[{"id":17702,"orbit":0},{"id":44684,"orbit":0},{"id":46961,"orbit":0}],"group":1207,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Attack Speed and Companion Attack Speed","orbit":0,"orbitIndex":0,"skill":28142,"stats":["2% increased Attack Speed","Companions have 6% increased Attack Speed"],"stringId":"companions58"},"28153":{"ascendancyName":"Chronomancer","connections":[{"id":63002,"orbit":9}],"group":362,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds","isNotable":true,"name":"Phased Form","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":28153,"stats":["Take 30% less Damage","4 seconds after being Damaged by an Enemy Hit, take Damage equal to 30% of that Hit's Damage"],"stringId":"AscendancySorceress2Notable4"},"28175":{"connections":[{"id":64471,"orbit":0},{"id":21716,"orbit":0},{"id":48026,"orbit":0}],"group":507,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28175,"stats":["+5 to any Attribute"],"stringId":"strength85"},"28199":{"connections":[{"id":46431,"orbit":0}],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Immobilisation Buildup","orbit":0,"orbitIndex":0,"skill":28199,"stats":["20% increased Hazard Immobilisation buildup"],"stringId":"hazards21"},"28201":{"connectionArt":"CharacterPlanned","connections":[{"id":56174,"orbit":0},{"id":10636,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":21,"skill":28201,"stats":["5% increased Block chance","15% increased Armour while stationary"],"stringId":"oracle_crab_claw1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28214":{"connections":[{"id":1973,"orbit":0},{"id":58295,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":4,"skill":28214,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"life_flasks40"},"28223":{"connectionArt":"CharacterPlanned","connections":[{"id":6100,"orbit":3}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":35,"skill":28223,"stats":["20% increased Critical Damage Bonus"],"stringId":"oracle_slow_crits2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28229":{"connections":[{"id":50485,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":0,"skill":28229,"stats":["10% increased Area of Effect of Curses"],"stringId":"curses7"},"28254":{"ascendancyName":"Spirit Walker","connectionArt":"CharacterPlanned","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds","isFreeAllocate":true,"isNotable":true,"name":"Sacred Unity","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":3,"orbitIndex":5,"skill":28254,"stats":["Bear Spirit gains Embrace of the Wild","Vivid Stags leap towards enemies","Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground"],"stringId":"AscendancyHuntress2Notable9","unlockConstraint":{"nodes":[41401,62743,46070]}},"28258":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"id":36976,"orbit":0},{"id":59064,"orbit":0},{"id":36927,"orbit":2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":0,"orbitIndex":0,"skill":28258,"stats":["10% increased Effect of your Mark Skills"],"stringId":"marks5_"},"28267":{"connections":[{"id":2672,"orbit":0},{"id":35085,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Desensitisation","orbit":3,"orbitIndex":4,"recipe":["Envy","Suffering","Greed"],"skill":28267,"stats":["25% increased Critical Damage Bonus","Hits against you have 25% reduced Critical Damage Bonus"],"stringId":"criticals40"},"28268":{"connections":[{"id":36630,"orbit":0},{"id":20837,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":6,"skill":28268,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed38"},"28304":{"connections":[{"id":37258,"orbit":0},{"id":2491,"orbit":0}],"group":438,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28304,"stats":["+5 to any Attribute"],"stringId":"attributes17_"},"28329":{"connections":[{"id":36723,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds","isNotable":true,"name":"Pressure Points","orbit":3,"orbitIndex":21,"recipe":["Guilt","Despair","Ire"],"skill":28329,"stats":["35% increased Stun Buildup","35% increased Freeze Buildup"],"stringId":"poise39"},"28361":{"connections":[],"group":831,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":16,"skill":28361,"stats":["12% increased Stun Threshold"],"stringId":"weapon_swapping2"},"28370":{"connections":[{"id":7628,"orbit":0},{"id":11916,"orbit":-6},{"id":37450,"orbit":-6}],"group":824,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":39,"skill":28370,"stats":["+5 to any Attribute"],"stringId":"strength36"},"28371":{"connections":[{"id":60560,"orbit":-3}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage vs Full Life","orbit":7,"orbitIndex":16,"skill":28371,"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"stringId":"enemies_on_full_life4"},"28408":{"connections":[{"id":65042,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Invigorating Hate","orbit":3,"orbitIndex":22,"recipe":["Envy","Disgust","Despair"],"skill":28408,"stats":["Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed"],"stringId":"rage27"},"28414":{"connections":[{"id":47853,"orbit":0}],"group":1477,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":28414,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions62__"},"28431":{"ascendancyName":"Lich","connections":[],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds","isNotable":true,"isSwitchable":true,"name":"Eternal Life","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":9,"orbitIndex":40,"skill":28431,"stats":["Your Life cannot change while you have Energy Shield"],"stringId":"AscendancyWitch3Notable6"},"28432":{"connections":[{"id":20416,"orbit":0},{"id":23062,"orbit":0}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Armour if Consumed Endurance Charge","orbit":2,"orbitIndex":8,"skill":28432,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"endurance_charges12"},"28441":{"connections":[{"id":10011,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Frantic Swings","orbit":7,"orbitIndex":15,"recipe":["Disgust","Despair","Despair"],"skill":28441,"stats":["Enemies Blinded by you have 50% reduced Critical Hit Chance"],"stringId":"blind11"},"28446":{"connections":[{"id":12430,"orbit":0},{"id":50084,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isSwitchable":true,"name":"Attack Area","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","id":50612,"name":"Spell and Attack Damage","stats":["10% increased Spell Damage","10% increased Attack Damage"]}},"orbit":2,"orbitIndex":9,"skill":28446,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks5_"},"28458":{"connections":[{"id":38972,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":10,"skill":28458,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence6"},"28464":{"connections":[{"id":8908,"orbit":0}],"group":1164,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":0,"orbitIndex":0,"skill":28464,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield38_"},"28476":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":523,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":28476,"stats":[],"stringId":"mastery_thorns307"},"28482":{"connections":[{"id":19846,"orbit":0}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Total Incineration","orbit":7,"orbitIndex":1,"recipe":["Guilt","Isolation","Suffering"],"skill":28482,"stats":["10% increased Ignite Duration on Enemies","25% increased Damage with Hits against Ignited Enemies"],"stringId":"fire28_"},"28489":{"connectionArt":"CharacterPlanned","connections":[{"id":27216,"orbit":8},{"id":56890,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Skill Effect Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":69,"skill":28489,"stats":["Shapeshift Skills have 15% increased Skill Effect Duration"],"stringId":"oracle_wyvern_addon1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28492":{"connections":[{"id":54099,"orbit":0}],"flavourText":"Why should I dodge blows that I do not fear?","group":755,"icon":"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds","isKeystone":true,"name":"Iron Reflexes","orbit":0,"orbitIndex":0,"skill":28492,"stats":["Converts all Evasion Rating to Armour"],"stringId":"passive_keystone_iron_reflexes_"},"28510":{"connections":[{"id":45969,"orbit":-5},{"id":10247,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":56,"skill":28510,"stats":["+5 to any Attribute"],"stringId":"strength32"},"28516":{"connections":[{"id":7542,"orbit":2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":8,"skill":28516,"stats":["6% increased Area of Effect"],"stringId":"area_of_effect20"},"28542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":62785,"orbit":7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"The Molten One's Gift","orbit":1,"orbitIndex":5,"recipe":["Guilt","Suffering","Greed"],"skill":28542,"stats":["+10% to Fire Resistance","15% increased effect of Fully Broken Armour","Fully Broken Armour you inflict also increases Fire Damage Taken from Hits"],"stringId":"armour_break16_"},"28556":{"connections":[],"group":926,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":12,"skill":28556,"stats":["+5 to any Attribute"],"stringId":"strength43"},"28564":{"connections":[{"id":8460,"orbit":0}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":2,"orbitIndex":8,"skill":28564,"stats":["16% increased Warcry Speed"],"stringId":"warcries3"},"28573":{"connections":[],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":6,"skill":28573,"stats":["Minions Revive 5% faster"],"stringId":"minion_defence19"},"28578":{"connections":[],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Critical Chance","orbit":7,"orbitIndex":2,"skill":28578,"stats":["8% increased Mana Regeneration Rate","8% increased Critical Hit Chance"],"stringId":"mana_regeneration3"},"28589":{"connections":[{"id":30300,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour if Hit","orbit":3,"orbitIndex":23,"skill":28589,"stats":["20% increased Armour if you have been Hit Recently"],"stringId":"getting_hit1"},"28613":{"connections":[{"id":39598,"orbit":0},{"id":30553,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Roaring Cries","orbit":2,"orbitIndex":2,"recipe":["Suffering","Despair","Greed"],"skill":28613,"stats":["Warcries have a minimum of 10 Power"],"stringId":"warcries39"},"28623":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":28623,"stats":[],"stringId":"mastery_spell_suppression_6710_"},"28625":{"connections":[{"id":32135,"orbit":5},{"id":35848,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Recovery","orbit":7,"orbitIndex":0,"skill":28625,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks17"},"28638":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","connections":[{"id":37514,"orbit":0},{"id":2113,"orbit":0}],"group":1513,"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","isOnlyImage":true,"name":"Quarterstaff Mastery","orbit":0,"orbitIndex":0,"skill":28638,"stats":[],"stringId":"mastery_quarterstaff_6654_"},"28680":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":442,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":28680,"stats":[],"stringId":"mastery_caster45"},"28693":{"connections":[{"id":49280,"orbit":7}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":1,"skill":28693,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion8"},"28718":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":681,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":28718,"stats":[],"stringId":"mastery_elemental_6475"},"28745":{"ascendancyName":"Shaman","connections":[],"group":72,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds","isNotable":true,"name":"Bringer of the Apocalypse","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":28745,"stats":["Grants Skill: Apocalypse"],"stringId":"AscendancyDruid2Notable2"},"28770":{"connectionArt":"CharacterPlanned","connections":[{"id":479,"orbit":-7}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":28770,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"oracle_shapeshifting_path2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28774":{"connections":[{"id":2999,"orbit":0},{"id":10295,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":26,"skill":28774,"stats":["3% increased Cast Speed"],"stringId":"cast_speed1"},"28797":{"connections":[{"id":632,"orbit":0}],"group":1517,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":65,"skill":28797,"stats":["3% increased Attack Speed with Daggers"],"stringId":"dagger6"},"28800":{"connections":[{"id":55308,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":28800,"stats":["10% increased Projectile Damage"],"stringId":"projectiles38_"},"28823":{"connections":[{"id":21111,"orbit":4},{"id":59303,"orbit":5}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Activation Chance","orbit":7,"orbitIndex":23,"skill":28823,"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"stringId":"charms13"},"28835":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":56847,"orbit":0},{"id":60480,"orbit":0},{"id":8157,"orbit":0}],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":0,"orbitIndex":0,"skill":28835,"stats":["12% increased Damage while affected by a Herald"],"stringId":"heralds10"},"28839":{"connections":[],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":16,"skill":28839,"stats":["3% increased Cast Speed"],"stringId":"cast_speed14"},"28859":{"connections":[{"id":45382,"orbit":0}],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Ailment Chance and Elemental Damage","orbit":4,"orbitIndex":15,"skill":28859,"stats":["10% increased Elemental Damage","6% increased chance to inflict Ailments"],"stringId":"ailments47"},"28860":{"connections":[{"id":56104,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":18,"skill":28860,"stats":["Break 20% increased Armour"],"stringId":"armour_break26"},"28862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":465,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":28862,"stats":[],"stringId":"mastery_leech23_"},"28863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":877,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":28863,"stats":[],"stringId":"mastery_attack13"},"28892":{"connections":[{"id":13845,"orbit":7},{"id":65042,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Primal Rage","orbit":3,"orbitIndex":2,"recipe":["Suffering","Guilt","Paranoia"],"skill":28892,"stats":["+12 to maximum Rage while Shapeshifted"],"stringId":"rage25"},"28903":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":28903,"stats":[],"stringId":"mastery_poison199"},"28950":{"connections":[{"id":63469,"orbit":0},{"id":10156,"orbit":0},{"id":19873,"orbit":9},{"id":44948,"orbit":0},{"id":41838,"orbit":-8}],"group":672,"icon":"Art/2DArt/SkillIcons/passives/bodysoul.dds","isNotable":true,"isSwitchable":true,"name":"Devoted Protector","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":7130,"name":"Bastion of the Forest","stats":["15% increased Armour","+15% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","+5 to Strength and Intelligence"]}},"orbit":0,"orbitIndex":0,"skill":28950,"stats":["15% increased Armour","+15% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","+5 to Strength and Intelligence"],"stringId":"templar_druid_notable2"},"28963":{"connections":[{"id":23105,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","isNotable":true,"name":"Chakra of Rhythm","orbit":2,"orbitIndex":1,"recipe":["Guilt","Greed","Despair"],"skill":28963,"stats":["6% increased Attack Speed","20% Chance to build an additional Combo on Hit"],"stringId":"unarmed11"},"28975":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":26905,"orbit":0}],"group":909,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Pure Power","orbit":6,"orbitIndex":0,"recipe":["Suffering","Guilt","Suffering"],"skill":28975,"stats":["10% more Maximum Lightning Damage"],"stringId":"lightning29"},"28976":{"connections":[{"id":23374,"orbit":0},{"id":29458,"orbit":0}],"group":1530,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":0,"orbitIndex":0,"skill":28976,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison7"},"28981":{"connections":[{"id":34871,"orbit":-2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":2,"orbitIndex":18,"skill":28981,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage34"},"28982":{"connections":[{"id":31295,"orbit":0},{"id":55190,"orbit":0},{"id":32845,"orbit":0},{"id":45226,"orbit":0}],"group":105,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28982,"stats":["+5 to any Attribute"],"stringId":"strength48"},"28992":{"connections":[{"id":62628,"orbit":0},{"id":43923,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/Hunter.dds","isNotable":true,"isSwitchable":true,"name":"Honed Instincts","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/LethalAssault.dds","id":32062,"name":"Primal Instinct","stats":["8% increased Attack Speed","6% increased Area of Effect","+10 to Dexterity"]}},"orbit":4,"orbitIndex":21,"skill":28992,"stats":["8% increased Projectile Speed","8% increased Attack Speed","+10 to Dexterity"],"stringId":"ranger_huntress_notable2"},"29009":{"connections":[{"id":59362,"orbit":0}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29009,"stats":["+5 to any Attribute"],"stringId":"intelligence56"},"29041":{"connections":[{"id":31388,"orbit":0},{"id":52298,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":12,"skill":29041,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells2"},"29049":{"connections":[{"id":56893,"orbit":3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":10,"skill":29049,"stats":["10% increased Charm Effect Duration"],"stringId":"charms9"},"29065":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":1,"orbitIndex":7,"skill":29065,"stats":[],"stringId":"mastery_bleeding_6327"},"29074":{"ascendancyName":"Pathfinder","connections":[],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds","isNotable":true,"name":"Overwhelming Toxicity","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":8,"orbitIndex":36,"skill":29074,"stats":["Double the number of your Poisons that targets can be affected by at the same time","50% less Poison Duration"],"stringId":"AscendancyRanger3Notable4"},"29098":{"connections":[{"id":43588,"orbit":0},{"id":10727,"orbit":-2}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":8,"skill":29098,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells10"},"29126":{"connectionArt":"CharacterPlanned","connections":[{"id":32353,"orbit":-7}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":14,"skill":29126,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"oracle_shapeshifting_path1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29133":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":2}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":4,"orbitIndex":9,"skill":29133,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyMonk2Small6"},"29148":{"connections":[{"id":34840,"orbit":0}],"group":621,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29148,"stats":["+5 to any Attribute"],"stringId":"intelligence48"},"29162":{"ascendancyName":"Tactician","connections":[{"id":15044,"orbit":0}],"group":349,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Spirit","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":29162,"stats":["8% increased Spirit"],"stringId":"AscendancyMercenary1Small1"},"29197":{"connectionArt":"CharacterPlanned","connections":[{"id":11428,"orbit":-7}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":15,"skill":29197,"stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"stringId":"oracle_archon_crit1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29240":{"connections":[{"id":55668,"orbit":0},{"id":10881,"orbit":0},{"id":31977,"orbit":0},{"id":57513,"orbit":0}],"group":1074,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29240,"stats":["+5 to any Attribute"],"stringId":"attributes61"},"29246":{"connections":[{"id":22927,"orbit":0},{"id":35043,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":6,"orbitIndex":27,"skill":29246,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"buckler9"},"29270":{"connections":[{"id":7251,"orbit":-2}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":20,"skill":29270,"stats":["10% increased Attack Damage"],"stringId":"life_leech7"},"29285":{"connections":[{"id":9745,"orbit":2147483647},{"id":38463,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":19,"skill":29285,"stats":["2% increased Movement Speed"],"stringId":"azmerianimals10"},"29288":{"connections":[{"id":36759,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Deadly Invocations","orbit":3,"orbitIndex":1,"recipe":["Isolation","Ire","Envy"],"skill":29288,"stats":["Invocation Spells have 50% increased Critical Damage Bonus"],"stringId":"triggers30"},"29306":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":17668,"orbit":1}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","isNotable":true,"name":"Chakra of Thought","orbit":1,"orbitIndex":1,"recipe":["Fear","Disgust","Guilt"],"skill":29306,"stats":["8% of Damage is taken from Mana before Life","15% increased Attack Speed while not on Low Mana"],"stringId":"monkchakra6"},"29320":{"connections":[{"id":1680,"orbit":7},{"id":56860,"orbit":0}],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":7,"orbitIndex":8,"skill":29320,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"buckler17"},"29323":{"ascendancyName":"Titan","connections":[{"id":24807,"orbit":4}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Armour","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":6,"orbitIndex":53,"skill":29323,"stats":["20% increased Armour"],"stringId":"AscendancyWarrior1Small8"},"29328":{"connections":[{"id":43201,"orbit":0}],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":61,"skill":29328,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments1"},"29358":{"connections":[{"id":917,"orbit":-7}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":7,"skill":29358,"stats":["15% increased Stun Buildup"],"stringId":"stun9"},"29361":{"connections":[],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":7,"skill":29361,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield4"},"29369":{"connections":[{"id":11337,"orbit":5},{"id":41669,"orbit":-4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":4,"orbitIndex":42,"skill":29369,"stats":["15% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze11"},"29372":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[{"id":7720,"orbit":0},{"id":63268,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Sudden Infuriation","orbit":5,"orbitIndex":60,"recipe":["Fear","Suffering","Isolation"],"skill":29372,"stats":["4% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"],"stringId":"rage19"},"29391":{"connections":[{"id":29009,"orbit":-3},{"id":5314,"orbit":3},{"id":50715,"orbit":3},{"id":61354,"orbit":0},{"id":29800,"orbit":-3}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":6,"skill":29391,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion19_"},"29398":{"ascendancyName":"Stormweaver","connections":[{"id":18849,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Chill Duration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":6,"orbitIndex":2,"skill":29398,"stats":["25% increased Chill Duration on Enemies"],"stringId":"AscendancySorceress1Small8"},"29399":{"connections":[{"id":23888,"orbit":7},{"id":51446,"orbit":-7}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":20,"skill":29399,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion22"},"29402":{"connections":[{"id":4046,"orbit":0},{"id":54282,"orbit":0},{"id":38270,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":7,"orbitIndex":3,"skill":29402,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation5"},"29408":{"connections":[{"id":31888,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":8,"skill":29408,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration11"},"29432":{"connections":[{"id":4061,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":48,"skill":29432,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield42__"},"29447":{"connections":[{"id":11786,"orbit":2147483647}],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":11,"skill":29447,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"stringId":"armour48"},"29458":{"connections":[],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":14,"skill":29458,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison2"},"29479":{"connections":[{"id":50469,"orbit":0}],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":18,"skill":29479,"stats":["+5 to any Attribute"],"stringId":"dexterity87"},"29502":{"connections":[{"id":36302,"orbit":4}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":29502,"stats":["3% increased Cast Speed"],"stringId":"cast_speed10"},"29514":{"connections":[{"id":39431,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Cluster Bombs","orbit":3,"orbitIndex":3,"recipe":["Suffering","Isolation","Disgust"],"skill":29514,"stats":["50% increased Grenade Detonation Time","Grenade Skills Fire an additional Projectile"],"stringId":"grenades11"},"29517":{"connections":[{"id":32701,"orbit":0},{"id":37695,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":24,"skill":29517,"stats":["+5 to any Attribute"],"stringId":"dexterity38"},"29527":{"connections":[{"id":61800,"orbit":0}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"First Approach","orbit":7,"orbitIndex":8,"recipe":["Paranoia","Ire","Fear"],"skill":29527,"stats":["40% increased Critical Hit Chance against Enemies that are on Full Life","Cannot be Blinded while on Full Life","80% increased Damage with Hits against Enemies that are on Full Life"],"stringId":"enemies_on_full_life9"},"29582":{"connections":[{"id":35987,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isSwitchable":true,"name":"Accuracy","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","id":5083,"name":"Stun Threshold during Parry","stats":["20% increased Stun Threshold while Parrying"]}},"orbit":2,"orbitIndex":14,"skill":29582,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy8"},"29611":{"connections":[{"id":41768,"orbit":0},{"id":61393,"orbit":0},{"id":28201,"orbit":0}],"group":140,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29611,"stats":["+5 to any Attribute"],"stringId":"strength46"},"29652":{"connections":[{"id":15180,"orbit":0},{"id":6008,"orbit":0},{"id":32194,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":11,"skill":29652,"stats":["10% increased Spell Damage"],"stringId":"spells6"},"29663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connectionArt":"CharacterPlanned","connections":[],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Movement Mastery","orbit":2,"orbitIndex":6,"skill":29663,"stats":[],"stringId":"oracle_movement_cooldown_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29695":{"connections":[],"group":850,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","id":31204,"name":"Mana Regeneration","stats":["10% increased Mana Regeneration Rate"]}},"orbit":2,"orbitIndex":7,"skill":29695,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery19"},"29762":{"connections":[{"id":8460,"orbit":0},{"id":40328,"orbit":-2}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Guttural Roar","orbit":3,"orbitIndex":1,"recipe":["Paranoia","Ire","Disgust"],"skill":29762,"stats":["25% increased Warcry Speed","Warcries Debilitate Enemies","Warcry Skills have 25% increased Area of Effect"],"stringId":"warcries18"},"29763":{"connections":[{"id":39423,"orbit":0}],"group":1190,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":29763,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration1"},"29788":{"connections":[{"id":46060,"orbit":-2}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":4,"skill":29788,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech3"},"29800":{"connections":[{"id":50383,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Shocking Limit","orbit":7,"orbitIndex":15,"recipe":["Paranoia","Envy","Fear"],"skill":29800,"stats":["+1 to maximum Lightning Infusions"],"stringId":"infusion25"},"29843":{"connections":[{"id":35987,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion and Reduced Movement Penalty","orbit":7,"orbitIndex":19,"skill":29843,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion4"},"29871":{"ascendancyName":"Deadeye","connections":[{"id":24226,"orbit":0}],"group":1553,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Mark Effect","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":29871,"stats":["12% increased Effect of your Mark Skills"],"stringId":"AscendancyRanger1Small4"},"29881":{"connections":[{"id":25446,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Surging Beast","orbit":1,"orbitIndex":8,"recipe":["Disgust","Ire","Disgust"],"skill":29881,"stats":["Gain Arcane Surge when you Shapeshift to Human form after","being Shapeshifted for at least 8 seconds"],"stringId":"wyvern17"},"29899":{"connections":[{"id":19001,"orbit":0},{"id":6912,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Finish Them","orbit":7,"orbitIndex":21,"recipe":["Suffering","Despair","Guilt"],"skill":29899,"stats":["40% increased Culling Strike Threshold against Immobilised Enemies"],"stringId":"slaying12_"},"29914":{"connections":[{"id":46931,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour and Evasion while Surrounded","orbit":3,"orbitIndex":7,"skill":29914,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded19"},"29930":{"connections":[{"id":16938,"orbit":3},{"id":47088,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage and Companion Life","orbit":2,"orbitIndex":0,"skill":29930,"stats":["Companions deal 12% increased Damage","Companions have 12% increased maximum Life"],"stringId":"duelist_minions5_"},"29941":{"connections":[{"id":60829,"orbit":0},{"id":57517,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":3,"orbitIndex":17,"skill":29941,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed36"},"29959":{"connections":[{"id":6891,"orbit":3},{"id":60362,"orbit":-3}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":14,"skill":29959,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals87"},"29985":{"connectionArt":"CharacterPlanned","connections":[{"id":61113,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":14,"skill":29985,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_forbidden_path3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29990":{"connections":[{"id":36217,"orbit":0},{"id":47477,"orbit":-9},{"id":30808,"orbit":0}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":7,"orbitIndex":8,"skill":29990,"stats":["5% chance to gain Volatility on Kill"],"stringId":"volatility13"},"29993":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":301,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":8,"skill":29993,"stats":[],"stringId":"mastery_duration91"},"30007":{"connections":[{"id":3188,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":1,"orbitIndex":7,"skill":30007,"stats":["16% increased Thorns damage"],"stringId":"getting_hit3_"},"30040":{"connections":[{"id":56016,"orbit":0}],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":7,"skill":30040,"stats":["Break 20% increased Armour"],"stringId":"armour_break18"},"30047":{"connections":[{"id":21280,"orbit":0},{"id":18451,"orbit":0},{"id":45650,"orbit":0}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30047,"stats":["+5 to any Attribute"],"stringId":"dexterity67_"},"30061":{"connections":[{"id":31908,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":4,"skill":30061,"stats":["6% increased Curse Magnitudes"],"stringId":"curses23"},"30071":{"ascendancyName":"Blood Mage","connections":[{"id":27667,"orbit":-9}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Curse Effect","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":6,"orbitIndex":4,"skill":30071,"stats":["6% increased Curse Magnitudes"],"stringId":"AscendancyWitch2Small5"},"30077":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":30077,"stats":[],"stringId":"mastery_caster_6356"},"30082":{"connections":[{"id":43155,"orbit":0}],"group":971,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":30082,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow23"},"30100":{"ascendancyName":"Ritualist","connections":[{"id":38813,"orbit":6}],"group":1617,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30100,"stats":["3% increased Movement Speed"],"stringId":"AscendancyHuntress3Small7"},"30102":{"connections":[{"id":43944,"orbit":2147483647},{"id":53177,"orbit":0}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":2,"orbitIndex":23,"skill":30102,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility6"},"30115":{"ascendancyName":"Titan","connections":[],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds","isNotable":true,"name":"Hulking Form","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":7,"orbitIndex":16,"skill":30115,"stats":["50% increased effect of Small Passive Skills"],"stringId":"AscendancyWarrior1Notable5"},"30117":{"ascendancyName":"Blood Mage","connections":[{"id":26383,"orbit":5},{"id":8415,"orbit":-5}],"group":939,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30117,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancyWitch2Small1"},"30123":{"connections":[{"id":6923,"orbit":0},{"id":26092,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":12,"skill":30123,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed3"},"30132":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":58416,"orbit":2147483647},{"id":49130,"orbit":2147483647}],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","isNotable":true,"name":"Wrapped Quiver","orbit":7,"orbitIndex":15,"recipe":["Greed","Suffering","Envy"],"skill":30132,"stats":["20% increased bonuses gained from Equipped Quiver"],"stringId":"quivers9"},"30136":{"connections":[{"id":22626,"orbit":0}],"group":208,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Damage vs Armour Broken Enemies","orbit":3,"orbitIndex":7,"skill":30136,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"stringId":"armour_break9"},"30141":{"connections":[{"id":55190,"orbit":0}],"group":129,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30141,"stats":["+5 to any Attribute"],"stringId":"attributes15"},"30143":{"connections":[{"id":34201,"orbit":9}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":0,"skill":30143,"stats":["5% increased Block chance"],"stringId":"block22"},"30151":{"ascendancyName":"Tactician","connections":[{"id":32637,"orbit":0}],"group":400,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30151,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary1Small6"},"30197":{"connections":[{"id":52415,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Attack Speed with Companion in Presence","orbit":2,"orbitIndex":2,"skill":30197,"stats":["4% increased Attack Speed while your Companion is in your Presence"],"stringId":"companions31_"},"30210":{"connections":[{"id":64650,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Evasion Rating","orbit":2,"orbitIndex":6,"skill":30210,"stats":["15% increased Evasion Rating"],"stringId":"stun_threshold18"},"30219":{"connections":[{"id":45177,"orbit":-2}],"group":619,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":1,"orbitIndex":10,"skill":30219,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy47"},"30233":{"ascendancyName":"Ritualist","connections":[{"id":30100,"orbit":6}],"group":1621,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds","isNotable":true,"name":"As the Whispers Demand","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30233,"stats":["Grants Skill: Ritual Sacrifice"],"stringId":"AscendancyHuntress3Notable7"},"30252":{"connections":[{"id":20049,"orbit":4},{"id":48135,"orbit":-4}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Effect","orbit":7,"orbitIndex":18,"skill":30252,"stats":["Charms applied to you have 10% increased Effect"],"stringId":"charms18"},"30258":{"connections":[{"id":40105,"orbit":0}],"group":235,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack Speed and Minion Attack Speed","orbit":2,"orbitIndex":9,"skill":30258,"stats":["3% increased Attack Speed","Minions have 3% increased Attack Speed"],"stringId":"minion_offence58"},"30265":{"ascendancyName":"Disciple of Varashta","connections":[],"group":610,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Energy Shield","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30265,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancySorceress3Small1"},"30300":{"connections":[{"id":12565,"orbit":0},{"id":1200,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":2,"orbitIndex":2,"skill":30300,"stats":["16% increased Thorns damage"],"stringId":"getting_hit6"},"30334":{"connections":[{"id":9324,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":0,"skill":30334,"stats":["8% increased Ignite Duration on Enemies"],"stringId":"ignite_mitigation10"},"30341":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":1995,"orbit":0},{"id":37946,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","isNotable":true,"name":"Master Fletching","orbit":7,"orbitIndex":0,"recipe":["Fear","Despair","Disgust"],"skill":30341,"stats":["20% increased bonuses gained from Equipped Quiver"],"stringId":"quivers4"},"30346":{"connections":[{"id":44871,"orbit":0},{"id":29695,"orbit":-5},{"id":34006,"orbit":6}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":13,"skill":30346,"stats":["+10 to maximum Energy Shield"],"stringId":"energy_shield14"},"30371":{"connections":[{"id":27687,"orbit":-4}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":3,"orbitIndex":1,"skill":30371,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield3"},"30372":{"connections":[{"id":42065,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":23,"skill":30372,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration13"},"30390":{"connections":[{"id":33978,"orbit":3}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":30390,"stats":["5% increased Block chance"],"stringId":"block23"},"30392":{"connections":[{"id":28106,"orbit":0},{"id":41016,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Succour","orbit":2,"orbitIndex":3,"recipe":["Disgust","Despair","Guilt"],"skill":30392,"stats":["30% increased Life Regeneration rate during Effect of any Life Flask"],"stringId":"life_flasks25_"},"30393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":58894,"orbit":0},{"id":15825,"orbit":0}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":30393,"stats":[],"stringId":"mastery_energyshield107"},"30395":{"connections":[{"id":9221,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Howling Beast","orbit":1,"orbitIndex":2,"recipe":["Fear","Paranoia","Envy"],"skill":30395,"stats":["Warcries inflict 3 Critical Weakness on Enemies"],"stringId":"wolf14"},"30408":{"connections":[{"id":17906,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","isNotable":true,"name":"Efficient Contraptions","orbit":7,"orbitIndex":16,"recipe":["Fear","Paranoia","Guilt"],"skill":30408,"stats":["Hazards have 15% chance to rearm after they are triggered"],"stringId":"hazards4"},"30456":{"connections":[{"id":38044,"orbit":-5}],"group":1220,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"High Alert","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Greed"],"skill":30456,"stats":["50% increased Evasion Rating when on Full Life","25% increased Stun Threshold while on Full Life"],"stringId":"evasion5"},"30457":{"connections":[{"id":54416,"orbit":4}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":12,"skill":30457,"stats":["15% increased Armour"],"stringId":"armour1"},"30459":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":3,"skill":30459,"stats":[],"stringId":"mastery_minion_offence_6616"},"30463":{"connections":[{"id":58971,"orbit":-7},{"id":9968,"orbit":-6}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":3,"skill":30463,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression26_"},"30523":{"connections":[{"id":35492,"orbit":0}],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Dead can Dance","orbit":5,"orbitIndex":61,"recipe":["Despair","Fear","Ire"],"skill":30523,"stats":["Minions have 25% increased maximum Life","Minions have 25% increased Evasion Rating"],"stringId":"minion_offence16"},"30539":{"connections":[{"id":25620,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":7,"orbitIndex":18,"skill":30539,"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"stringId":"corpses8"},"30546":{"connections":[{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Electrified Claw","orbit":7,"orbitIndex":23,"recipe":["Guilt","Fear","Suffering"],"skill":30546,"stats":["Gain 8% of Damage as Extra Lightning Damage while Shapeshifted"],"stringId":"wyvern14"},"30553":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":162,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":30553,"stats":[],"stringId":"mastery_warcry_6791"},"30554":{"connections":[{"id":29611,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":20,"skill":30554,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence2"},"30555":{"connections":[{"id":53960,"orbit":3}],"group":941,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30555,"stats":["+5 to any Attribute"],"stringId":"attributes40"},"30562":{"connections":[{"id":11032,"orbit":0}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Inner Faith","orbit":2,"orbitIndex":18,"recipe":["Envy","Greed","Isolation"],"skill":30562,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","25% reduced effect of Curses on you"],"stringId":"evasion_and_energy_shield12_"},"30615":{"connections":[],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Critical Damage when consuming a Power Charge","orbit":2,"orbitIndex":13,"skill":30615,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"stringId":"power_charges6_"},"30634":{"connections":[],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":6,"skill":30634,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery5"},"30657":{"connections":[{"id":38463,"orbit":0},{"id":6842,"orbit":0},{"id":59064,"orbit":0},{"id":58848,"orbit":0},{"id":32891,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30657,"stats":["+5 to any Attribute"],"stringId":"attributes9"},"30662":{"connections":[{"id":26291,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":32,"skill":30662,"stats":["12% increased Lightning Damage"],"stringId":"lightning1_"},"30663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":24721,"orbit":0}],"group":1243,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":30663,"stats":[],"stringId":"mastery_cold_6392"},"30695":{"connections":[{"id":13783,"orbit":0},{"id":19808,"orbit":0},{"id":56472,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds","isNotable":true,"isSwitchable":true,"name":"Vile Wounds","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","id":53849,"name":"Eagle Eye","stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"]}},"orbit":2,"orbitIndex":14,"skill":30695,"stats":["33% increased Damage with Hits against Enemies affected by Ailments"],"stringId":"exploiting_elemental_ailments10"},"30701":{"connections":[],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":8,"skill":30701,"stats":["6% reduced Projectile Speed"],"stringId":"projectiles41"},"30704":{"connections":[{"id":22045,"orbit":0}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration and Damage","orbit":2,"orbitIndex":6,"skill":30704,"stats":["5% increased Damage","Regenerate 0.1% of maximum Life per second"],"stringId":"life_regeneration12"},"30720":{"connections":[{"id":20119,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","isNotable":true,"name":"Entropic Incarnation","orbit":2,"orbitIndex":2,"recipe":["Suffering","Suffering","Envy"],"skill":30720,"stats":["Minions have +13% to Chaos Resistance","Minions gain 10% of Physical Damage as Chaos Damage"],"stringId":"minion_reservation14"},"30736":{"connections":[{"id":52180,"orbit":-2}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":13,"skill":30736,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect57_"},"30748":{"connections":[{"id":21801,"orbit":0}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Controlled Chaos","orbit":7,"orbitIndex":0,"recipe":["Greed","Envy","Guilt"],"skill":30748,"stats":["Maximum Volatility is 30"],"stringId":"volatility2"},"30780":{"connections":[{"id":17112,"orbit":-2},{"id":5410,"orbit":-2}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Area and Damage","orbit":2,"orbitIndex":15,"skill":30780,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"stringId":"melee60"},"30781":{"connectionArt":"CharacterPlanned","connections":[{"id":63772,"orbit":2147483647}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Movement Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":18,"skill":30781,"stats":["3% increased Movement Speed"],"stringId":"oracle_movement_cooldown3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"30808":{"connections":[{"id":14267,"orbit":0},{"id":28101,"orbit":-4},{"id":28859,"orbit":0}],"group":1502,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30808,"stats":["+5 to any Attribute"],"stringId":"attributes11"},"30820":{"connections":[{"id":26786,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Skill Duration","orbit":7,"orbitIndex":16,"skill":30820,"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"stringId":"attack7"},"30829":{"connections":[{"id":56999,"orbit":0}],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":0,"skill":30829,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy27"},"30834":{"connections":[{"id":50216,"orbit":0},{"id":57967,"orbit":0}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":2,"skill":30834,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana4"},"30839":{"connections":[{"id":35671,"orbit":-3}],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":3,"orbitIndex":17,"skill":30839,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed21_"},"30871":{"connections":[{"id":12208,"orbit":0}],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":9,"skill":30871,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks15"},"30896":{"connections":[{"id":49172,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":13,"skill":30896,"stats":["3% increased Skill Speed with Channelling Skills"],"stringId":"channelling4"},"30904":{"ascendancyName":"Oracle","connections":[],"group":22,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds","isNotable":true,"name":"Harmony Within","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30904,"stats":["Hit damage is taken from Mana before Life if your current Mana is higher than your current Life","15% less maximum Life","15% less maximum Mana"],"stringId":"AscendancyDruid1Notable3"},"30905":{"connections":[{"id":8697,"orbit":5},{"id":34201,"orbit":6}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":21,"skill":30905,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks3"},"30910":{"connections":[{"id":59647,"orbit":-7}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":2,"orbitIndex":13,"skill":30910,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"duelist_minions1"},"30959":{"connections":[{"id":31778,"orbit":2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":30959,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"oracle3"},"30973":{"connections":[{"id":49320,"orbit":0}],"group":1493,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Chance","orbit":6,"orbitIndex":34,"skill":30973,"stats":["10% increased Critical Hit Chance with Daggers"],"stringId":"dagger11"},"30979":{"connections":[{"id":46358,"orbit":0},{"id":44733,"orbit":0},{"id":12610,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30979,"stats":["+5 to any Attribute"],"stringId":"intelligence38"},"30985":{"connections":[{"id":12324,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Chance","orbit":2,"orbitIndex":10,"skill":30985,"stats":["5% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"stringId":"infusion7"},"30990":{"connections":[{"id":58939,"orbit":0}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":16,"skill":30990,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals82"},"30996":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53762,"orbit":0},{"id":18146,"orbit":0}],"group":543,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds","isNotable":true,"name":"Gem Studded","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30996,"stats":["For each colour of Socketed Support Gem that is most numerous, gain:","Red: Hits against you have no Critical Damage Bonus","Blue: Skills have 30% less cost","Green: 40% less Movement Speed Penalty from using Skills while Moving"],"stringId":"AscendancyMercenary3Notable3"},"31010":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Delay","orbit":4,"orbitIndex":23,"skill":31010,"stats":["10% faster start of Energy Shield Recharge while Shapeshifted"],"stringId":"wyvern11"},"31017":{"connections":[{"id":26339,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":31017,"stats":["15% increased Totem Damage"],"stringId":"totems53"},"31037":{"connections":[{"id":34866,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":22,"skill":31037,"stats":["Remnants you create have 10% increased effect"],"stringId":"remnant2"},"31039":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":31039,"stats":[],"stringId":"mastery_criticals65"},"31055":{"connections":[{"id":18969,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":2,"orbitIndex":19,"skill":31055,"stats":["3% increased Attack Speed with Bows"],"stringId":"bow15"},"31112":{"connections":[],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Strike","orbit":7,"orbitIndex":2,"skill":31112,"stats":["10% increased Ballista Critical Hit Chance"],"stringId":"ballista11"},"31116":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds","isNotable":true,"name":"Grasp of the Void","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":8,"orbitIndex":24,"skill":31116,"stats":["Grants Skill: Void Illusion"],"stringId":"AscendancyMonk3Notable8"},"31129":{"connections":[{"id":37971,"orbit":0}],"group":1545,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Lifelong Friend","orbit":0,"orbitIndex":0,"recipe":["Despair","Despair","Ire"],"skill":31129,"stats":["Minions Revive 35% faster if all your Minions are Companions"],"stringId":"companions7"},"31159":{"connections":[{"id":46017,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration while Stationary","orbit":7,"orbitIndex":20,"skill":31159,"stats":["15% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration13_"},"31172":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Falcon Technique","orbit":5,"orbitIndex":51,"recipe":["Suffering","Suffering","Despair"],"skill":31172,"stats":["1% increased Attack Speed per 25 Dexterity"],"stringId":"attack_speed34"},"31175":{"connections":[{"id":20119,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Grip of Evil","orbit":2,"orbitIndex":22,"recipe":["Isolation","Despair","Ire"],"skill":31175,"stats":["Minions have 40% increased Critical Damage Bonus"],"stringId":"minion_offence33_"},"31189":{"connections":[{"id":28863,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","isNotable":true,"name":"Unexpected Finesse","orbit":4,"orbitIndex":12,"recipe":["Despair","Greed","Isolation"],"skill":31189,"stats":["20% increased Attack Damage","30% increased Accuracy Rating while moving"],"stringId":"attack33_"},"31223":{"ascendancyName":"Blood Mage","connections":[],"group":1015,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds","isNotable":true,"name":"Crimson Power","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":31223,"stats":["Gain additional maximum Life equal to 100% of the Item Energy Shield on Equipped Body Armour"],"stringId":"AscendancyWitch2Notable8"},"31238":{"connections":[{"id":48552,"orbit":0},{"id":45918,"orbit":0},{"id":10452,"orbit":0}],"group":477,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":31238,"stats":["+5 to any Attribute"],"stringId":"attributes14"},"31273":{"connections":[{"id":17372,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":2,"orbitIndex":4,"skill":31273,"stats":["10% increased Melee Damage"],"stringId":"melee14_"},"31284":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":21380,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":3,"skill":31284,"stats":[],"stringId":"mastery_critical_267"},"31286":{"connections":[{"id":16140,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical","orbit":3,"orbitIndex":14,"skill":31286,"stats":["10% increased Physical Damage"],"stringId":"physical5"},"31290":{"connections":[{"id":32474,"orbit":0},{"id":60332,"orbit":0},{"id":32764,"orbit":0},{"id":37609,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":22,"skill":31290,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour52"},"31292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":31292,"stats":[],"stringId":"mastery_mace154"},"31295":{"connections":[{"id":9352,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":21,"skill":31295,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks2"},"31326":{"connections":[{"id":44092,"orbit":0},{"id":11505,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Slow Burn","orbit":2,"orbitIndex":18,"recipe":["Guilt","Suffering","Paranoia"],"skill":31326,"stats":["20% increased Ignite Magnitude","20% increased Ignite Duration on Enemies"],"stringId":"ignite6"},"31345":{"connections":[{"id":55400,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":11,"skill":31345,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration11"},"31364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Primal Protection","orbit":0,"orbitIndex":0,"recipe":["Guilt","Greed","Paranoia"],"skill":31364,"stats":["40% increased Charm Effect Duration","40% increased Charm Charges gained"],"stringId":"charms3"},"31366":{"connections":[{"id":57518,"orbit":4},{"id":3843,"orbit":-4}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":5,"skill":31366,"stats":["Parry has 20% increased Stun Buildup"],"stringId":"deflect4"},"31370":{"connections":[{"id":32448,"orbit":2147483647}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Lightning Damage","orbit":2,"orbitIndex":20,"skill":31370,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"stringId":"armour44"},"31373":{"connections":[{"id":50561,"orbit":0},{"id":47173,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Vocal Empowerment","orbit":4,"orbitIndex":63,"recipe":["Isolation","Isolation","Despair"],"skill":31373,"stats":["Warcries Empower an additional Attack"],"stringId":"warcries12"},"31388":{"connections":[{"id":51394,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":7,"skill":31388,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells3"},"31409":{"connections":[{"id":50437,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":3,"skill":31409,"stats":["15% increased Evasion Rating"],"stringId":"evasion13"},"31419":{"connections":[{"id":35787,"orbit":3},{"id":53405,"orbit":4}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":9,"skill":31419,"stats":["10% increased Skill Effect Duration"],"stringId":"duration2"},"31433":{"connections":[{"id":21495,"orbit":-4},{"id":5348,"orbit":0}],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Catalysis","orbit":2,"orbitIndex":8,"recipe":["Isolation","Isolation","Paranoia"],"skill":31433,"stats":["20% increased Elemental Damage with Attacks","5% of Physical Damage from Hits taken as Damage of a Random Element"],"stringId":"elemental_attacks8"},"31449":{"connections":[{"id":9444,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Chance","orbit":5,"orbitIndex":40,"skill":31449,"stats":["10% increased Critical Hit Chance with Quarterstaves"],"stringId":"quarterstaff13"},"31517":{"connections":[{"id":11722,"orbit":0},{"id":46034,"orbit":0}],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Seal Generation Frequency","orbit":2,"orbitIndex":4,"skill":31517,"stats":["Sealed Skills have 10% increased Seal gain frequency"],"stringId":"spells27"},"31545":{"connections":[{"id":8171,"orbit":0},{"id":3446,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage and Presence Area","orbit":7,"orbitIndex":2,"skill":31545,"stats":["10% increased Presence Area of Effect","6% increased Attack Damage"],"stringId":"glory9"},"31554":{"connectionArt":"CharacterPlanned","connections":[{"id":49929,"orbit":0}],"group":147,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":6,"skill":31554,"stats":["15% increased Skill Effect Duration"],"stringId":"oracle_duration_physical8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31566":{"connections":[{"id":7049,"orbit":0},{"id":54818,"orbit":9}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":23,"skill":31566,"stats":["30% increased Armour while Surrounded"],"stringId":"being_surrounded2"},"31609":{"connections":[{"id":36163,"orbit":-4}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Defences","orbit":3,"orbitIndex":0,"skill":31609,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block24"},"31626":{"connections":[{"id":50516,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Flammability Magnitude","orbit":7,"orbitIndex":23,"skill":31626,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"stringId":"area_attacks62"},"31630":{"connections":[{"id":64474,"orbit":0}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":17,"skill":31630,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery28"},"31644":{"connections":[{"id":14739,"orbit":0},{"id":34058,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":23,"skill":31644,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery21"},"31647":{"connections":[{"id":23305,"orbit":0}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":12,"skill":31647,"stats":["+8 to Dexterity"],"stringId":"dexterity108"},"31650":{"connections":[{"id":16051,"orbit":0},{"id":31017,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":0,"skill":31650,"stats":["15% increased Totem Damage"],"stringId":"totems49"},"31673":{"connections":[{"id":48649,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Energy Shield Delay while Shapeshifted","orbit":2,"orbitIndex":14,"skill":31673,"stats":["10% faster start of Energy Shield Recharge while Shapeshifted"],"stringId":"shapeshifting36"},"31692":{"connections":[{"id":46197,"orbit":0}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":3,"skill":31692,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals83"},"31697":{"connections":[{"id":51303,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":4,"skill":31697,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion8"},"31724":{"connections":[{"id":2074,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Iron Slippers","orbit":2,"orbitIndex":0,"recipe":["Isolation","Envy","Guilt"],"skill":31724,"stats":["+2 to Armour per 1 Item Energy Shield on Equipped Boots","12% reduced Slowing Potency of Debuffs on You"],"stringId":"energy_shield_and_armour29_"},"31745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Lockdown","orbit":4,"orbitIndex":48,"recipe":["Guilt","Despair","Despair"],"skill":31745,"stats":["40% increased Attack Damage against Maimed Enemies","Enemies are Maimed for 4 seconds after becoming Unpinned"],"stringId":"pin11"},"31746":{"connections":[{"id":32845,"orbit":4},{"id":41012,"orbit":-4}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Penetration","orbit":4,"orbitIndex":24,"skill":31746,"stats":["Damage Penetrates 8% Fire Resistance"],"stringId":"ignite_mitigation3"},"31757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connectionArt":"CharacterPlanned","connections":[],"group":147,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":6,"orbitIndex":9,"skill":31757,"stats":[],"stringId":"oracle_duration_physical_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31763":{"connections":[{"id":43155,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Critical Chance","orbit":4,"orbitIndex":27,"skill":31763,"stats":["10% increased Critical Hit Chance with Crossbows"],"stringId":"crossbow6"},"31765":{"connections":[{"id":59538,"orbit":0},{"id":722,"orbit":0},{"id":41886,"orbit":0},{"id":61421,"orbit":0}],"group":1466,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":31765,"stats":["+5 to any Attribute"],"stringId":"dexterity7"},"31773":{"connections":[{"id":55011,"orbit":0}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Resurging Archon","orbit":7,"orbitIndex":1,"recipe":["Envy","Isolation","Disgust"],"skill":31773,"stats":["Archon recovery period expires 25% faster"],"stringId":"archon7"},"31778":{"connections":[{"id":2344,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":31778,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"oracle4"},"31779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":220,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":31779,"stats":[],"stringId":"mastery_power_charge_6642_"},"31805":{"connections":[{"id":44461,"orbit":-3}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":15,"skill":31805,"stats":["10% increased Skill Effect Duration"],"stringId":"duration1_"},"31825":{"connections":[{"id":16142,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":6,"skill":31825,"stats":["12% increased Attack Cold Damage"],"stringId":"cold45"},"31826":{"connections":[{"id":24889,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Long Distance Relationship","orbit":3,"orbitIndex":21,"recipe":["Guilt","Envy","Paranoia"],"skill":31826,"stats":["30% increased Presence Area of Effect","Minions have 15% increased Area of Effect"],"stringId":"companions5"},"31848":{"connections":[{"id":40117,"orbit":7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns Ignore Armour","orbit":7,"orbitIndex":0,"skill":31848,"stats":["Thorns Damage has 25% chance to ignore Enemy Armour"],"stringId":"getting_hit16"},"31855":{"connections":[],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":7,"skill":31855,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks1"},"31888":{"connections":[{"id":34300,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":4,"skill":31888,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration8"},"31890":{"connections":[{"id":38827,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":3,"orbitIndex":5,"skill":31890,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour18"},"31898":{"connections":[{"id":3921,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":7,"skill":31898,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds2"},"31903":{"connections":[{"id":37612,"orbit":0},{"id":56605,"orbit":0},{"id":38010,"orbit":0}],"group":529,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":31903,"stats":["+5 to any Attribute"],"stringId":"strength76"},"31908":{"connections":[{"id":5594,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":8,"skill":31908,"stats":["6% increased Curse Magnitudes"],"stringId":"curses24"},"31918":{"connections":[{"id":4534,"orbit":-3},{"id":60323,"orbit":-9}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":7,"orbitIndex":15,"skill":31918,"stats":["15% chance to Pierce an Enemy"],"stringId":"ranged9"},"31925":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":38596,"orbit":3}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","isNotable":true,"name":"Warding Fetish","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Envy"],"skill":31925,"stats":["30% increased Damage per Curse on you","30% reduced effect of Curses on you","60% increased Energy Shield from Equipped Focus"],"stringId":"focus5"},"31928":{"connections":[{"id":50574,"orbit":0},{"id":15443,"orbit":0}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Life Recoup","orbit":2,"orbitIndex":12,"skill":31928,"stats":["6% of Physical Damage taken Recouped as Life"],"stringId":"physical44"},"31943":{"connections":[{"id":8382,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":12,"skill":31943,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold27"},"31950":{"connections":[{"id":58329,"orbit":0},{"id":8569,"orbit":0},{"id":21080,"orbit":0},{"id":7405,"orbit":0}],"group":987,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":31950,"stats":["+5 to any Attribute"],"stringId":"intelligence78"},"31955":{"connections":[{"id":37641,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Voll's Protection","orbit":3,"orbitIndex":16,"recipe":["Isolation","Paranoia","Despair"],"skill":31955,"stats":["+15% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","10% increased Block chance","Gain 10 Energy Shield when you Block","Recover 10 Life when you Block"],"stringId":"energy_shield_and_armour44"},"31977":{"connections":[{"id":4828,"orbit":0},{"id":10314,"orbit":6}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":5,"orbitIndex":36,"skill":31977,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana34"},"31991":{"connections":[{"id":36070,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":15,"skill":31991,"stats":["6% increased Area of Effect for Attacks"],"stringId":"ranged14"},"32009":{"connections":[{"id":36814,"orbit":0}],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":32009,"stats":["20% increased Curse Duration"],"stringId":"curses16"},"32016":{"connections":[{"id":5766,"orbit":-6},{"id":49984,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":7,"orbitIndex":19,"skill":32016,"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"stringId":"spells19"},"32040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1184,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":32040,"stats":[],"stringId":"mastery_energy_shield_6484"},"32054":{"connections":[{"id":62153,"orbit":0}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":15,"skill":32054,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals18"},"32071":{"connections":[{"id":15427,"orbit":0},{"id":49111,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Primal Growth","orbit":3,"orbitIndex":2,"recipe":["Envy","Fear","Fear"],"skill":32071,"stats":["15% increased Area of Effect if you've Killed Recently","8% increased Area of Effect for Attacks"],"stringId":"area_attacks26"},"32078":{"connections":[{"id":16940,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Spell Damage","orbit":7,"orbitIndex":21,"skill":32078,"stats":["15% increased Spell Damage while you have Arcane Surge"],"stringId":"mana_regeneration43"},"32096":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":32096,"stats":[],"stringId":"mastery_companion290"},"32123":{"connections":[{"id":54678,"orbit":0}],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":4,"skill":32123,"stats":["15% increased chance to Shock"],"stringId":"shock9"},"32128":{"connections":[{"id":18101,"orbit":7},{"id":15801,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Flow of Time","orbit":0,"orbitIndex":0,"recipe":["Disgust","Fear","Suffering"],"skill":32128,"stats":["Buffs on you expire 10% slower","20% increased speed of Recoup Effects"],"stringId":"life_recoup36"},"32135":{"connections":[{"id":12322,"orbit":5},{"id":16484,"orbit":-9}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":4,"orbitIndex":12,"skill":32135,"stats":["10% increased Flask Charges gained"],"stringId":"flasks15"},"32148":{"connections":[],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Rattling Ball","orbit":2,"orbitIndex":2,"skill":32148,"stats":["25% increased Damage with Flails"],"stringId":"flail15"},"32151":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","isNotable":true,"name":"Crystalline Resistance","orbit":4,"orbitIndex":60,"recipe":["Isolation","Fear","Despair"],"skill":32151,"stats":["+1% to all Maximum Elemental Resistances if you have at","least 5 Red, Green and Blue Support Gems Socketed"],"stringId":"attributes99"},"32155":{"connections":[{"id":25700,"orbit":4}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Shock Chance","orbit":7,"orbitIndex":16,"skill":32155,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"stringId":"elemental18"},"32183":{"connections":[{"id":28371,"orbit":4}],"group":1381,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":32183,"stats":["+5 to any Attribute"],"stringId":"attributes22_"},"32185":{"connections":[{"id":17118,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Attack Damage and Companion Damage as Cold","orbit":0,"orbitIndex":0,"skill":32185,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Cold Damage"],"stringId":"companions65"},"32186":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":4,"orbitIndex":43,"skill":32186,"stats":["10% increased Accuracy Rating while Shapeshifted"],"stringId":"wyvern8"},"32194":{"connections":[{"id":55933,"orbit":0},{"id":36478,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":60,"skill":32194,"stats":["+5 to any Attribute"],"stringId":"intelligence34"},"32233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":864,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":21,"skill":32233,"stats":[],"stringId":"mastery_duration_6463"},"32239":{"connections":[{"id":9009,"orbit":-3}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":1,"skill":32239,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical65"},"32241":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":32241,"stats":[],"stringId":"mastery_life131"},"32258":{"connections":[{"id":19644,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":8,"skill":32258,"stats":["Minions have 12% increased maximum Life"],"stringId":"minion_defence17"},"32271":{"connections":[{"id":54311,"orbit":-2}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":15,"skill":32271,"stats":["30% increased Flammability Magnitude"],"stringId":"fire23"},"32274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":947,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":32274,"stats":[],"stringId":"mastery_evasion_6502"},"32278":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":531,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":11,"skill":32278,"stats":[],"stringId":"mastery_minionoffence189"},"32301":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":50277,"orbit":0}],"group":1358,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Frazzled","orbit":0,"orbitIndex":0,"recipe":["Despair","Disgust","Paranoia"],"skill":32301,"stats":["15% increased Mana Regeneration Rate","30% increased Magnitude of Shock you inflict"],"stringId":"shock6"},"32309":{"connections":[{"id":59070,"orbit":2}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":16,"skill":32309,"stats":["15% increased Archon Buff duration"],"stringId":"archon3"},"32319":{"connections":[{"id":33542,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":7,"orbitIndex":20,"skill":32319,"stats":["+10% Surpassing chance to fire an additional Arrow"],"stringId":"bow21"},"32340":{"connections":[{"id":24721,"orbit":7}],"group":1260,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":32340,"stats":["12% increased Cold Damage"],"stringId":"cold64__"},"32349":{"connections":[{"id":3446,"orbit":0}],"flavourText":"The Titans did not vanish from this world. Their might lives on - in you.","group":218,"icon":"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds","isKeystone":true,"name":"Giant's Blood","orbit":0,"orbitIndex":0,"skill":32349,"stats":["You can wield Two-Handed Axes, Maces and Swords in one hand","Triple Attribute requirements of Martial Weapons","Inherent Life granted by Strength is halved"],"stringId":"passive_keystone_giants_blood"},"32353":{"connections":[{"id":41180,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Swift Claw","orbit":3,"orbitIndex":23,"recipe":["Suffering","Fear","Despair"],"skill":32353,"stats":["10% increased Skill Speed while Shapeshifted"],"stringId":"shapeshifting5"},"32354":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":6626,"orbit":-2}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Defiance","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Ire"],"skill":32354,"stats":["20% increased Armour and Evasion Rating","80% increased Armour and Evasion Rating when on Low Life"],"stringId":"armour_and_evasion12"},"32364":{"connections":[{"id":32858,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":7,"skill":32364,"stats":["10% increased Ignite Magnitude"],"stringId":"fire52"},"32399":{"connections":[{"id":46857,"orbit":-7}],"group":1295,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":0,"orbitIndex":0,"skill":32399,"stats":["2% increased Attack Speed","5% increased Cost Efficiency"],"stringId":"attack_speed11"},"32404":{"connections":[{"id":15618,"orbit":6},{"id":5501,"orbit":0},{"id":22290,"orbit":-6}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":2,"orbitIndex":18,"skill":32404,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals9"},"32416":{"connections":[{"id":27726,"orbit":-3}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Sturdy Metal","orbit":2,"orbitIndex":16,"skill":32416,"stats":["80% increased Armour from Equipped Body Armour"],"stringId":"armour35"},"32427":{"connections":[{"id":4456,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":18,"skill":32427,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration5"},"32436":{"connections":[{"id":5332,"orbit":2147483647}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":14,"skill":32436,"stats":["+8 to Intelligence"],"stringId":"attributes111_"},"32438":{"connections":[{"id":55149,"orbit":4}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":32438,"stats":["11% increased Chaos Damage"],"stringId":"chaos27"},"32442":{"connections":[{"id":2361,"orbit":0}],"group":1520,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Stun and Knockback","orbit":0,"orbitIndex":0,"skill":32442,"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"stringId":"quarterstaff3"},"32448":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Shockproof","orbit":2,"orbitIndex":2,"recipe":["Disgust","Greed","Disgust"],"skill":32448,"stats":["10% increased Armour","+30% of Armour also applies to Lightning Damage","30% reduced effect of Shock on you"],"stringId":"armour45_"},"32474":{"connections":[{"id":29611,"orbit":0},{"id":47931,"orbit":0},{"id":55888,"orbit":0},{"id":36025,"orbit":-9},{"id":61942,"orbit":0}],"group":153,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":32474,"stats":["+5 to any Attribute"],"stringId":"attributes4"},"32507":{"connections":[],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Cut to the Bone","orbit":0,"orbitIndex":0,"recipe":["Despair","Envy","Isolation"],"skill":32507,"stats":["Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt","20% increased Magnitude of Impales inflicted with Spells","20% increased Physical Damage"],"stringId":"physical31"},"32509":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32509,"stats":[],"stringId":"mastery_staff220"},"32523":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":1546,"orbit":0}],"group":661,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32523,"stats":[],"stringId":"mastery_caster_6358"},"32534":{"ascendancyName":"Titan","connections":[{"id":35453,"orbit":0},{"id":19424,"orbit":0},{"id":13715,"orbit":0},{"id":51690,"orbit":0},{"id":29323,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Titan","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":9,"orbitIndex":96,"skill":32534,"stats":[],"stringId":"AscendancyWarrior1Start"},"32543":{"connections":[],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Unhindered","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Paranoia"],"skill":32543,"stats":["20% reduced Slowing Potency of Debuffs on You","6% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"spell_suppression12"},"32545":{"connections":[{"id":61196,"orbit":4}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":2,"skill":32545,"stats":["3% increased Skill Speed"],"stringId":"attack_speed47"},"32549":{"connections":[{"id":29098,"orbit":-2},{"id":32474,"orbit":3}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":14,"skill":32549,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells11"},"32555":{"connections":[{"id":9535,"orbit":2147483647}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":22,"skill":32555,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion39"},"32559":{"ascendancyName":"Witchhunter","connections":[{"id":46535,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32559,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancyMercenary2Small4"},"32560":{"ascendancyName":"Tactician","connections":[{"id":16249,"orbit":0}],"group":317,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Presence Area","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32560,"stats":["20% increased Presence Area of Effect"],"stringId":"AscendancyMercenary1Small3"},"32561":{"connections":[{"id":51825,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":15,"skill":32561,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed6"},"32564":{"connections":[{"id":37519,"orbit":0},{"id":39207,"orbit":0},{"id":2864,"orbit":0}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed and Slow Effect on You","orbit":0,"orbitIndex":0,"skill":32564,"stats":["1% increased Movement Speed","4% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation5"},"32597":{"connections":[{"id":12777,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":3,"skill":32597,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour2"},"32599":{"connections":[{"id":28516,"orbit":2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":12,"skill":32599,"stats":["6% increased Area of Effect"],"stringId":"area_of_effect21"},"32600":{"connections":[{"id":6304,"orbit":0},{"id":20303,"orbit":-7}],"group":403,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":12,"skill":32600,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration26"},"32637":{"ascendancyName":"Tactician","connections":[],"group":399,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds","isNotable":true,"name":"Stay Light, Use Cover","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":32637,"stats":["Defend with 200% of Armour","Enemies have an Accuracy Penalty against you based on Distance","Maximum Chance to Evade is 50%","Maximum Physical Damage Reduction is 50%"],"stringId":"AscendancyMercenary1Notable7"},"32655":{"connections":[{"id":33514,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Hunting Companion","orbit":7,"orbitIndex":18,"recipe":["Guilt","Envy","Ire"],"skill":32655,"stats":["20% increased Culling Strike Threshold","Culling Strike against Beasts while your Companion is in your Presence"],"stringId":"companions8"},"32660":{"connections":[],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":21,"skill":32660,"stats":["10% increased Critical Hit Chance if you have Killed Recently"],"stringId":"criticals4"},"32664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","isNotable":true,"name":"Chakra of Breathing","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Guilt"],"skill":32664,"stats":["20% faster start of Energy Shield Recharge when not on Full Life","20% increased Evasion Rating while you have Energy Shield"],"stringId":"unarmed12"},"32672":{"connections":[{"id":4031,"orbit":0},{"id":9928,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze and Chill Resistance","orbit":3,"orbitIndex":12,"skill":32672,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"stringId":"freeze_and_chill_mitigation1"},"32681":{"connections":[{"id":32664,"orbit":0},{"id":38668,"orbit":2147483647}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion and Energy Shield Delay","orbit":7,"orbitIndex":15,"skill":32681,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"unarmed8"},"32683":{"connections":[{"id":53149,"orbit":0},{"id":54413,"orbit":0}],"group":1062,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Essence of the Mountain","orbit":4,"orbitIndex":30,"skill":32683,"stats":["Gain 5% of Damage as Extra Cold Damage","20% increased Freeze Buildup"],"stringId":"cold39__"},"32699":{"ascendancyName":"Infernalist","connections":[{"id":7793,"orbit":0},{"id":23880,"orbit":0},{"id":24135,"orbit":0},{"id":39470,"orbit":4},{"id":64379,"orbit":-9},{"id":63484,"orbit":-9}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Infernalist","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":32699,"stats":[],"stringId":"AscendancyWitch1Start__"},"32701":{"connections":[{"id":21746,"orbit":0},{"id":26598,"orbit":0},{"id":22115,"orbit":0},{"id":43877,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":18,"skill":32701,"stats":["+5 to any Attribute"],"stringId":"dexterity39"},"32705":{"ascendancyName":"Disciple of Varashta","connections":[],"flavourText":"\"You knew the twisted plan these fools devised. As Tale-woman, you are their compass in the sandstorm. Yet... you did not act. And now we mourn these honoured dead. You must pay.\"\\n \\nVarashta condemned Navira to the ritual of the {barya}, sentenced to serve as a Djinn.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds","isNotable":true,"name":"Barya of Navira","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":3,"orbitIndex":0,"skill":32705,"stats":["Grants Skill: Navira, the Last Mirage"],"stringId":"AscendancySorceress3Notable7"},"32721":{"connections":[{"id":10011,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Distracted Target","orbit":7,"orbitIndex":11,"recipe":["Despair","Disgust","Despair"],"skill":32721,"stats":["30% increased Critical Hit Chance against Blinded Enemies"],"stringId":"blind12"},"32727":{"connections":[],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Armour Break","orbit":2,"orbitIndex":23,"skill":32727,"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"stringId":"physical20"},"32745":{"connections":[{"id":50104,"orbit":0},{"id":61179,"orbit":0}],"group":518,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":0,"orbitIndex":0,"skill":32745,"stats":["10% increased Physical Damage"],"stringId":"physical14"},"32763":{"connections":[],"group":1522,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":6,"skill":32763,"stats":[],"stringId":"jewel_slot1976"},"32764":{"connections":[{"id":21213,"orbit":0},{"id":37609,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":16,"skill":32764,"stats":["+8% of Armour also applies to Elemental Damage"],"stringId":"energy_shield_and_armour55_"},"32768":{"connectionArt":"CharacterPlanned","connections":[{"id":8107,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":17,"skill":32768,"stats":["20% increased Glory generation"],"stringId":"oracle_glory_elemental3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"32771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34817,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Darkness","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":55,"skill":32771,"stats":["10% increased maximum Darkness"],"stringId":"AscendancyMonk3Small9"},"32777":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":340,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":15,"skill":32777,"stats":[],"stringId":"mastery_shapeshifting_6683"},"32799":{"connections":[{"id":23961,"orbit":0},{"id":32096,"orbit":0}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Captivating Companionship","orbit":3,"orbitIndex":1,"recipe":["Isolation","Guilt","Greed"],"skill":32799,"stats":["5% of Damage from Hits is taken from your Damageable Companion's Life before you","20% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions4"},"32813":{"connections":[{"id":59600,"orbit":-7},{"id":35809,"orbit":0}],"group":1252,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":12,"skill":32813,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks16"},"32818":{"connections":[{"id":48135,"orbit":4}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":6,"skill":32818,"stats":["10% increased Charm Charges gained"],"stringId":"charms19"},"32836":{"connections":[{"id":675,"orbit":3}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Slow Effect on You","orbit":2,"orbitIndex":21,"skill":32836,"stats":["10% increased Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"armour26_"},"32845":{"connections":[{"id":64819,"orbit":4}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage","orbit":5,"orbitIndex":36,"skill":32845,"stats":["10% increased Fire Damage"],"stringId":"ignite_mitigation1"},"32847":{"connections":[],"group":546,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Damage","orbit":0,"orbitIndex":0,"skill":32847,"stats":["Minions deal 20% increased Damage with Command Skills"],"stringId":"minion_offence50"},"32856":{"ascendancyName":"Chronomancer","connections":[{"id":58747,"orbit":0},{"id":3605,"orbit":9}],"group":430,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32856,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancySorceress2Small6"},"32858":{"connections":[{"id":1073,"orbit":0},{"id":1205,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Dread Engineer's Concoction","orbit":3,"orbitIndex":9,"recipe":["Suffering","Greed","Guilt"],"skill":32858,"stats":["35% increased Magnitude of Ignite against Poisoned enemies"],"stringId":"fire54"},"32859":{"connections":[{"id":15114,"orbit":-4}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":9,"skill":32859,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical59"},"32885":{"connections":[{"id":6689,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":33,"skill":32885,"stats":["5% increased Block chance"],"stringId":"shield15"},"32891":{"connections":[{"id":331,"orbit":-2},{"id":22329,"orbit":-7}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection and Evasion","orbit":7,"orbitIndex":7,"skill":32891,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"deflect39"},"32896":{"connections":[],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":9,"skill":32896,"stats":["8% chance to Poison on Hit"],"stringId":"poison32"},"32903":{"connections":[{"id":25361,"orbit":0}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":15,"skill":32903,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks55"},"32905":{"ascendancyName":"Oracle","connections":[],"group":23,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds","isNotable":true,"name":"Entwined Realities","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":6,"orbitIndex":20,"skill":32905,"stats":["Non-Keystone Passive Skills in Medium Radius of allocated Keystone Passive Skills can be allocated without being connected to your tree"],"stringId":"AscendancyDruid1Notable1"},"32923":{"connections":[{"id":58215,"orbit":4}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Arcane Surge Effect and Life Regeneration","orbit":7,"orbitIndex":0,"skill":32923,"stats":["5% increased Life Regeneration rate","10% increased effect of Arcane Surge on you"],"stringId":"life_recoup25"},"32932":{"connections":[{"id":14205,"orbit":0},{"id":63268,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Ichlotl's Inferno","orbit":7,"orbitIndex":21,"recipe":["Envy","Suffering","Paranoia"],"skill":32932,"stats":["Every Rage also grants 1% increased Fire Damage"],"stringId":"fire58"},"32943":{"connections":[{"id":16938,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":4,"orbitIndex":67,"skill":32943,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions19_"},"32951":{"connections":[{"id":39280,"orbit":0},{"id":41522,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Preservation","orbit":3,"orbitIndex":17,"recipe":["Disgust","Suffering","Ire"],"skill":32951,"stats":["25% increased Skill Effect Duration"],"stringId":"duration6"},"32952":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":386,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds","isMultipleChoiceOption":true,"name":"Bolstering Implants","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32952,"stats":["+2 to Level of all Skills with a Strength requirement"],"stringId":"AscendancyMercenary3Notable2_1"},"32964":{"connections":[{"id":34617,"orbit":5}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":3,"skill":32964,"stats":["+6% of Armour also applies to Elemental Damage","3% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour39"},"32976":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":14428,"orbit":0},{"id":38776,"orbit":0},{"id":34202,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","isNotable":true,"name":"Gem Enthusiast","orbit":4,"orbitIndex":48,"recipe":["Isolation","Greed","Suffering"],"skill":32976,"stats":["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed","5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed","5% increased Movement Speed if you have at least 10 Green Support Gems Socketed"],"stringId":"attributes100_"},"33037":{"connections":[{"id":47683,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Chaining Projectiles","orbit":3,"orbitIndex":2,"skill":33037,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"stringId":"ranged46"},"33045":{"connections":[{"id":62303,"orbit":-4}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Ailment Threshold and Slow Effect on You","orbit":4,"orbitIndex":65,"skill":33045,"stats":["10% increased Elemental Ailment Threshold","5% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation18"},"33053":{"connections":[],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":22,"skill":33053,"stats":["10% increased Projectile Damage"],"stringId":"ranged1"},"33059":{"connections":[{"id":2841,"orbit":0}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Back in Action","orbit":2,"orbitIndex":12,"recipe":["Ire","Guilt","Greed"],"skill":33059,"stats":["80% increased Stun Recovery"],"stringId":"stun_threshold_if_no_recent_stun12"},"33080":{"connections":[{"id":43254,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":18,"skill":33080,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"deflect20"},"33093":{"connections":[{"id":30077,"orbit":0}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Effervescent","orbit":7,"orbitIndex":6,"recipe":["Suffering","Isolation","Envy"],"skill":33093,"stats":["4% increased Cast Speed for each different Spell you've Cast in the last eight seconds"],"stringId":"cast_speed32"},"33099":{"connections":[{"id":25029,"orbit":0}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Hunter's Talisman","orbit":4,"orbitIndex":27,"recipe":["Paranoia","Paranoia","Paranoia"],"skill":33099,"stats":["+1 Charm Slot"],"stringId":"charms8"},"33112":{"connections":[{"id":10881,"orbit":-7}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":3,"orbitIndex":12,"skill":33112,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus7"},"33137":{"connections":[{"id":36894,"orbit":0},{"id":17330,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Damage","orbit":2,"orbitIndex":17,"skill":33137,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"jagged_ground6"},"33141":{"ascendancyName":"Lich","connections":[{"id":33570,"orbit":4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Life","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":30732,"name":"Life","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["3% increased maximum Life"]}},"orbit":9,"orbitIndex":9,"skill":33141,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch3Small6_"},"33180":{"connections":[{"id":46989,"orbit":0},{"id":60269,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":7,"orbitIndex":15,"skill":33180,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells11"},"33203":{"connectionArt":"CharacterPlanned","connections":[{"id":55033,"orbit":-8},{"id":38707,"orbit":6}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":27,"skill":33203,"stats":["25% increased Stun Threshold while Channelling"],"stringId":"oracle_channelling1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33209":{"connections":[],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","orbit":4,"orbitIndex":2,"skill":33209,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems30"},"33216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":759,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Deep Wounds","orbit":2,"orbitIndex":10,"recipe":["Disgust","Despair","Paranoia"],"skill":33216,"stats":["Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds"],"stringId":"bleed5"},"33221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":26331,"orbit":0},{"id":19722,"orbit":0},{"id":4959,"orbit":0}],"group":1301,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":33221,"stats":[],"stringId":"mastery_cold_6390"},"33225":{"connections":[],"group":963,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":33225,"stats":["Minions have +3% to Maximum Fire Resistances","Minions have +20% to Fire Resistance"],"stringId":"minion_defence14"},"33229":{"connections":[{"id":64996,"orbit":0},{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Haemorrhaging Cuts","orbit":4,"orbitIndex":60,"recipe":["Ire","Isolation","Paranoia"],"skill":33229,"stats":["Enemies you inflict Bleeding on cannot Regenerate Life"],"stringId":"physical_witch8"},"33240":{"connections":[{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Lord of Horrors","orbit":5,"orbitIndex":71,"recipe":["Isolation","Isolation","Ire"],"skill":33240,"stats":["12% increased Reservation Efficiency of Minion Skills"],"stringId":"minion_offence14"},"33242":{"connections":[{"id":15838,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":5,"orbitIndex":2,"skill":33242,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments7"},"33244":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":397,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":33244,"stats":[],"stringId":"mastery_rage_6667"},"33245":{"connections":[{"id":9151,"orbit":0},{"id":31918,"orbit":-7},{"id":45331,"orbit":7}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":1,"orbitIndex":3,"skill":33245,"stats":["10% increased Projectile Damage"],"stringId":"ranged5"},"33254":{"connections":[],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":1,"skill":33254,"stats":["10% increased Spell Damage"],"stringId":"spells3"},"33292":{"connections":[{"id":57928,"orbit":7}],"group":1176,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":33292,"stats":["12% increased Lightning Damage"],"stringId":"lightning67_"},"33340":{"connections":[{"id":51267,"orbit":0}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":15,"skill":33340,"stats":["15% increased Stun Buildup"],"stringId":"stun24_"},"33345":{"connections":[{"id":61923,"orbit":0},{"id":10131,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":14,"skill":33345,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration32"},"33348":{"connections":[],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":7,"skill":33348,"stats":["25% increased Presence Area of Effect"],"stringId":"criticals100_"},"33366":{"connections":[{"id":10944,"orbit":-3}],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":14,"skill":33366,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield24"},"33369":{"connections":[],"flavourText":"My ancestral pact was sealed. Forevermore, I would gain sustenance\\nonly from the ravaged flesh of my enemies.","group":711,"icon":"Art/2DArt/SkillIcons/passives/vaalpact.dds","isKeystone":true,"name":"Vaal Pact","orbit":0,"orbitIndex":0,"skill":33369,"stats":["50% more amount of Life Leeched","Leech Life 67% less quickly","Cannot Recover Life other than from Leech","Life Leech effects are not removed when Unreserved Life is Filled"],"stringId":"passive_keystone_vaal_pact"},"33391":{"connections":[{"id":56330,"orbit":0},{"id":49661,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Critical Bleeding Effect","orbit":3,"orbitIndex":5,"skill":33391,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"stringId":"bleed7"},"33393":{"connections":[{"id":41747,"orbit":-3}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":5,"orbitIndex":15,"skill":33393,"stats":["10% increased Damage with Flails"],"stringId":"flail4"},"33397":{"connections":[{"id":39594,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":21,"skill":33397,"stats":["12% increased Fire Damage"],"stringId":"fire26"},"33400":{"connections":[],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Reverberating Parry","orbit":0,"orbitIndex":0,"recipe":["Guilt","Paranoia","Paranoia"],"skill":33400,"stats":["15% increased Parried Debuff Magnitude","20% increased Parry Hit Area of Effect"],"stringId":"deflect22"},"33402":{"connections":[{"id":58125,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":54,"skill":33402,"stats":["5% increased Block chance"],"stringId":"shield11"},"33404":{"connections":[{"id":57821,"orbit":0}],"flavourText":"Burn the spirit to vitalise the flesh.","group":1372,"icon":"Art/2DArt/SkillIcons/passives/EternalYouth.dds","isKeystone":true,"name":"Eternal Youth","orbit":0,"orbitIndex":0,"skill":33404,"stats":["Life Recharges instead of Energy Shield","50% less Life Recovery from Flasks"],"stringId":"passive_keystone_eternal_youth"},"33408":{"connections":[],"group":128,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Leech","orbit":0,"orbitIndex":0,"skill":33408,"stats":["10% increased amount of Life Leeched while Shapeshifted"],"stringId":"wolf9"},"33415":{"connections":[{"id":31763,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Critical Chance","orbit":4,"orbitIndex":31,"skill":33415,"stats":["10% increased Critical Hit Chance with Crossbows"],"stringId":"crossbow7"},"33423":{"connectionArt":"CharacterPlanned","connections":[{"id":65192,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":13,"skill":33423,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"oracle_totems2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33445":{"connections":[{"id":30143,"orbit":-2}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":3,"skill":33445,"stats":["5% increased Block chance"],"stringId":"block21"},"33452":{"connections":[{"id":23192,"orbit":-6},{"id":52796,"orbit":9}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":5,"orbitIndex":54,"skill":33452,"stats":["5% increased Block chance"],"stringId":"block1"},"33463":{"connections":[{"id":41877,"orbit":6},{"id":31286,"orbit":0},{"id":45304,"orbit":0}],"group":1379,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":33463,"stats":["+5 to any Attribute"],"stringId":"attributes75"},"33514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":33514,"stats":[],"stringId":"mastery_companion292"},"33518":{"connections":[{"id":63579,"orbit":6}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Slow Effect on You","orbit":4,"orbitIndex":34,"skill":33518,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation2"},"33542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Quick Fingers","orbit":0,"orbitIndex":0,"recipe":["Envy","Suffering","Envy"],"skill":33542,"stats":["+24% Surpassing chance to fire an additional Arrow"],"stringId":"bow23"},"33556":{"connections":[{"id":55473,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":2,"skill":33556,"stats":["8% increased Melee Damage"],"stringId":"melee25"},"33562":{"connections":[{"id":27216,"orbit":0},{"id":27611,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":33562,"stats":["12% increased Damage while Shapeshifted"],"stringId":"wyvern1"},"33570":{"ascendancyName":"Lich","connections":[{"id":36696,"orbit":5}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds","isNotable":true,"isSwitchable":true,"name":"Soulless Form","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":9,"orbitIndex":20,"skill":33570,"stats":["10% of Damage taken bypasses Energy Shield","No inherent Mana Regeneration","Regenerate Mana equal to 6% of maximum Life per second"],"stringId":"AscendancyWitch3Notable5"},"33585":{"connections":[{"id":24889,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Unspoken Bond","orbit":3,"orbitIndex":7,"recipe":["Greed","Despair","Envy"],"skill":33585,"stats":["Companions have +30% to Chaos Resistance","Companions have +30% to all Elemental Resistances"],"stringId":"companions6"},"33590":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":141,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33590,"stats":[],"stringId":"mastery_attack9"},"33596":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":33596,"stats":[],"stringId":"mastery_crossbow_6419"},"33601":{"connections":[{"id":35708,"orbit":-2},{"id":2863,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":20,"skill":33601,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze13"},"33604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33604,"stats":[],"stringId":"mastery_attack277"},"33612":{"connections":[{"id":8983,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":1,"orbitIndex":8,"skill":33612,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence10_"},"33618":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":39990,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":10,"skill":33618,"stats":[],"stringId":"mastery_duration_6467"},"33639":{"connections":[{"id":24087,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":7,"orbitIndex":20,"skill":33639,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"],"stringId":"infusion15"},"33713":{"connections":[{"id":57462,"orbit":-2}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":2,"orbitIndex":17,"skill":33713,"stats":["8% increased Projectile Speed"],"stringId":"projectiles9_"},"33722":{"connections":[{"id":4140,"orbit":0},{"id":55048,"orbit":0},{"id":27980,"orbit":0},{"id":61811,"orbit":0}],"group":197,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":33722,"stats":["+5 to any Attribute"],"stringId":"intelligence72"},"33729":{"connections":[{"id":45712,"orbit":4}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Flammability Magnitude","orbit":4,"orbitIndex":66,"skill":33729,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"stringId":"elemental24"},"33730":{"connections":[{"id":60809,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","isNotable":true,"name":"Focused Channel","orbit":7,"orbitIndex":5,"recipe":["Despair","Despair","Fear"],"skill":33730,"stats":["Channelling Skills deal 25% increased Damage","50% increased Stun Threshold while Channelling"],"stringId":"channelling9"},"33736":{"ascendancyName":"Pathfinder","connections":[{"id":61991,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":9,"orbitIndex":86,"skill":33736,"stats":["4% increased Skill Speed"],"stringId":"AscendancyRanger3Small3"},"33751":{"connections":[{"id":12451,"orbit":7}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":18,"skill":33751,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns14"},"33781":{"connections":[{"id":65493,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area and Presence","orbit":7,"orbitIndex":13,"skill":33781,"stats":["15% reduced Presence Area of Effect","6% increased Area of Effect"],"stringId":"auras32"},"33812":{"ascendancyName":"Warbringer","connections":[{"id":38769,"orbit":0},{"id":18585,"orbit":5},{"id":25935,"orbit":5},{"id":1994,"orbit":4},{"id":39365,"orbit":3}],"group":51,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Warbringer","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":6,"orbitIndex":48,"skill":33812,"stats":[],"stringId":"AscendancyWarrior2Start"},"33815":{"connections":[{"id":35644,"orbit":6}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":5,"skill":33815,"stats":["10% increased Poison Duration"],"stringId":"poison15"},"33823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1157,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":33823,"stats":[],"stringId":"mastery_criticals63"},"33824":{"ascendancyName":"Shaman","connections":[{"id":42253,"orbit":0}],"group":63,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Defences","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":33824,"stats":["10% increased Armour, Evasion and Energy Shield"],"stringId":"AscendancyDruid2Small8"},"33829":{"connections":[{"id":18737,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":33829,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals94"},"33830":{"connections":[{"id":35031,"orbit":-2}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":5,"skill":33830,"stats":["10% increased Life Regeneration rate"],"stringId":"monkchakra17_"},"33838":{"connections":[{"id":46182,"orbit":-4}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Duration","orbit":7,"orbitIndex":15,"skill":33838,"stats":["6% increased chance to inflict Ailments","6% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments44"},"33848":{"connections":[{"id":47677,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":4,"orbitIndex":51,"skill":33848,"stats":["8% increased Projectile Speed"],"stringId":"ranged13"},"33852":{"connections":[{"id":50177,"orbit":0}],"group":450,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Flurry","orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Ire"],"skill":33852,"stats":["20% increased Cold Damage","10% increased Cast Speed while Chilled","5% reduced Movement Speed Penalty from using Cold Skills while moving"],"stringId":"cold59"},"33866":{"connections":[{"id":49220,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":33866,"stats":["8% increased Attack Damage"],"stringId":"attack_damage3"},"33887":{"connections":[{"id":61432,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Full Salvo","orbit":4,"orbitIndex":7,"recipe":["Ire","Isolation","Greed"],"skill":33887,"stats":["25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds"],"stringId":"crossbow18"},"33922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":6950,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Stripped Defences","orbit":2,"orbitIndex":6,"recipe":["Disgust","Isolation","Disgust"],"skill":33922,"stats":["Exposure you inflict lowers Resistances by an additional 5%"],"stringId":"elemental61_"},"33939":{"connections":[{"id":62034,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Armour Applies to Cold Damage Hits","orbit":3,"orbitIndex":2,"skill":33939,"stats":["+15% of Armour also applies to Cold Damage"],"stringId":"maximum_resistances6"},"33946":{"connections":[{"id":34074,"orbit":0},{"id":57227,"orbit":0}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":7,"orbitIndex":9,"skill":33946,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals75_"},"33964":{"connections":[{"id":64295,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":49,"skill":33964,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap10"},"33974":{"connections":[{"id":31189,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":4,"orbitIndex":18,"skill":33974,"stats":["8% increased Attack Damage","5% increased Accuracy Rating"],"stringId":"attack32_"},"33978":{"connections":[{"id":31609,"orbit":7},{"id":62581,"orbit":0}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Unstoppable Barrier","orbit":7,"orbitIndex":21,"recipe":["Fear","Paranoia","Ire"],"skill":33978,"stats":["10% increased Block chance","15% reduced Slowing Potency of Debuffs on You"],"stringId":"block12"},"33979":{"connections":[],"flavourText":"To me, brave companions! Feel my radiance flow through you!","group":1166,"icon":"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds","isKeystone":true,"name":"Conduit","orbit":0,"orbitIndex":0,"skill":33979,"stats":["If you would gain a Charge, Allies in your Presence gain that Charge instead"],"stringId":"passive_keystone_conduit"},"34006":{"connections":[{"id":15408,"orbit":3}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":19,"skill":34006,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield21"},"34015":{"connections":[{"id":22927,"orbit":0},{"id":59083,"orbit":0},{"id":14882,"orbit":0},{"id":10472,"orbit":0}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34015,"stats":["+5 to any Attribute"],"stringId":"dexterity55"},"34030":{"connections":[{"id":47441,"orbit":0},{"id":13634,"orbit":0},{"id":42614,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":0,"orbitIndex":0,"skill":34030,"stats":["Offerings have 15% increased Maximum Life"],"stringId":"corpses1"},"34058":{"connections":[{"id":59376,"orbit":-6},{"id":4456,"orbit":0}],"group":731,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34058,"stats":["+5 to any Attribute"],"stringId":"intelligence35_"},"34061":{"connections":[{"id":52442,"orbit":5},{"id":38057,"orbit":0}],"group":840,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":55,"skill":34061,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion3"},"34074":{"connections":[{"id":23259,"orbit":4}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":13,"skill":34074,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals76"},"34076":{"connections":[{"id":37244,"orbit":3}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Recovery","orbit":7,"orbitIndex":12,"skill":34076,"stats":["25% increased Block Recovery"],"stringId":"block19"},"34081":{"ascendancyName":"Martial Artist","connections":[{"id":19370,"orbit":9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":5,"orbitIndex":7,"skill":34081,"stats":["8% increased Area of Effect"],"stringId":"AscendancyMonk1Small4"},"34084":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":652,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":4,"skill":34084,"stats":[],"stringId":"mastery_duration_6465"},"34090":{"connections":[{"id":14655,"orbit":7},{"id":64870,"orbit":-7}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Fire Damage","orbit":7,"orbitIndex":0,"skill":34090,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"stringId":"armour15"},"34096":{"connections":[{"id":58096,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":3,"orbitIndex":23,"skill":34096,"stats":["12% increased Spell Damage"],"stringId":"spells9"},"34136":{"connections":[{"id":29479,"orbit":-5}],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":1,"skill":34136,"stats":["+5 to any Attribute"],"stringId":"dexterity8"},"34143":{"connectionArt":"CharacterPlanned","connections":[{"id":36408,"orbit":0}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":66,"skill":34143,"stats":["16% increased Physical Damage"],"stringId":"oracle_duration_physical5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34168":{"connections":[{"id":16123,"orbit":0},{"id":4157,"orbit":0},{"id":55088,"orbit":0}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds","isNotable":true,"name":"Crashing Wave","orbit":7,"orbitIndex":22,"skill":34168,"stats":["25% increased Damage if you've dealt a Critical Hit in the past 8 seconds"],"stringId":"criticals3"},"34181":{"connectionArt":"CharacterPlanned","connections":[{"id":45422,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":6,"skill":34181,"stats":["+3 to Maximum Rage"],"stringId":"oracle_rage2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34187":{"connections":[{"id":7128,"orbit":-5}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":60,"skill":34187,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical63"},"34199":{"connections":[],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Damage","orbit":4,"orbitIndex":55,"skill":34199,"stats":["Minions have 15% increased Critical Damage Bonus"],"stringId":"minion_offence36"},"34201":{"connections":[{"id":24922,"orbit":0},{"id":46882,"orbit":0},{"id":17316,"orbit":0}],"group":1186,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34201,"stats":["+5 to any Attribute"],"stringId":"attributes20-"},"34202":{"connections":[{"id":49285,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":34202,"stats":["+8 to Strength"],"stringId":"attributes101"},"34207":{"ascendancyName":"Disciple of Varashta","connections":[],"flavourText":"\"You have forsaken your duty to my {akhara}. Yes... we do not abide weakness. But we also do not abide madness in the fervour of battle! Your slain {dekhara} will have their justice. You must pay.\" \\n\\nVarashta condemned Ruzhan to the ritual of the {barya}, sentenced to serve as a Djinn.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds","isNotable":true,"name":"Barya of Ruzhan","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":57,"skill":34207,"stats":["Grants Skill: Ruzhan, the Blazing Sword"],"stringId":"AscendancySorceress3Notable9"},"34210":{"connections":[{"id":54811,"orbit":0},{"id":64939,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":0,"orbitIndex":0,"skill":34210,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed1"},"34233":{"connections":[{"id":16123,"orbit":0},{"id":32545,"orbit":0}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","isNotable":true,"name":"Flow State","orbit":2,"orbitIndex":22,"skill":34233,"stats":["5% increased Skill Speed","15% increased Mana Regeneration Rate"],"stringId":"attack_speed37"},"34248":{"connections":[{"id":37327,"orbit":7}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":34248,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana27"},"34290":{"connections":[{"id":57832,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":4,"skill":34290,"stats":["10% increased Ignite Magnitude"],"stringId":"ignite14"},"34300":{"connections":[{"id":45481,"orbit":0},{"id":13862,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Conservative Casting","orbit":2,"orbitIndex":22,"recipe":["Disgust","Disgust","Ire"],"skill":34300,"stats":["20% increased Mana Regeneration Rate","15% increased Mana Cost Efficiency"],"stringId":"mana_regeneration17"},"34305":{"connections":[{"id":31545,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":6,"skill":34305,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory11"},"34308":{"connections":[{"id":37414,"orbit":0},{"id":10245,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds","isNotable":true,"name":"Personal Touch","orbit":3,"orbitIndex":19,"recipe":["Disgust","Despair","Ire"],"skill":34308,"stats":["20% increased Attack Damage","12% increased Immobilisation buildup"],"stringId":"melee32"},"34313":{"ascendancyName":"Oracle","connections":[{"id":378,"orbit":-8}],"group":12,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds","isNotable":true,"name":"The Lesser Harm","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":34313,"stats":["Enemy Critical Hit Chance against you is Unlucky","Damage of Enemies Hitting you is Unlucky"],"stringId":"AscendancyDruid1Notable7"},"34316":{"connections":[],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"One with the River","orbit":6,"orbitIndex":3,"recipe":["Guilt","Paranoia","Isolation"],"skill":34316,"stats":["10% chance to Daze on Hit","30% increased Armour, Evasion and Energy Shield while wielding a Quarterstaff","30% increased Freeze Buildup with Quarterstaves","30% increased Stun Buildup with Quarterstaves"],"stringId":"quarterstaff4"},"34317":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":270,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":34317,"stats":[],"stringId":"mastery_elemental99"},"34324":{"connections":[{"id":56838,"orbit":-5},{"id":52445,"orbit":0}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Spectral Ward","orbit":4,"orbitIndex":0,"recipe":["Envy","Fear","Suffering"],"skill":34324,"stats":["+1 to Maximum Energy Shield per 12 Item Evasion on Equipped Body Armour"],"stringId":"evasion_and_energy_shield11"},"34327":{"connections":[{"id":32078,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Spell Damage","orbit":7,"orbitIndex":17,"skill":34327,"stats":["15% increased Spell Damage while you have Arcane Surge"],"stringId":"mana_regeneration42"},"34331":{"connections":[{"id":37619,"orbit":0},{"id":13693,"orbit":0}],"group":310,"icon":"Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.dds","name":"Fire and Cold Damage","orbit":0,"orbitIndex":0,"skill":34331,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"stringId":"elemental19"},"34340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":17294,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Mass Rejuvenation","orbit":4,"orbitIndex":48,"recipe":["Ire","Paranoia","Greed"],"skill":34340,"stats":["Allies in your Presence Regenerate 1% of your Maximum Life per second","Regenerate 0.5% of maximum Life per second"],"stringId":"life_regeneration4_"},"34367":{"connections":[{"id":48774,"orbit":3}],"group":848,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":34367,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup2"},"34375":{"connections":[{"id":48745,"orbit":-2}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Defences","orbit":2,"orbitIndex":8,"skill":34375,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"shield26"},"34401":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":34401,"stats":[],"stringId":"mastery_blind_6334"},"34412":{"connections":[{"id":25915,"orbit":0}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":7,"skill":34412,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear14"},"34415":{"connections":[{"id":55422,"orbit":4}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":4,"orbitIndex":61,"skill":34415,"stats":["12% increased Physical Damage"],"stringId":"physical52"},"34419":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds","isNotable":true,"name":"Grinning Immolation","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":9,"orbitIndex":12,"skill":34419,"stats":["Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second","50% more Critical Damage Bonus"],"stringId":"AscendancyWitch1Notable9"},"34425":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":47021,"orbit":2}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","isNotable":true,"name":"Precise Volatility","orbit":2,"orbitIndex":20,"recipe":["Envy","Despair","Greed"],"skill":34425,"stats":["Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded"],"stringId":"volatility18"},"34433":{"connections":[{"id":32354,"orbit":7}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":9,"skill":34433,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion18"},"34443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":213,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":34443,"stats":[],"stringId":"mastery_companion288"},"34449":{"connections":[{"id":37688,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":36,"skill":34449,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap9"},"34473":{"connections":[{"id":42361,"orbit":0}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Spaghettification","orbit":2,"orbitIndex":8,"recipe":["Isolation","Despair","Fear"],"skill":34473,"stats":["3% increased Movement Speed","29% increased Chaos Damage","+13 to all Attributes","-7% to Chaos Resistance","23% reduced Light Radius"],"stringId":"chaos32"},"34478":{"connections":[{"id":43064,"orbit":0},{"id":56701,"orbit":0}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","isNotable":true,"name":"Bond of the Viper","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Disgust"],"skill":34478,"stats":["16% increased Skill Effect Duration","Companions have a 40% chance to Poison on Hit"],"stringId":"companions53"},"34487":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":556,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":34487,"stats":[],"stringId":"mastery_totem230"},"34490":{"connectionArt":"CharacterPlanned","connections":[{"id":18972,"orbit":0}],"group":165,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Aftershock Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":0,"skill":34490,"stats":["10% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"oracle_bear_addon1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34493":{"connections":[{"id":65328,"orbit":0},{"id":54964,"orbit":0},{"id":49593,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":9,"skill":34493,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels1"},"34497":{"connections":[],"flavourText":"Skip a beat, hold your breath. Too slow a poison, only death.","group":1370,"icon":"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds","isKeystone":true,"name":"Heartstopper","orbit":0,"orbitIndex":0,"skill":34497,"stats":["Take 50% less Damage over Time if you've started taking Damage over Time in the past second","Take 50% more Damage over Time if you haven't started taking Damage over Time in the past second"],"stringId":"passive_keystone_heartstopper"},"34501":{"ascendancyName":"Witchhunter","connections":[{"id":6935,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":5,"orbitIndex":25,"skill":34501,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary2Small6"},"34520":{"connections":[{"id":55575,"orbit":0},{"id":14548,"orbit":4},{"id":63545,"orbit":-4}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":15,"skill":34520,"stats":["10% increased Physical Damage"],"stringId":"physical13"},"34531":{"connections":[{"id":3471,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Hallowed","orbit":7,"orbitIndex":4,"recipe":["Despair","Disgust","Disgust"],"skill":34531,"stats":["Gain additional Ailment Threshold equal to 20% of maximum Energy Shield","Gain additional Stun Threshold equal to 20% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield12"},"34541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":63762,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","isNotable":true,"name":"Energising Deflection","orbit":1,"orbitIndex":3,"recipe":["Paranoia","Greed","Suffering"],"skill":34541,"stats":["12% faster start of Energy Shield Recharge","6% increased Deflection Rating"],"stringId":"deflect46"},"34543":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds","isNotable":true,"name":"The Frenzied Bear","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Fear"],"skill":34543,"stats":["30% increased Damage if you've consumed a Frenzy Charge Recently","10% increased Skill Speed if you've consumed a Frenzy Charge Recently","+10 to Strength"],"stringId":"azmerianimals30"},"34552":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":505,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":34552,"stats":[],"stringId":"mastery_minionoffence186"},"34553":{"connections":[{"id":1220,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Emboldening Lead","orbit":7,"orbitIndex":20,"recipe":["Ire","Envy","Fear"],"skill":34553,"stats":["Minions deal 30% increased Damage if you've Hit Recently"],"stringId":"spells59"},"34567":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.dds","isNotable":true,"name":"Archon of Chayula","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":6,"orbitIndex":66,"skill":34567,"stats":["Grants Skill: Archon of Chayula"],"stringId":"AscendancyMonk3Notable10"},"34612":{"connections":[{"id":60764,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":16,"skill":34612,"stats":["12% increased Damage with Bows"],"stringId":"bow11"},"34617":{"connections":[],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Conall the Hunted","orbit":3,"orbitIndex":23,"recipe":["Despair","Envy","Paranoia"],"skill":34617,"stats":["+15% of Armour also applies to Elemental Damage","5% faster start of Energy Shield Recharge","Immune to Bleeding while Shapeshifted","Immune to Maim while Shapeshifted"],"stringId":"energy_shield_and_armour40"},"34621":{"connections":[{"id":38541,"orbit":0}],"group":1226,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":34621,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals10"},"34623":{"connections":[{"id":14769,"orbit":0},{"id":14262,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Charge Duration and Dexterity","orbit":2,"orbitIndex":2,"skill":34623,"stats":["10% increased Endurance, Frenzy and Power Charge Duration","+5 to Dexterity"],"stringId":"azmerianimals15"},"34626":{"connections":[{"id":61142,"orbit":0},{"id":4527,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Recover Life on consuming Endurance Charge","orbit":2,"orbitIndex":4,"skill":34626,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"stringId":"endurance_charges6"},"34671":{"connections":[{"id":24477,"orbit":0},{"id":48418,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":2,"orbitIndex":10,"skill":34671,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold14"},"34702":{"connections":[{"id":55664,"orbit":-4},{"id":63246,"orbit":-4},{"id":16568,"orbit":-7}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":5,"orbitIndex":6,"skill":34702,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions27"},"34717":{"connections":[{"id":24120,"orbit":4}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration while not on Low Mana","orbit":3,"orbitIndex":20,"skill":34717,"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"stringId":"mana36"},"34747":{"connections":[{"id":6274,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":23,"skill":34747,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy14"},"34769":{"connectionArt":"CharacterPlanned","connections":[{"id":52115,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":18,"skill":34769,"stats":["25% increased Life Regeneration rate"],"stringId":"oracle_life_corruption6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34782":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":165,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":7,"orbitIndex":0,"skill":34782,"stats":[],"stringId":"mastery_shapeshifting_6686"},"34785":{"ascendancyName":"Ritualist","connections":[{"id":58574,"orbit":-9},{"id":42017,"orbit":0},{"id":17058,"orbit":9}],"group":1607,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds","isNotable":true,"name":"Unfurled Finger","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":34785,"stats":["+1 Ring Slot"],"stringId":"AscendancyHuntress3Notable2"},"34813":{"connections":[{"id":7218,"orbit":0},{"id":62505,"orbit":0},{"id":472,"orbit":0},{"id":2847,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":4,"orbitIndex":60,"skill":34813,"stats":["+3 to all Attributes"],"stringId":"attributes108"},"34817":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds","isNotable":true,"name":"Deepening Shadows","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":64,"skill":34817,"stats":["1% increased maximum Darkness per 1% Chaos Resistance"],"stringId":"AscendancyMonk3Notable9"},"34818":{"connections":[{"id":43250,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":1,"skill":34818,"stats":["+5% to Fire Resistance"],"stringId":"shaman2"},"34840":{"connections":[{"id":1433,"orbit":0},{"id":27674,"orbit":0},{"id":48618,"orbit":0}],"group":568,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34840,"stats":["+5 to any Attribute"],"stringId":"attributes33"},"34845":{"connections":[{"id":60273,"orbit":0}],"group":1308,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":34845,"stats":["10% increased Hazard Area of Effect"],"stringId":"hazards19"},"34853":{"connections":[{"id":25458,"orbit":-2},{"id":43044,"orbit":0}],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","name":"Strength and Critical Damage Bonus on You","orbit":2,"orbitIndex":0,"skill":34853,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"stringId":"azmerianimals31"},"34866":{"connections":[{"id":40985,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":2,"skill":34866,"stats":["Remnants you create have 10% increased effect"],"stringId":"remnant3"},"34871":{"connections":[{"id":52764,"orbit":2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":22,"skill":34871,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage35"},"34882":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":11641,"orbit":2147483647}],"group":457,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":34882,"stats":["+2% to Quality of all Skills"],"stringId":"AscendancyMercenary3Small1"},"34892":{"connections":[{"id":12066,"orbit":0}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":11,"skill":34892,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"azmerianimals57"},"34898":{"connections":[{"id":38463,"orbit":0}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":5,"orbitIndex":31,"skill":34898,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies7"},"34908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Staunch Deflection","orbit":3,"orbitIndex":23,"recipe":["Guilt","Despair","Fear"],"skill":34908,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating","Deflected Hits cannot inflict Maim on you","Deflected Hits cannot inflict Bleeding on you"],"stringId":"deflect53"},"34912":{"connections":[{"id":4664,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":45,"skill":34912,"stats":["10% increased Trap Damage"],"stringId":"trap3_"},"34927":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":748,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":34927,"stats":[],"stringId":"mastery_fire118"},"34940":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connectionArt":"CharacterPlanned","connections":[],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","isNotable":true,"name":"Meditative Focus","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":6,"skill":34940,"stats":["60% increased Stun Threshold while Channelling","30% of Damage taken Recouped as Life while Channelling"],"stringId":"oracle_channelling5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34968":{"connections":[{"id":64637,"orbit":0}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":10,"skill":34968,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"spell_suppression35"},"34984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":34984,"stats":[],"stringId":"mastery_energy_shield_6495"},"34990":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":34990,"stats":["10% chance to Poison on Hit"],"stringId":"oracle_poison1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35011":{"connections":[{"id":10305,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Attack Damage with Ally","orbit":2,"orbitIndex":18,"skill":35011,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"stringId":"auras22"},"35015":{"connections":[{"id":6655,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":35015,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed19_"},"35028":{"connections":[{"id":51974,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"In the Thick of It","orbit":2,"orbitIndex":17,"recipe":["Disgust","Despair","Greed"],"skill":35028,"stats":["Regenerate 2.5% of maximum Life per second while Surrounded"],"stringId":"being_surrounded9"},"35031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","isNotable":true,"name":"Chakra of Life","orbit":0,"orbitIndex":0,"recipe":["Fear","Isolation","Fear"],"skill":35031,"stats":["3% increased maximum Life","10% increased Life Recovery rate"],"stringId":"monkchakra18"},"35033":{"ascendancyName":"Amazon","connections":[{"id":55796,"orbit":0}],"group":1596,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35033,"stats":["4% increased Skill Speed"],"stringId":"AscendancyHuntress1Small3"},"35043":{"connections":[],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":4,"orbitIndex":36,"skill":35043,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"buckler7"},"35046":{"connections":[],"group":900,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Mystic Avalanche","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Isolation","Suffering"],"skill":35046,"stats":["Final Echo of Cascadable Spells also Cascades to either side of the targeted Area along a random axis"],"stringId":"DeliriumAnoint_MysticAvalanche"},"35048":{"connections":[{"id":43650,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":12,"skill":35048,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals60"},"35058":{"connections":[{"id":64650,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if no recent Stun","orbit":2,"orbitIndex":18,"skill":35058,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold17"},"35085":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":228,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":35085,"stats":[],"stringId":"mastery_criticals66"},"35095":{"connections":[{"id":41886,"orbit":2}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage","orbit":2,"orbitIndex":20,"skill":35095,"stats":["10% increased Chaos Damage"],"stringId":"monkchaos2"},"35118":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":35118,"stats":[],"stringId":"mastery_twohand242"},"35151":{"connections":[{"id":44453,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":7,"orbitIndex":23,"skill":35151,"stats":["15% increased Stun Threshold"],"stringId":"monkchakra26"},"35171":{"connections":[{"id":18846,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":3,"orbitIndex":2,"skill":35171,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells2"},"35173":{"connections":[{"id":1599,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Critical Chance","orbit":7,"orbitIndex":22,"skill":35173,"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"stringId":"physical2"},"35187":{"ascendancyName":"Amazon","connections":[],"group":1581,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds","isNotable":true,"name":"In for the Kill","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":35187,"stats":["20% increased Movement Speed while an enemy with an Open Weakness is in your Presence","40% increased Skill Speed while an enemy with an Open Weakness is in your Presence"],"stringId":"AscendancyHuntress1Notable4"},"35223":{"connections":[{"id":55680,"orbit":0},{"id":9227,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":3,"orbitIndex":4,"skill":35223,"stats":["3% increased Attack Speed with Spears"],"stringId":"spear11"},"35234":{"connections":[{"id":35660,"orbit":0},{"id":6789,"orbit":0},{"id":56651,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":14623,"name":"Attack Damage","stats":["10% increased Attack Damage"]}},"orbit":7,"orbitIndex":19,"skill":35234,"stats":["10% increased Projectile Damage"],"stringId":"projectiles22"},"35265":{"connections":[{"id":31903,"orbit":0},{"id":48589,"orbit":0},{"id":18374,"orbit":0},{"id":6274,"orbit":0}],"group":563,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":35265,"stats":["+5 to any Attribute"],"stringId":"strength79"},"35284":{"connections":[{"id":31898,"orbit":-2},{"id":64471,"orbit":-7}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":3,"skill":35284,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds1"},"35324":{"connections":[{"id":34927,"orbit":0},{"id":34290,"orbit":4}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Burnout","orbit":3,"orbitIndex":0,"recipe":["Isolation","Greed","Paranoia"],"skill":35324,"stats":["Ignites you inflict deal Damage 15% faster"],"stringId":"ignite17"},"35369":{"connections":[{"id":1459,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Investing Energies","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Envy"],"skill":35369,"stats":["35% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration16"},"35380":{"connections":[{"id":44373,"orbit":-2}],"group":1350,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":2,"orbitIndex":20,"skill":35380,"stats":["10% increased Withered Magnitude"],"stringId":"chaos22"},"35387":{"connections":[{"id":6554,"orbit":2},{"id":49512,"orbit":0}],"group":769,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":35387,"stats":["12% increased Cold Damage"],"stringId":"cold60__"},"35393":{"connectionArt":"CharacterPlanned","connections":[{"id":23708,"orbit":0}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":2,"skill":35393,"stats":["30% increased Armour while Bleeding"],"stringId":"oracle_iron_blood2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35404":{"connections":[{"id":43250,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":7,"orbitIndex":2,"skill":35404,"stats":["+5% to Cold Resistance"],"stringId":"shaman5"},"35408":{"connections":[{"id":24767,"orbit":7},{"id":23382,"orbit":0}],"group":354,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":2,"orbitIndex":16,"skill":35408,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus1"},"35417":{"connections":[{"id":28770,"orbit":3},{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Wyvern's Breath","orbit":3,"orbitIndex":13,"recipe":["Guilt","Disgust","Paranoia"],"skill":35417,"stats":["40% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting28"},"35426":{"connections":[{"id":8406,"orbit":6}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":35426,"stats":["+5 to any Attribute"],"stringId":"strength89"},"35453":{"ascendancyName":"Titan","connections":[{"id":42275,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Slam Area of Effect","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":5,"orbitIndex":52,"skill":35453,"stats":["Slam Skills have 8% increased Area of Effect"],"stringId":"AscendancyWarrior1Small1"},"35477":{"connections":[{"id":10277,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Far Sighted","orbit":2,"orbitIndex":1,"recipe":["Guilt","Ire","Fear"],"skill":35477,"stats":["30% reduced penalty to Accuracy Rating at range"],"stringId":"accuracy29"},"35492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":807,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":21,"skill":35492,"stats":[],"stringId":"mastery_minion_offence_6621"},"35503":{"connections":[{"id":23764,"orbit":0}],"group":1021,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect and Mana Regeneration","orbit":0,"orbitIndex":0,"skill":35503,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"stringId":"lightning48"},"35534":{"connections":[{"id":44280,"orbit":-3}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":15,"skill":35534,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks32"},"35535":{"ascendancyName":"Shaman","connections":[{"id":1855,"orbit":8},{"id":33824,"orbit":9},{"id":61722,"orbit":9},{"id":54512,"orbit":9},{"id":28022,"orbit":9}],"group":50,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Shaman","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35535,"stats":[],"stringId":"AscendancyDruid2Start"},"35560":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":607,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"At your Command","orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Envy"],"skill":35560,"stats":["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"],"stringId":"minion_offence47_"},"35564":{"connections":[{"id":18121,"orbit":0},{"id":65310,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Turn the Clock Back","orbit":3,"orbitIndex":0,"recipe":["Fear","Fear","Despair"],"skill":35564,"stats":["15% increased Spell Damage","10% reduced Projectile Speed for Spell Skills"],"stringId":"projectile_spells8"},"35581":{"connections":[{"id":26895,"orbit":0}],"group":544,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Near at Hand","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Paranoia"],"skill":35581,"stats":["16% reduced Skill Effect Duration","10% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells6"},"35594":{"connections":[],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":2,"orbitIndex":8,"skill":35594,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break21_"},"35602":{"connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":12,"skill":35602,"stats":["Offerings have 30% reduced Maximum Life"],"stringId":"corpses16"},"35618":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":36504,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Cold Coat","orbit":7,"orbitIndex":15,"recipe":["Envy","Despair","Envy"],"skill":35618,"stats":["25% increased Freeze Buildup","25% reduced Freeze Duration on you","25% increased Freeze Threshold"],"stringId":"chill_and_freeze25"},"35623":{"connections":[{"id":24736,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":9,"skill":35623,"stats":["+4% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 6% of Evasion Rating"],"stringId":"armour_and_evasion56_"},"35644":{"connections":[{"id":45193,"orbit":6},{"id":65009,"orbit":0}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":23,"skill":35644,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison17"},"35645":{"connections":[],"group":540,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","orbit":0,"orbitIndex":0,"skill":35645,"stats":["Minions have 20% increased Cooldown Recovery Rate for Command Skills"],"stringId":"minion_offence49"},"35653":{"connections":[{"id":35653,"orbit":0},{"id":65468,"orbit":0}],"group":885,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":0,"orbitIndex":0,"skill":35653,"stats":["12% increased Grenade Damage"],"stringId":"crossbow9"},"35660":{"connections":[{"id":18548,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":13,"skill":35660,"stats":["3% increased Attack Speed"],"stringId":"attack_speed3"},"35671":{"connections":[{"id":31172,"orbit":3}],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":4,"orbitIndex":57,"skill":35671,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed18"},"35688":{"connections":[{"id":16618,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Reduced Attribute Requirements","orbit":7,"orbitIndex":10,"skill":35688,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"all_attributes7"},"35689":{"connections":[{"id":34543,"orbit":2}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":2,"orbitIndex":14,"skill":35689,"stats":["10% increased Damage"],"stringId":"azmerianimals29"},"35696":{"connections":[{"id":24070,"orbit":0},{"id":64064,"orbit":0},{"id":1020,"orbit":0},{"id":10267,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":35696,"stats":["+5 to any Attribute"],"stringId":"dexterity59"},"35708":{"connections":[{"id":2863,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":2,"skill":35708,"stats":["12% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze16"},"35720":{"connectionArt":"CharacterPlanned","connections":[{"id":7258,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":9,"skill":35720,"stats":["10% increased Spell Damage","+10 to Strength"],"stringId":"oracle_strength_spell1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35739":{"connections":[{"id":42410,"orbit":3},{"id":8556,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Crushing Judgement","orbit":7,"orbitIndex":23,"recipe":["Greed","Isolation","Ire"],"skill":35739,"stats":["25% increased Armour Break Duration","25% increased Attack Area Damage"],"stringId":"area_attacks31"},"35743":{"connections":[{"id":60116,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Saqawal's Hide","orbit":4,"orbitIndex":36,"recipe":["Disgust","Fear","Disgust"],"skill":35743,"stats":["+5% to Lightning Resistance","25% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion34"},"35745":{"connectionArt":"CharacterPlanned","connections":[],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":35745,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"stringId":"oracle_endurance_charge1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35755":{"connections":[{"id":54058,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Damage","orbit":2,"orbitIndex":16,"skill":35755,"stats":["10% increased Critical Damage Bonus with Daggers"],"stringId":"dagger15"},"35760":{"connections":[{"id":22359,"orbit":6}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":35760,"stats":["10% increased Elemental Damage"],"stringId":"elemental45"},"35762":{"ascendancyName":"Shaman","connections":[],"group":66,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds","isNotable":true,"name":"Furious Wellspring","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":35762,"stats":["No Inherent loss of Rage","Regenerate 6% of your maximum Rage per second","Increases and Reductions to Mana Regeneration Rate also apply to Rage Regeneration Rate","Skills have +5 to Rage cost","+7 to Maximum Rage"],"stringId":"AscendancyDruid2Notable6"},"35787":{"connections":[{"id":42813,"orbit":7}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":1,"orbitIndex":0,"skill":35787,"stats":["10% increased Skill Effect Duration"],"stringId":"duration4"},"35792":{"connections":[],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Blood of Rage","orbit":2,"orbitIndex":12,"recipe":["Isolation","Despair","Isolation"],"skill":35792,"stats":["Gain 8 Rage when you use a Life Flask"],"stringId":"life_flasks37"},"35801":{"ascendancyName":"Deadeye","connections":[{"id":23508,"orbit":0}],"group":1561,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Frenzy Charge Duration","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35801,"stats":["25% increased Frenzy Charge Duration"],"stringId":"AscendancyRanger1Small6"},"35809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Reinvigoration","orbit":1,"orbitIndex":6,"recipe":["Disgust","Envy","Ire"],"skill":35809,"stats":["Regenerate 1% of maximum Life per Second if you've used a Life Flask in the past 10 seconds"],"stringId":"life_flasks6"},"35831":{"connections":[{"id":904,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":9,"skill":35831,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana7"},"35848":{"connections":[],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Recovery","orbit":7,"orbitIndex":20,"skill":35848,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks16"},"35849":{"connections":[],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Thickened Arteries","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Greed"],"skill":35849,"stats":["Regenerate 0.5% of maximum Life per second","40% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration16__"},"35855":{"connections":[{"id":48583,"orbit":0},{"id":35859,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Fortifying Blood","orbit":2,"orbitIndex":3,"recipe":["Greed","Paranoia","Fear"],"skill":35855,"stats":["15% increased amount of Life Leeched","40% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech13"},"35859":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":935,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":35859,"stats":[],"stringId":"mastery_leech129"},"35863":{"connections":[{"id":51732,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":35863,"stats":["3% increased Attack Speed"],"stringId":"duration_spells9"},"35876":{"connections":[{"id":53194,"orbit":4},{"id":35977,"orbit":0},{"id":27540,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Admonisher","orbit":2,"orbitIndex":20,"recipe":["Disgust","Suffering","Disgust"],"skill":35876,"stats":["25% increased Warcry Speed","25% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries21"},"35878":{"connections":[{"id":50884,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":11,"skill":35878,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental55"},"35880":{"ascendancyName":"Disciple of Varashta","connections":[],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Cast Speed","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":4,"orbitIndex":6,"skill":35880,"stats":["4% increased Cast Speed"],"stringId":"AscendancySorceress3Small4"},"35896":{"connections":[{"id":55668,"orbit":0},{"id":53266,"orbit":0},{"id":17672,"orbit":0}],"group":1012,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":35896,"stats":["+5 to any Attribute"],"stringId":"intelligence36_"},"35901":{"connections":[{"id":12120,"orbit":-6},{"id":62464,"orbit":6},{"id":60735,"orbit":0},{"id":6951,"orbit":0}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":60,"skill":35901,"stats":["+5 to any Attribute"],"stringId":"dexterity34"},"35918":{"connections":[{"id":52038,"orbit":0}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"One For All","orbit":7,"orbitIndex":19,"recipe":["Disgust","Paranoia","Suffering"],"skill":35918,"stats":["40% increased Presence Area of Effect","8% reduced Area of Effect"],"stringId":"auras37"},"35920":{"ascendancyName":"Shaman","connections":[{"id":35762,"orbit":2147483647}],"group":67,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35920,"stats":["+3 to Maximum Rage"],"stringId":"AscendancyDruid2Small6"},"35921":{"connections":[{"id":5642,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":35921,"stats":["6% increased Area of Effect for Attacks"],"stringId":"slam_area3"},"35966":{"connections":[{"id":44316,"orbit":2147483647}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Heart Tissue","orbit":7,"orbitIndex":4,"recipe":["Paranoia","Despair","Ire"],"skill":35966,"stats":["Regenerate 0.5% of maximum Life per second if you have been Hit Recently","8% of Damage taken Recouped as Life"],"stringId":"life_recoup15"},"35974":{"connections":[{"id":51105,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":22,"skill":35974,"stats":["16% increased Totem Life"],"stringId":"totems19"},"35977":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":35977,"stats":[],"stringId":"mastery_warcry251"},"35980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":88,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":35980,"stats":[],"stringId":"oracle_rust_king_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35985":{"connections":[],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":5,"orbitIndex":18,"skill":35985,"stats":["10% increased Melee Damage"],"stringId":"melee15"},"35987":{"connections":[{"id":32274,"orbit":0},{"id":19470,"orbit":0},{"id":55397,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/finesse.dds","isNotable":true,"name":"Blur","orbit":4,"orbitIndex":27,"skill":35987,"stats":["4% increased Movement Speed","20% increased Evasion Rating","+10 to Dexterity"],"stringId":"ranger_huntress_notable1"},"36025":{"connectionArt":"CharacterPlanned","connections":[{"id":44309,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":30,"skill":36025,"stats":["Minions deal 12% increased Damage"],"stringId":"oracle_big_family1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36027":{"connections":[{"id":18073,"orbit":2}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":36027,"stats":["12% increased Attack Damage"],"stringId":"slow_attacks3"},"36070":{"connections":[{"id":14045,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":45,"skill":36070,"stats":["6% increased Area of Effect for Attacks"],"stringId":"ranged16"},"36071":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern","connections":[],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","isOnlyImage":true,"name":"Spear Mastery","orbit":5,"orbitIndex":12,"skill":36071,"stats":[],"stringId":"mastery_spear_6704"},"36085":{"connections":[{"id":37548,"orbit":0},{"id":15270,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Serrated Edges","orbit":3,"orbitIndex":0,"recipe":["Paranoia","Disgust","Greed"],"skill":36085,"stats":["10% increased Critical Hit Chance for Attacks","30% increased Attack Damage against Rare or Unique Enemies"],"stringId":"melee31"},"36100":{"connections":[{"id":34782,"orbit":0}],"group":167,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Molten Claw","orbit":0,"orbitIndex":0,"recipe":["Suffering","Greed","Paranoia"],"skill":36100,"stats":["Gain 8% of Damage as Extra Fire Damage while Shapeshifted"],"stringId":"bear8"},"36109":{"ascendancyName":"Disciple of Varashta","connections":[{"id":13289,"orbit":8}],"flavourText":"\"The snare was set on our fallen. Beetles burst from their flesh, flooding the sands. Their exploding carapaces halted the advancing enemy... but it was not enough. And for that... I grieve.\" \\n\\nKelari admitted his wrongdoing to Varashta.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds","isNotable":true,"name":"Kelari's Malediction","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":19,"skill":36109,"stats":["Grants Skill: Kelari's Malediction"],"stringId":"AscendancySorceress3Notable15"},"36114":{"connections":[{"id":23360,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Attack Damage while Moving","orbit":7,"orbitIndex":10,"skill":36114,"stats":["12% increased Attack Damage while moving"],"stringId":"slow_mitigation12"},"36163":{"connections":[{"id":30390,"orbit":-4}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":2,"orbitIndex":9,"skill":36163,"stats":["5% increased Block chance"],"stringId":"block25_"},"36169":{"connections":[{"id":29514,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":23,"skill":36169,"stats":["10% increased Grenade Area of Effect"],"stringId":"grenades5"},"36170":{"connections":[{"id":53853,"orbit":-3},{"id":7628,"orbit":-4}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":13,"skill":36170,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion4"},"36191":{"connections":[{"id":40325,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":21,"skill":36191,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold2"},"36197":{"connectionArt":"CharacterPlanned","connections":[{"id":27096,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":19,"skill":36197,"stats":["30% increased Totem Placement speed"],"stringId":"oracle_totems6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36217":{"connections":[],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":2,"skill":36217,"stats":["15% increased Volatility Explosion delay"],"stringId":"volatility16"},"36231":{"connections":[{"id":3336,"orbit":0},{"id":31765,"orbit":0}],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Critical Damage when consuming a Power Charge","orbit":2,"orbitIndex":1,"skill":36231,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"stringId":"power_charges5"},"36250":{"connections":[{"id":56368,"orbit":-7},{"id":49214,"orbit":3},{"id":55897,"orbit":3}],"group":133,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Regeneration","orbit":0,"orbitIndex":0,"skill":36250,"stats":["15% increased Life Regeneration rate while Shapeshifted"],"stringId":"wolf7"},"36252":{"ascendancyName":"Tactician","connections":[{"id":46522,"orbit":0},{"id":762,"orbit":0},{"id":12054,"orbit":0},{"id":29162,"orbit":0},{"id":54892,"orbit":0}],"group":380,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Tactician","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":6,"orbitIndex":36,"skill":36252,"stats":[],"stringId":"AscendancyMercenary1Start"},"36270":{"connections":[{"id":5009,"orbit":0}],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":3,"orbitIndex":1,"skill":36270,"stats":["5% chance to Daze on Hit"],"stringId":"daze_6"},"36286":{"connections":[{"id":41130,"orbit":0},{"id":14033,"orbit":0},{"id":34058,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","orbit":1,"orbitIndex":5,"skill":36286,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"stringId":"spells53"},"36290":{"connections":[{"id":23046,"orbit":-2}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":4,"orbitIndex":33,"skill":36290,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery7"},"36293":{"connections":[{"id":27785,"orbit":0},{"id":55708,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":36293,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration15_"},"36298":{"connections":[{"id":8510,"orbit":3},{"id":40918,"orbit":6}],"group":1156,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect","orbit":0,"orbitIndex":0,"skill":36298,"stats":["10% increased Magnitude of Ailments you inflict"],"stringId":"ailments23"},"36302":{"connections":[{"id":47307,"orbit":6}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Practiced Signs","orbit":7,"orbitIndex":0,"skill":36302,"stats":["6% increased Cast Speed"],"stringId":"cast_speed36_"},"36325":{"connections":[{"id":54148,"orbit":-5}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":4,"orbitIndex":71,"skill":36325,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration7"},"36333":{"connections":[{"id":62360,"orbit":0},{"id":49259,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Explosive Empowerment","orbit":3,"orbitIndex":22,"recipe":["Paranoia","Suffering","Despair"],"skill":36333,"stats":["Empowered Attacks deal 20% increased Damage","Enemies you kill with Empowered Attacks have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"],"stringId":"warcries42"},"36341":{"connections":[{"id":35118,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Cull the Hordes","orbit":2,"orbitIndex":10,"recipe":["Despair","Guilt","Suffering"],"skill":36341,"stats":["40% increased Culling Strike Threshold against Rare or Unique Enemies"],"stringId":"boss_slaying9_"},"36358":{"connections":[{"id":12367,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":36358,"stats":["7% increased Chaos Damage"],"stringId":"chaos16"},"36364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Electrocution","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Greed"],"skill":36364,"stats":["Enemies you Electrocute have 20% increased Damage taken"],"stringId":"shock_mitigation4_"},"36365":{"ascendancyName":"Ritualist","connections":[{"id":60859,"orbit":9},{"id":58149,"orbit":9},{"id":22661,"orbit":9},{"id":17058,"orbit":-9},{"id":42017,"orbit":0},{"id":58574,"orbit":9},{"id":11776,"orbit":8}],"group":1615,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Ritualist","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":36365,"stats":[],"stringId":"AscendancyHuntress3Start"},"36379":{"connections":[{"id":25026,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":58,"skill":36379,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana32"},"36389":{"connections":[{"id":53989,"orbit":8}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":8,"orbitIndex":59,"skill":36389,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage21"},"36408":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Deadly Thorns","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":0,"skill":36408,"stats":["35% increased Physical Damage"],"stringId":"oracle_duration_physical6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36449":{"connections":[{"id":8115,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":6,"skill":36449,"stats":["15% increased Pin Buildup"],"stringId":"armour_break31"},"36450":{"connections":[{"id":11838,"orbit":-4}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Spell Damage on full Energy Shield","orbit":3,"orbitIndex":0,"skill":36450,"stats":["12% increased Spell Damage while on Full Energy Shield"],"stringId":"focus8"},"36474":{"connections":[{"id":31925,"orbit":3}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Curse Effect on Self","orbit":0,"orbitIndex":0,"skill":36474,"stats":["15% reduced effect of Curses on you"],"stringId":"focus2"},"36478":{"connections":[{"id":43014,"orbit":2147483647},{"id":48714,"orbit":2147483647}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":36478,"stats":["10% increased Attack Damage"],"stringId":"melee5"},"36479":{"connections":[{"id":12925,"orbit":0}],"group":1018,"icon":"Art/2DArt/SkillIcons/passives/Storm Weaver.dds","isNotable":true,"name":"Essence of the Storm","orbit":4,"orbitIndex":66,"skill":36479,"stats":["Gain 5% of Damage as Extra Lightning Damage","30% increased chance to Shock"],"stringId":"lightning41"},"36504":{"connections":[{"id":65,"orbit":2147483647}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":11,"skill":36504,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze20"},"36507":{"connections":[{"id":60313,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","isNotable":true,"name":"Vile Mending","orbit":2,"orbitIndex":4,"recipe":["Greed","Fear","Fear"],"skill":36507,"stats":["Minions have 20% increased maximum Life","Minions Regenerate 3% of maximum Life per second","Minions have +13% to Chaos Resistance"],"stringId":"minion_defence35"},"36522":{"connections":[{"id":3999,"orbit":0},{"id":54099,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":33,"skill":36522,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks15"},"36540":{"connections":[{"id":56988,"orbit":0}],"group":1430,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Resistance","orbit":0,"orbitIndex":0,"skill":36540,"stats":["+5% to Lightning Resistance"],"stringId":"lightning58"},"36556":{"connections":[{"id":1502,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Defences","orbit":2,"orbitIndex":12,"skill":36556,"stats":["8% increased Armour, Evasion and Energy Shield while Channelling"],"stringId":"channelling16_"},"36564":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds","isNotable":true,"name":"Beidat's Gaze","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":9,"orbitIndex":100,"skill":36564,"stats":["Reserves 25% of Life","+1 to Maximum Mana per 6 Maximum Life"],"stringId":"AscendancyWitch1Notable1"},"36576":{"connections":[{"id":25055,"orbit":-3},{"id":54984,"orbit":0}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":14,"skill":36576,"stats":["10% increased Attack Damage"],"stringId":"attack6"},"36596":{"connections":[{"id":45013,"orbit":-3},{"id":56118,"orbit":-5}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":7,"orbitIndex":22,"skill":36596,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life6"},"36602":{"connections":[{"id":18465,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isSwitchable":true,"name":"Critical Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","id":16160,"name":"Skill Speed while Shapeshifted","stats":["3% increased Skill Speed while Shapeshifted"]}},"orbit":4,"orbitIndex":39,"skill":36602,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals36"},"36623":{"connections":[{"id":10729,"orbit":0},{"id":31630,"orbit":0}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Convalescence","orbit":2,"orbitIndex":21,"recipe":["Disgust","Suffering","Greed"],"skill":36623,"stats":["10% reduced Energy Shield Recharge Rate","20% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery22"},"36629":{"connections":[{"id":44659,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":45,"skill":36629,"stats":["+5 to any Attribute"],"stringId":"strength22"},"36630":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[{"id":49473,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Incision","orbit":2,"orbitIndex":4,"recipe":["Greed","Greed","Greed"],"skill":36630,"stats":["50% increased effect of Incision"],"stringId":"bleed30"},"36639":{"connections":[{"id":62677,"orbit":-6},{"id":32009,"orbit":0}],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":22,"skill":36639,"stats":["20% increased Curse Duration"],"stringId":"curses15"},"36643":{"ascendancyName":"Martial Artist","connections":[{"id":1739,"orbit":9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Additional Power Charge Chance","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":1,"skill":36643,"stats":["10% chance when you gain a Power Charge to gain an additional Power Charge"],"stringId":"AscendancyMonk1Small6"},"36659":{"ascendancyName":"Warbringer","connections":[],"group":31,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds","isNotable":true,"name":"Imploding Impacts","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":36659,"stats":["Fully Broken Armour you inflict increases all Damage Taken from Hits instead","You can Break Enemy Armour to below 0"],"stringId":"AscendancyWarrior2Notable2"},"36676":{"ascendancyName":"Pathfinder","connections":[{"id":46454,"orbit":0}],"group":1577,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Passive Points","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":36676,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyRanger3Small9"},"36677":{"connections":[{"id":9240,"orbit":0},{"id":36071,"orbit":0},{"id":9227,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":0,"orbitIndex":0,"skill":36677,"stats":["10% increased Damage with Spears"],"stringId":"spear12"},"36696":{"ascendancyName":"Lich","connections":[{"id":28431,"orbit":4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Life","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":31398,"name":"Life","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["3% increased maximum Life"]}},"orbit":9,"orbitIndex":30,"skill":36696,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch3Small5"},"36709":{"connections":[],"group":685,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":6,"skill":36709,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold13"},"36723":{"connections":[{"id":3700,"orbit":0}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":0,"skill":36723,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise7"},"36728":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":564,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds","isNotable":true,"name":"Thaumaturgical Infusion","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":36728,"stats":["+1% to Maximum Cold Resistance per 3 Blue Support Gems Socketed","+1% to Maximum Fire Resistance per 3 Red Support Gems Socketed","+1% to Maximum Lightning Resistance per 3 Green Support Gems Socketed"],"stringId":"AscendancyMercenary3Notable8"},"36737":{"connections":[{"id":7542,"orbit":-2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":0,"skill":36737,"stats":["10% increased Area Damage"],"stringId":"area_of_effect18"},"36746":{"connections":[{"id":40691,"orbit":-3}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":3,"orbitIndex":16,"skill":36746,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"mana22"},"36759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1228,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":36759,"stats":[],"stringId":"mastery_caster_6359"},"36778":{"connections":[{"id":36479,"orbit":0}],"group":1018,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":58,"skill":36778,"stats":["15% increased chance to Shock"],"stringId":"lightning42"},"36782":{"connections":[{"id":1151,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":12,"skill":36782,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze6"},"36788":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":25781,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Leech","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":6,"orbitIndex":8,"skill":36788,"stats":["11% increased amount of Life Leeched","11% increased amount of Mana Leeched"],"stringId":"AscendancyMonk3Small3"},"36808":{"connections":[{"id":34076,"orbit":3},{"id":37795,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Spiked Shield","orbit":2,"orbitIndex":16,"recipe":["Fear","Suffering","Fear"],"skill":36808,"stats":["2% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield","50% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block17"},"36814":{"connections":[],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":6,"skill":36814,"stats":["20% increased Curse Duration"],"stringId":"curses17"},"36822":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":58591,"orbit":0}],"group":573,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Attributes","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":36822,"stats":["3% increased Attributes"],"stringId":"AscendancyMercenary3Small5"},"36880":{"connections":[{"id":43036,"orbit":3}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Effect","orbit":4,"orbitIndex":57,"skill":36880,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration26"},"36891":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56783,"orbit":9}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds","isNotable":true,"name":"Baryanic Leylines","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":28,"skill":36891,"stats":["Non-Unique Time-Lost Jewels have 40% increased radius"],"stringId":"AscendancySorceress3Notable6"},"36894":{"connections":[{"id":61938,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":20,"skill":36894,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"jagged_ground2"},"36927":{"connections":[{"id":44756,"orbit":5}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":11,"skill":36927,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks8"},"36931":{"connections":[],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Concussive Attack","orbit":7,"orbitIndex":0,"recipe":["Disgust","Greed","Greed"],"skill":36931,"stats":["25% increased Attack Damage","5% chance to Daze on Hit"],"stringId":"attack45"},"36976":{"connections":[],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Marked for Death","orbit":3,"orbitIndex":9,"recipe":["Isolation","Suffering","Guilt"],"skill":36976,"stats":["Culling Strike against Enemies you Mark"],"stringId":"marks9"},"36994":{"connections":[{"id":27491,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":12,"skill":36994,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield41"},"36997":{"connections":[{"id":27761,"orbit":0}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":0,"orbitIndex":0,"skill":36997,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"deflect14"},"37026":{"connections":[{"id":27513,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Physical Damage","orbit":1,"orbitIndex":2,"skill":37026,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"stringId":"physical49"},"37046":{"ascendancyName":"Ritualist","connections":[],"group":1619,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds","isNotable":true,"name":"Corrupted Lifeforce","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37046,"stats":["15% more Damage against Enemies affected by Blood Boils","Grants Skill: Blood Boil"],"stringId":"AscendancyHuntress3Notable6"},"37078":{"ascendancyName":"Witchhunter","connections":[],"group":365,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds","isNotable":true,"name":"Zealous Inquisition","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37078,"stats":["10% chance for Enemies you Kill to Explode, dealing 100%","of their maximum Life as Physical Damage","Chance is doubled against Undead and Demons"],"stringId":"AscendancyMercenary2Notable7"},"37092":{"connections":[{"id":55817,"orbit":0}],"group":695,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Exposure Effect and Slow Effect","orbit":7,"orbitIndex":6,"skill":37092,"stats":["Debuffs you inflict have 7% increased Slow Magnitude","7% increased Exposure Effect"],"stringId":"slowed_enemies29"},"37113":{"connections":[{"id":28982,"orbit":0}],"group":115,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":37113,"stats":["12% increased Lightning Damage"],"stringId":"lightning50"},"37164":{"connections":[{"id":419,"orbit":2147483647}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Non-Damaging Ailment Magnitude","orbit":2,"orbitIndex":16,"skill":37164,"stats":["10% increased Magnitude of Non-Damaging Ailments you inflict"],"stringId":"monkchakra22"},"37187":{"connections":[{"id":14026,"orbit":-4},{"id":63085,"orbit":5}],"group":157,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage against Immobilised","orbit":0,"orbitIndex":0,"skill":37187,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"stringId":"bear7"},"37190":{"connections":[{"id":35855,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":7,"skill":37190,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech11"},"37220":{"connections":[{"id":17955,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":9,"skill":37220,"stats":["15% increased Evasion Rating"],"stringId":"evasion10"},"37226":{"connections":[{"id":4015,"orbit":2},{"id":9187,"orbit":-6}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":4,"skill":37226,"stats":["16% increased Warcry Speed"],"stringId":"warcries30"},"37242":{"connections":[{"id":16871,"orbit":2},{"id":54031,"orbit":0}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":14,"skill":37242,"stats":["12% increased Stun Threshold"],"stringId":"azmerianimals1"},"37244":{"connections":[{"id":33445,"orbit":3},{"id":37795,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Shield Expertise","orbit":2,"orbitIndex":8,"recipe":["Disgust","Greed","Fear"],"skill":37244,"stats":["12% increased Block chance","40% increased Block Recovery"],"stringId":"block18"},"37250":{"connections":[{"id":1420,"orbit":0}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":2,"orbitIndex":16,"skill":37250,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks48"},"37258":{"connections":[{"id":31903,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":37258,"stats":["+5 to any Attribute"],"stringId":"attributes18"},"37260":{"connections":[{"id":30395,"orbit":2}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":13,"skill":37260,"stats":["16% increased Warcry Speed"],"stringId":"wolf13_"},"37266":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":29930,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Nourishing Ally","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Guilt"],"skill":37266,"stats":["Companions have 20% increased maximum Life","20% increased Life Recovery Rate while your Companion is in your Presence"],"stringId":"duelist_minions9"},"37276":{"connections":[{"id":33244,"orbit":0}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Battle Trance","orbit":2,"orbitIndex":14,"recipe":["Isolation","Disgust","Fear"],"skill":37276,"stats":["+8 to Maximum Rage"],"stringId":"rage6"},"37279":{"connections":[{"id":41159,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":15,"skill":37279,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning52"},"37290":{"connections":[{"id":28892,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage while Shapeshifted","orbit":7,"orbitIndex":5,"skill":37290,"stats":["+3 to maximum Rage while Shapeshifted"],"stringId":"rage29"},"37302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Kept at Bay","orbit":3,"orbitIndex":20,"recipe":["Guilt","Paranoia","Suffering"],"skill":37302,"stats":["Attacks used by Ballistas have 10% increased Attack Speed","50% increased Ballista Immobilisation buildup"],"stringId":"ballista18"},"37304":{"connections":[{"id":336,"orbit":4},{"id":61921,"orbit":-4},{"id":64543,"orbit":0}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental","orbit":4,"orbitIndex":57,"skill":37304,"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"stringId":"elemental20"},"37327":{"connections":[],"group":567,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":37327,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana15"},"37336":{"ascendancyName":"Deadeye","connections":[{"id":35801,"orbit":0}],"group":1563,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds","isNotable":true,"name":"Avidity","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37336,"stats":["50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge"],"stringId":"AscendancyRanger1Notable5_"},"37361":{"connections":[{"id":40043,"orbit":2147483647}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":6,"skill":37361,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed22_"},"37372":{"connections":[{"id":13738,"orbit":0}],"group":1032,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":37372,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning10"},"37389":{"connections":[{"id":37644,"orbit":0},{"id":28061,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":37389,"stats":["10% increased Attack Damage"],"stringId":"attack36"},"37397":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":393,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds","isMultipleChoiceOption":true,"name":"Neurological Implants","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":37397,"stats":["+2 to Level of all Skills with an Intelligence requirement"],"stringId":"AscendancyMercenary3Notable2_3_"},"37408":{"connections":[{"id":31855,"orbit":7},{"id":46761,"orbit":0}],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Staunching","orbit":2,"orbitIndex":13,"recipe":["Envy","Despair","Disgust"],"skill":37408,"stats":["Life Flasks gain 0.1 charges per Second","+10 to Strength"],"stringId":"life_flasks12_"},"37414":{"connections":[{"id":65193,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":37414,"stats":["10% increased Accuracy Rating"],"stringId":"melee9"},"37415":{"connections":[{"id":51328,"orbit":-5}],"group":328,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":37415,"stats":["12% increased Cold Damage"],"stringId":"cold53_"},"37434":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":10,"skill":37434,"stats":[],"stringId":"mastery_armour_and_evasion_6281"},"37450":{"connections":[],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":46,"skill":37450,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments3"},"37484":{"connections":[],"flavourText":"The irrepressible spirit of the wilds burns within you, roaring to be let loose.","group":144,"icon":"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds","isKeystone":true,"name":"Primal Hunger","orbit":0,"orbitIndex":0,"skill":37484,"stats":["100% more Maximum Rage","Regenerate 1 Rage per second per 4 Rage spent Recently","No Rage effect"],"stringId":"passive_keystone_acrobatics"},"37509":{"connections":[{"id":57921,"orbit":-2}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Critical Hit Chance","orbit":7,"orbitIndex":18,"skill":37509,"stats":["15% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting8"},"37514":{"connections":[{"id":32442,"orbit":0},{"id":64700,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"Whirling Assault","orbit":3,"orbitIndex":1,"recipe":["Envy","Disgust","Greed"],"skill":37514,"stats":["8% increased Attack Speed with Quarterstaves","Knocks Back Enemies if you get a Critical Hit with a Quarterstaff"],"stringId":"quarterstaff10"},"37519":{"connections":[{"id":17045,"orbit":0}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":7,"orbitIndex":14,"skill":37519,"stats":["2% increased Movement Speed"],"stringId":"slow_mitigation3"},"37523":{"ascendancyName":"Tactician","connections":[{"id":24696,"orbit":0}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds","isNotable":true,"name":"Cannons, Ready!","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37523,"stats":["+1 to maximum number of Summoned Totems","Skills used by Totems have 30% more Skill Speed","Totems only use Skills when you fire an Attack Projectile"],"stringId":"AscendancyMercenary1Notable8"},"37532":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":37532,"stats":[],"stringId":"mastery_elemental97"},"37543":{"connections":[{"id":16647,"orbit":0}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Full Recovery","orbit":2,"orbitIndex":16,"recipe":["Despair","Envy","Guilt"],"skill":37543,"stats":["15% increased Life Regeneration rate","15% increased Mana Regeneration Rate","12% increased Cast Speed while on Full Mana"],"stringId":"mana_regeneration18"},"37548":{"connections":[{"id":37742,"orbit":0},{"id":17589,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":5,"skill":37548,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech6"},"37568":{"connections":[{"id":45370,"orbit":0}],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","name":"Strength and Critical Damage Bonus on You","orbit":2,"orbitIndex":6,"skill":37568,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"stringId":"azmerianimals35"},"37593":{"connections":[],"group":889,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":0,"orbitIndex":0,"skill":37593,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant7"},"37594":{"connections":[{"id":8983,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":5,"orbitIndex":38,"skill":37594,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence7"},"37604":{"ascendancyName":"Martial Artist","connections":[{"id":51546,"orbit":9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Immobilisation Buildup","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":21,"skill":37604,"stats":["20% increased Immobilisation buildup"],"stringId":"AscendancyMonk1Small8"},"37608":{"connections":[{"id":53524,"orbit":0},{"id":61042,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":4,"orbitIndex":51,"skill":37608,"stats":["10% increased Physical Damage"],"stringId":"physical9"},"37609":{"connections":[{"id":21213,"orbit":0},{"id":60332,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":0,"orbitIndex":0,"skill":37609,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour53"},"37612":{"connections":[{"id":13279,"orbit":0},{"id":17532,"orbit":0},{"id":60191,"orbit":0}],"group":590,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":37612,"stats":["+5 to any Attribute"],"stringId":"attributes44"},"37616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":5,"orbitIndex":45,"skill":37616,"stats":[],"stringId":"mastery_trap238_"},"37619":{"connections":[],"group":318,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Rhythm of Fire","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Ire"],"skill":37619,"stats":["20% increased Fire Damage","5% chance for Slam Skills to cause an additional Aftershock"],"stringId":"fire76"},"37629":{"connections":[{"id":55933,"orbit":0},{"id":41338,"orbit":-7},{"id":8248,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":37629,"stats":["+5 to any Attribute"],"stringId":"strength7"},"37641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":284,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":37641,"stats":[],"stringId":"mastery_armour9"},"37644":{"connections":[{"id":46874,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":0,"skill":37644,"stats":["12% increased Attack Physical Damage"],"stringId":"physical27_"},"37665":{"connections":[{"id":35739,"orbit":3}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage and Armour Break","orbit":7,"orbitIndex":2,"skill":37665,"stats":["Break 10% increased Armour","6% increased Attack Area Damage"],"stringId":"area_attacks16_"},"37688":{"connections":[{"id":37616,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Devestating Devices","orbit":6,"orbitIndex":36,"skill":37688,"stats":["25% increased Trap Damage"],"stringId":"trap17"},"37691":{"connections":[{"id":42750,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":13,"skill":37691,"stats":["10% increased Attack Damage"],"stringId":"attack24"},"37694":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":21,"skill":37694,"stats":["20% increased Fire Damage"],"stringId":"oracle_hierarchy3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37695":{"connections":[{"id":11813,"orbit":-5}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":37695,"stats":["15% increased Evasion Rating"],"stringId":"evasion1"},"37742":{"connections":[{"id":15270,"orbit":0},{"id":8246,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Manifold Method","orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Fear"],"skill":37742,"stats":["50% increased amount of Mana Leeched","25% increased chance to inflict Ailments against Rare or Unique Enemies"],"stringId":"mana_leech19"},"37746":{"connections":[{"id":6544,"orbit":-2}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":19,"skill":37746,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite18"},"37767":{"connections":[{"id":9020,"orbit":0},{"id":6596,"orbit":0},{"id":63731,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Speed","orbit":7,"orbitIndex":16,"skill":37767,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"stringId":"boss_slaying4"},"37769":{"ascendancyName":"Spirit Walker","connections":[{"id":62743,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Shared Companion Damage","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":37769,"stats":["Companions deal 10% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"AscendancyHuntress2Small3"},"37778":{"connectionArt":"CharacterPlanned","connections":[{"id":24929,"orbit":0},{"id":13108,"orbit":0}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Self Sacrificing","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":20,"skill":37778,"stats":["-20% increased Spirit Reservation Efficiency","40% increased Reservation Efficiency of Minion Skills"],"stringId":"oracle_self_sacrificing5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37780":{"connections":[{"id":7888,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Combo Gain","orbit":3,"orbitIndex":1,"skill":37780,"stats":["10% Chance to build an additional Combo on Hit"],"stringId":"unarmed6"},"37782":{"ascendancyName":"Oracle","connections":[],"group":37,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds","isNotable":true,"name":"Fateful Vision","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37782,"stats":["Grants Skill: Align Fate"],"stringId":"AscendancyDruid1Notable5"},"37795":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":37795,"stats":[],"stringId":"mastery_shield211"},"37806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1051,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Branching Bolts","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Ire"],"skill":37806,"stats":["60% chance for Lightning Skills to Chain an additional time"],"stringId":"shock5"},"37813":{"connections":[{"id":14724,"orbit":0},{"id":50701,"orbit":0}],"group":1362,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":37813,"stats":["20% increased Shock Duration"],"stringId":"shock16"},"37846":{"connections":[],"group":181,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","isNotable":true,"name":"Bastion of Light","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Fear","Despair"],"skill":37846,"stats":["Blind Enemies 3 metres in front of you every 0.25 seconds while your Shield is raised","Raise Shield inflicts Parried for 2 seconds on Hit"],"stringId":"DeliriumAnoint_BastionOfLight"},"37869":{"connections":[{"id":60068,"orbit":-2},{"id":21413,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":7,"orbitIndex":16,"skill":37869,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage24"},"37872":{"connections":[{"id":28863,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Presence Present","orbit":7,"orbitIndex":4,"recipe":["Ire","Fear","Isolation"],"skill":37872,"stats":["Allies in your Presence have +100 to Accuracy Rating","35% increased Attack Damage while you have an Ally in your Presence"],"stringId":"attack29"},"37876":{"connections":[{"id":52615,"orbit":3},{"id":25729,"orbit":-3}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":4,"orbitIndex":45,"skill":37876,"stats":["10% increased Spell Damage"],"stringId":"spells10"},"37888":{"connectionArt":"CharacterPlanned","connections":[{"id":29663,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","isNotable":true,"name":"Limitless Pursuit","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":6,"skill":37888,"stats":["4% increased Movement Speed","14% increased Cooldown Recovery Rate"],"stringId":"oracle_movement_cooldown5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37905":{"connections":[],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":3,"orbitIndex":2,"skill":37905,"stats":["30% increased Flammability Magnitude"],"stringId":"fire_penetration3_"},"37946":{"connections":[],"group":1209,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Stun Buildup","orbit":0,"orbitIndex":0,"skill":37946,"stats":["20% increased Projectile Stun Buildup"],"stringId":"quivers5"},"37951":{"connections":[{"id":41020,"orbit":0},{"id":9089,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":11,"skill":37951,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect51"},"37956":{"connections":[{"id":35581,"orbit":3}],"group":539,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":37956,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration_spells1"},"37963":{"connections":[],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":13,"skill":37963,"stats":["10% increased Damage with Swords"],"stringId":"sword11_"},"37967":{"connections":[],"group":647,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.dds","isNotable":true,"name":"Desert's Scorn","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Fear","Suffering"],"skill":37967,"stats":["Enemies standing on Chilled Ground take 25% increased Fire Damage","Enemies standing on Ignited Ground take 25% increased Cold Damage"],"stringId":"DeliriumAnoint_DesertsScorn"},"37971":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1538,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":37971,"stats":[],"stringId":"mastery_companion289"},"37972":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":-4},{"id":18280,"orbit":5}],"group":1613,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Charm Charges","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":37972,"stats":["15% increased Charm Charges gained"],"stringId":"AscendancyHuntress3Small3"},"37974":{"connections":[{"id":62230,"orbit":0}],"group":1040,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":68,"skill":37974,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield46_"},"37991":{"connections":[{"id":52254,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":18,"skill":37991,"stats":["6% increased Curse Magnitudes"],"stringId":"curses21"},"38003":{"connections":[{"id":63526,"orbit":4}],"group":831,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":20,"skill":38003,"stats":["12% increased Stun Threshold"],"stringId":"weapon_swapping1"},"38004":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1564,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds","isMultipleChoiceOption":true,"name":"Explosive Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":38004,"stats":["Grants Skill: Explosive Concoction"],"stringId":"AscendancyRanger3Notable7_1"},"38010":{"connections":[],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":23,"skill":38010,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory1"},"38014":{"ascendancyName":"Titan","connections":[{"id":3762,"orbit":5}],"group":75,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Slam Area of Effect","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":38014,"stats":["Slam Skills have 8% increased Area of Effect"],"stringId":"AscendancyWarrior1Small2"},"38044":{"connections":[{"id":37695,"orbit":-4}],"group":1205,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":38044,"stats":["15% increased Evasion Rating"],"stringId":"evasion2"},"38053":{"connections":[{"id":28564,"orbit":5},{"id":8460,"orbit":0},{"id":9528,"orbit":-2}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Deafening Cries","orbit":3,"orbitIndex":13,"recipe":["Disgust","Guilt","Paranoia"],"skill":38053,"stats":["25% increased Warcry Cooldown Recovery Rate","8% increased Damage for each time you've Warcried Recently"],"stringId":"warcries17"},"38057":{"connections":[],"group":840,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":58,"skill":38057,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion25"},"38066":{"connections":[{"id":25300,"orbit":0}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Armour","orbit":7,"orbitIndex":12,"skill":38066,"stats":["10% increased Armour","Break 15% increased Armour"],"stringId":"armour_break3_"},"38068":{"connections":[],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Chance","orbit":4,"orbitIndex":60,"skill":38068,"stats":["24% increased Flammability Magnitude","12% increased Freeze Buildup","12% increased chance to Shock"],"stringId":"elemental52"},"38069":{"connections":[{"id":338,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":0,"skill":38069,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers14"},"38103":{"connections":[{"id":6898,"orbit":-8}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration and Stun Threshold","orbit":7,"orbitIndex":12,"skill":38103,"stats":["8% increased Skill Effect Duration","8% increased Stun Threshold"],"stringId":"duration14"},"38105":{"connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":67,"skill":38105,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield22"},"38111":{"connections":[{"id":32241,"orbit":0}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Pliable Flesh","orbit":2,"orbitIndex":0,"recipe":["Greed","Disgust","Isolation"],"skill":38111,"stats":["6% of Damage taken Recouped as Life","25% increased speed of Recoup Effects"],"stringId":"life_recoup17"},"38124":{"connections":[{"id":51820,"orbit":8}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":26,"skill":38124,"stats":["15% increased Totem Damage"],"stringId":"totems35"},"38130":{"connections":[],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":12,"skill":38130,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries19_"},"38138":{"connections":[{"id":35688,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Reduced Attribute Requirements","orbit":5,"orbitIndex":36,"skill":38138,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"all_attributes8"},"38143":{"connections":[],"group":983,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":18,"skill":38143,"stats":["+5 to any Attribute"],"stringId":"dexterity17"},"38172":{"connections":[{"id":60568,"orbit":-6}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":5,"skill":38172,"stats":["20% increased Totem Placement speed"],"stringId":"totems26"},"38212":{"connections":[{"id":57683,"orbit":0}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":38212,"stats":["3% of Damage taken Recouped as Life"],"stringId":"monkchakra13"},"38215":{"connections":[{"id":61921,"orbit":-3}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":4,"skill":38215,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration7"},"38235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":600,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":38235,"stats":[],"stringId":"mastery_life144"},"38270":{"connections":[{"id":23724,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":38270,"stats":["10% increased Lightning Damage"],"stringId":"shock_mitigation10"},"38292":{"connections":[{"id":33397,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":15,"skill":38292,"stats":["30% increased Flammability Magnitude"],"stringId":"fire4"},"38300":{"connections":[{"id":39716,"orbit":-7},{"id":57373,"orbit":-7}],"group":622,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":38300,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite9"},"38313":{"connections":[],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Speed","orbit":2,"orbitIndex":16,"skill":38313,"stats":["10% increased Projectile Speed"],"stringId":"projectiles40"},"38320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":90,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":38320,"stats":[],"stringId":"mastery_fire122"},"38323":{"connections":[{"id":6015,"orbit":-6},{"id":22928,"orbit":-5}],"group":604,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38323,"stats":["+5 to any Attribute"],"stringId":"strength17"},"38329":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Biting Frost","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Guilt"],"skill":38329,"stats":["20% reduced Freeze Duration on Enemies","Enemies Frozen by you take 20% increased Cold Damage"],"stringId":"cold43"},"38338":{"connections":[{"id":5257,"orbit":-2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":60,"skill":38338,"stats":["10% increased Elemental Damage"],"stringId":"elemental44"},"38342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Stupefy","orbit":7,"orbitIndex":20,"recipe":["Paranoia","Despair","Paranoia"],"skill":38342,"stats":["10% chance to Daze on Hit","30% increased Damage against Dazed Enemies"],"stringId":"daze_2"},"38365":{"connections":[{"id":34626,"orbit":0},{"id":46499,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Recover Life on consuming Endurance Charge","orbit":2,"orbitIndex":20,"skill":38365,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"stringId":"endurance_charges4_"},"38368":{"connections":[{"id":35966,"orbit":-2},{"id":4091,"orbit":2}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":38368,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup6"},"38369":{"connections":[{"id":18910,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Critical Chance","orbit":4,"orbitIndex":48,"skill":38369,"stats":["10% increased Critical Hit Chance with Spears"],"stringId":"spear1"},"38398":{"connections":[{"id":2211,"orbit":7}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Apocalypse","orbit":7,"orbitIndex":14,"recipe":["Suffering","Paranoia","Greed"],"skill":38398,"stats":["30% reduced Damage","+8% to Critical Hit Chance of Herald Skills"],"stringId":"heralds18"},"38420":{"connections":[{"id":37543,"orbit":0}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":20,"skill":38420,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration2"},"38430":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[{"id":10499,"orbit":0}],"group":687,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":38430,"stats":[],"stringId":"mastery_trap_6766"},"38433":{"connections":[{"id":55375,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":17,"skill":38433,"stats":["Minions have 10% increased maximum Life"],"stringId":"companions44"},"38459":{"connections":[{"id":38568,"orbit":0}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Disorientation","orbit":2,"orbitIndex":16,"recipe":["Disgust","Paranoia","Disgust"],"skill":38459,"stats":["25% increased Blind duration","25% increased Damage with Hits against Blinded Enemies"],"stringId":"blind10"},"38463":{"connections":[{"id":46882,"orbit":0},{"id":21111,"orbit":-6},{"id":43522,"orbit":5},{"id":22329,"orbit":0}],"group":1309,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38463,"stats":["+5 to any Attribute"],"stringId":"dexterity80"},"38474":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connectionArt":"CharacterPlanned","connections":[],"group":560,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleed Mastery","orbit":7,"orbitIndex":13,"skill":38474,"stats":[],"stringId":"oracle_bleed_mastery1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38479":{"connections":[{"id":17553,"orbit":-5}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Close Confines","orbit":2,"orbitIndex":20,"recipe":["Ire","Paranoia","Ire"],"skill":38479,"stats":["50% chance for Projectiles to Pierce Enemies within 3m distance of you"],"stringId":"ranged38_"},"38493":{"connections":[{"id":55621,"orbit":4}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":45,"skill":38493,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals52"},"38497":{"connections":[{"id":62803,"orbit":-5}],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":19,"skill":38497,"stats":["6% reduced Charm Charges used"],"stringId":"charms14"},"38501":{"connections":[{"id":47796,"orbit":-4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":40,"skill":38501,"stats":["3% increased Attack Speed"],"stringId":"attack_speed29"},"38532":{"connections":[{"id":31779,"orbit":0}],"group":220,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Thirst for Power","orbit":2,"orbitIndex":20,"recipe":["Envy","Ire","Despair"],"skill":38532,"stats":["25% chance when you gain a Power Charge to gain an additional Power Charge"],"stringId":"power_endurance_charges3"},"38535":{"connections":[{"id":61063,"orbit":7},{"id":42205,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Stormcharged","orbit":4,"orbitIndex":66,"recipe":["Fear","Fear","Envy"],"skill":38535,"stats":["Damage Penetrates 8% of Enemy Elemental Resistances","5% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental33"},"38537":{"connections":[{"id":54983,"orbit":-3},{"id":51583,"orbit":0}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Heartstopping","orbit":2,"orbitIndex":21,"recipe":["Ire","Despair","Paranoia"],"skill":38537,"stats":["+10 to Intelligence","20% increased Critical Hit Chance"],"stringId":"criticals53"},"38541":{"connections":[{"id":61601,"orbit":0}],"group":1237,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":38541,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals17"},"38564":{"connections":[{"id":20091,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":15,"skill":38564,"stats":["10% increased Damage with Swords"],"stringId":"sword4"},"38568":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":1,"orbitIndex":2,"skill":38568,"stats":[],"stringId":"mastery_evasion110"},"38570":{"connections":[{"id":53895,"orbit":2},{"id":27992,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Demolitionist","orbit":7,"orbitIndex":10,"recipe":["Ire","Suffering","Envy"],"skill":38570,"stats":["Gain 4% of Damage as Extra Fire Damage for","every different Grenade fired in the past 8 seconds"],"stringId":"grenades28"},"38578":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds","isNotable":true,"name":"Multiplying Squalls","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":24,"skill":38578,"stats":["+2 to Limit for Elemental Skills"],"stringId":"AscendancySorceress1Notable4"},"38596":{"connections":[{"id":35408,"orbit":-3}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Curse Effect on Self","orbit":0,"orbitIndex":0,"skill":38596,"stats":["15% reduced effect of Curses on you"],"stringId":"focus3"},"38601":{"ascendancyName":"Witchhunter","connections":[{"id":34501,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds","isNotable":true,"name":"Obsessive Rituals","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":6,"orbitIndex":28,"skill":38601,"stats":["50% less Armour and Evasion Rating","Grants Skill: Sorcery Ward"],"stringId":"AscendancyMercenary2Notable5"},"38614":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":27662,"orbit":0},{"id":44201,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Psychic Fragmentation","orbit":3,"orbitIndex":20,"recipe":["Paranoia","Disgust","Isolation"],"skill":38614,"stats":["12% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells10"},"38628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Escalating Toxins","orbit":2,"orbitIndex":19,"recipe":["Despair","Isolation","Disgust"],"skill":38628,"stats":["10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"],"stringId":"poison9"},"38646":{"connections":[{"id":23570,"orbit":0}],"group":735,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":38646,"stats":["+20 to Armour"],"stringId":"armour6"},"38663":{"connections":[{"id":3516,"orbit":0}],"group":644,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Critical Chance","orbit":7,"orbitIndex":6,"skill":38663,"stats":["10% increased Melee Critical Hit Chance"],"stringId":"melee28"},"38668":{"connections":[],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion","orbit":7,"orbitIndex":7,"skill":38668,"stats":["15% increased Evasion Rating"],"stringId":"unarmed10"},"38670":{"connections":[{"id":28589,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour if Hit","orbit":2,"orbitIndex":21,"skill":38670,"stats":["20% increased Armour if you have been Hit Recently"],"stringId":"getting_hit2"},"38676":{"connections":[{"id":27910,"orbit":-8},{"id":56045,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":6,"skill":38676,"stats":["10% increased Attack Damage"],"stringId":"attack41__"},"38678":{"connections":[{"id":30463,"orbit":-7},{"id":60464,"orbit":-6}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":19,"skill":38678,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression28_"},"38694":{"connections":[{"id":22188,"orbit":-4}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":8,"skill":38694,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds4"},"38696":{"connections":[{"id":54868,"orbit":0}],"group":398,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":38696,"stats":["12% increased Fire Damage"],"stringId":"fire77"},"38697":{"connectionArt":"CharacterPlanned","connections":[{"id":20391,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":12,"skill":38697,"stats":["8% increased Block chance"],"stringId":"oracle_crab_claw7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38703":{"connections":[{"id":8249,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Critical Chance","orbit":7,"orbitIndex":14,"skill":38703,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"stringId":"accuracy32"},"38707":{"connections":[{"id":49734,"orbit":0},{"id":28564,"orbit":0},{"id":11464,"orbit":0},{"id":3723,"orbit":0}],"group":221,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38707,"stats":["+5 to any Attribute"],"stringId":"strength53"},"38728":{"connections":[{"id":14539,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Deflection and Evasion","orbit":7,"orbitIndex":0,"skill":38728,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"evasion22"},"38732":{"connections":[{"id":17107,"orbit":-4},{"id":25594,"orbit":0}],"group":891,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38732,"stats":["+5 to any Attribute"],"stringId":"intelligence44"},"38763":{"connections":[{"id":27859,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":16,"skill":38763,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds5"},"38769":{"ascendancyName":"Warbringer","connections":[{"id":58704,"orbit":0}],"group":30,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour Break","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":38769,"stats":["Break 25% increased Armour"],"stringId":"AscendancyWarrior2Small1"},"38776":{"connections":[{"id":57816,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":38776,"stats":["+8 to Dexterity"],"stringId":"attributes105"},"38779":{"connections":[{"id":44605,"orbit":5},{"id":44836,"orbit":0}],"group":827,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":8,"skill":38779,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion27"},"38813":{"ascendancyName":"Ritualist","connections":[],"group":1614,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpseHand.dds","isNotable":true,"name":"Devotion to the King","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":38813,"stats":["Grants Skill: Queen's Procession"],"stringId":"AscendancyHuntress3Notable8"},"38814":{"connections":[{"id":19288,"orbit":0},{"id":62341,"orbit":0},{"id":11980,"orbit":0}],"group":1001,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38814,"stats":["+5 to any Attribute"],"stringId":"dexterity71"},"38827":{"connections":[{"id":1546,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":1,"skill":38827,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour17"},"38835":{"connections":[{"id":4091,"orbit":-7}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":7,"orbitIndex":16,"skill":38835,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup32"},"38856":{"connections":[{"id":49357,"orbit":0},{"id":2071,"orbit":0},{"id":21081,"orbit":5},{"id":56090,"orbit":0}],"group":670,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":38856,"stats":["+5 to any Attribute"],"stringId":"intelligence40"},"38876":{"connections":[{"id":61490,"orbit":0},{"id":31903,"orbit":0}],"group":480,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38876,"stats":["+5 to any Attribute"],"stringId":"attributes59_"},"38878":{"connections":[{"id":34898,"orbit":-7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":4,"orbitIndex":35,"skill":38878,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies2"},"38888":{"connections":[{"id":39116,"orbit":0}],"group":932,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Unerring Impact","orbit":7,"orbitIndex":12,"recipe":["Greed","Disgust","Ire"],"skill":38888,"stats":["16% increased Accuracy Rating with One Handed Melee Weapons","16% increased Accuracy Rating with Two Handed Melee Weapons","+0.2 metres to Melee Strike Range"],"stringId":"melee36_"},"38895":{"connections":[{"id":8697,"orbit":3},{"id":48660,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Crystal Elixir","orbit":2,"orbitIndex":7,"recipe":["Fear","Suffering","Greed"],"skill":38895,"stats":["40% increased Elemental Damage with Attack Skills during any Flask Effect"],"stringId":"elemental_attacks9"},"38921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":333,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":2,"orbitIndex":1,"skill":38921,"stats":[],"stringId":"mastery_shield213"},"38923":{"connections":[{"id":61429,"orbit":3},{"id":511,"orbit":-3}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Skill Speed","orbit":7,"orbitIndex":14,"skill":38923,"stats":["3% increased Skill Speed"],"stringId":"attacks_and_spells4"},"38944":{"connections":[{"id":43338,"orbit":0},{"id":59538,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Shock Chance and Lightning Damage","orbit":2,"orbitIndex":6,"skill":38944,"stats":["8% increased Lightning Damage","8% increased chance to Shock"],"stringId":"daze_13"},"38965":{"connections":[{"id":65226,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Infused Limits","orbit":7,"orbitIndex":21,"recipe":["Greed","Isolation","Paranoia"],"skill":38965,"stats":["+1 to maximum number of Elemental Infusions"],"stringId":"infusion1"},"38966":{"connections":[{"id":30210,"orbit":0},{"id":35058,"orbit":0},{"id":61976,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Evasion Rating","orbit":2,"orbitIndex":0,"skill":38966,"stats":["8% increased Evasion Rating","12% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold29"},"38969":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":50588,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Finesse","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Disgust"],"skill":38969,"stats":["10% increased Accuracy Rating","Gain Accuracy Rating equal to your Intelligence"],"stringId":"accuracy16"},"38972":{"connections":[{"id":34552,"orbit":0},{"id":8357,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Restless Dead","orbit":3,"orbitIndex":8,"recipe":["Despair","Fear","Disgust"],"skill":38972,"stats":["Minions Revive 25% faster"],"stringId":"minion_offence39"},"38993":{"connections":[{"id":21112,"orbit":0}],"group":1519,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Critical Damage","orbit":0,"orbitIndex":0,"skill":38993,"stats":["16% increased Critical Damage Bonus with Bows"],"stringId":"bow9"},"39037":{"connections":[{"id":11672,"orbit":0}],"group":859,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39037,"stats":["+5 to any Attribute"],"stringId":"intelligence17"},"39050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isNotable":true,"name":"Exploit","orbit":2,"orbitIndex":4,"recipe":["Disgust","Envy","Isolation"],"skill":39050,"stats":["25% increased Damage with Hits against Enemies affected by Elemental Ailments","15% increased Duration of Ignite, Shock and Chill on Enemies"],"stringId":"exploiting_elemental_ailments15"},"39083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":484,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Blood Rush","orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Disgust"],"skill":39083,"stats":["6% increased Skill Speed","6% of Skill Mana Costs Converted to Life Costs"],"stringId":"attack_speed55"},"39087":{"aliasPassiveSocket":"voices_jewel_slot4","connections":[],"group":700,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":39087,"stats":[],"stringId":"voices_jewel_slot4"},"39102":{"connectionArt":"CharacterPlanned","connections":[{"id":13228,"orbit":2147483647}],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":3,"skill":39102,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"stringId":"oracle_power_charge1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":932,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":3,"orbitIndex":14,"skill":39116,"stats":[],"stringId":"mastery_physical_6628"},"39128":{"connections":[{"id":47514,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":4,"skill":39128,"stats":["15% increased Magnitude of Daze"],"stringId":"daze_9"},"39130":{"connections":[{"id":14294,"orbit":-5}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Spell Damage","orbit":2,"orbitIndex":20,"skill":39130,"stats":["12% increased Spell Damage with Spells that cost Life"],"stringId":"life_costs7"},"39131":{"connections":[{"id":11741,"orbit":0},{"id":55596,"orbit":0}],"group":195,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39131,"stats":["+5 to any Attribute"],"stringId":"strength44"},"39190":{"connections":[{"id":8800,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":13,"skill":39190,"stats":["15% increased Melee Damage with Hits at Close Range"],"stringId":"melee10"},"39204":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds","isNotable":true,"name":"Force of Will","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":48,"skill":39204,"stats":["20% of Damage is taken from Mana before Life","20% increased Effect of Arcane Surge on you per ten percent missing Mana"],"stringId":"AscendancySorceress1Notable2"},"39207":{"connections":[{"id":33518,"orbit":0}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":10,"skill":39207,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation1"},"39228":{"connections":[{"id":62603,"orbit":0},{"id":63021,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":18,"skill":39228,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration10"},"39237":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":39237,"stats":[],"stringId":"mastery_critical_6409"},"39241":{"ascendancyName":"Lich","connections":[{"id":58932,"orbit":-4}],"group":1191,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Energy Shield","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":59609,"name":"Energy Shield","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["20% increased maximum Energy Shield"]}},"orbit":0,"orbitIndex":0,"skill":39241,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancyWitch3Small7"},"39274":{"connections":[{"id":2119,"orbit":0}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":6,"skill":39274,"stats":["Leech Life 8% slower"],"stringId":"life_leech21"},"39280":{"connections":[{"id":44669,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":1,"skill":39280,"stats":["10% increased Skill Effect Duration"],"stringId":"duration10"},"39292":{"ascendancyName":"Pathfinder","connections":[{"id":40,"orbit":-7}],"group":1580,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Evasion","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":39292,"stats":["20% increased Evasion Rating"],"stringId":"AscendancyRanger3Small5"},"39298":{"connections":[{"id":38814,"orbit":0},{"id":3995,"orbit":0},{"id":18115,"orbit":0},{"id":1019,"orbit":0}],"group":956,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39298,"stats":["+5 to any Attribute"],"stringId":"attributes60"},"39307":{"connections":[{"id":37026,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":1,"orbitIndex":6,"skill":39307,"stats":["10% increased Physical Damage"],"stringId":"physical46"},"39347":{"connections":[],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Breaking Blows","orbit":3,"orbitIndex":21,"recipe":["Disgust","Disgust","Disgust"],"skill":39347,"stats":["30% increased Stun Buildup","12% increased Area of Effect if you have Stunned an Enemy Recently"],"stringId":"melee49"},"39365":{"ascendancyName":"Warbringer","connections":[{"id":39411,"orbit":0}],"group":46,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Totem Life","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":39365,"stats":["20% increased Totem Life"],"stringId":"AscendancyWarrior2Small6"},"39369":{"connections":[{"id":2936,"orbit":3},{"id":51583,"orbit":0}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Struck Through","orbit":4,"orbitIndex":9,"recipe":["Isolation","Despair","Greed"],"skill":39369,"stats":["Attacks have +1% to Critical Hit Chance"],"stringId":"criticals55_"},"39411":{"ascendancyName":"Warbringer","connections":[{"id":48682,"orbit":0}],"group":44,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds","isNotable":true,"name":"Answered Call","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":39411,"stats":["+1 to maximum number of Summoned Totems","Trigger Ancestral Spirits when you Summon a Totem","Grants Skill: Ancestral Spirits"],"stringId":"AscendancyWarrior2Notable6"},"39416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":726,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":39416,"stats":[],"stringId":"mastery_minionoffence187"},"39423":{"connections":[{"id":53207,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":20,"skill":39423,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration2"},"39431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":39431,"stats":[],"stringId":"mastery_crossbow_6422"},"39448":{"connections":[{"id":11178,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":21,"skill":39448,"stats":["3% increased Attack Speed with Axes"],"stringId":"axe9"},"39461":{"connections":[{"id":229,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":0,"skill":39461,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation13_"},"39470":{"ascendancyName":"Infernalist","connections":[{"id":17754,"orbit":-6}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Minion Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":3,"skill":39470,"stats":["Minions have 12% increased maximum Life"],"stringId":"AscendancyWitch1Small10"},"39476":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":783,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":39476,"stats":[],"stringId":"mastery_cold_6398"},"39495":{"connections":[{"id":46386,"orbit":2147483647},{"id":27048,"orbit":9}],"group":1527,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39495,"stats":["Companions deal 12% increased Damage"],"stringId":"companions10"},"39515":{"connections":[{"id":23450,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":8,"skill":39515,"stats":["12% increased Fire Damage"],"stringId":"fire8"},"39517":{"connections":[],"group":612,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":39517,"stats":["5% increased Block chance"],"stringId":"block8"},"39540":{"connections":[{"id":55933,"orbit":0},{"id":50558,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isSwitchable":true,"name":"Critical Chance","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","id":22652,"name":"Skill Speed while Shapeshifted","stats":["3% increased Skill Speed while Shapeshifted"]}},"orbit":4,"orbitIndex":49,"skill":39540,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals2_"},"39552":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds","isNotable":true,"name":"Runic Meridians","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":7,"orbitIndex":22,"skill":39552,"stats":["Can tattoo Runes onto your body, gaining","additional Rune-only sockets:","1 Helmet socket","2 Body Armour sockets","1 Gloves socket","1 Boots socket"],"stringId":"AscendancyMonk1Notable5"},"39564":{"connections":[{"id":62039,"orbit":0},{"id":38663,"orbit":0},{"id":13279,"orbit":0}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":12,"skill":39564,"stats":["10% increased Melee Damage"],"stringId":"melee41"},"39567":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":53188,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","isNotable":true,"name":"Ingenuity","orbit":5,"orbitIndex":0,"recipe":["Ire","Isolation","Suffering"],"skill":39567,"stats":["+25 to Intelligence"],"stringId":"intelligence101_"},"39568":{"connections":[],"group":1284,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","isNotable":true,"name":"Magnum Opus","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Despair","Isolation"],"skill":39568,"stats":["Charms applied to you have 100% increased Effect per empty Charm slot"],"stringId":"DeliriumAnoint_MagnumOpus"},"39569":{"connections":[{"id":35901,"orbit":0},{"id":3458,"orbit":-4},{"id":7353,"orbit":3}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":2,"skill":39569,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals46"},"39570":{"connections":[{"id":49394,"orbit":6}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance on Critical","orbit":4,"orbitIndex":59,"skill":39570,"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"stringId":"bleed9"},"39581":{"connections":[{"id":46325,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":8,"skill":39581,"stats":["15% increased Stun Buildup"],"stringId":"stun4_"},"39594":{"connections":[{"id":51248,"orbit":0},{"id":53294,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":3,"skill":39594,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration1"},"39595":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds","isNotable":true,"name":"Way of the Stonefist","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":3,"orbitIndex":7,"skill":39595,"stats":["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and","their Explicit Modifiers are transformed into more powerful related Modifiers","Ignore Attribute Requirements to equip Gloves"],"stringId":"AscendancyMonk1Notable8"},"39598":{"connections":[{"id":3949,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Power Counted","orbit":2,"orbitIndex":6,"skill":39598,"stats":["Empowered Attacks deal 8% increased Damage","5% increased total Power counted by Warcries"],"stringId":"warcries36"},"39607":{"connections":[{"id":2559,"orbit":-2},{"id":45713,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":12,"skill":39607,"stats":["10% increased Flask Charges gained"],"stringId":"flasks2"},"39608":{"connections":[{"id":1778,"orbit":-3}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":20,"skill":39608,"stats":["20% increased Hazard Duration"],"stringId":"hazards7"},"39621":{"connections":[{"id":14176,"orbit":0},{"id":57703,"orbit":0}],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":0,"orbitIndex":0,"skill":39621,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage11"},"39640":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds","isNotable":true,"name":"Shaper of Storms","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":5,"orbitIndex":70,"skill":39640,"stats":["All Damage from Hits Contributes to Shock Chance"],"stringId":"AscendancySorceress1Notable6"},"39658":{"connections":[{"id":18831,"orbit":7},{"id":15030,"orbit":-2}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":7,"orbitIndex":1,"skill":39658,"stats":["5% increased Block chance"],"stringId":"deflect6"},"39659":{"ascendancyName":"Oracle","connections":[{"id":37782,"orbit":6}],"group":14,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Spell Damage","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":39659,"stats":["12% increased Spell Damage"],"stringId":"AscendancyDruid1Small5"},"39710":{"connections":[{"id":51821,"orbit":0},{"id":12232,"orbit":0},{"id":33045,"orbit":-4}],"group":266,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39710,"stats":["+5 to any Attribute"],"stringId":"attributes54_"},"39716":{"connections":[{"id":31326,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":12,"skill":39716,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite7_"},"39723":{"ascendancyName":"Deadeye","connections":[{"id":5817,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Damage","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":6,"orbitIndex":21,"skill":39723,"stats":["12% increased Projectile Damage"],"stringId":"AscendancyRanger1Small8"},"39732":{"connections":[{"id":30219,"orbit":-2}],"group":619,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":10,"skill":39732,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy49"},"39752":{"connections":[{"id":5936,"orbit":0},{"id":38068,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Duration","orbit":4,"orbitIndex":48,"skill":39752,"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"stringId":"elemental50"},"39759":{"connections":[{"id":48035,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":10,"skill":39759,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration30"},"39839":{"connections":[{"id":20205,"orbit":0},{"id":14340,"orbit":0}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if no recent Stun","orbit":2,"orbitIndex":20,"skill":39839,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun14"},"39857":{"connectionArt":"CharacterPlanned","connections":[{"id":4663,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Mentorship","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":20,"skill":39857,"stats":["Minions have 15% reduced Attack Speed","Minions have 15% reduced Cast Speed","Minions deal 100% increased Damage with Command Skills"],"stringId":"oracle_solo_commander3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39881":{"connections":[{"id":16013,"orbit":0},{"id":35173,"orbit":0}],"group":1402,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Staggering Palm","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Despair"],"skill":39881,"stats":["20% increased Knockback Distance","10% chance to Daze on Hit","25% increased Physical Damage"],"stringId":"physical32__"},"39884":{"connections":[{"id":40271,"orbit":0}],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Searing Heat","orbit":7,"orbitIndex":1,"recipe":["Despair","Suffering","Disgust"],"skill":39884,"stats":["100% increased Flammability Magnitude","Ignites you inflict deal Damage 10% faster"],"stringId":"fire66"},"39886":{"connections":[{"id":56935,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39886,"stats":["+5 to any Attribute"],"stringId":"intelligence14"},"39887":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds","isNotable":true,"name":"The Natural Order","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":6,"orbitIndex":7,"skill":39887,"stats":["Tame Beast can capture Unique Beasts","Can have up to one Unique Tamed Beast summoned","Unique Tamed Beasts have 30% increased movement speed","Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds"],"stringId":"AscendancyHuntress2Notable7"},"39911":{"connections":[],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Frantic Reach","orbit":2,"orbitIndex":4,"recipe":["Disgust","Despair","Fear"],"skill":39911,"stats":["20% reduced Accuracy Rating","18% increased Area of Effect for Attacks"],"stringId":"area_attacks56"},"39935":{"connections":[{"id":44344,"orbit":0}],"flavourText":"I give you everything, my pets. Do not disappoint me.","group":603,"icon":"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds","isKeystone":true,"name":"Necromantic Talisman","orbit":0,"orbitIndex":0,"skill":39935,"stats":["All bonuses from Equipped Amulet apply to your Minions instead of you"],"stringId":"passive_keystone_necromantic_talisman"},"39964":{"connections":[{"id":48198,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":4,"skill":39964,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana11"},"39986":{"connections":[{"id":57933,"orbit":0}],"group":1532,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39986,"stats":["Companions deal 12% increased Damage"],"stringId":"companions9"},"39987":{"connections":[{"id":18913,"orbit":-3},{"id":47177,"orbit":-5}],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage and Duration","orbit":3,"orbitIndex":14,"skill":39987,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"stringId":"chaos1"},"39990":{"connections":[{"id":13294,"orbit":2},{"id":61974,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Chronomancy","orbit":7,"orbitIndex":7,"recipe":["Despair","Fear","Despair"],"skill":39990,"stats":["20% increased Skill Effect Duration","Debuffs you inflict have 10% increased Slow Magnitude"],"stringId":"slowed_enemies10"},"40006":{"connections":[{"id":9896,"orbit":-7},{"id":292,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate and Presence","orbit":2,"orbitIndex":7,"skill":40006,"stats":["5% increased Life Regeneration rate","10% increased Presence Area of Effect"],"stringId":"life_recoup27"},"40024":{"connections":[{"id":2091,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":4,"skill":40024,"stats":["8% chance to Poison on Hit"],"stringId":"poison20"},"40043":{"connections":[{"id":54990,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":0,"skill":40043,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed14"},"40068":{"connections":[{"id":32683,"orbit":0}],"group":1062,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":38,"skill":40068,"stats":["15% increased Freeze Buildup"],"stringId":"cold28"},"40073":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":990,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Drenched","orbit":0,"orbitIndex":0,"recipe":["Isolation","Suffering","Ire"],"skill":40073,"stats":["40% increased chance to Shock","Gain 5% of Lightning damage as Extra Cold damage"],"stringId":"shock14"},"40105":{"connections":[{"id":20558,"orbit":0}],"group":235,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack Speed and Minion Attack Speed","orbit":2,"orbitIndex":14,"skill":40105,"stats":["3% increased Attack Speed","Minions have 3% increased Attack Speed"],"stringId":"minion_offence57"},"40110":{"connections":[{"id":42347,"orbit":3}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":7,"orbitIndex":8,"skill":40110,"stats":["10% increased Blind Effect"],"stringId":"monkchakra11"},"40117":{"connections":[{"id":64023,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Spiked Armour","orbit":7,"orbitIndex":4,"recipe":["Despair","Guilt","Disgust"],"skill":40117,"stats":["Thorns Damage has 50% chance to ignore Enemy Armour"],"stringId":"getting_hit11"},"40166":{"connections":[{"id":32399,"orbit":-3}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Deep Trance","orbit":2,"orbitIndex":4,"recipe":["Fear","Ire","Despair"],"skill":40166,"stats":["8% increased Attack Speed","15% increased Cost Efficiency"],"stringId":"attack_speed36"},"40196":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":40196,"stats":[],"stringId":"mastery_caster44"},"40200":{"connections":[{"id":33612,"orbit":0},{"id":61842,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":2,"orbitIndex":0,"skill":40200,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence11"},"40213":{"connections":[{"id":55846,"orbit":0},{"id":24481,"orbit":0}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","isNotable":true,"name":"Taste for Blood","orbit":1,"orbitIndex":1,"recipe":["Envy","Ire","Greed"],"skill":40213,"stats":["Gain 20 Life per enemy killed","2% chance to Recover all Life when you Kill an Enemy"],"stringId":"life_on_kill15"},"40244":{"connections":[{"id":43263,"orbit":-3}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":16,"skill":40244,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed8"},"40270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Frenetic","orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Guilt"],"skill":40270,"stats":["10% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge","+1 to Maximum Frenzy Charges"],"stringId":"frenzy_charges7_"},"40271":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":2,"skill":40271,"stats":[],"stringId":"mastery_fire121"},"40276":{"connections":[{"id":32745,"orbit":0},{"id":60241,"orbit":0}],"group":520,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":40276,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical19"},"40292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","isNotable":true,"name":"Nimble Strength","orbit":1,"orbitIndex":2,"recipe":["Greed","Despair","Isolation"],"skill":40292,"stats":["10% increased Attack Damage","Gain Accuracy Rating equal to your Strength"],"stringId":"accuracy45_"},"40313":{"connections":[{"id":58363,"orbit":2},{"id":56844,"orbit":-2},{"id":3251,"orbit":0}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect and Duration","orbit":0,"orbitIndex":0,"skill":40313,"stats":["8% increased Archon Buff duration","5% increased effect of Archon Buffs on you"],"stringId":"archon8"},"40325":{"connections":[{"id":7392,"orbit":0},{"id":48505,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Resolution","orbit":3,"orbitIndex":21,"recipe":["Envy","Disgust","Envy"],"skill":40325,"stats":["25% increased Stun Threshold","10% increased Armour, Evasion and Energy Shield"],"stringId":"stun_threshold9"},"40328":{"connections":[{"id":28564,"orbit":-5}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":3,"skill":40328,"stats":["16% increased Warcry Speed"],"stringId":"warcries1"},"40333":{"connections":[{"id":24178,"orbit":2}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":7,"orbitIndex":12,"skill":40333,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions29"},"40336":{"connections":[{"id":6655,"orbit":0}],"group":733,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":40336,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed27"},"40341":{"connections":[{"id":17340,"orbit":-3},{"id":21274,"orbit":9}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":3,"orbitIndex":6,"skill":40341,"stats":["3% increased Movement Speed if you've Killed Recently"],"stringId":"movement_speed6"},"40345":{"connections":[{"id":37991,"orbit":0},{"id":50540,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Master of Hexes","orbit":7,"orbitIndex":0,"recipe":["Suffering","Fear","Suffering"],"skill":40345,"stats":["25% reduced Curse Duration","18% increased Curse Magnitudes"],"stringId":"curses10"},"40377":{"connections":[{"id":46318,"orbit":7},{"id":7554,"orbit":-3},{"id":46628,"orbit":0}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":10,"skill":40377,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour21"},"40395":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":112,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":40395,"stats":[],"stringId":"mastery_attack4"},"40399":{"connections":[{"id":20641,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Energise","orbit":5,"orbitIndex":6,"recipe":["Isolation","Guilt","Paranoia"],"skill":40399,"stats":["25% chance for Trigger skills to refund half of Energy Spent"],"stringId":"triggers16"},"40453":{"connections":[{"id":25304,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":9,"skill":40453,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers5"},"40471":{"connections":[{"id":19027,"orbit":-2},{"id":7847,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":40471,"stats":["+8 to Dexterity"],"stringId":"azmerianimals16"},"40480":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":1953,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Harmonic Generator","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Despair"],"skill":40480,"stats":["15% increased Critical Hit Chance against Shocked Enemies","40% increased Magnitude of Shock you inflict with Critical Hits"],"stringId":"shock21"},"40511":{"connectionArt":"CharacterPlanned","connections":[{"id":55375,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":40511,"stats":["Minions have 12% increased maximum Life"],"stringId":"oracle_forbidden_path1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"40550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":396,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":0,"skill":40550,"stats":[],"stringId":"mastery_totem_6749"},"40596":{"connections":[],"group":324,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":36,"skill":40596,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold19___"},"40597":{"connections":[{"id":53607,"orbit":0},{"id":58817,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Attack Speed","orbit":4,"orbitIndex":9,"skill":40597,"stats":["Attacks used by Ballistas have 4% increased Attack Speed"],"stringId":"ballista7"},"40626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1307,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":40626,"stats":[],"stringId":"mastery_trap_6764"},"40630":{"connections":[{"id":44527,"orbit":0}],"group":1053,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isSwitchable":true,"name":"Flask Charges Gained","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","id":18391,"name":"Ailment Threshold","stats":["15% increased Elemental Ailment Threshold"]}},"orbit":0,"orbitIndex":0,"skill":40630,"stats":["15% increased Flask Charges gained"],"stringId":"flasks23"},"40632":{"connections":[{"id":48889,"orbit":-2}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":12,"skill":40632,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect24"},"40687":{"connections":[],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Lead by Example","orbit":2,"orbitIndex":12,"recipe":["Disgust","Envy","Despair"],"skill":40687,"stats":["30% increased Presence Area of Effect","Allies in your Presence have 30% increased Glory generation"],"stringId":"glory21"},"40691":{"connections":[{"id":25893,"orbit":7}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":4,"orbitIndex":62,"skill":40691,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"mana21"},"40719":{"ascendancyName":"Witchhunter","connections":[{"id":17646,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage vs Low Life Enemies","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":5,"orbitIndex":47,"skill":40719,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"AscendancyMercenary2Small2"},"40721":{"ascendancyName":"Stormweaver","connections":[{"id":64789,"orbit":-6},{"id":65413,"orbit":6},{"id":49759,"orbit":-4},{"id":13673,"orbit":4},{"id":12488,"orbit":0},{"id":44484,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Stormweaver","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":40721,"stats":[],"stringId":"AscendancySorceress1Start_"},"40736":{"connections":[{"id":34305,"orbit":0},{"id":15606,"orbit":2}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":10,"skill":40736,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory12"},"40760":{"connections":[{"id":21779,"orbit":0},{"id":9185,"orbit":0},{"id":47177,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":1,"skill":40760,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals22"},"40783":{"connections":[{"id":11672,"orbit":0},{"id":15358,"orbit":0},{"id":17711,"orbit":-4},{"id":24035,"orbit":0},{"id":63009,"orbit":0},{"id":21540,"orbit":0}],"group":890,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":40783,"stats":["+5 to any Attribute"],"stringId":"intelligence86"},"40803":{"connections":[{"id":3218,"orbit":0},{"id":44298,"orbit":0}],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Sigil of Ice","orbit":4,"orbitIndex":21,"recipe":["Suffering","Disgust","Guilt"],"skill":40803,"stats":["30% increased Damage with Hits against Chilled Enemies"],"stringId":"cold31"},"40894":{"connections":[{"id":1218,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":20,"skill":40894,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence6"},"40915":{"ascendancyName":"Warbringer","connections":[],"group":40,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds","isNotable":true,"name":"Wooden Wall","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":40915,"stats":["20% of Damage from Hits is taken from your nearest Totem's Life before you"],"stringId":"AscendancyWarrior2Notable7"},"40918":{"connections":[{"id":1773,"orbit":-4}],"group":1152,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect and Duration","orbit":0,"orbitIndex":0,"skill":40918,"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments35"},"40929":{"connections":[{"id":43633,"orbit":-7}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":21,"skill":40929,"stats":["15% increased Archon Buff duration"],"stringId":"archon13"},"40975":{"connections":[{"id":24368,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":40975,"stats":["15% increased Ballista damage"],"stringId":"ballista4"},"40985":{"connections":[{"id":62679,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Empowering Remnants","orbit":2,"orbitIndex":6,"recipe":["Guilt","Fear","Paranoia"],"skill":40985,"stats":["15% chance for Remnants you create to grant their effects twice"],"stringId":"remnant4"},"40990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1444,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Exposed to the Storm","orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Despair"],"skill":40990,"stats":["Damage Penetrates 18% Lightning Resistance","15% increased Critical Hit Chance against enemies with Exposure"],"stringId":"lightning_penetration23"},"41008":{"ascendancyName":"Amazon","connections":[],"group":1583,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds","isNotable":true,"name":"Penetrate","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":41008,"stats":["Attacks using your Weapons have Added Physical Damage equal","to 25% of the Accuracy Rating on the Weapon"],"stringId":"AscendancyHuntress1Notable2"},"41012":{"connections":[{"id":11392,"orbit":-6}],"group":96,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Armour ","orbit":0,"orbitIndex":0,"skill":41012,"stats":["6% increased Fire Damage","10% increased Armour"],"stringId":"fire49_"},"41016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":41016,"stats":[],"stringId":"mastery_attack18"},"41017":{"connections":[{"id":14262,"orbit":0},{"id":1801,"orbit":0}],"group":1453,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41017,"stats":["+5 to any Attribute"],"stringId":"attributes26"},"41020":{"connections":[{"id":3994,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":1,"orbitIndex":8,"skill":41020,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect52_"},"41029":{"connections":[{"id":25827,"orbit":0},{"id":44563,"orbit":-4},{"id":25557,"orbit":0},{"id":22219,"orbit":0}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41029,"stats":["+5 to any Attribute"],"stringId":"attributes68"},"41031":{"connections":[{"id":54232,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":27,"skill":41031,"stats":["+5 to any Attribute"],"stringId":"strength25"},"41033":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":55872,"orbit":0}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Utmost Offering","orbit":2,"orbitIndex":23,"recipe":["Paranoia","Fear","Greed"],"skill":41033,"stats":["Offerings cannot be damaged if they have been created Recently"],"stringId":"corpses21"},"41044":{"connections":[{"id":47591,"orbit":-7}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":7,"orbitIndex":10,"skill":41044,"stats":["3% of Damage taken Recouped as Mana"],"stringId":"mana_regeneration37"},"41062":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":4,"orbitIndex":48,"skill":41062,"stats":[],"stringId":"mastery_projectile_6649"},"41076":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":32771,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds","isNotable":true,"name":"Embrace the Darkness","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":45,"skill":41076,"stats":["You have no Spirit","Base Maximum Darkness is 100","Damage taken is Reserved from Darkness before being taken from Life or Energy Shield","Darkness Reservation lasts for 5 seconds","+10 to Maximum Darkness per Level"],"stringId":"AscendancyMonk3Notable7"},"41085":{"ascendancyName":"Spirit Walker","connections":[{"id":4367,"orbit":0},{"id":46070,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":5,"orbitIndex":46,"skill":41085,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyHuntress2Small6"},"41096":{"connections":[{"id":35901,"orbit":0},{"id":31345,"orbit":5}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Shock Chance","orbit":5,"orbitIndex":36,"skill":41096,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"stringId":"elemental28"},"41105":{"connections":[{"id":38835,"orbit":0},{"id":54288,"orbit":7}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":12,"skill":41105,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup19"},"41126":{"connections":[{"id":1170,"orbit":0},{"id":9918,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":4,"skill":41126,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks6__"},"41129":{"connections":[{"id":24338,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":4,"orbitIndex":70,"skill":41129,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments4"},"41130":{"connections":[],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","orbit":2,"orbitIndex":4,"skill":41130,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"stringId":"spells57"},"41147":{"connections":[{"id":23797,"orbit":-6}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Lightning Damage","orbit":2,"orbitIndex":14,"skill":41147,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"stringId":"armour42"},"41154":{"connections":[{"id":33601,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":14,"skill":41154,"stats":["20% increased Freeze Buildup"],"stringId":"chill_and_freeze17"},"41159":{"connections":[{"id":27434,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":18,"skill":41159,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning53"},"41163":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":41163,"stats":[],"stringId":"mastery_evasion111"},"41171":{"connections":[{"id":36341,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Speed","orbit":7,"orbitIndex":4,"skill":41171,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"stringId":"boss_slaying3"},"41180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":355,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":41180,"stats":[],"stringId":"mastery_shapeshifting_6682"},"41186":{"connections":[],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":5,"orbitIndex":0,"skill":41186,"stats":["20% increased Totem Placement speed"],"stringId":"totems38"},"41210":{"connections":[{"id":1477,"orbit":0},{"id":43578,"orbit":0}],"group":838,"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","isNotable":true,"name":"Ricochet","orbit":4,"orbitIndex":21,"skill":41210,"stats":["15% increased Projectile Damage","Projectiles have 10% chance to Chain an additional time from terrain"],"stringId":"projectiles28_"},"41225":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":41225,"stats":[],"stringId":"mastery_miniondefence181"},"41298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41298,"stats":[],"stringId":"mastery_attack_6299"},"41338":{"connections":[{"id":31673,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Armour applies to Elemental Damage Hits","orbit":2,"orbitIndex":7,"skill":41338,"stats":["+8% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"shapeshifting35"},"41363":{"connections":[{"id":62518,"orbit":-5}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Lightning Resistance","orbit":4,"orbitIndex":9,"skill":41363,"stats":["+5% to Lightning Resistance"],"stringId":"maximum_resistances9"},"41372":{"connections":[{"id":48030,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield and Mana Regeneration","orbit":7,"orbitIndex":21,"skill":41372,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"stringId":"energy_shield7"},"41384":{"connections":[{"id":51672,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":4,"skill":41384,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour42"},"41394":{"connections":[{"id":10841,"orbit":0}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Invigorating Archon","orbit":7,"orbitIndex":13,"recipe":["Envy","Isolation","Paranoia"],"skill":41394,"stats":["Archon Buffs also grant +20% to all Elemental Resistances","Archon Buffs also grant 10% increased Movement Speed"],"stringId":"archon11"},"41401":{"ascendancyName":"Spirit Walker","connections":[{"id":62702,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds","isNotable":true,"name":"Vivid Stampede","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":4,"orbitIndex":29,"skill":41401,"stats":["Gain a Vivid Wisp for every 10 metres you move, up to a maximum of 3","Expend all Vivid Wisps to trigger Vivid Stampede when you Attack","Grants Skill: Vivid Stampede"],"stringId":"AscendancyHuntress2Notable1"},"41414":{"connections":[{"id":4547,"orbit":-7}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Cold Resistance","orbit":7,"orbitIndex":23,"skill":41414,"stats":["+5% to Cold Resistance"],"stringId":"maximum_resistances5"},"41415":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":618,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":41415,"stats":[],"stringId":"mastery_life136"},"41442":{"connections":[{"id":58088,"orbit":5}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Block and Stun Threshold","orbit":3,"orbitIndex":14,"skill":41442,"stats":["4% increased Block chance","5% increased Stun Threshold"],"stringId":"shield31"},"41447":{"connections":[],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Flammability Magnitude","orbit":3,"orbitIndex":8,"skill":41447,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"stringId":"area_attacks61"},"41493":{"connections":[{"id":50253,"orbit":9}],"group":352,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":0,"orbitIndex":0,"skill":41493,"stats":["8% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"slams1"},"41497":{"connections":[{"id":21164,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":7,"orbitIndex":6,"skill":41497,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence1"},"41511":{"connections":[{"id":35560,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Damage","orbit":0,"orbitIndex":0,"skill":41511,"stats":["Minions deal 15% increased Damage with Command Skills"],"stringId":"minion_offence43"},"41512":{"connections":[],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Heavy Weaponry","orbit":7,"orbitIndex":13,"recipe":["Paranoia","Disgust","Envy"],"skill":41512,"stats":["15% increased Melee Damage","15% increased Stun Buildup with Melee Damage","+15 to Strength"],"stringId":"melee37_"},"41522":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":41522,"stats":[],"stringId":"mastery_duration92"},"41529":{"connections":[{"id":21380,"orbit":-2}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":5,"skill":41529,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals37"},"41538":{"connections":[{"id":9112,"orbit":3},{"id":30047,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":41538,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression30"},"41573":{"connections":[{"id":24655,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":10,"skill":41573,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration8"},"41580":{"connections":[{"id":13799,"orbit":3},{"id":41298,"orbit":0}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Maiming Strike","orbit":7,"orbitIndex":2,"recipe":["Despair","Isolation","Ire"],"skill":41580,"stats":["25% increased Attack Damage","Attacks have 25% chance to Maim on Hit"],"stringId":"attack5"},"41609":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Recharge","orbit":5,"orbitIndex":20,"skill":41609,"stats":["15% increased Energy Shield Recharge Rate while Shapeshifted"],"stringId":"wyvern10"},"41615":{"connections":[{"id":10534,"orbit":4},{"id":22616,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":10,"skill":41615,"stats":["20% increased Totem Placement speed"],"stringId":"totems22"},"41619":{"ascendancyName":"Pathfinder","connections":[],"group":1572,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds","isNotable":true,"name":"Enduring Elixirs","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":41619,"stats":["Life Flask Effects are not removed when Unreserved Life is Filled","Life Flask Effects do not Queue"],"stringId":"AscendancyRanger3Notable6"},"41620":{"connections":[{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Bear's Roar","orbit":3,"orbitIndex":5,"recipe":["Paranoia","Envy","Greed"],"skill":41620,"stats":["40% increased Stun buildup if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting27"},"41645":{"connections":[{"id":6490,"orbit":0},{"id":10382,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":20,"skill":41645,"stats":["10% increased Physical Damage"],"stringId":"physical22"},"41646":{"connections":[{"id":48670,"orbit":0},{"id":14091,"orbit":0},{"id":17867,"orbit":0}],"group":693,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41646,"stats":["+5 to any Attribute"],"stringId":"strength39_"},"41651":{"connections":[{"id":43791,"orbit":0},{"id":53320,"orbit":-5}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":2,"orbitIndex":2,"skill":41651,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners20"},"41654":{"connections":[{"id":41033,"orbit":2147483647}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":5,"skill":41654,"stats":["Offerings have 15% increased Maximum Life"],"stringId":"corpses20___"},"41657":{"connections":[],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":10,"skill":41657,"stats":["15% increased Armour"],"stringId":"armour20"},"41665":{"connections":[{"id":50562,"orbit":6}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":2,"skill":41665,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals72"},"41669":{"connections":[],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":12,"skill":41669,"stats":["12% increased Cold Damage"],"stringId":"cold7"},"41701":{"connections":[{"id":11741,"orbit":0},{"id":11027,"orbit":0}],"group":233,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration and Armour","orbit":2,"orbitIndex":6,"skill":41701,"stats":["10% increased Endurance Charge Duration","10% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"power_endurance_charges4"},"41736":{"ascendancyName":"Amazon","connections":[{"id":46071,"orbit":0},{"id":35033,"orbit":0},{"id":5563,"orbit":4},{"id":60662,"orbit":0},{"id":2702,"orbit":-4},{"id":6109,"orbit":0}],"group":1598,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Amazon","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":41736,"stats":[],"stringId":"AscendancyHuntress1Start"},"41739":{"connections":[{"id":35265,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":2,"skill":41739,"stats":["15% increased Stun Buildup"],"stringId":"stun22"},"41747":{"connections":[{"id":61847,"orbit":3}],"group":185,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Critical Chance","orbit":0,"orbitIndex":0,"skill":41747,"stats":["10% increased Critical Hit Chance with Flails"],"stringId":"flail6"},"41751":{"ascendancyName":"Martial Artist","connections":[{"id":65228,"orbit":3}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds","isNotable":true,"name":"Martial Adept","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":1,"orbitIndex":6,"skill":41751,"stats":["When you gain Combo, gain an additional Combo","-0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills"],"stringId":"AscendancyMonk1Notable1_"},"41753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds","isNotable":true,"name":"Evocational Practitioner","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Envy","Suffering"],"skill":41753,"stats":["25% increased Critical Hit Chance if you've Triggered a Skill Recently","Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently"],"stringId":"monkelemental6"},"41768":{"connections":[{"id":28982,"orbit":0},{"id":53123,"orbit":0},{"id":46399,"orbit":0},{"id":37484,"orbit":0}],"group":123,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41768,"stats":["+5 to any Attribute"],"stringId":"strength47"},"41770":{"connections":[{"id":33080,"orbit":0},{"id":9441,"orbit":0},{"id":16484,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area and Debuff Magnitude","orbit":2,"orbitIndex":13,"skill":41770,"stats":["6% increased Parried Debuff Magnitude","8% increased Parry Hit Area of Effect"],"stringId":"deflect17"},"41811":{"connections":[{"id":35173,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Shatter Palm","orbit":3,"orbitIndex":2,"recipe":["Greed","Despair","Paranoia"],"skill":41811,"stats":["20% increased Critical Damage Bonus","30% increased Stun Buildup"],"stringId":"physical30"},"41821":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":224,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41821,"stats":[],"stringId":"mastery_attack7"},"41838":{"connections":[{"id":25429,"orbit":-8}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration and Stun Threshold","orbit":7,"orbitIndex":4,"skill":41838,"stats":["8% increased Skill Effect Duration","8% increased Stun Threshold"],"stringId":"duration13"},"41861":{"connections":[],"flavourText":"Bonds forged in battle surpass ties of blood.","group":1484,"icon":"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds","isKeystone":true,"name":"Trusted Kinship","orbit":0,"orbitIndex":0,"skill":41861,"stats":["You can have two Companions of different types","30% more Reservation Efficiency of Companion Skills","20% less Reservation Efficiency of non-Companion Skills"],"stringId":"passive_keystone_two_companions"},"41873":{"connections":[],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":22,"skill":41873,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges12"},"41875":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1558,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds","isMultipleChoiceOption":true,"name":"Point Blank","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":41875,"stats":["Projectiles deal 20% more Hit damage to targets in the first 3.5 metres of their movement, scaling down with distance travelled to reach 0% after 7 metres"],"stringId":"AscendancyRanger1Notable2_2"},"41877":{"connections":[{"id":53958,"orbit":0},{"id":64601,"orbit":0}],"group":1339,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41877,"stats":["+5 to any Attribute"],"stringId":"dexterity43"},"41886":{"connections":[{"id":9663,"orbit":7}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage and Resistance","orbit":2,"orbitIndex":14,"skill":41886,"stats":["5% increased Chaos Damage","+3% to Chaos Resistance"],"stringId":"monkchaos4"},"41905":{"connections":[{"id":56926,"orbit":0},{"id":44255,"orbit":7}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Gravedigger","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Disgust"],"skill":41905,"stats":["Minions Revive 15% faster","Recover 2% of maximum Life when one of your Minions is Revived"],"stringId":"minion_defence9"},"41935":{"connections":[{"id":34782,"orbit":0}],"group":178,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Hide of the Bear","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Disgust"],"skill":41935,"stats":["40% increased Armour while Shapeshifted","+1% to Maximum Fire Resistance while Shapeshifted","25% increased Stun Threshold while Shapeshifted"],"stringId":"bear11"},"41965":{"connections":[{"id":1755,"orbit":-6}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":37463,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":2,"orbitIndex":21,"skill":41965,"stats":["8% increased Spell Damage"],"stringId":"spell_criticals1"},"41972":{"connections":[{"id":56649,"orbit":4},{"id":60515,"orbit":-4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Glaciation","orbit":4,"orbitIndex":18,"recipe":["Paranoia","Guilt","Isolation"],"skill":41972,"stats":["Damage Penetrates 18% Cold Resistance","Gain 6% of Elemental Damage as Extra Cold Damage"],"stringId":"cold_penetration26"},"41991":{"connections":[{"id":61026,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":3,"orbitIndex":2,"skill":41991,"stats":["Minions have 3% increased Attack and Cast Speed"],"stringId":"minion_offence19"},"42017":{"ascendancyName":"Ritualist","connections":[],"group":1611,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Spirit","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":42017,"stats":["25% reduced Spirit"],"stringId":"AscendancyHuntress3Small1_2_"},"42026":{"connections":[{"id":63813,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":0,"skill":42026,"stats":["16% increased Warcry Speed"],"stringId":"warcries35"},"42032":{"connections":[{"id":17906,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","isNotable":true,"name":"Escalating Mayhem","orbit":7,"orbitIndex":4,"recipe":["Isolation","Guilt","Ire"],"skill":42032,"stats":["10% increased Damage for each Hazard triggered Recently, up to 50%"],"stringId":"hazards3"},"42035":{"ascendancyName":"Chronomancer","connections":[],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds","isNotable":true,"name":"Inevitability","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":2,"orbitIndex":15,"skill":42035,"stats":["Grants Skill: Inevitable Agony"],"stringId":"AscendancySorceress2Notable3"},"42036":{"connections":[{"id":50146,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Off-Balancing Retort","orbit":4,"orbitIndex":17,"recipe":["Greed","Fear","Suffering"],"skill":42036,"stats":["30% increased Parried Debuff Duration"],"stringId":"buckler6"},"42045":{"connections":[{"id":50535,"orbit":7},{"id":52003,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Archon of the Blizzard","orbit":3,"orbitIndex":3,"recipe":["Isolation","Fear","Ire"],"skill":42045,"stats":["Gain Elemental Archon when your Energy Shield Recharge begins"],"stringId":"cold17"},"42059":{"connections":[{"id":36333,"orbit":3}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":4,"orbitIndex":60,"skill":42059,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries45"},"42065":{"connections":[{"id":37532,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Surging Currents","orbit":2,"orbitIndex":17,"recipe":["Fear","Envy","Isolation"],"skill":42065,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"stringId":"lightning_penetration26__"},"42070":{"connections":[{"id":26148,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Saqawal's Guidance","orbit":0,"orbitIndex":0,"recipe":["Guilt","Envy","Isolation"],"skill":42070,"stats":["20% increased Elemental Damage with Attacks","15% increased Accuracy Rating","+10 to Dexterity"],"stringId":"accuracy54_"},"42076":{"connections":[{"id":17706,"orbit":-7}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":0,"orbitIndex":0,"skill":42076,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"energy_shield_recovery23"},"42077":{"connections":[{"id":56564,"orbit":0},{"id":2102,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Essence Infusion","orbit":2,"orbitIndex":11,"recipe":["Envy","Envy","Greed"],"skill":42077,"stats":["12% faster start of Energy Shield Recharge","+12 to Intelligence"],"stringId":"energy_shield_recovery16"},"42078":{"connectionArt":"CharacterPlanned","connections":[],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"The Hollowkeeper","orbit":0,"orbitIndex":0,"skill":42078,"stats":["50% reduced effect of Curses on you","35% reduced Effect of Non-Damaging Ailments on you"],"stringId":"evasion_and_energy_shield37","unlockConstraint":{"nodes":[59657,49356]}},"42103":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62427,"orbit":-2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Enduring Deflection","orbit":3,"orbitIndex":0,"recipe":["Suffering","Greed","Despair"],"skill":42103,"stats":["20% increased Evasion Rating","Prevent +3% of Damage from Deflected Hits"],"stringId":"deflect41"},"42111":{"connections":[{"id":21387,"orbit":0},{"id":26437,"orbit":0}],"group":209,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":42111,"stats":["Break 20% increased Armour"],"stringId":"armour_break10"},"42118":{"connections":[{"id":2408,"orbit":0},{"id":57518,"orbit":0},{"id":11509,"orbit":0},{"id":43102,"orbit":0},{"id":49485,"orbit":0}],"group":1385,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42118,"stats":["+5 to any Attribute"],"stringId":"attributes74"},"42127":{"connections":[{"id":4456,"orbit":0},{"id":41573,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":10,"skill":42127,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration6"},"42169":{"connections":[{"id":24963,"orbit":-4}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":3,"orbitIndex":20,"skill":42169,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion43"},"42177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":11153,"orbit":3}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Blurred Motion","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Ire"],"skill":42177,"stats":["5% increased Attack Speed","10% increased Accuracy Rating","5% increased Dexterity"],"stringId":"attack_speed20"},"42205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":372,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":42205,"stats":[],"stringId":"mastery_elemental_6477"},"42226":{"connections":[{"id":34892,"orbit":0},{"id":17792,"orbit":9}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":42226,"stats":["+10 to Intelligence"],"stringId":"azmerianimals59"},"42245":{"connections":[{"id":16024,"orbit":2},{"id":18167,"orbit":-2}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Efficient Inscriptions","orbit":1,"orbitIndex":8,"recipe":["Paranoia","Isolation","Greed"],"skill":42245,"stats":["Meta Skills have 20% increased Reservation Efficiency"],"stringId":"triggers26"},"42250":{"connections":[{"id":26786,"orbit":0},{"id":16484,"orbit":0},{"id":44014,"orbit":0},{"id":45137,"orbit":0}],"group":1052,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42250,"stats":["+5 to any Attribute"],"stringId":"dexterity65_"},"42253":{"ascendancyName":"Shaman","connections":[],"group":62,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds","isNotable":true,"name":"Wisdom of the Maji","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":42253,"stats":["Gain the benefits of Bonded modifiers on Runes and Idols"],"stringId":"AscendancyDruid2Notable8"},"42275":{"ascendancyName":"Titan","connections":[{"id":38014,"orbit":5}],"group":76,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds","isNotable":true,"name":"Earthbreaker","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":42275,"stats":["25% chance for Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"AscendancyWarrior1Notable1"},"42280":{"connections":[{"id":21205,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":22,"skill":42280,"stats":["+3 to all Attributes"],"stringId":"all_attributes14"},"42290":{"connections":[{"id":38732,"orbit":-8}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":10,"skill":42290,"stats":["6% increased Curse Magnitudes"],"stringId":"curses19"},"42302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":45331,"orbit":4},{"id":31918,"orbit":-4}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Split Shot","orbit":4,"orbitIndex":54,"recipe":["Ire","Fear","Paranoia"],"skill":42302,"stats":["Projectiles have 75% chance for an additional Projectile when Forking"],"stringId":"ranged35"},"42339":{"connections":[{"id":60974,"orbit":-2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Additional Remnant Chance","orbit":2,"orbitIndex":6,"skill":42339,"stats":["5% chance to create an additional Remnant"],"stringId":"remnant17"},"42347":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","isNotable":true,"name":"Chakra of Sight","orbit":3,"orbitIndex":6,"recipe":["Despair","Despair","Disgust"],"skill":42347,"stats":["20% increased Light Radius","Cannot be Blinded","12% chance to Blind Enemies on Hit"],"stringId":"monkchakra12"},"42350":{"connections":[{"id":61438,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":67,"skill":42350,"stats":["+5 to any Attribute"],"stringId":"strength34"},"42354":{"connections":[{"id":43562,"orbit":2},{"id":3660,"orbit":7}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds","isNotable":true,"name":"Blinding Flash","orbit":2,"orbitIndex":0,"recipe":["Ire","Guilt","Ire"],"skill":42354,"stats":["20% increased Blind Effect","Blind Enemies when they Stun you"],"stringId":"attack_speed38"},"42361":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":42361,"stats":[],"stringId":"mastery_chaos49"},"42379":{"connections":[{"id":16705,"orbit":0},{"id":25520,"orbit":0},{"id":3463,"orbit":0},{"id":4552,"orbit":0}],"group":1259,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42379,"stats":["+5 to any Attribute"],"stringId":"attributes25"},"42390":{"connections":[{"id":11433,"orbit":3},{"id":63608,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Overheating Blow","orbit":4,"orbitIndex":4,"recipe":["Disgust","Suffering","Guilt"],"skill":42390,"stats":["Gain 25% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies"],"stringId":"fire_penetration27"},"42410":{"connections":[{"id":9737,"orbit":4}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage and Armour Break","orbit":7,"orbitIndex":20,"skill":42410,"stats":["Break 10% increased Armour","6% increased Attack Area Damage"],"stringId":"area_attacks18"},"42416":{"ascendancyName":"Deadeye","connections":[],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds","isMultipleChoice":true,"isNotable":true,"name":"Projectile Proximity Specialisation","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":5,"orbitIndex":24,"skill":42416,"stats":[],"stringId":"AscendancyRanger1Notable2_Choice"},"42441":{"ascendancyName":"Amazon","connections":[],"group":1585,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds","isNotable":true,"name":"Surging Avatar","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":42441,"stats":["When you Consume a Charge, Trigger Elemental Surge to gain 2 Fire Surges","When you Consume a Charge, Trigger Elemental Surge to gain 2 Cold Surges","Gain 1 fewer Lightning Surge from Triggering Elemental Surge"],"stringId":"AscendancyHuntress1Notable5"},"42452":{"connections":[{"id":51743,"orbit":3}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Attack Damage","orbit":5,"orbitIndex":6,"skill":42452,"stats":["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting24_"},"42460":{"connections":[{"id":11882,"orbit":5}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":7,"orbitIndex":3,"skill":42460,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments41_"},"42500":{"connections":[{"id":59881,"orbit":0}],"group":844,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":10,"skill":42500,"stats":["+5 to any Attribute"],"stringId":"dexterity27"},"42522":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds","isNotable":true,"name":"Refracted Infusion","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":9,"orbitIndex":127,"skill":42522,"stats":["When collecting an Elemental Infusion, gain another different Elemental Infusion"],"stringId":"AscendancySorceress1Notable10"},"42578":{"connections":[{"id":23192,"orbit":-6}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":11,"skill":42578,"stats":["5% increased Block chance"],"stringId":"block5"},"42583":{"connections":[{"id":6714,"orbit":2147483647}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Life Regeneration Rate","orbit":2,"orbitIndex":18,"skill":42583,"stats":["10% increased Life Regeneration rate"],"stringId":"mercenary8"},"42604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":449,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":42604,"stats":[],"stringId":"mastery_fire_6517"},"42614":{"connections":[],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":6,"skill":42614,"stats":["Offering Skills have 30% reduced Duration"],"stringId":"corpses2"},"42635":{"connections":[{"id":1502,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":6,"skill":42635,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling7"},"42658":{"connections":[],"group":1303,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42658,"stats":["+5 to any Attribute"],"stringId":"dexterity86"},"42660":{"connections":[{"id":54849,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/RageNotable.dds","isNotable":true,"name":"Commanding Rage","orbit":2,"orbitIndex":10,"recipe":["Disgust","Guilt","Suffering"],"skill":42660,"stats":["Every five Rage also grants you 2% increased Minion Attack Speed","Every Rage also grants you 1% increased Minion Damage"],"stringId":"minion_attack5"},"42680":{"connections":[],"flavourText":"Let the Darkness consume you.\\nBeyond the veil of death,\\nthere burns a black fire.","group":737,"icon":"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds","isKeystone":true,"name":"Blackflame Covenant","orbit":0,"orbitIndex":0,"skill":42680,"stats":["Fire Spells Convert 100% of Fire Damage to Chaos Damage","Chaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes","Ignite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage"],"stringId":"passive_keystone_fire_spells_to_chaos"},"42710":{"connections":[{"id":41186,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":20,"skill":42710,"stats":["20% increased Totem Placement speed"],"stringId":"totems11"},"42714":{"connections":[{"id":29065,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Thousand Cuts","orbit":5,"orbitIndex":60,"recipe":["Envy","Fear","Despair"],"skill":42714,"stats":["Enemies you apply Incision to take 2% increased Physical Damage per Incision"],"stringId":"bleed33"},"42736":{"connections":[{"id":60685,"orbit":-3}],"group":924,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42736,"stats":["+5 to any Attribute"],"stringId":"attributes39"},"42737":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":598,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":7,"orbitIndex":4,"skill":42737,"stats":[],"stringId":"mastery_crossbow_6421_"},"42750":{"connections":[{"id":17088,"orbit":4},{"id":9050,"orbit":-4}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":6,"orbitIndex":42,"skill":42750,"stats":["10% increased Attack Damage"],"stringId":"attack22"},"42760":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","isNotable":true,"name":"Chakra of Stability","orbit":1,"orbitIndex":4,"recipe":["Greed","Fear","Paranoia"],"skill":42760,"stats":["30% increased Stun Recovery","Regenerate 3% of maximum Life over 1 second when Stunned","+1 to Stun Threshold per Dexterity"],"stringId":"monkchakra30"},"42761":{"ascendancyName":"Oracle","connections":[{"id":11335,"orbit":-9},{"id":21284,"orbit":6},{"id":56505,"orbit":5},{"id":39659,"orbit":8},{"id":25092,"orbit":3},{"id":15275,"orbit":4}],"group":1,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Oracle","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":42761,"stats":[],"stringId":"AscendancyDruid1Start"},"42762":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":61,"skill":42762,"stats":["15% increased Physical Damage"],"stringId":"oracle_rust_king2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"42781":{"connections":[{"id":55429,"orbit":0},{"id":56472,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds","isNotable":true,"isSwitchable":true,"name":"Clean Shot","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":42895,"name":"Stalk and Leap","stats":["30% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds","30% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]}},"orbit":2,"orbitIndex":2,"skill":42781,"stats":["15% chance to Pierce an Enemy","15% increased Projectile Damage"],"stringId":"projectiles23"},"42794":{"connections":[{"id":31433,"orbit":-5}],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":42794,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks6"},"42802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":42802,"stats":[],"stringId":"mastery_critical_6408"},"42805":{"connections":[{"id":26034,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":6,"skill":42805,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield8"},"42813":{"connections":[{"id":55491,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Tides of Change","orbit":7,"orbitIndex":19,"recipe":["Paranoia","Suffering","Fear"],"skill":42813,"stats":["25% increased Skill Effect Duration"],"stringId":"duration8"},"42825":{"connections":[{"id":31238,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":14,"skill":42825,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery32_"},"42845":{"ascendancyName":"Tactician","connections":[{"id":10371,"orbit":0}],"group":338,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Banner Area","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":42845,"stats":["Banner Skills have 16% increased Area of Effect"],"stringId":"AscendancyMercenary1Small2"},"42857":{"connections":[{"id":20024,"orbit":3},{"id":7576,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":7,"orbitIndex":16,"skill":42857,"stats":["4% increased Skill Speed"],"stringId":"attack_speed27"},"42914":{"connections":[{"id":33393,"orbit":0},{"id":50847,"orbit":0}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Ball and Chain","orbit":4,"orbitIndex":15,"skill":42914,"stats":["15% increased Damage with Flails","6% increased Attack Speed with Flails"],"stringId":"flail5"},"42959":{"connections":[{"id":32896,"orbit":-2},{"id":28903,"orbit":0}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Low Tolerance","orbit":7,"orbitIndex":12,"recipe":["Suffering","Greed","Isolation"],"skill":42959,"stats":["60% increased Magnitude of Poison you inflict on targets that are not Poisoned"],"stringId":"poison29"},"42974":{"connections":[{"id":46152,"orbit":3},{"id":8302,"orbit":-7},{"id":30808,"orbit":0}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Chance","orbit":2,"orbitIndex":18,"skill":42974,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"monkchakra9"},"42981":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":56104,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Cruel Methods","orbit":4,"orbitIndex":40,"recipe":["Suffering","Envy","Paranoia"],"skill":42981,"stats":["Break 40% increased Armour","25% increased Physical Damage"],"stringId":"armour_break37"},"42984":{"connections":[{"id":21184,"orbit":0}],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":1,"orbitIndex":8,"skill":42984,"stats":["6% increased Area of Effect"],"stringId":"area_attacks38"},"42998":{"connections":[{"id":40333,"orbit":2}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":2,"orbitIndex":9,"skill":42998,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions37"},"42999":{"connections":[{"id":4925,"orbit":3}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":10,"skill":42999,"stats":["7% increased Chaos Damage"],"stringId":"chaos7"},"43014":{"connections":[{"id":34308,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Damage","orbit":2,"orbitIndex":22,"skill":43014,"stats":["5% increased Attack Damage","8% increased Immobilisation buildup"],"stringId":"melee7"},"43036":{"connections":[{"id":2244,"orbit":4}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":18,"skill":43036,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration31_"},"43044":{"connections":[{"id":63566,"orbit":0},{"id":38678,"orbit":0},{"id":21495,"orbit":-6}],"group":1286,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":43044,"stats":["+5 to any Attribute"],"stringId":"attributes73"},"43064":{"connections":[{"id":47853,"orbit":0}],"group":1456,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":43064,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions68"},"43077":{"connections":[{"id":26592,"orbit":-2},{"id":43250,"orbit":3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":4,"orbitIndex":58,"skill":43077,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour47"},"43082":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","isNotable":true,"name":"Acceleration","orbit":2,"orbitIndex":20,"recipe":["Fear","Envy","Disgust"],"skill":43082,"stats":["3% increased Movement Speed","10% increased Skill Speed"],"stringId":"movement_speed9"},"43088":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Agonising Calamity","orbit":3,"orbitIndex":8,"recipe":["Disgust","Suffering","Isolation"],"skill":43088,"stats":["40% increased Chaos Damage while affected by Herald of Plague","40% increased Physical Damage while affected by Herald of Blood"],"stringId":"heralds20"},"43090":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1421,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electrotherapy","orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Guilt"],"skill":43090,"stats":["5% increased Skill Speed","30% increased Electrocute Buildup"],"stringId":"lightning_penetration29"},"43095":{"ascendancyName":"Amazon","connections":[{"id":35187,"orbit":0}],"group":1587,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":43095,"stats":["4% increased Skill Speed"],"stringId":"AscendancyHuntress1Small4_"},"43102":{"connections":[{"id":30197,"orbit":0},{"id":42998,"orbit":-9}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":7,"orbitIndex":6,"skill":43102,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions30"},"43128":{"ascendancyName":"Chronomancer","connections":[{"id":10731,"orbit":4}],"group":383,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Skill Speed and Area of Effect","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":4,"orbitIndex":60,"skill":43128,"stats":["4% increased Skill Speed","6% increased Area of Effect"],"stringId":"AscendancySorceress2Small8"},"43131":{"ascendancyName":"Witchhunter","connections":[{"id":61973,"orbit":-9}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage vs Low Life Enemies","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":8,"orbitIndex":40,"skill":43131,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"AscendancyMercenary2Small1"},"43139":{"connections":[{"id":38068,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Stormbreaker","orbit":4,"orbitIndex":0,"recipe":["Isolation","Despair","Guilt"],"skill":43139,"stats":["20% increased Damage for each type of Elemental Ailment on Enemy"],"stringId":"elemental40"},"43142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":357,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":43142,"stats":[],"stringId":"mastery_critical_6415"},"43149":{"connections":[{"id":40292,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":2,"orbitIndex":20,"skill":43149,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy43_"},"43155":{"connections":[{"id":7062,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Critical Chance","orbit":4,"orbitIndex":23,"skill":43155,"stats":["10% increased Critical Hit Chance with Crossbows"],"stringId":"crossbow4"},"43164":{"connections":[{"id":5710,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":20,"skill":43164,"stats":["8% increased Melee Damage"],"stringId":"melee46"},"43174":{"connections":[{"id":28542,"orbit":-7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":7,"orbitIndex":18,"skill":43174,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break13"},"43183":{"connections":[{"id":11153,"orbit":0}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Accuracy","orbit":7,"orbitIndex":6,"skill":43183,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"attack_speed23"},"43201":{"connections":[{"id":43383,"orbit":0}],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":56,"skill":43201,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments2"},"43238":{"connections":[{"id":14211,"orbit":-7}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Rearm Chance","orbit":7,"orbitIndex":12,"skill":43238,"stats":["Hazards have 5% chance to rearm after they are triggered"],"stringId":"hazards5"},"43250":{"connections":[],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","isNotable":true,"name":"Adaptive Skin","orbit":7,"orbitIndex":6,"recipe":["Disgust","Isolation","Guilt"],"skill":43250,"stats":["+1% to Maximum Resistances of each Elemental Damage Type you have been Hit with Recently"],"stringId":"shaman12"},"43254":{"connections":[{"id":33400,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":22,"skill":43254,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"deflect21"},"43263":{"connections":[{"id":64492,"orbit":-2}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":13,"skill":43263,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed6"},"43281":{"connections":[{"id":47359,"orbit":0},{"id":51934,"orbit":7}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":21,"skill":43281,"stats":["Triggered Spells deal 16% increased Spell Damage"],"stringId":"triggers2"},"43282":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":6,"orbitIndex":49,"skill":43282,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"wyvern6"},"43303":{"connections":[{"id":50498,"orbit":-7}],"group":1199,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":43303,"stats":["12% increased Lightning Damage"],"stringId":"lightning65__"},"43324":{"connectionArt":"CharacterPlanned","connections":[{"id":57596,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":4,"skill":43324,"stats":["8% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_life_corruption2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43338":{"connections":[{"id":56767,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Shock Chance and Lightning Damage","orbit":2,"orbitIndex":10,"skill":43338,"stats":["8% increased Lightning Damage","8% increased chance to Shock"],"stringId":"daze_14"},"43366":{"connections":[{"id":2606,"orbit":0},{"id":4407,"orbit":0}],"group":613,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Physical Damage Reduction","orbit":0,"orbitIndex":0,"skill":43366,"stats":["Minions have 12% additional Physical Damage Reduction"],"stringId":"minion_defence25"},"43383":{"connections":[{"id":62588,"orbit":0},{"id":37450,"orbit":0}],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Exposed Wounds","orbit":4,"orbitIndex":51,"skill":43383,"stats":["15% increased chance to inflict Ailments","Hits Break 30% increased Armour on targets with Ailments"],"stringId":"ailments20"},"43385":{"connectionArt":"CharacterPlanned","connections":[{"id":64139,"orbit":-5}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":18,"skill":43385,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_big_family6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43396":{"connections":[{"id":40550,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Reach","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Ire"],"skill":43396,"stats":["25% increased Totem Placement speed","50% increased Totem Placement range"],"stringId":"totems27"},"43423":{"connections":[{"id":48660,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Emboldened Avatar","orbit":2,"orbitIndex":23,"recipe":["Suffering","Disgust","Greed"],"skill":43423,"stats":["50% increased Flammability Magnitude","25% increased Freeze Buildup","25% increased chance to Shock","25% increased Electrocute Buildup"],"stringId":"elemental_attacks11"},"43426":{"ascendancyName":"Disciple of Varashta","connections":[{"id":32705,"orbit":0}],"flavourText":"\"Wipe the tears from your face, dear Navira. I did not deceive you. I meant every word. I will forever cherish you, my beloved. Know that I did it all for you... for our future!\" \\n\\nKelari pleaded with the Tale-woman.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds","isNotable":true,"name":"Navira's Well","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":2,"orbitIndex":12,"skill":43426,"stats":["Grants Skill: Navira's Well"],"stringId":"AscendancySorceress3Notable11"},"43431":{"connections":[{"id":38814,"orbit":0},{"id":19224,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":4,"orbitIndex":69,"skill":43431,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion35_"},"43443":{"connections":[{"id":32148,"orbit":0},{"id":49370,"orbit":0},{"id":8535,"orbit":0}],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Critical Chance","orbit":0,"orbitIndex":0,"skill":43443,"stats":["15% increased Critical Hit Chance with Flails"],"stringId":"flail8"},"43444":{"connections":[],"group":830,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":8,"skill":43444,"stats":["8% increased Knockback Distance"],"stringId":"knockback5"},"43453":{"connections":[{"id":64050,"orbit":0}],"group":1390,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":43453,"stats":["3% increased Movement Speed while Sprinting"],"stringId":"Sprint4"},"43460":{"connections":[{"id":63678,"orbit":4},{"id":63085,"orbit":-5}],"group":174,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Armour","orbit":0,"orbitIndex":0,"skill":43460,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"bear9"},"43461":{"connections":[{"id":51299,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Attack Damage","orbit":5,"orbitIndex":24,"skill":43461,"stats":["8% increased Fire Damage","8% increased Attack Damage"],"stringId":"fire56"},"43471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":14265,"orbit":0}],"group":425,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":43471,"stats":[],"stringId":"mastery_fire_6514"},"43486":{"connectionArt":"CharacterPlanned","connections":[{"id":54289,"orbit":0},{"id":39102,"orbit":2147483647}],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":11,"skill":43486,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"stringId":"oracle_power_charge2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43507":{"connections":[{"id":40292,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":2,"orbitIndex":12,"skill":43507,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy44"},"43522":{"connections":[{"id":38497,"orbit":4},{"id":33099,"orbit":6}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":7,"skill":43522,"stats":["6% reduced Charm Charges used"],"stringId":"charms20"},"43557":{"connections":[],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Damage","orbit":3,"orbitIndex":17,"skill":43557,"stats":["Minions have 15% increased Critical Damage Bonus"],"stringId":"minion_offence37_"},"43562":{"connections":[{"id":3660,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":2,"skill":43562,"stats":["8% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack_speed43"},"43575":{"connections":[{"id":41512,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":16,"skill":43575,"stats":["10% increased Melee Damage"],"stringId":"melee24_"},"43576":{"connections":[{"id":7971,"orbit":3}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":8,"skill":43576,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration15"},"43578":{"connections":[],"group":838,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":26,"skill":43578,"stats":["10% increased Projectile Damage"],"stringId":"projectiles4__"},"43579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":35369,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":9,"skill":43579,"stats":[],"stringId":"mastery_mana_6599"},"43584":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Flare","orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Despair"],"skill":43584,"stats":["Gain 2% of Damage as Extra Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges16_"},"43588":{"connections":[{"id":61835,"orbit":-2},{"id":39131,"orbit":3}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":2,"skill":43588,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells8"},"43633":{"connections":[{"id":10841,"orbit":0}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Energising Archon","orbit":7,"orbitIndex":17,"recipe":["Isolation","Paranoia","Envy"],"skill":43633,"stats":["30% increased Archon Buff duration","20% faster start of Energy Shield Recharge while affected by an Archon Buff"],"stringId":"archon14"},"43647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":32507,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":2,"orbitIndex":17,"skill":43647,"stats":[],"stringId":"mastery_minionoffence188"},"43650":{"connections":[{"id":21070,"orbit":0},{"id":53386,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance and Damage","orbit":1,"orbitIndex":11,"skill":43650,"stats":["8% increased Critical Damage Bonus","5% increased Critical Hit Chance"],"stringId":"criticals62"},"43653":{"connections":[{"id":26518,"orbit":0},{"id":48171,"orbit":0}],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":9,"skill":43653,"stats":["12% increased Cold Damage"],"stringId":"cold20"},"43677":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Crippling Toxins","orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Envy"],"skill":43677,"stats":["25% chance for Attacks to Maim on Hit against Poisoned Enemies","25% increased Magnitude of Poison you inflict"],"stringId":"poison18"},"43691":{"connections":[{"id":21746,"orbit":0},{"id":55270,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":6,"skill":43691,"stats":["+5 to any Attribute"],"stringId":"dexterity10"},"43711":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":331,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Thornhide","orbit":2,"orbitIndex":18,"recipe":["Ire","Greed","Fear"],"skill":43711,"stats":["+6% to Thorns Critical Hit Chance"],"stringId":"getting_hit14"},"43713":{"connections":[{"id":3051,"orbit":0},{"id":27009,"orbit":0},{"id":35602,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Area","orbit":0,"orbitIndex":0,"skill":43713,"stats":["Offering Skills have 20% increased Area of Effect"],"stringId":"corpses14"},"43720":{"connections":[],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech and Cold Resistance","orbit":2,"orbitIndex":11,"skill":43720,"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"stringId":"mana_leech1"},"43721":{"connectionArt":"CharacterPlanned","connections":[{"id":24993,"orbit":8}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":0,"skill":43721,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption12","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43736":{"connections":[{"id":29695,"orbit":4}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","id":38659,"name":"Mana Regeneration","stats":["10% increased Mana Regeneration Rate"]}},"orbit":2,"orbitIndex":3,"skill":43736,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery20"},"43746":{"connections":[{"id":16460,"orbit":0},{"id":38143,"orbit":0}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":6,"skill":43746,"stats":["+5 to any Attribute"],"stringId":"dexterity16"},"43778":{"connections":[{"id":36894,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":2,"skill":43778,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"jagged_ground1"},"43791":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Rallying Icon","orbit":3,"orbitIndex":0,"recipe":["Greed","Despair","Guilt"],"skill":43791,"stats":["When a Banner expires, recover 15% of the Glory required for that Banner"],"stringId":"banners13"},"43818":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":503,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":43818,"stats":[],"stringId":"mastery_life147"},"43829":{"connections":[{"id":51944,"orbit":0},{"id":45576,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Advanced Munitions","orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Greed"],"skill":43829,"stats":["25% increased chance to inflict Ailments with Projectiles"],"stringId":"ranged40"},"43842":{"connections":[{"id":5695,"orbit":2},{"id":28092,"orbit":2}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":0,"orbitIndex":0,"skill":43842,"stats":["10% increased effect of Archon Buffs on you"],"stringId":"archon1"},"43843":{"connections":[{"id":17417,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed and Physical Damage","orbit":5,"orbitIndex":12,"skill":43843,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"stringId":"projectiles46"},"43854":{"connections":[{"id":52038,"orbit":0}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"All For One","orbit":7,"orbitIndex":7,"recipe":["Paranoia","Disgust","Suffering"],"skill":43854,"stats":["20% reduced Presence Area of Effect","12% increased Area of Effect"],"stringId":"auras34"},"43867":{"connections":[{"id":10423,"orbit":2}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":23,"skill":43867,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration2"},"43877":{"connections":[{"id":51522,"orbit":-2},{"id":47895,"orbit":-2}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":1,"orbitIndex":7,"skill":43877,"stats":["3% increased Attack Speed"],"stringId":"attack_speed57"},"43893":{"connections":[{"id":55101,"orbit":0},{"id":1433,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":10,"skill":43893,"stats":["10% increased Elemental Damage"],"stringId":"elemental12"},"43895":{"connections":[{"id":48670,"orbit":-5}],"group":617,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration on Low Life","orbit":7,"orbitIndex":6,"skill":43895,"stats":["15% increased Life Regeneration Rate while on Low Life"],"stringId":"life_regeneration6"},"43923":{"connections":[{"id":19104,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isSwitchable":true,"name":"Accuracy","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","id":34062,"name":"Stun Threshold during Parry","stats":["20% increased Stun Threshold while Parrying"]}},"orbit":2,"orbitIndex":2,"skill":43923,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy9"},"43938":{"connections":[{"id":37688,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":39,"skill":43938,"stats":["6% increased Trap Throwing Speed"],"stringId":"trap6"},"43939":{"connections":[{"id":48267,"orbit":0},{"id":56214,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Melting Flames","orbit":3,"orbitIndex":6,"recipe":["Fear","Paranoia","Paranoia"],"skill":43939,"stats":["Enemies Ignited by you permanently take 1% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%"],"stringId":"ignite_mitigation12"},"43941":{"connections":[{"id":48314,"orbit":-7}],"group":109,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":43941,"stats":["3% increased Skill Speed while Shapeshifted"],"stringId":"wolf2_"},"43944":{"connections":[{"id":23547,"orbit":0}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Instability","orbit":2,"orbitIndex":13,"recipe":["Paranoia","Greed","Ire"],"skill":43944,"stats":["25% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility"],"stringId":"volatility3"},"43964":{"connections":[{"id":41645,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":2,"orbitIndex":4,"skill":43964,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"physical24"},"43979":{"connections":[{"id":50837,"orbit":0},{"id":26926,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Skill Cooldown","orbit":3,"orbitIndex":18,"skill":43979,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon22__"},"44005":{"connections":[],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Casting Cascade","orbit":6,"orbitIndex":38,"recipe":["Fear","Greed","Isolation"],"skill":44005,"stats":["15% reduced Spell Damage","6% increased Cast Speed for each different Spell you've Cast in the last eight seconds"],"stringId":"cast_speed31"},"44014":{"connections":[{"id":11855,"orbit":0}],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":44014,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy24"},"44017":{"connections":[{"id":4527,"orbit":0}],"flavourText":"Great tacticians learn that consistency often trumps potential.","group":241,"icon":"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds","isKeystone":true,"name":"Resolute Technique","orbit":0,"orbitIndex":0,"skill":44017,"stats":["Accuracy Rating is Doubled","Never deal Critical Hits"],"stringId":"passive_keystone_resolute_technique"},"44069":{"connections":[{"id":29358,"orbit":-7}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":4,"skill":44069,"stats":["15% increased Stun Buildup"],"stringId":"stun11"},"44082":{"connections":[{"id":4931,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":6,"skill":44082,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery35"},"44092":{"connections":[{"id":54911,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":0,"skill":44092,"stats":["12% increased Ignite Magnitude"],"stringId":"ignite8"},"44098":{"connections":[{"id":4061,"orbit":0},{"id":34531,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":7,"orbitIndex":12,"skill":44098,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield8"},"44141":{"connections":[{"id":18969,"orbit":0},{"id":21788,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":3,"orbitIndex":7,"skill":44141,"stats":["3% increased Attack Speed with Bows"],"stringId":"bow17"},"44176":{"connections":[{"id":57047,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":44176,"stats":["+3 to all Attributes"],"stringId":"all_attributes1"},"44179":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":861,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":44179,"stats":[],"stringId":"mastery_cold60"},"44188":{"connections":[{"id":64427,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion and Power Charge Duration","orbit":2,"orbitIndex":7,"skill":44188,"stats":["8% increased Power Charge Duration","8% increased Elemental Infusion duration"],"stringId":"power_charges19"},"44191":{"connections":[{"id":12099,"orbit":3}],"group":458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":44191,"stats":["12% increased Cold Damage"],"stringId":"cold57"},"44201":{"connections":[],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":2,"orbitIndex":2,"skill":44201,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells6"},"44204":{"connections":[{"id":33729,"orbit":3}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Flammability Magnitude","orbit":7,"orbitIndex":0,"skill":44204,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"stringId":"elemental23"},"44213":{"connections":[{"id":869,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield Delay","orbit":7,"orbitIndex":5,"skill":44213,"stats":["12% increased Armour","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour32_"},"44223":{"connections":[],"group":955,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":1,"skill":44223,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals15"},"44239":{"connections":[{"id":29479,"orbit":0}],"group":1141,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":16,"skill":44239,"stats":["15% increased Pin Buildup"],"stringId":"pin1"},"44255":{"connections":[{"id":28573,"orbit":-3}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":12,"skill":44255,"stats":["Minions Revive 5% faster"],"stringId":"minion_defence12"},"44280":{"connections":[{"id":23305,"orbit":-3}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect and Blind Chance","orbit":2,"orbitIndex":9,"skill":44280,"stats":["8% increased Effect of your Mark Skills","5% chance to Blind Enemies on Hit with Attacks"],"stringId":"marks30"},"44293":{"connections":[],"group":690,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Hastening Barrier","orbit":2,"orbitIndex":9,"recipe":["Paranoia","Greed","Paranoia"],"skill":44293,"stats":["5% increased Cast Speed","10% increased Cast Speed when on Full Life"],"stringId":"cast_speed40"},"44298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":46024,"orbit":0}],"group":277,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":44298,"stats":[],"stringId":"mastery_elemental93"},"44299":{"connections":[{"id":38105,"orbit":0},{"id":49455,"orbit":0},{"id":857,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Enhanced Barrier","orbit":4,"orbitIndex":0,"recipe":["Isolation","Paranoia","Isolation"],"skill":44299,"stats":["25% increased maximum Energy Shield","5% of Maximum Life Converted to Energy Shield"],"stringId":"energy_shield36"},"44309":{"connectionArt":"CharacterPlanned","connections":[{"id":44485,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Companion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":35,"skill":44309,"stats":["Companions deal 15% increased Damage"],"stringId":"oracle_big_family2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44316":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":282,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":6,"skill":44316,"stats":[],"stringId":"mastery_life146"},"44330":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Coated Arms","orbit":3,"orbitIndex":2,"recipe":["Fear","Greed","Paranoia"],"skill":44330,"stats":["25% increased Damage with One Handed Weapons","Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments"],"stringId":"one_handed26"},"44343":{"connections":[{"id":55276,"orbit":5}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":35,"skill":44343,"stats":["+5 to any Attribute"],"stringId":"dexterity1"},"44344":{"connections":[{"id":28092,"orbit":4}],"group":624,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":44344,"stats":["+5 to any Attribute"],"stringId":"attributes63"},"44345":{"connections":[{"id":48833,"orbit":0}],"group":1045,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":44345,"stats":["10% increased Lightning Damage"],"stringId":"lightning12"},"44357":{"ascendancyName":"Invoker","connections":[{"id":63713,"orbit":-9}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":9,"orbitIndex":34,"skill":44357,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyMonk2Small8"},"44359":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":920,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":44359,"stats":[],"stringId":"mastery_energy_shield_6487"},"44369":{"connections":[{"id":30748,"orbit":0}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":7,"orbitIndex":16,"skill":44369,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility4"},"44371":{"ascendancyName":"Tactician","connections":[{"id":30151,"orbit":0}],"group":401,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds","isNotable":true,"name":"Polish That Gear","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":44371,"stats":["Gain Deflection Rating equal to 20% of Armour","Gain 100% of Evasion Rating as extra Ailment Threshold"],"stringId":"AscendancyMercenary1Notable6"},"44372":{"connections":[{"id":11679,"orbit":0},{"id":25829,"orbit":0}],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Spell Damage and Cast Speed","orbit":2,"orbitIndex":22,"skill":44372,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"stringId":"orb1"},"44373":{"connections":[],"group":1353,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Wither Away","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Isolation"],"skill":44373,"stats":["Unwithered enemies are Withered for 8 seconds when they enter your Presence","20% increased Withered Magnitude"],"stringId":"chaos38"},"44405":{"connections":[],"group":788,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":44405,"stats":["12% increased Lightning Damage"],"stringId":"lightning63"},"44406":{"connections":[],"group":435,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":0,"skill":44406,"stats":["15% increased Stun Buildup"],"stringId":"stun12_"},"44419":{"connections":[{"id":7251,"orbit":7},{"id":29788,"orbit":-7}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":10,"skill":44419,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech5_"},"44420":{"connections":[{"id":28021,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":44420,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals16"},"44423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":25971,"orbit":0}],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":2,"orbitIndex":1,"skill":44423,"stats":[],"stringId":"mastery_attack276_"},"44430":{"connections":[{"id":7062,"orbit":0}],"group":961,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":44430,"stats":["12% increased Damage with Crossbows"],"stringId":"crossbow3"},"44452":{"connectionArt":"CharacterPlanned","connections":[{"id":21809,"orbit":-6}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":48,"skill":44452,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44453":{"connections":[{"id":42760,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":3,"skill":44453,"stats":["15% increased Stun Threshold"],"stringId":"monkchakra27"},"44455":{"connections":[{"id":41669,"orbit":0},{"id":60515,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":44455,"stats":["12% increased Cold Damage"],"stringId":"cold13"},"44461":{"connections":[{"id":54998,"orbit":-7}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":21,"skill":44461,"stats":["10% increased Skill Effect Duration"],"stringId":"duration3"},"44484":{"ascendancyName":"Stormweaver","connections":[{"id":42522,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Remnant Range","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":9,"orbitIndex":136,"skill":44484,"stats":["Remnants can be collected from 25% further away"],"stringId":"AscendancySorceress1Small10"},"44485":{"connectionArt":"CharacterPlanned","connections":[{"id":7553,"orbit":-3}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Companion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":41,"skill":44485,"stats":["Companions deal 15% increased Damage"],"stringId":"oracle_big_family3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44487":{"connections":[{"id":39884,"orbit":0}],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":5,"skill":44487,"stats":["10% increased Ignite Magnitude"],"stringId":"fire64_"},"44490":{"connections":[{"id":43090,"orbit":0}],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage and Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":44490,"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"stringId":"lightning49"},"44498":{"connections":[{"id":22439,"orbit":-5},{"id":38068,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":20,"skill":44498,"stats":["10% increased Exposure Effect"],"stringId":"elemental34"},"44516":{"connections":[{"id":2113,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":13,"skill":44516,"stats":["3% increased Attack Speed with Quarterstaves"],"stringId":"quarterstaff9_"},"44522":{"connections":[{"id":47831,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":22,"skill":44522,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect44"},"44527":{"connections":[{"id":44875,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds","isNotable":true,"isSwitchable":true,"name":"Cautious Concoctions","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds","id":55535,"name":"Attuned with Nature","stats":["25% increased Elemental Ailment Threshold","25% increased Stun Threshold while on Full Life"]}},"orbit":2,"orbitIndex":2,"skill":44527,"stats":["15% increased Flask Effect Duration","15% increased Flask Charges gained"],"stringId":"flasks24"},"44540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":4,"skill":44540,"stats":[],"stringId":"mastery_trap239"},"44560":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":44560,"stats":["20% increased Cold Damage"],"stringId":"oracle_hierarchy4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44563":{"connections":[{"id":59053,"orbit":7}],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect and Hinder Duration","orbit":0,"orbitIndex":0,"skill":44563,"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"stringId":"slowed_enemies13"},"44566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":915,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Lightning Rod","orbit":0,"orbitIndex":0,"recipe":["Suffering","Isolation","Isolation"],"skill":44566,"stats":["30% chance for Lightning Damage with Hits to be Lucky"],"stringId":"lightning_penetration28"},"44573":{"connections":[],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Disciplined Training","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Disgust","Guilt"],"skill":44573,"stats":["10% increased Skill Effect Duration","10% increased Area of Effect for Attacks","Skills lose Combo 20% slower"],"stringId":"area_attacks59"},"44605":{"connections":[{"id":59881,"orbit":-6},{"id":13081,"orbit":0}],"group":801,"icon":"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds","isNotable":true,"name":"Remorseless","orbit":5,"orbitIndex":21,"skill":44605,"stats":["15% increased Projectile Damage","30% increased Stun Buildup against enemies within 2 metres","+5 to Strength and Dexterity"],"stringId":"duelist_mercenary_notable2"},"44608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":945,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":44608,"stats":[],"stringId":"mastery_critical_6413"},"44612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":44612,"stats":[],"stringId":"mastery_spell_suppression_6714"},"44628":{"connections":[{"id":20820,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":44628,"stats":["3% increased Attack Speed"],"stringId":"attack_speed26"},"44659":{"connections":[],"group":612,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":27,"skill":44659,"stats":["+5 to any Attribute"],"stringId":"strength23"},"44669":{"connections":[],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":9,"skill":44669,"stats":["10% increased Skill Effect Duration"],"stringId":"duration12"},"44683":{"classesStart":["Shadow","Monk"],"connections":[{"id":5162,"orbit":0},{"id":45406,"orbit":0},{"id":50198,"orbit":0},{"id":11495,"orbit":0},{"id":9994,"orbit":0},{"id":74,"orbit":0},{"id":52980,"orbit":0}],"group":911,"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","name":"SIX","orbit":0,"orbitIndex":0,"skill":44683,"stats":[],"stringId":"six704"},"44684":{"connections":[{"id":5191,"orbit":0}],"group":1227,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Companion Attack Speed","orbit":0,"orbitIndex":0,"skill":44684,"stats":["Companions have 10% increased Attack Speed"],"stringId":"companions69"},"44690":{"connections":[{"id":14127,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":5,"skill":44690,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration9_"},"44699":{"connections":[{"id":16150,"orbit":0}],"group":1544,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":44699,"stats":["8% increased Reservation Efficiency of Companion Skills"],"stringId":"companions15"},"44707":{"connections":[{"id":54785,"orbit":0},{"id":7628,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":0,"orbitIndex":0,"skill":44707,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield1"},"44733":{"connections":[{"id":10742,"orbit":0},{"id":29432,"orbit":-9},{"id":1433,"orbit":0},{"id":49363,"orbit":0}],"group":577,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":12,"skill":44733,"stats":["+5 to any Attribute"],"stringId":"intelligence2"},"44746":{"ascendancyName":"Tactician","connections":[{"id":4245,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds","isNotable":true,"name":"Suppressing Fire","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":44746,"stats":["40% more Immobilisation buildup"],"stringId":"AscendancyMercenary1Notable4_"},"44753":{"connections":[{"id":63608,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"One With Flame","orbit":0,"orbitIndex":0,"recipe":["Greed","Greed","Isolation"],"skill":44753,"stats":["50% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation6"},"44756":{"connections":[{"id":44841,"orbit":5}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Marked Agility","orbit":3,"orbitIndex":15,"recipe":["Despair","Disgust","Suffering"],"skill":44756,"stats":["60% increased Mana Cost Efficiency of Marks","4% increased Movement Speed if you've used a Mark Recently"],"stringId":"marks17"},"44765":{"connections":[{"id":32233,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","isNotable":true,"name":"Distracting Presence","orbit":3,"orbitIndex":21,"recipe":["Envy","Guilt","Suffering"],"skill":44765,"stats":["10% increased Cooldown Recovery Rate","Enemies in your Presence have 10% reduced Cooldown Recovery Rate"],"stringId":"cooldowns13"},"44776":{"connections":[{"id":48773,"orbit":0},{"id":1841,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":5,"orbitIndex":18,"skill":44776,"stats":["15% increased Evasion Rating"],"stringId":"evasion24_"},"44783":{"connections":[{"id":22949,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":44783,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells1"},"44787":{"connections":[{"id":14654,"orbit":0},{"id":49192,"orbit":0},{"id":51683,"orbit":-4}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":14,"skill":44787,"stats":["20% increased Totem Placement speed"],"stringId":"totems24"},"44836":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":47150,"orbit":0}],"group":827,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Feel no Pain","orbit":2,"orbitIndex":12,"skill":44836,"stats":["20% increased Armour and Evasion Rating","20% increased Stun Threshold"],"stringId":"armour_and_evasion28"},"44841":{"connections":[{"id":36927,"orbit":0},{"id":28258,"orbit":2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Duration","orbit":2,"orbitIndex":19,"skill":44841,"stats":["Mark Skills have 25% increased Skill Effect Duration"],"stringId":"marks13"},"44850":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[{"id":59438,"orbit":2147483647},{"id":32128,"orbit":-3}],"group":658,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":44850,"stats":[],"stringId":"mastery_recovery_6673"},"44871":{"connections":[{"id":54447,"orbit":0},{"id":56216,"orbit":0}],"group":808,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":3,"orbitIndex":2,"skill":44871,"stats":["+10 to maximum Energy Shield"],"stringId":"energy_shield15"},"44872":{"connections":[{"id":11248,"orbit":0},{"id":22949,"orbit":0},{"id":4970,"orbit":0},{"id":3363,"orbit":0}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":44872,"stats":["+5 to any Attribute"],"stringId":"attributes79"},"44875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":44875,"stats":[],"stringId":"mastery_evasion_6508"},"44891":{"connections":[{"id":52537,"orbit":2147483647},{"id":15775,"orbit":0}],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":7,"skill":44891,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration2"},"44902":{"connections":[{"id":511,"orbit":3}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":7,"orbitIndex":2,"skill":44902,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells5_"},"44917":{"connections":[{"id":34984,"orbit":0}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Self Mortification","orbit":7,"orbitIndex":0,"recipe":["Ire","Envy","Envy"],"skill":44917,"stats":["Gain additional Stun Threshold equal to 20% of maximum Energy Shield","20% increased Stun Threshold while on Full Life"],"stringId":"stun_threshold_from_energy_shield11"},"44932":{"connections":[{"id":54984,"orbit":0}],"group":1374,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":3,"orbitIndex":4,"skill":44932,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock3"},"44948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":705,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":44948,"stats":[],"stringId":"mastery_mana160"},"44951":{"connections":[{"id":5777,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isSwitchable":true,"name":"Minion Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":48248,"name":"Armour and Energy Shield","stats":["12% increased Armour","12% increased maximum Energy Shield"]}},"orbit":4,"orbitIndex":9,"skill":44951,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence4"},"44952":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":9163,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Made to Last","orbit":3,"orbitIndex":11,"recipe":["Suffering","Fear","Guilt"],"skill":44952,"stats":["30% increased Armour","5% of Physical Damage prevented Recouped as Life"],"stringId":"armour34"},"44974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Hail","orbit":0,"orbitIndex":0,"recipe":["Disgust","Fear","Greed"],"skill":44974,"stats":["Empowered Attacks Gain 16% of Damage as Extra Cold Damage"],"stringId":"cold51"},"44983":{"connections":[{"id":3685,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":22,"skill":44983,"stats":["+3 to all Attributes"],"stringId":"all_attributes5"},"45012":{"connections":[{"id":8246,"orbit":0},{"id":64462,"orbit":0},{"id":41017,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":12,"skill":45012,"stats":["10% increased Attack Damage"],"stringId":"attack18"},"45013":{"connections":[{"id":58884,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Finishing Blows","orbit":7,"orbitIndex":4,"recipe":["Despair","Guilt","Ire"],"skill":45013,"stats":["60% increased Damage with Hits against Enemies that are on Low Life","30% increased Stun Buildup against Enemies that are on Low Life"],"stringId":"enemies_on_low_life9_"},"45019":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":995,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":45019,"stats":[],"stringId":"mastery_mana167"},"45037":{"connections":[{"id":9736,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":17,"skill":45037,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion6"},"45075":{"connections":[{"id":43507,"orbit":0},{"id":27439,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":7,"orbitIndex":8,"skill":45075,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy42"},"45086":{"connections":[{"id":34520,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical as Extra Chaos Damage","orbit":2,"orbitIndex":21,"skill":45086,"stats":["Gain 3% of Physical Damage as extra Chaos Damage"],"stringId":"physical12"},"45090":{"connections":[{"id":36027,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":19,"skill":45090,"stats":["12% increased Attack Damage"],"stringId":"slow_attacks5"},"45100":{"connections":[{"id":56928,"orbit":-3}],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Flask Duration","orbit":4,"orbitIndex":37,"skill":45100,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"stringId":"attack_speed15"},"45111":{"connections":[{"id":14446,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":45111,"stats":["20% increased Curse Duration"],"stringId":"curses13"},"45137":{"connections":[{"id":44487,"orbit":0}],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":8,"skill":45137,"stats":["10% increased Ignite Magnitude"],"stringId":"fire65"},"45162":{"connections":[{"id":24801,"orbit":7},{"id":63031,"orbit":-2}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":18,"skill":45162,"stats":["20% increased Presence Area of Effect"],"stringId":"glory14"},"45177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":619,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Strike True","orbit":2,"orbitIndex":4,"recipe":["Paranoia","Envy","Envy"],"skill":45177,"stats":["20% increased Accuracy Rating","+10 to Dexterity"],"stringId":"accuracy48"},"45193":{"connections":[{"id":4083,"orbit":0}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":17,"skill":45193,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison13"},"45202":{"connections":[{"id":59093,"orbit":0}],"flavourText":"A wooden construct, mute and blind.\\nBut fear the wrath of shackled mind.","group":269,"icon":"Art/2DArt/SkillIcons/passives/totemmax.dds","isKeystone":true,"name":"Ancestral Bond","orbit":0,"orbitIndex":0,"skill":45202,"stats":["Your Totem Limit is doubled","No Charge requirement for placing Totems","Totems reserve 75 Spirit each"],"stringId":"passive_keystone_ancestral_bond"},"45215":{"connections":[{"id":53187,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Attack Damage with Ally","orbit":2,"orbitIndex":2,"skill":45215,"stats":["Allies in your Presence deal 8% increased Damage","8% increased Attack Damage while you have an Ally in your Presence"],"stringId":"auras25"},"45226":{"connectionArt":"CharacterPlanned","connections":[{"id":21218,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":24,"skill":45226,"stats":["16% increased Damage with Bows"],"stringId":"oracle_bow_movement3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45227":{"connections":[{"id":42111,"orbit":0}],"group":208,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":1,"skill":45227,"stats":["Break 20% increased Armour"],"stringId":"armour_break7"},"45228":{"ascendancyName":"Spirit Walker","connections":[{"id":39887,"orbit":4}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Companion Life and Area","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":8,"orbitIndex":14,"skill":45228,"stats":["Companions have 10% increased Area of Effect","Companions have 15% increased maximum Life"],"stringId":"AscendancyHuntress2Small7"},"45230":{"connections":[{"id":28229,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":4,"skill":45230,"stats":["10% increased Area of Effect of Curses"],"stringId":"curses9"},"45244":{"connections":[{"id":23343,"orbit":0},{"id":41016,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Refills","orbit":2,"orbitIndex":16,"recipe":["Greed","Ire","Isolation"],"skill":45244,"stats":["Life Flasks gain 0.15 charges per Second"],"stringId":"life_flasks3"},"45248":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":14429,"orbit":2147483647}],"group":433,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":45248,"stats":["+2% to Quality of all Skills"],"stringId":"AscendancyMercenary3Small4"},"45272":{"connections":[{"id":42280,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":0,"skill":45272,"stats":["+3 to all Attributes"],"stringId":"all_attributes2"},"45278":{"connections":[{"id":38138,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Reduced Attribute Requirements","orbit":7,"orbitIndex":14,"skill":45278,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"all_attributes9"},"45301":{"connections":[{"id":31724,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":2,"orbitIndex":18,"skill":45301,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"energy_shield_and_armour28__"},"45304":{"connections":[{"id":6078,"orbit":-4}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":18,"skill":45304,"stats":["10% increased Poison Duration"],"stringId":"poison24_"},"45319":{"connections":[{"id":55041,"orbit":0},{"id":26135,"orbit":0},{"id":3251,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage","orbit":3,"orbitIndex":16,"skill":45319,"stats":["8% increased Spell Damage"],"stringId":"projectile_spells1"},"45327":{"connections":[{"id":10251,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":16,"skill":45327,"stats":["15% increased Stun Buildup"],"stringId":"stun25_"},"45329":{"connections":[{"id":2128,"orbit":0},{"id":40626,"orbit":0}],"group":1277,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Delayed Danger","orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Disgust"],"skill":45329,"stats":["30% increased Hazard Duration","40% increased Hazard Damage"],"stringId":"hazards16"},"45331":{"connections":[{"id":23221,"orbit":7},{"id":60323,"orbit":9}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Chaining Projectiles","orbit":7,"orbitIndex":21,"skill":45331,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"stringId":"ranged8"},"45333":{"connections":[{"id":59781,"orbit":-2}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Archon Effect","orbit":2,"orbitIndex":6,"skill":45333,"stats":["15% increased effect of Archon Buffs on you"],"stringId":"archon24"},"45343":{"connections":[{"id":50483,"orbit":0},{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":7,"orbitIndex":19,"skill":45343,"stats":["Minions have 8% increased Area of Effect"],"stringId":"minion_offence22"},"45350":{"connections":[{"id":3438,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":6,"skill":45350,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers15"},"45354":{"connections":[{"id":64948,"orbit":0},{"id":21568,"orbit":0}],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":18,"skill":45354,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras26"},"45363":{"connections":[{"id":31292,"orbit":0},{"id":58528,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds","isNotable":true,"name":"Smash","orbit":3,"orbitIndex":23,"skill":45363,"stats":["20% increased Melee Damage","40% increased Melee Damage against Heavy Stunned enemies"],"stringId":"melee55"},"45370":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds","isNotable":true,"name":"The Raging Ox","orbit":2,"orbitIndex":16,"recipe":["Suffering","Ire","Disgust"],"skill":45370,"stats":["Hits against you have 30% reduced Critical Damage Bonus","15% reduced Duration of Ailments on You","+10 to Strength"],"stringId":"azmerianimals36"},"45377":{"connections":[{"id":14310,"orbit":-7}],"group":1263,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":45377,"stats":["12% increased Cold Damage"],"stringId":"cold65"},"45382":{"connections":[{"id":53265,"orbit":0}],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Ailment Chance and Elemental Damage","orbit":3,"orbitIndex":3,"skill":45382,"stats":["10% increased Elemental Damage","6% increased chance to inflict Ailments"],"stringId":"ailments46"},"45383":{"connections":[{"id":23930,"orbit":0},{"id":30662,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":45383,"stats":["12% increased Lightning Damage"],"stringId":"lightning3"},"45390":{"connections":[{"id":13624,"orbit":0},{"id":28258,"orbit":2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":7,"skill":45390,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks14"},"45400":{"connectionArt":"CharacterPlanned","connections":[{"id":59908,"orbit":2147483647},{"id":13691,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Mighty Trunk","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":45400,"stats":["Totems gain +3% to all Maximum Elemental Resistances","20% increased Area of Effect for Skills used by Totems"],"stringId":"oracle_totems8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45422":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connectionArt":"CharacterPlanned","connections":[],"group":448,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Anger Management","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":45422,"stats":["+15 to Maximum Rage","200% faster start of inherent Rage loss"],"stringId":"oracle_rage3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45481":{"connections":[{"id":52765,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":45481,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration10"},"45488":{"connections":[{"id":4377,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","isNotable":true,"name":"Cross Strike","orbit":3,"orbitIndex":15,"recipe":["Guilt","Greed","Envy"],"skill":45488,"stats":["20% increased Accuracy Rating while Dual Wielding","3% increased Movement Speed while Dual Wielding"],"stringId":"dual_wielding4"},"45494":{"connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":9,"skill":45494,"stats":["20% increased Ballista Immobilisation buildup"],"stringId":"ballista3"},"45497":{"connections":[{"id":13333,"orbit":-7},{"id":17057,"orbit":0},{"id":61170,"orbit":7}],"group":729,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":45497,"stats":["10% increased Elemental Damage"],"stringId":"ground16"},"45503":{"connections":[{"id":37746,"orbit":4}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":0,"skill":45503,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite15"},"45522":{"connections":[{"id":22314,"orbit":5}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","isSwitchable":true,"name":"Infused Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","id":40885,"name":"Chaos Damage","stats":["10% increased Chaos Damage"]}},"orbit":3,"orbitIndex":6,"skill":45522,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"lightning6"},"45530":{"connections":[{"id":55180,"orbit":-7}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":18,"skill":45530,"stats":["Minions cause 15% increased Stun Buildup"],"stringId":"minion_offence24_"},"45569":{"connections":[{"id":55596,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":22,"skill":45569,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"criticals34"},"45570":{"connections":[{"id":43713,"orbit":0},{"id":29009,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Area","orbit":7,"orbitIndex":18,"skill":45570,"stats":["Offering Skills have 20% increased Area of Effect"],"stringId":"corpses13"},"45576":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":866,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":7,"orbitIndex":3,"skill":45576,"stats":[],"stringId":"mastery_projectile_6647"},"45585":{"connections":[{"id":55617,"orbit":0},{"id":37258,"orbit":5}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour and Evasion while Surrounded","orbit":3,"orbitIndex":23,"skill":45585,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded17_"},"45586":{"connections":[{"id":14761,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Ally Attack Damage","orbit":2,"orbitIndex":10,"skill":45586,"stats":["Allies in your Presence deal 16% increased Damage"],"stringId":"auras21"},"45599":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":6689,"orbit":0},{"id":32885,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Lay Siege","orbit":7,"orbitIndex":12,"recipe":["Fear","Envy","Fear"],"skill":45599,"stats":["1% increased Damage per 1% Chance to Block"],"stringId":"shield5"},"45602":{"ascendancyName":"Disciple of Varashta","connections":[{"id":32705,"orbit":-9}],"flavourText":"\"Kelari, you deceiver! I fell for your words, but no longer. Your sentence is a fate too good for you! I would give anything to bring back those who fell to your lies. Instead... I mourn my choices.\" \\n\\nNavira lambasted Kelari a final time.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds","isNotable":true,"name":"Navira's Oasis","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":7,"orbitIndex":7,"skill":45602,"stats":["Grants Skill: Navira's Oasis"],"stringId":"AscendancySorceress3Notable12_"},"45609":{"connections":[],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":20,"skill":45609,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals48"},"45612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":53901,"orbit":0}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Defensive Reflexes","orbit":2,"orbitIndex":12,"recipe":["Greed","Ire","Ire"],"skill":45612,"stats":["12% increased Block chance","5 Mana gained when you Block"],"stringId":"shield28_"},"45631":{"connections":[{"id":3630,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield Delay","orbit":7,"orbitIndex":14,"skill":45631,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield6_"},"45632":{"connections":[{"id":24551,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Mind Eraser","orbit":7,"orbitIndex":19,"recipe":["Fear","Ire","Paranoia"],"skill":45632,"stats":["20% increased Mana Regeneration Rate","15% increased Mana Cost Efficiency"],"stringId":"mana16"},"45650":{"connections":[{"id":9572,"orbit":0},{"id":36997,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage if Projectile Hit","orbit":3,"orbitIndex":14,"skill":45650,"stats":["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"],"stringId":"ranged19_"},"45693":{"connections":[{"id":64851,"orbit":0}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Shield Defences","orbit":0,"orbitIndex":0,"skill":45693,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"deflect1_"},"45702":{"connections":[{"id":61333,"orbit":-3},{"id":31692,"orbit":3}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":19,"skill":45702,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals86"},"45709":{"connections":[{"id":52803,"orbit":0}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":21,"skill":45709,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks10"},"45712":{"connections":[{"id":65009,"orbit":0}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Flammability Magnitude","orbit":5,"orbitIndex":60,"skill":45712,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"stringId":"elemental29"},"45713":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isNotable":true,"name":"Savouring","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Isolation"],"skill":45713,"stats":["20% increased Flask Effect Duration","20% chance for Flasks you use to not consume Charges"],"stringId":"flasks18"},"45736":{"connections":[{"id":15825,"orbit":-3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":12,"skill":45736,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour50"},"45751":{"connections":[],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Frightening Shield","orbit":2,"orbitIndex":0,"recipe":["Disgust","Disgust","Suffering"],"skill":45751,"stats":["Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised"],"stringId":"shield37"},"45774":{"connections":[{"id":54975,"orbit":3}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect","orbit":4,"orbitIndex":71,"skill":45774,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"stringId":"slowed_enemies5"},"45777":{"connections":[{"id":47212,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Hidden Barb","orbit":2,"orbitIndex":16,"recipe":["Envy","Paranoia","Isolation"],"skill":45777,"stats":["20% increased chance to inflict Ailments","20% increased Physical Damage"],"stringId":"projectiles50"},"45798":{"connections":[{"id":62578,"orbit":-7},{"id":46615,"orbit":7}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":3,"orbitIndex":13,"skill":45798,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility10"},"45808":{"connections":[{"id":35623,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":7,"orbitIndex":6,"skill":45808,"stats":["+4% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 6% of Evasion Rating"],"stringId":"armour_and_evasion47"},"45824":{"connections":[{"id":61441,"orbit":0},{"id":8493,"orbit":0}],"group":629,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":0,"orbitIndex":0,"skill":45824,"stats":["10% increased Damage with Swords"],"stringId":"sword1"},"45874":{"connections":[],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Proliferating Weeds","orbit":5,"orbitIndex":48,"recipe":["Suffering","Ire","Paranoia"],"skill":45874,"stats":["Fissure Skills have +1 to Limit"],"stringId":"physical70_"},"45885":{"connections":[{"id":54521,"orbit":0},{"id":59362,"orbit":0},{"id":45497,"orbit":4},{"id":13359,"orbit":9}],"group":756,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":45885,"stats":["+5 to any Attribute"],"stringId":"intelligence54"},"45899":{"connections":[{"id":968,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage and Area","orbit":3,"orbitIndex":5,"skill":45899,"stats":["6% increased Fire Damage","5% increased Area of Effect"],"stringId":"fire9"},"45916":{"connections":[{"id":27501,"orbit":-4},{"id":19330,"orbit":4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":5,"orbitIndex":48,"skill":45916,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration37"},"45918":{"connections":[],"flavourText":"While the mind endures, so too will the body.","group":453,"icon":"Art/2DArt/SkillIcons/passives/heroicspirit.dds","isKeystone":true,"name":"Mind Over Matter","orbit":0,"orbitIndex":0,"skill":45918,"stats":["All Damage is taken from Mana before Life","50% less Mana Recovery Rate"],"stringId":"passive_keystone_mind_over_matter"},"45923":{"connections":[{"id":50084,"orbit":0},{"id":52319,"orbit":0}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":31,"skill":45923,"stats":["+5 to any Attribute"],"stringId":"strength4"},"45962":{"connections":[{"id":7183,"orbit":-6},{"id":15617,"orbit":0}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":3,"orbitIndex":23,"skill":45962,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks20"},"45969":{"connections":[{"id":28693,"orbit":-7},{"id":24880,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":45969,"stats":["+5 to any Attribute"],"stringId":"strength31"},"45990":{"connections":[{"id":39448,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":23,"skill":45990,"stats":["4% increased Attack Speed with Axes"],"stringId":"axe8"},"45992":{"connections":[{"id":41657,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":12,"skill":45992,"stats":["15% increased Armour"],"stringId":"armour22"},"46016":{"ascendancyName":"Infernalist","connections":[{"id":24039,"orbit":7}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":6,"orbitIndex":54,"skill":46016,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small2"},"46017":{"connections":[{"id":54962,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration while Stationary","orbit":7,"orbitIndex":0,"skill":46017,"stats":["15% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration9"},"46023":{"connections":[],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":46023,"stats":["15% increased Armour"],"stringId":"armour8"},"46024":{"connections":[],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Sigil of Lightning","orbit":4,"orbitIndex":44,"recipe":["Paranoia","Suffering","Paranoia"],"skill":46024,"stats":["30% increased Damage with Hits against Shocked Enemies"],"stringId":"lightning31"},"46034":{"connections":[{"id":41029,"orbit":0},{"id":10552,"orbit":0}],"group":1070,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":46034,"stats":["+5 to any Attribute"],"stringId":"attributes69"},"46051":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":94,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":46051,"stats":[],"stringId":"mastery_thorns309"},"46060":{"connections":[{"id":29270,"orbit":-2},{"id":7488,"orbit":0}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Voracious","orbit":7,"orbitIndex":0,"recipe":["Greed","Isolation","Suffering"],"skill":46060,"stats":["15% increased Attack Speed while Leeching"],"stringId":"life_leech14"},"46069":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":46069,"stats":["12% increased Magnitude of Poison you inflict"],"stringId":"oracle_poison4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"46070":{"ascendancyName":"Spirit Walker","connections":[{"id":62424,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds","isNotable":true,"name":"Primal Bounty","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":5,"orbitIndex":38,"skill":46070,"stats":["Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3","Expend an Owl Feather when you Dodge to trigger Primal Bounty","Grants Skill: Primal Bounty"],"stringId":"AscendancyHuntress2Notable5"},"46071":{"ascendancyName":"Amazon","connections":[{"id":9294,"orbit":0}],"group":1595,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Accuracy","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":46071,"stats":["12% increased Accuracy Rating"],"stringId":"AscendancyHuntress1Small1"},"46088":{"connections":[{"id":13823,"orbit":0}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":3,"orbitIndex":9,"skill":46088,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals16"},"46091":{"ascendancyName":"Disciple of Varashta","connections":[{"id":30265,"orbit":-9},{"id":64223,"orbit":6}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds","isNotable":true,"name":"The Fourth Teaching","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":5,"orbitIndex":56,"skill":46091,"stats":["-1 second to base Energy Shield Recharge delay","40% more Energy Shield Recharge Rate while on Low Energy Shield"],"stringId":"AscendancySorceress3Notable2"},"46124":{"connections":[{"id":37593,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Arcane Remnants","orbit":7,"orbitIndex":10,"recipe":["Despair","Guilt","Envy"],"skill":46124,"stats":["Recover 3% of Maximum Mana when you collect a Remnant"],"stringId":"remnant10"},"46146":{"connections":[{"id":43691,"orbit":0}],"group":1128,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":4,"skill":46146,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech10"},"46152":{"connections":[{"id":40110,"orbit":4}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":1,"orbitIndex":6,"skill":46152,"stats":["10% increased Blind Effect"],"stringId":"monkchakra10"},"46157":{"connections":[{"id":37806,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Skill Chain Chance","orbit":0,"orbitIndex":0,"skill":46157,"stats":["20% chance for Lightning Skills to Chain an additional time"],"stringId":"shock2"},"46171":{"connections":[{"id":61421,"orbit":7}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Critical Chance","orbit":7,"orbitIndex":13,"skill":46171,"stats":["10% increased Critical Hit Chance"],"stringId":"monkelemental4"},"46182":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":42460,"orbit":4}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Intense Dose","orbit":0,"orbitIndex":0,"recipe":["Fear","Fear","Disgust"],"skill":46182,"stats":["20% increased chance to inflict Ailments","15% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments43"},"46197":{"connections":[{"id":39237,"orbit":0}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Careful Assassin","orbit":2,"orbitIndex":7,"recipe":["Suffering","Envy","Greed"],"skill":46197,"stats":["20% reduced Critical Damage Bonus","50% increased Critical Hit Chance"],"stringId":"criticals84"},"46205":{"connections":[{"id":2174,"orbit":7},{"id":33209,"orbit":-7},{"id":51683,"orbit":-7}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":46205,"stats":["15% increased Totem Damage"],"stringId":"totems2"},"46224":{"connections":[{"id":24045,"orbit":0},{"id":45019,"orbit":0}],"group":995,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Arcane Alchemy","orbit":2,"orbitIndex":2,"recipe":["Envy","Greed","Greed"],"skill":46224,"stats":["Mana Flasks gain 0.1 charges per Second","+10 to Intelligence"],"stringId":"mana_flasks12"},"46268":{"connections":[{"id":5324,"orbit":-5},{"id":2397,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage while no remaining Life Flasks","orbit":7,"orbitIndex":8,"skill":46268,"stats":["20% increased Attack Damage while you have no Life Flask uses left"],"stringId":"attack40"},"46275":{"connections":[{"id":3894,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":35,"skill":46275,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield15"},"46296":{"connections":[],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Short Shot","orbit":1,"orbitIndex":4,"recipe":["Suffering","Guilt","Envy"],"skill":46296,"stats":["10% reduced Projectile Speed","20% increased Projectile Damage"],"stringId":"ranged37"},"46300":{"connections":[{"id":63021,"orbit":0},{"id":52774,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":14,"skill":46300,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite1"},"46318":{"connections":[{"id":32964,"orbit":3}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":7,"skill":46318,"stats":["+6% of Armour also applies to Elemental Damage","3% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour38"},"46325":{"connections":[{"id":3936,"orbit":0},{"id":33556,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":5,"skill":46325,"stats":["10% increased Melee Damage"],"stringId":"melee18"},"46343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[{"id":13708,"orbit":0},{"id":25513,"orbit":0},{"id":47363,"orbit":0}],"group":763,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":46343,"stats":[],"stringId":"mastery_two_hand_6774"},"46358":{"connections":[{"id":50423,"orbit":0},{"id":59376,"orbit":0},{"id":59442,"orbit":-5}],"group":673,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":66,"skill":46358,"stats":["+5 to any Attribute"],"stringId":"intelligence37"},"46365":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","isNotable":true,"name":"Gigantic Following","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Isolation"],"skill":46365,"stats":["Your Minions are Gigantic","25% reduced Reservation Efficiency of Minion Skills"],"stringId":"minion_reservation16"},"46380":{"connections":[{"id":21327,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Energy Shield if Consumed Power Charge","orbit":2,"orbitIndex":22,"skill":46380,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_charges10"},"46384":{"connections":[{"id":18746,"orbit":-5},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Wide Barrier","orbit":4,"orbitIndex":24,"recipe":["Envy","Isolation","Isolation"],"skill":46384,"stats":["20% reduced Armour","30% increased Block chance"],"stringId":"shield10"},"46386":{"connections":[{"id":39986,"orbit":0}],"group":1535,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":46386,"stats":["Companions deal 12% increased Damage"],"stringId":"companions11"},"46399":{"connections":[{"id":589,"orbit":0},{"id":50820,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Rage on Melee Hit","orbit":7,"orbitIndex":11,"skill":46399,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"glory24_"},"46402":{"connections":[{"id":18923,"orbit":0},{"id":37220,"orbit":0},{"id":50342,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":13,"skill":46402,"stats":["15% increased Evasion Rating"],"stringId":"evasion8"},"46421":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":329,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":46421,"stats":[],"stringId":"mastery_aura_6309"},"46431":{"connections":[{"id":11015,"orbit":0},{"id":38463,"orbit":0}],"group":1304,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":46431,"stats":["16% increased Hazard Damage"],"stringId":"hazards14"},"46454":{"ascendancyName":"Pathfinder","connections":[],"group":1576,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds","isNotable":true,"name":"Traveller's Wisdom","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":46454,"stats":["Attribute Passive Skills can instead grant 5% increased Damage","Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield","Attribute Passive Skills can instead grant 5% increased Cost Efficiency"],"stringId":"AscendancyRanger3Notable9"},"46475":{"connections":[{"id":18186,"orbit":5},{"id":51299,"orbit":0},{"id":16385,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":63,"skill":46475,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion20_"},"46499":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Guts","orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Ire"],"skill":46499,"stats":["Recover 3% of maximum Life for each Endurance Charge consumed","+1 to Maximum Endurance Charges"],"stringId":"endurance_charges8"},"46522":{"ascendancyName":"Tactician","connections":[{"id":44746,"orbit":0}],"group":369,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Pin Buildup","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":46522,"stats":["20% increased Pin Buildup"],"stringId":"AscendancyMercenary1Small5_"},"46533":{"connections":[{"id":28329,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":18,"skill":46533,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise5"},"46535":{"ascendancyName":"Witchhunter","connections":[],"group":290,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds","isNotable":true,"name":"No Mercy","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":46535,"stats":["Deal up to 40% more Damage to Enemies based on their missing Concentration"],"stringId":"AscendancyMercenary2Notable4"},"46554":{"connections":[{"id":62677,"orbit":0},{"id":36379,"orbit":0},{"id":10131,"orbit":0},{"id":42999,"orbit":-3}],"group":972,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":46554,"stats":["+5 to any Attribute"],"stringId":"intelligence59"},"46561":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":982,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":2,"orbitIndex":6,"skill":46561,"stats":[],"stringId":"mastery_recovery_6676_"},"46565":{"connections":[{"id":15855,"orbit":0}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Stance Breaker","orbit":0,"orbitIndex":0,"skill":46565,"stats":["25% increased Damage with Swords"],"stringId":"sword18"},"46601":{"connections":[{"id":18568,"orbit":0},{"id":43720,"orbit":0}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":18,"skill":46601,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech4"},"46604":{"connections":[{"id":2138,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":17,"skill":46604,"stats":["7% increased Chaos Damage"],"stringId":"chaos17"},"46615":{"connections":[{"id":53177,"orbit":7}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility when Stunned","orbit":7,"orbitIndex":10,"skill":46615,"stats":["50% chance to gain Volatility when you are Stunned"],"stringId":"volatility8"},"46628":{"connections":[{"id":40894,"orbit":0},{"id":44872,"orbit":0},{"id":50184,"orbit":0},{"id":25337,"orbit":0},{"id":20848,"orbit":-8}],"group":459,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":67,"skill":46628,"stats":["+5 to any Attribute"],"stringId":"intelligence76"},"46644":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds","isNotable":true,"name":"Beidat's Will","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":48,"skill":46644,"stats":["Reserves 25% of Life","+1 to Maximum Spirit per 25 Maximum Life"],"stringId":"AscendancyWitch1Notable3"},"46654":{"ascendancyName":"Shaman","connections":[{"id":61983,"orbit":2147483647}],"group":71,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Resistances","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":46654,"stats":["+3% to all Elemental Resistances"],"stringId":"AscendancyDruid2Small5"},"46665":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":263,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46665,"stats":[],"stringId":"mastery_life145"},"46674":{"connections":[{"id":35921,"orbit":0},{"id":64807,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":16,"skill":46674,"stats":["6% increased Area of Effect for Attacks"],"stringId":"slam_area2"},"46683":{"connections":[{"id":30553,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Inherited Strength ","orbit":3,"orbitIndex":4,"recipe":["Envy","Suffering","Despair"],"skill":46683,"stats":["Warcries have 15% chance to Empower 3 additional Attacks"],"stringId":"warcries49"},"46688":{"connections":[{"id":4238,"orbit":-2}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":1,"skill":46688,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed7"},"46692":{"connections":[{"id":9393,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isNotable":true,"name":"Efficient Alchemy","orbit":7,"orbitIndex":16,"recipe":["Fear","Ire","Guilt"],"skill":46692,"stats":["20% increased Flask and Charm Charges gained","40% increased Life and Mana Recovery from Flasks while you have an active Charm"],"stringId":"flasks9"},"46696":{"connections":[{"id":8629,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Impair","orbit":4,"orbitIndex":68,"recipe":["Envy","Suffering","Disgust"],"skill":46696,"stats":["25% increased Damage with One Handed Weapons","Attacks have 10% chance to Maim on Hit"],"stringId":"one_handed20"},"46705":{"connections":[{"id":12822,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage if Melee Hit","orbit":2,"orbitIndex":6,"skill":46705,"stats":["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"stringId":"ranged18"},"46741":{"connections":[],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":22,"skill":46741,"stats":["15% increased Stun Buildup"],"stringId":"stun3__"},"46742":{"connections":[],"flavourText":"Balance is good in all things, but especially in the realm of magic.","group":524,"icon":"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds","isKeystone":true,"name":"Elemental Equilibrium","orbit":0,"orbitIndex":0,"skill":46742,"stats":["Create Lightning Infusion Remnants instead of Fire","Create Cold Infusion Remnants instead of Lightning","Create Fire Infusion Remnants instead of Cold"],"stringId":"passive_keystone_elemental_equilibrium"},"46748":{"connections":[{"id":51206,"orbit":5},{"id":60568,"orbit":-5}],"group":534,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":46748,"stats":["16% increased Totem Life"],"stringId":"totems50"},"46760":{"connections":[{"id":51534,"orbit":0},{"id":8631,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":46760,"stats":["16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"stringId":"criticals8"},"46761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46761,"stats":[],"stringId":"mastery_flask126"},"46782":{"connections":[{"id":53698,"orbit":3}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":46782,"stats":["10% increased Attack Damage"],"stringId":"attack13_"},"46819":{"connections":[{"id":8616,"orbit":0},{"id":13909,"orbit":0},{"id":3472,"orbit":0}],"group":809,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":46819,"stats":["+5 to any Attribute"],"stringId":"attributes21"},"46854":{"ascendancyName":"Deadeye","connections":[{"id":12033,"orbit":0},{"id":42416,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Speed","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":3,"orbitIndex":8,"skill":46854,"stats":["10% increased Projectile Speed"],"stringId":"AscendancyRanger1Small1__"},"46857":{"connections":[{"id":52971,"orbit":-2}],"group":1318,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds","name":"Energy Shield Delay","orbit":0,"orbitIndex":0,"skill":46857,"stats":["Gain Deflection Rating equal to 4% of Evasion Rating","4% faster start of Energy Shield Recharge","5% increased Mana Cost Efficiency"],"stringId":"energy_shield_recovery1"},"46874":{"connections":[{"id":7449,"orbit":0},{"id":53696,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":21,"skill":46874,"stats":["12% increased Attack Physical Damage"],"stringId":"physical38"},"46882":{"connections":[],"group":1245,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":8,"skill":46882,"stats":[],"stringId":"jewel_slot1970"},"46887":{"connections":[{"id":43720,"orbit":-6},{"id":38463,"orbit":0}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":6,"skill":46887,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech5"},"46931":{"connections":[{"id":23036,"orbit":0},{"id":28175,"orbit":5}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":11,"skill":46931,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded15"},"46961":{"connections":[{"id":5191,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Attack Speed","orbit":0,"orbitIndex":0,"skill":46961,"stats":["3% increased Attack Speed"],"stringId":"companions59"},"46972":{"connections":[{"id":54783,"orbit":0}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Arcane Mixtures","orbit":7,"orbitIndex":23,"recipe":["Paranoia","Paranoia","Guilt"],"skill":46972,"stats":["10% increased Cast Speed if you've used a Mana Flask Recently","Mana Flasks gain 0.1 charges per Second"],"stringId":"energy_shield_recovery25_"},"46989":{"connections":[],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":7,"orbitIndex":12,"skill":46989,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells9"},"46990":{"ascendancyName":"Deadeye","connections":[{"id":3987,"orbit":0},{"id":39723,"orbit":0},{"id":49165,"orbit":0},{"id":24295,"orbit":0},{"id":61461,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Deadeye","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":9,"orbitIndex":48,"skill":46990,"stats":[],"stringId":"AscendancyRanger1Start"},"47006":{"connections":[{"id":43174,"orbit":7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":3,"orbitIndex":14,"skill":47006,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break12"},"47009":{"connections":[{"id":37250,"orbit":-7}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":7,"orbitIndex":11,"skill":47009,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks47"},"47021":{"connections":[{"id":36217,"orbit":1}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":0,"skill":47021,"stats":["15% increased Volatility Explosion delay"],"stringId":"volatility17"},"47080":{"connections":[{"id":37113,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":47080,"stats":["12% increased Lightning Damage"],"stringId":"lightning60"},"47088":{"connections":[],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Sic 'Em","orbit":4,"orbitIndex":0,"recipe":["Paranoia","Greed","Disgust"],"skill":47088,"stats":["Companions deal 60% increased damage against Immobilised enemies"],"stringId":"companions21"},"47097":{"ascendancyName":"Warbringer","connections":[],"group":53,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds","isNotable":true,"name":"Warcaller's Bellow","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":47097,"stats":["Warcries Explode Corpses dealing 25% of their Life as Physical Damage","Ignore Warcry Cooldowns"],"stringId":"AscendancyWarrior2Notable4_"},"47150":{"connections":[{"id":56910,"orbit":-5}],"group":827,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":16,"skill":47150,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion26"},"47155":{"connections":[{"id":35896,"orbit":0},{"id":63545,"orbit":2},{"id":17394,"orbit":-2}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":3,"skill":47155,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence20"},"47157":{"connections":[{"id":61347,"orbit":4},{"id":54818,"orbit":0}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":12,"skill":47157,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles31"},"47168":{"connections":[{"id":6006,"orbit":-4},{"id":54521,"orbit":0},{"id":55412,"orbit":-4},{"id":25570,"orbit":0}],"group":599,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47168,"stats":["+5 to any Attribute"],"stringId":"intelligence52"},"47173":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":47173,"stats":[],"stringId":"mastery_warcry_6792"},"47175":{"classesStart":["Marauder","Warrior"],"connections":[{"id":16732,"orbit":0},{"id":51916,"orbit":0},{"id":54579,"orbit":0},{"id":5852,"orbit":0},{"id":33812,"orbit":0},{"id":32534,"orbit":0},{"id":3936,"orbit":0},{"id":38646,"orbit":0}],"group":746,"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","name":"MARAUDER","orbit":0,"orbitIndex":0,"skill":47175,"stats":[],"stringId":"marauder594"},"47177":{"connections":[],"group":974,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47177,"stats":["+5 to any Attribute"],"stringId":"intelligence85"},"47184":{"ascendancyName":"Smith of Kitava","connections":[],"group":17,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds","isNotable":true,"name":"Living Weapon","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":47184,"stats":["Grants Skill: Manifest Weapon"],"stringId":"AscendancyWarrior3Notable2"},"47190":{"ascendancyName":"Oracle","connections":[{"id":32905,"orbit":6}],"group":38,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Passive Point","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":47190,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyDruid1Small2"},"47191":{"connections":[],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":58,"skill":47191,"stats":["12% increased Fire Damage"],"stringId":"fire1_"},"47212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":513,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":47212,"stats":[],"stringId":"mastery_bow33"},"47235":{"connections":[{"id":24570,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blinded Enemies Critical","orbit":7,"orbitIndex":22,"skill":47235,"stats":["Enemies Blinded by you have 15% reduced Critical Hit Chance"],"stringId":"blind15_"},"47236":{"ascendancyName":"Smith of Kitava","connections":[{"id":60298,"orbit":0}],"group":16,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Melee Damage","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":47236,"stats":["20% increased Melee Damage"],"stringId":"AscendancyWarrior3Small3"},"47242":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":47242,"stats":[],"stringId":"mastery_miniondefence179"},"47252":{"connections":[],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":47252,"stats":["16% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration6"},"47263":{"connections":[{"id":38707,"orbit":0},{"id":18448,"orbit":0},{"id":58295,"orbit":0},{"id":60068,"orbit":0}],"group":204,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47263,"stats":["+5 to any Attribute"],"stringId":"strength54"},"47270":{"connections":[],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Inescapable Cold","orbit":4,"orbitIndex":66,"recipe":["Ire","Paranoia","Isolation"],"skill":47270,"stats":["40% increased Freeze Buildup","20% increased Freeze Duration on Enemies"],"stringId":"chill_and_freeze4"},"47284":{"connections":[{"id":3332,"orbit":0}],"group":648,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":47284,"stats":["Minions have +20% to Cold Resistance"],"stringId":"minion_defence26"},"47307":{"connections":[{"id":2254,"orbit":5}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":4,"skill":47307,"stats":["3% increased Cast Speed"],"stringId":"cast_speed15_"},"47312":{"ascendancyName":"Amazon","connections":[],"group":1604,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds","isNotable":true,"name":"Azmeri Brew","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":47312,"stats":["Life Flasks also recover Mana","Mana Flasks also recover Life"],"stringId":"AscendancyHuntress1Notable7"},"47316":{"connections":[{"id":2888,"orbit":0},{"id":28862,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Goring","orbit":7,"orbitIndex":19,"recipe":["Ire","Isolation","Isolation"],"skill":47316,"stats":["3% increased maximum Life","20% increased amount of Life Leeched"],"stringId":"life_leech16"},"47344":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":3781,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Damage","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":47344,"stats":["11% increased Chaos Damage"],"stringId":"AscendancyMonk3Small2"},"47359":{"connections":[{"id":14231,"orbit":-7}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":17,"skill":47359,"stats":["Triggered Spells deal 16% increased Spell Damage"],"stringId":"triggers4"},"47363":{"connections":[],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Colossal Weapon","orbit":4,"orbitIndex":50,"recipe":["Fear","Greed","Ire"],"skill":47363,"stats":["12% increased Area of Effect for Attacks","+10 to Strength"],"stringId":"two_handed14"},"47371":{"connections":[{"id":7668,"orbit":0}],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Bleeding Chance","orbit":2,"orbitIndex":22,"skill":47371,"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"stringId":"warcries4"},"47374":{"connections":[{"id":18049,"orbit":0}],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":66,"skill":47374,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"],"stringId":"projectiles26"},"47375":{"connections":[{"id":63618,"orbit":5}],"group":1531,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":0,"orbitIndex":0,"skill":47375,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions16"},"47387":{"connections":[{"id":18593,"orbit":0}],"group":100,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Stormkeeper","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Guilt"],"skill":47387,"stats":["20% increased Lightning Damage","30% reduced effect of Shock on you","15% increased Magnitude of Shock you inflict"],"stringId":"lightning68"},"47418":{"connections":[{"id":23839,"orbit":0},{"id":10738,"orbit":0}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Warding Potions","orbit":2,"orbitIndex":9,"recipe":["Greed","Envy","Paranoia"],"skill":47418,"stats":["10% reduced Flask Charges used from Mana Flasks","Remove a Curse when you use a Mana Flask"],"stringId":"mana_flasks13"},"47420":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":11048,"orbit":0},{"id":52676,"orbit":7}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","isNotable":true,"name":"Expendable Army","orbit":1,"orbitIndex":9,"recipe":["Ire","Greed","Isolation"],"skill":47420,"stats":["20% increased Minion Duration","Temporary Minion Skills have +2 to Limit of Minions summoned"],"stringId":"minion_reservation2___"},"47429":{"connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":6,"orbitIndex":6,"skill":47429,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries52"},"47441":{"connections":[{"id":61992,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Stigmata","orbit":7,"orbitIndex":12,"recipe":["Disgust","Guilt","Fear"],"skill":47441,"stats":["Offerings have 30% increased Maximum Life","Recover 3% of maximum Life when you create an Offering"],"stringId":"corpses9_"},"47442":{"ascendancyName":"Blood Mage","connections":[{"id":65518,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life Flasks","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":5,"orbitIndex":2,"skill":47442,"stats":["15% increased Life Flask Charges gained"],"stringId":"AscendancyWitch2Small9"},"47443":{"connections":[{"id":31129,"orbit":0}],"group":1543,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":47443,"stats":["8% increased Reservation Efficiency of Companion Skills"],"stringId":"companions13"},"47469":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":52669,"orbit":0}],"group":99,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":47469,"stats":[],"stringId":"mastery_fire_6513"},"47477":{"connections":[{"id":51774,"orbit":1}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":6,"skill":47477,"stats":["15% reduced Volatility Explosion delay"],"stringId":"volatility14"},"47514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Dizzying Hits","orbit":7,"orbitIndex":8,"recipe":["Ire","Despair","Envy"],"skill":47514,"stats":["10% chance to Daze on Hit","25% increased Critical Hit Chance against Dazed Enemies"],"stringId":"daze_19"},"47517":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":142,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":47517,"stats":[],"stringId":"mastery_armour_6284"},"47555":{"connections":[{"id":51184,"orbit":0},{"id":18407,"orbit":0},{"id":39886,"orbit":0}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":22,"skill":47555,"stats":["+5 to any Attribute"],"stringId":"intelligence13"},"47560":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Multi Shot","orbit":8,"orbitIndex":54,"recipe":["Ire","Isolation","Disgust"],"skill":47560,"stats":["+24% Surpassing chance to fire an additional Projectile"],"stringId":"projectiles44"},"47591":{"connections":[{"id":9226,"orbit":-2}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":2,"orbitIndex":16,"skill":47591,"stats":["3% of Damage taken Recouped as Mana"],"stringId":"mana_regeneration36_"},"47606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":196,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":47606,"stats":[],"stringId":"mastery_rage_6668"},"47614":{"connections":[{"id":22219,"orbit":-7}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":2,"orbitIndex":22,"skill":47614,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers10"},"47623":{"connections":[{"id":38570,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":2,"orbitIndex":14,"skill":47623,"stats":["12% increased Grenade Damage"],"stringId":"grenades21"},"47633":{"connectionArt":"CharacterPlanned","connections":[{"id":57002,"orbit":0}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":4,"skill":47633,"stats":["20% increased Thorns damage"],"stringId":"oracle_thorns2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"47635":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Overload","orbit":3,"orbitIndex":8,"recipe":["Paranoia","Isolation","Envy"],"skill":47635,"stats":["Damage Penetrates 10% Lightning Resistance if on Low Mana","Damage Penetrates 15% Lightning Resistance"],"stringId":"lightning_penetration22_"},"47677":{"connections":[{"id":9472,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":7,"orbitIndex":17,"skill":47677,"stats":["8% increased Projectile Speed"],"stringId":"ranged11"},"47683":{"connections":[],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Chaining Projectiles","orbit":2,"orbitIndex":23,"skill":47683,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"stringId":"ranged44"},"47709":{"connections":[{"id":63814,"orbit":0},{"id":40336,"orbit":0}],"group":745,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":47709,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed26"},"47722":{"connections":[{"id":6514,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":3,"orbitIndex":4,"skill":47722,"stats":["16% increased Damage with Warcries"],"stringId":"warcries25"},"47733":{"connections":[],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Ailment Chance","orbit":2,"orbitIndex":7,"skill":47733,"stats":["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"],"stringId":"one_handed24"},"47753":{"connections":[{"id":51868,"orbit":-6}],"group":87,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Penetration","orbit":0,"orbitIndex":0,"skill":47753,"stats":["Damage Penetrates 8% Fire Resistance"],"stringId":"fire48"},"47754":{"connections":[{"id":23455,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":16,"skill":47754,"stats":["10% increased Cold Damage"],"stringId":"cold_penetration11"},"47759":{"connections":[{"id":62677,"orbit":2147483647}],"flavourText":"Your grandchildren will awaken screaming in memory of what I utter today.","group":921,"icon":"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds","isKeystone":true,"name":"Whispers of Doom","orbit":0,"orbitIndex":0,"skill":47759,"stats":["You can apply an additional Curse","Double Activation Delay of Curses"],"stringId":"passive_keystone_whispers_of_doom"},"47782":{"connections":[{"id":38003,"orbit":4},{"id":28361,"orbit":-4}],"group":831,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Steady Footing","orbit":4,"orbitIndex":54,"recipe":["Envy","Disgust","Ire"],"skill":47782,"stats":["40% increased Stun Threshold","20% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"weapon_swapping9"},"47790":{"connections":[{"id":17625,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":47790,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"shapeshifting4"},"47796":{"connections":[{"id":62640,"orbit":-4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":47796,"stats":["3% increased Attack Speed"],"stringId":"attack_speed13_"},"47821":{"connections":[{"id":41033,"orbit":9}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":2,"orbitIndex":17,"skill":47821,"stats":["Offering Skills have 15% increased Buff effect"],"stringId":"corpses19"},"47831":{"connections":[{"id":8734,"orbit":0},{"id":49996,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection and Energy Shield Delay","orbit":2,"orbitIndex":18,"skill":47831,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"deflect43"},"47833":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":964,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":47833,"stats":[],"stringId":"mastery_critical_270_"},"47853":{"connections":[],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","isNotable":true,"name":"Bond of the Mamba","orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Disgust"],"skill":47853,"stats":["Gain 4% of Physical Damage as extra Chaos Damage","Companions gain 12% Damage as extra Chaos Damage"],"stringId":"companions52"},"47856":{"connections":[{"id":32561,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":2,"orbitIndex":15,"skill":47856,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed5_"},"47893":{"connections":[{"id":57774,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Speed","orbit":2,"orbitIndex":21,"skill":47893,"stats":["3% increased Attack Speed while Dual Wielding"],"stringId":"dual_wielding6_"},"47895":{"connections":[{"id":56493,"orbit":-2}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Evasion Rating on Hit Recently","orbit":2,"orbitIndex":6,"skill":47895,"stats":["20% increased Evasion Rating if you have Hit an Enemy Recently"],"stringId":"attack_speed59"},"47931":{"connections":[{"id":33722,"orbit":0},{"id":39131,"orbit":0},{"id":9324,"orbit":0},{"id":53329,"orbit":0},{"id":63170,"orbit":0}],"group":166,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47931,"stats":["+5 to any Attribute"],"stringId":"intelligence8"},"47976":{"connections":[{"id":14446,"orbit":0},{"id":37876,"orbit":0}],"group":1377,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47976,"stats":["+5 to any Attribute"],"stringId":"attributes12"},"48006":{"connections":[{"id":33604,"orbit":0}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Devastation","orbit":7,"orbitIndex":9,"recipe":["Ire","Ire","Despair"],"skill":48006,"stats":["15% increased Attack Area Damage","12% increased Area of Effect for Attacks"],"stringId":"area_attacks28"},"48007":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":36302,"orbit":0}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":48007,"stats":[],"stringId":"mastery_mana165"},"48014":{"connections":[],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Honourless","orbit":5,"orbitIndex":63,"recipe":["Ire","Guilt","Fear"],"skill":48014,"stats":["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently","50% increased Melee Damage against Immobilised Enemies"],"stringId":"melee51_"},"48026":{"connections":[{"id":65439,"orbit":0},{"id":6623,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":14,"skill":48026,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners3"},"48030":{"connections":[{"id":62436,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":1,"skill":48030,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield12"},"48035":{"connections":[{"id":11329,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":3,"skill":48035,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration28"},"48079":{"connectionArt":"CharacterPlanned","connections":[{"id":60014,"orbit":-7}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":48079,"stats":["10% increased Bleeding Duration","20% chance for Attack Hits to apply Incision"],"stringId":"oracle_bleed2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48103":{"connections":[{"id":52875,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","isNotable":true,"name":"Forcewave","orbit":2,"orbitIndex":8,"recipe":["Greed","Paranoia","Paranoia"],"skill":48103,"stats":["20% increased Stun Buildup","20% increased Knockback Distance","20% increased Physical Damage"],"stringId":"knockback18"},"48116":{"connections":[{"id":21112,"orbit":0},{"id":34015,"orbit":0},{"id":18624,"orbit":0}],"group":1483,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48116,"stats":["+5 to any Attribute"],"stringId":"dexterity52"},"48121":{"connections":[{"id":24438,"orbit":-5}],"group":516,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","orbit":0,"orbitIndex":0,"skill":48121,"stats":["Totems gain +12% to all Elemental Resistances"],"stringId":"totems47_"},"48135":{"connections":[{"id":12750,"orbit":0}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":12,"skill":48135,"stats":["10% increased Charm Charges gained"],"stringId":"charms21"},"48137":{"connections":[{"id":33887,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":11,"skill":48137,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow16"},"48160":{"connectionArt":"CharacterPlanned","connections":[{"id":37778,"orbit":2147483647}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Ally Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":15,"skill":48160,"stats":["Allies in your Presence deal 20% increased Damage","10% reduced Damage"],"stringId":"oracle_self_sacrificing2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48171":{"connections":[],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":13,"skill":48171,"stats":["12% increased Cold Damage"],"stringId":"cold21"},"48198":{"connections":[{"id":29361,"orbit":3},{"id":65437,"orbit":-5},{"id":40068,"orbit":-6},{"id":1215,"orbit":0},{"id":13411,"orbit":6}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","isNotable":true,"name":"Step Like Mist","orbit":4,"orbitIndex":12,"skill":48198,"stats":["4% increased Movement Speed","15% increased Mana Regeneration Rate","+5 to Dexterity and Intelligence"],"stringId":"shadow_monk_notable2"},"48215":{"connections":[{"id":516,"orbit":0},{"id":7201,"orbit":0},{"id":64488,"orbit":0},{"id":61347,"orbit":0}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Headshot","orbit":0,"orbitIndex":0,"recipe":["Fear","Ire","Suffering"],"skill":48215,"stats":["Projectiles have 30% increased Critical Damage Bonus against Enemies further than 6m","Projectiles have 20% increased Critical Hit Chance against Enemies further than 6m","25% chance to inflict Daze with Hits against Enemies further than 6m"],"stringId":"projectiles36"},"48240":{"connections":[{"id":48505,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Quick Recovery","orbit":3,"orbitIndex":15,"recipe":["Despair","Suffering","Greed"],"skill":48240,"stats":["40% increased Stun Recovery","Regenerate 5% of maximum Life over 1 second when Stunned"],"stringId":"stun_threshold10"},"48264":{"connections":[{"id":12964,"orbit":0}],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":1,"skill":48264,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras29"},"48267":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":48267,"stats":[],"stringId":"mastery_fire117"},"48290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[{"id":55180,"orbit":0},{"id":49088,"orbit":0}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":15,"skill":48290,"stats":[],"stringId":"mastery_miniondefence180"},"48305":{"connections":[{"id":37629,"orbit":6}],"group":605,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48305,"stats":["+5 to any Attribute"],"stringId":"strength6"},"48314":{"connections":[{"id":61896,"orbit":5},{"id":3348,"orbit":-7},{"id":55897,"orbit":-3}],"group":108,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":48314,"stats":["3% increased Skill Speed while Shapeshifted"],"stringId":"wolf5"},"48387":{"connections":[{"id":34415,"orbit":-4}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":5,"orbitIndex":56,"skill":48387,"stats":["12% increased Physical Damage"],"stringId":"physical53"},"48401":{"connections":[{"id":35987,"orbit":0},{"id":61312,"orbit":0},{"id":10909,"orbit":5}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":48401,"stats":["+5 to any Attribute"],"stringId":"dexterity23_"},"48418":{"connections":[{"id":38235,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Hefty Unit","orbit":2,"orbitIndex":6,"recipe":["Ire","Disgust","Suffering"],"skill":48418,"stats":["+3 to Stun Threshold per Strength"],"stringId":"stun_threshold24_"},"48429":{"connections":[{"id":58714,"orbit":0},{"id":36169,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":3,"orbitIndex":20,"skill":48429,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades7"},"48462":{"connections":[{"id":11094,"orbit":5},{"id":62803,"orbit":5}],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Effect","orbit":7,"orbitIndex":15,"skill":48462,"stats":["Charms applied to you have 10% increased Effect"],"stringId":"charms12"},"48505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":492,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":18,"skill":48505,"stats":[],"stringId":"mastery_life142"},"48524":{"connections":[{"id":43818,"orbit":0}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Blood Transfusion","orbit":2,"orbitIndex":10,"recipe":["Paranoia","Paranoia","Suffering"],"skill":48524,"stats":["25% increased Life Regeneration rate","25% of Spell Mana Cost Converted to Life Cost"],"stringId":"life_costs9"},"48530":{"connections":[{"id":39130,"orbit":0},{"id":4623,"orbit":0}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Spell Damage and Costs","orbit":2,"orbitIndex":0,"skill":48530,"stats":["6% increased Spell Damage with Spells that cost Life","8% of Spell Mana Cost Converted to Life Cost"],"stringId":"life_costs4"},"48531":{"connections":[{"id":13987,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":1,"orbitIndex":7,"skill":48531,"stats":["3% increased Melee Attack Speed"],"stringId":"melee26"},"48537":{"ascendancyName":"Smith of Kitava","connections":[],"group":25,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds","isNotable":true,"name":"Forged in Flame","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":48537,"stats":["Modifiers to Maximum Fire Resistance also grant Maximum Cold and Lightning Resistance"],"stringId":"AscendancyWarrior3Notable5"},"48544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":40166,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":48544,"stats":[],"stringId":"mastery_attack278"},"48551":{"ascendancyName":"Blood Mage","connections":[{"id":52703,"orbit":9}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":48551,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancyWitch2Small2"},"48552":{"connections":[{"id":43036,"orbit":0},{"id":7960,"orbit":0},{"id":23825,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48552,"stats":["+5 to any Attribute"],"stringId":"attributes13"},"48565":{"connections":[{"id":47242,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","isNotable":true,"name":"Bringer of Order","orbit":3,"orbitIndex":2,"recipe":["Envy","Fear","Disgust"],"skill":48565,"stats":["20% increased Damage","Minions deal 20% increased Damage"],"stringId":"sentinels10"},"48568":{"connections":[{"id":16489,"orbit":0}],"group":980,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48568,"stats":["+5 to any Attribute"],"stringId":"attributes67"},"48581":{"connections":[{"id":33242,"orbit":0},{"id":13387,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isNotable":true,"name":"Exploit the Elements","orbit":6,"orbitIndex":0,"recipe":["Greed","Fear","Isolation"],"skill":48581,"stats":["24% increased Damage with Hits against Enemies affected by Elemental Ailments","30% increased chance to inflict Ailments against Rare or Unique Enemies"],"stringId":"exploiting_elemental_ailments16"},"48583":{"connections":[{"id":58783,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech. Armour and Evasion while Leeching","orbit":2,"orbitIndex":23,"skill":48583,"stats":["6% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech2"},"48585":{"connections":[{"id":20831,"orbit":0},{"id":56325,"orbit":0}],"group":1036,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion and Reduced Movement Penalty","orbit":0,"orbitIndex":0,"skill":48585,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion9"},"48588":{"connections":[{"id":2455,"orbit":0},{"id":13081,"orbit":0}],"group":801,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":14,"skill":48588,"stats":["8% increased Projectile Damage"],"stringId":"projectiles20"},"48589":{"connections":[{"id":7922,"orbit":-6}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":11,"skill":48589,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks21"},"48611":{"connections":[{"id":4271,"orbit":0},{"id":46554,"orbit":0}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":0,"skill":48611,"stats":["Minions have +8% to all Elemental Resistances"],"stringId":"minion_defence28"},"48614":{"connections":[{"id":9018,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Area and Presence","orbit":7,"orbitIndex":1,"skill":48614,"stats":["20% increased Presence Area of Effect","3% reduced Area of Effect"],"stringId":"auras35"},"48617":{"connections":[{"id":1915,"orbit":0},{"id":11667,"orbit":0},{"id":15839,"orbit":0},{"id":6266,"orbit":0},{"id":2978,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","isNotable":true,"name":"Hunter","orbit":7,"orbitIndex":3,"recipe":["Fear","Guilt","Disgust"],"skill":48617,"stats":["50% increased Damage against Demons","50% increased Duration of Ailments on Beasts","50% increased Critical Hit Chance against Humanoids","50% increased Immobilisation buildup against Constructs"],"stringId":"mercenary5"},"48618":{"connections":[{"id":37327,"orbit":7}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":12,"skill":48618,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana28"},"48631":{"connections":[{"id":35426,"orbit":0},{"id":59006,"orbit":-4}],"group":501,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48631,"stats":["+5 to any Attribute"],"stringId":"attributes65"},"48635":{"connections":[{"id":63526,"orbit":0},{"id":28361,"orbit":4},{"id":43444,"orbit":-4}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48635,"stats":["+5 to any Attribute"],"stringId":"attributes30_"},"48649":{"connections":[{"id":51485,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","isNotable":true,"name":"Insulating Hide","orbit":2,"orbitIndex":22,"recipe":["Guilt","Greed","Suffering"],"skill":48649,"stats":["20% faster start of Energy Shield Recharge while Shapeshifted","+20% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"shapeshifting37"},"48658":{"connections":[],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Shattering","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Despair"],"skill":48658,"stats":["30% increased Freeze Buildup","20% increased Chill Duration on Enemies","20% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze8"},"48660":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":48660,"stats":[],"stringId":"mastery_elemental96"},"48670":{"connections":[{"id":13241,"orbit":0},{"id":53589,"orbit":0},{"id":51299,"orbit":0},{"id":49231,"orbit":0},{"id":1865,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":48670,"stats":["+5 to any Attribute"],"stringId":"strength40_"},"48682":{"ascendancyName":"Warbringer","connections":[{"id":40915,"orbit":4}],"group":43,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Totem Life","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":48682,"stats":["20% increased Totem Life"],"stringId":"AscendancyWarrior2Small7_"},"48699":{"connections":[{"id":14601,"orbit":0}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/frostborn.dds","isNotable":true,"name":"Frostwalker","orbit":7,"orbitIndex":6,"recipe":["Paranoia","Fear","Suffering"],"skill":48699,"stats":["40% reduced Effect of Chill on you","Gain 15% of Damage as Extra Cold Damage while on Chilled Ground"],"stringId":"ground9"},"48714":{"connections":[],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Speed","orbit":2,"orbitIndex":10,"skill":48714,"stats":["3% increased Attack Speed"],"stringId":"melee6"},"48717":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":209,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":7,"orbitIndex":16,"skill":48717,"stats":[],"stringId":"mastery_armour6"},"48734":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds","isNotable":true,"name":"The Howling Primate","orbit":3,"orbitIndex":4,"recipe":["Guilt","Despair","Greed"],"skill":48734,"stats":["15% increased Presence Area of Effect","Aura Skills have 10% increased Magnitudes","+10 to Intelligence"],"stringId":"azmerianimals60_"},"48745":{"connections":[{"id":22558,"orbit":0},{"id":7878,"orbit":-2}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":48745,"stats":["5% increased Block chance"],"stringId":"shield19"},"48761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connectionArt":"CharacterPlanned","connections":[],"group":509,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":48761,"stats":[],"stringId":"oracle_thorns_mastery1___","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48773":{"connections":[{"id":32763,"orbit":0},{"id":38493,"orbit":0},{"id":41873,"orbit":0},{"id":42226,"orbit":0},{"id":52800,"orbit":0}],"group":1509,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48773,"stats":["+5 to any Attribute"],"stringId":"dexterity50"},"48774":{"connections":[{"id":27492,"orbit":2147483647}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Taut Flesh","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Paranoia"],"skill":48774,"stats":["20% of Physical Damage taken Recouped as Life"],"stringId":"life_recoup14"},"48805":{"connections":[{"id":7782,"orbit":4},{"id":26563,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Spell Critical Chance","orbit":7,"orbitIndex":4,"skill":48805,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical_witch11"},"48821":{"connections":[{"id":15618,"orbit":-6}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":6,"skill":48821,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals3"},"48828":{"connectionArt":"CharacterPlanned","connections":[{"id":34840,"orbit":0}],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":4,"skill":48828,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"stringId":"oracle_frenzy_charge3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48833":{"connections":[{"id":4,"orbit":0}],"group":1067,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48833,"stats":["10% increased Lightning Damage"],"stringId":"lightning13"},"48836":{"connections":[{"id":33542,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":7,"orbitIndex":16,"skill":48836,"stats":["+10% Surpassing chance to fire an additional Arrow"],"stringId":"bow22"},"48846":{"connections":[{"id":44566,"orbit":0}],"group":936,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48846,"stats":["12% increased Lightning Damage"],"stringId":"lightning_penetration16"},"48856":{"connections":[{"id":17882,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":4,"skill":48856,"stats":["12% increased Grenade Damage"],"stringId":"grenades17"},"48889":{"connections":[{"id":28038,"orbit":0},{"id":56488,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":16,"skill":48889,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect25"},"48925":{"connections":[{"id":54887,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Blessing of the Moon","orbit":7,"orbitIndex":0,"recipe":["Fear","Guilt","Despair"],"skill":48925,"stats":["8% increased Skill Effect Duration per Enemy you've Frozen in the last 8 seconds, up to 40%"],"stringId":"chill_and_freeze31_"},"48935":{"connectionArt":"CharacterPlanned","connections":[{"id":61367,"orbit":2147483647}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Attack Added Lighting Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":3,"skill":48935,"stats":["Adds 1 to 7 Lightning damage to Attacks"],"stringId":"oracle_flat_lightning1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48974":{"connections":[{"id":47418,"orbit":0},{"id":10738,"orbit":0}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Altered Brain Chemistry","orbit":2,"orbitIndex":15,"recipe":["Ire","Envy","Guilt"],"skill":48974,"stats":["25% increased Mana Recovery from Flasks","10% increased Mana Recovery Rate during Effect of any Mana Flask"],"stringId":"mana_flasks10"},"48979":{"connections":[{"id":51820,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":3,"orbitIndex":10,"skill":48979,"stats":["16% increased Totem Life"],"stringId":"totems52_"},"49023":{"connections":[{"id":12817,"orbit":3},{"id":22975,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":1,"orbitIndex":6,"skill":49023,"stats":["5% increased Block chance"],"stringId":"shield21"},"49046":{"connections":[{"id":8569,"orbit":0}],"group":981,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49046,"stats":["+5 to any Attribute"],"stringId":"attributes38"},"49049":{"ascendancyName":"Chronomancer","connections":[],"group":414,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds","isNotable":true,"name":"Apex of the Moment","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":49049,"stats":["Enemies in your Presence are Slowed by 20%"],"stringId":"AscendancySorceress2Notable7"},"49088":{"connections":[{"id":17394,"orbit":7}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Splintering Force","orbit":0,"orbitIndex":0,"recipe":["Envy","Paranoia","Guilt"],"skill":49088,"stats":["Minions Break Armour equal to 3% of Physical damage dealt"],"stringId":"minion_offence15"},"49107":{"connections":[{"id":54562,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":14,"skill":49107,"stats":["10% increased Critical Hit Chance"],"stringId":"azmerianimals45"},"49110":{"connections":[{"id":54746,"orbit":-7}],"group":1145,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Effect","orbit":0,"orbitIndex":0,"skill":49110,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments14"},"49111":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":49111,"stats":[],"stringId":"mastery_attack_6300"},"49130":{"connections":[],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":19,"skill":49130,"stats":["6% reduced Projectile Speed"],"stringId":"quivers10"},"49150":{"connections":[{"id":36759,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Precise Invocations","orbit":3,"orbitIndex":7,"recipe":["Envy","Ire","Isolation"],"skill":49150,"stats":["Invocated Spells have 30% increased Critical Hit Chance"],"stringId":"triggers28"},"49153":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Comradery","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":66,"skill":49153,"stats":["30% increased Damage","Minions deal 30% increased Damage"],"stringId":"oracle_damage_and_minions4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49165":{"ascendancyName":"Deadeye","connections":[{"id":59913,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Mark Effect","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":8,"orbitIndex":27,"skill":49165,"stats":["12% increased Effect of your Mark Skills"],"stringId":"AscendancyRanger1Small7"},"49172":{"connections":[{"id":33730,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":9,"skill":49172,"stats":["3% increased Skill Speed with Channelling Skills"],"stringId":"channelling5"},"49189":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds","isNotable":true,"name":"Storm's Recollection","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":9,"orbitIndex":17,"skill":49189,"stats":["Remnants can be collected from 50% further away","Remnants you create reappear once, 3 seconds after being collected"],"stringId":"AscendancySorceress1Notable9"},"49192":{"connections":[{"id":43396,"orbit":0},{"id":41615,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":12,"skill":49192,"stats":["20% increased Totem Placement speed"],"stringId":"totems23"},"49198":{"connections":[{"id":49023,"orbit":3}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":7,"orbitIndex":22,"skill":49198,"stats":["5% increased Block chance"],"stringId":"shield22"},"49214":{"connections":[{"id":50767,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Blood of the Wolf","orbit":0,"orbitIndex":0,"recipe":["Isolation","Ire","Despair"],"skill":49214,"stats":["15% increased amount of Life Leeched while Shapeshifted","15% increased Life Regeneration rate while Shapeshifted","+1% to Maximum Cold Resistance while Shapeshifted"],"stringId":"wolf8"},"49220":{"connections":[{"id":10429,"orbit":0},{"id":44223,"orbit":-3},{"id":53960,"orbit":-6},{"id":21336,"orbit":5},{"id":36778,"orbit":6}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","isNotable":true,"name":"Flow Like Water","orbit":4,"orbitIndex":12,"skill":49220,"stats":["8% increased Attack and Cast Speed","+5 to Dexterity and Intelligence"],"stringId":"shadow_monk_notable1"},"49231":{"connections":[{"id":43183,"orbit":0}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":0,"skill":49231,"stats":["3% increased Attack Speed"],"stringId":"attack_speed9"},"49235":{"connections":[{"id":42077,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":7,"skill":49235,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery30__"},"49256":{"connections":[{"id":14439,"orbit":4}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":3,"orbitIndex":12,"skill":49256,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour6_"},"49258":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":66,"skill":49258,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":49259,"stats":[],"stringId":"mastery_warcry_6794"},"49280":{"connections":[{"id":36170,"orbit":3}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":49280,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion9"},"49285":{"connections":[{"id":364,"orbit":9}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":22,"skill":49285,"stats":["+8 to Strength"],"stringId":"attributes103"},"49291":{"connections":[{"id":57945,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charge Generation","orbit":7,"orbitIndex":9,"skill":49291,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks8"},"49320":{"connections":[{"id":52215,"orbit":0}],"group":1493,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Chance","orbit":6,"orbitIndex":31,"skill":49320,"stats":["10% increased Critical Hit Chance with Daggers"],"stringId":"dagger10_"},"49340":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":49,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds","isNotable":true,"name":"Support Straps","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":49340,"stats":["Body Armour grants 20% increased Strength"],"stringId":"AscendancyWarrior3Notable6_4_"},"49356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"First Principle of the Hollow","orbit":3,"orbitIndex":4,"recipe":["Paranoia","Despair","Disgust"],"skill":49356,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","+5% to Cold Resistance","+5% to Lightning Resistance"],"stringId":"evasion_and_energy_shield31"},"49357":{"connections":[{"id":32194,"orbit":0},{"id":51618,"orbit":-9}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":0,"skill":49357,"stats":["+5 to any Attribute"],"stringId":"intelligence33_"},"49363":{"connections":[],"flavourText":"The world is a pattern, moving in natural waves.\\nWith enough force, those waves can be made to converge...","group":578,"icon":"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds","isKeystone":true,"name":"Wildsurge Incantation","orbit":0,"orbitIndex":0,"skill":49363,"stats":["Storm and Plant Spells:","deal 50% more damage","cost 50% less","have 75% less duration"],"stringId":"passive_keystone_wildsurge_incantation"},"49370":{"connections":[{"id":6502,"orbit":0}],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Morning Star","orbit":2,"orbitIndex":18,"skill":49370,"stats":["30% increased Critical Hit Chance with Flails","20% increased Critical Damage Bonus with Flails"],"stringId":"flail11"},"49380":{"ascendancyName":"Warbringer","connections":[{"id":36659,"orbit":-7}],"group":28,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour Break","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":49380,"stats":["Break 25% increased Armour"],"stringId":"AscendancyWarrior2Small2"},"49388":{"connections":[{"id":37304,"orbit":0},{"id":38215,"orbit":-7},{"id":4806,"orbit":7}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental","orbit":2,"orbitIndex":19,"skill":49388,"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"stringId":"elemental17"},"49391":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":612,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":49391,"stats":[],"stringId":"mastery_block31"},"49394":{"connections":[{"id":23786,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Critical Bleeding Effect","orbit":7,"orbitIndex":19,"skill":49394,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"stringId":"bleed2"},"49406":{"connections":[{"id":52125,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":45,"skill":49406,"stats":["10% increased Projectile Damage"],"stringId":"ranged43"},"49455":{"connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":5,"skill":49455,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield23"},"49461":{"connections":[{"id":50912,"orbit":2}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Speed","orbit":2,"orbitIndex":23,"skill":49461,"stats":["3% increased Attack Speed"],"stringId":"attack48"},"49466":{"connections":[{"id":30871,"orbit":0}],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":12,"skill":49466,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks13"},"49473":{"connections":[{"id":61104,"orbit":0}],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":0,"orbitIndex":0,"skill":49473,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed42"},"49485":{"connections":[{"id":12174,"orbit":-9},{"id":49107,"orbit":9}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Dexterity","orbit":2,"orbitIndex":18,"skill":49485,"stats":["+8 to Dexterity"],"stringId":"azmerianimals47"},"49497":{"connections":[{"id":23244,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":6,"skill":49497,"stats":["5% increased Culling Strike Threshold"],"stringId":"slaying3"},"49503":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1568,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Mana Flask Charges","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":49503,"stats":["20% increased Mana Flask Charges gained"],"stringId":"AscendancyRanger3Small7"},"49512":{"connections":[{"id":61419,"orbit":0},{"id":15885,"orbit":0},{"id":5936,"orbit":0}],"group":768,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49512,"stats":["+5 to any Attribute"],"stringId":"intelligence46"},"49537":{"connections":[],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Speed with Elemental Skills","orbit":3,"orbitIndex":16,"skill":49537,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental7"},"49543":{"connectionArt":"CharacterPlanned","connections":[{"id":13108,"orbit":0}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/minionattackspeed.dds","name":"Ally Attack and Cast Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":23,"skill":49543,"stats":["3% reduced Skill Speed","Allies in your Presence have 6% increased Attack Speed","Allies in your Presence have 6% increased Cast Speed"],"stringId":"oracle_self_sacrificing4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49545":{"connections":[{"id":64851,"orbit":2}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":7,"orbitIndex":13,"skill":49545,"stats":["20% increased Parry Damage"],"stringId":"deflect13"},"49547":{"connections":[],"flavourText":"Hope is a mistake. Pain is the only truth.","group":454,"icon":"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds","isKeystone":true,"name":"Scarred Faith","orbit":0,"orbitIndex":0,"skill":49547,"stats":["5% of Physical Damage prevented Recouped as Energy Shield per enemy Power","Energy Shield does not Recharge","You cannot Recover Energy Shield from Regeneration","You cannot Recover Energy Shield to above Armour"],"stringId":"passive_keystone_alternate_es_recovery"},"49550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Prolonged Fury","orbit":7,"orbitIndex":12,"recipe":["Ire","Greed","Despair"],"skill":49550,"stats":["Inherent loss of Rage is 25% slower"],"stringId":"rage10"},"49593":{"connections":[{"id":4725,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":7,"orbitIndex":21,"skill":49593,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels4"},"49618":{"connections":[{"id":38663,"orbit":0},{"id":55348,"orbit":0}],"group":644,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Deadly Flourish","orbit":0,"orbitIndex":0,"recipe":["Envy","Ire","Guilt"],"skill":49618,"stats":["25% increased Melee Critical Hit Chance"],"stringId":"melee39"},"49633":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":854,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":49633,"stats":[],"stringId":"mastery_energy_shield_6483"},"49642":{"connections":[{"id":4882,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":1,"skill":49642,"stats":["15% increased Totem Damage"],"stringId":"totems6"},"49657":{"connections":[{"id":54417,"orbit":0},{"id":63526,"orbit":6},{"id":43578,"orbit":6},{"id":58109,"orbit":0}],"group":823,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":33,"skill":49657,"stats":["+5 to any Attribute"],"stringId":"dexterity30_"},"49661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Perfectly Placed Knife","orbit":1,"orbitIndex":2,"recipe":["Fear","Paranoia","Isolation"],"skill":49661,"stats":["25% increased Critical Hit Chance against Bleeding Enemies","20% chance to Aggravate Bleeding on targets you Critically Hit with Attacks"],"stringId":"bleed12"},"49691":{"connections":[{"id":13828,"orbit":0},{"id":31409,"orbit":0},{"id":61106,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":21,"skill":49691,"stats":["+16 to Evasion Rating"],"stringId":"evasion12"},"49696":{"connections":[{"id":10273,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":12,"skill":49696,"stats":["+3 to all Attributes"],"stringId":"all_attributes13"},"49734":{"connections":[{"id":46741,"orbit":0},{"id":9414,"orbit":0},{"id":32768,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49734,"stats":["+5 to any Attribute"],"stringId":"attributes55"},"49740":{"connections":[{"id":27274,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Shattered Crystal","orbit":7,"orbitIndex":0,"recipe":["Suffering","Fear","Ire"],"skill":49740,"stats":["60% reduced Ice Crystal Life"],"stringId":"cold_penetration14"},"49759":{"ascendancyName":"Stormweaver","connections":[{"id":2857,"orbit":6}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Shock Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":71,"skill":49759,"stats":["20% increased chance to Shock"],"stringId":"AscendancySorceress1Small5"},"49769":{"connectionArt":"CharacterPlanned","connections":[{"id":21374,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Corruption Endures","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":21,"skill":49769,"stats":["7% chance to Avoid Death from Hits"],"stringId":"oracle_beast_corruption15_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49799":{"connections":[{"id":46224,"orbit":0}],"group":995,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":20,"skill":49799,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks5"},"49804":{"connections":[{"id":24035,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":22,"skill":49804,"stats":["10% increased Exposure Effect"],"stringId":"elemental58_"},"49929":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":147,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Everlasting Bloom","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":0,"skill":49929,"stats":["30% increased Skill Effect Duration"],"stringId":"oracle_duration_physical9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49938":{"connections":[{"id":26196,"orbit":0},{"id":28002,"orbit":0},{"id":51795,"orbit":0},{"id":18822,"orbit":0},{"id":15580,"orbit":0}],"group":368,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49938,"stats":["+5 to any Attribute"],"stringId":"strength13"},"49952":{"connections":[{"id":13856,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":6,"skill":49952,"stats":["12% increased Magnitude of Ailments you inflict"],"stringId":"slow_attacks4"},"49968":{"connections":[{"id":20008,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Stun Buildup","orbit":1,"orbitIndex":5,"skill":49968,"stats":["18% increased Stun Buildup with Melee Damage"],"stringId":"ranged23"},"49976":{"connections":[{"id":62936,"orbit":7},{"id":47976,"orbit":-3}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":7,"orbitIndex":5,"skill":49976,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"mana23"},"49984":{"connections":[],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Spellblade","orbit":5,"orbitIndex":57,"recipe":["Despair","Fear","Fear"],"skill":49984,"stats":["32% increased Spell Damage while wielding a Melee Weapon","+10 to Dexterity"],"stringId":"spells34"},"49993":{"connections":[{"id":40632,"orbit":2},{"id":64434,"orbit":0},{"id":7526,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":8,"skill":49993,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect23"},"49996":{"connections":[{"id":32183,"orbit":0},{"id":38215,"orbit":-4},{"id":5163,"orbit":3},{"id":33463,"orbit":0}],"group":1380,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49996,"stats":["+5 to any Attribute"],"stringId":"attributes35"},"50023":{"connections":[{"id":4921,"orbit":0},{"id":259,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Invigorating Grandeur","orbit":4,"orbitIndex":39,"recipe":["Guilt","Fear","Fear"],"skill":50023,"stats":["Recover 1% of maximum Life per Glory consumed"],"stringId":"glory6_"},"50062":{"connections":[{"id":37641,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Barrier of Venarius","orbit":2,"orbitIndex":2,"recipe":["Despair","Greed","Envy"],"skill":50062,"stats":["20% increased maximum Energy Shield","25% reduced Armour Break taken","Defend with 120% of Armour while not on Low Energy Shield"],"stringId":"energy_shield_and_armour13"},"50084":{"connections":[{"id":61525,"orbit":0}],"group":722,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Spell and Attack Damage","orbit":0,"orbitIndex":0,"skill":50084,"stats":["10% increased Spell Damage","10% increased Attack Damage"],"stringId":"placeholder2"},"50098":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":11771,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds","isNotable":true,"name":"Waking Dream","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":5,"orbitIndex":16,"skill":50098,"stats":["Grants Skill: Into the Breach"],"stringId":"AscendancyMonk3Notable5"},"50104":{"connections":[{"id":47168,"orbit":0},{"id":37594,"orbit":0},{"id":7960,"orbit":0},{"id":46742,"orbit":0},{"id":44191,"orbit":-8}],"group":512,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":50104,"stats":["+5 to any Attribute"],"stringId":"intelligence51"},"50107":{"connections":[{"id":50881,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect on Self","orbit":2,"orbitIndex":16,"skill":50107,"stats":["15% reduced effect of Curses on you"],"stringId":"curses26"},"50118":{"connections":[{"id":55450,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Resistance and Life","orbit":1,"orbitIndex":4,"skill":50118,"stats":["Companions have +12% to all Elemental Resistances","Companions have 12% increased maximum Life"],"stringId":"companions38"},"50121":{"connections":[{"id":3128,"orbit":0}],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":50121,"stats":["10% increased Cold Damage"],"stringId":"cold11"},"50124":{"connections":[{"id":62237,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":4,"skill":50124,"stats":["+2% to Cold Resistance","8% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion33"},"50142":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":58,"skill":50142,"stats":["15% increased Lightning Damage"],"stringId":"oracle_rust_king7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50146":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":3,"orbitIndex":8,"skill":50146,"stats":[],"stringId":"mastery_buckler281"},"50150":{"connections":[{"id":37279,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":12,"skill":50150,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning46"},"50177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":451,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":50177,"stats":[],"stringId":"mastery_cold_6393"},"50184":{"connectionArt":"CharacterPlanned","connections":[{"id":46069,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":1,"skill":50184,"stats":["12% increased Magnitude of Poison you inflict"],"stringId":"oracle_poison3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50192":{"ascendancyName":"Blood Mage","connections":[{"id":31223,"orbit":-9}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":50192,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch2Small8"},"50216":{"connections":[{"id":44951,"orbit":3},{"id":17655,"orbit":4}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Skill Speed","orbit":2,"orbitIndex":18,"skill":50216,"stats":["2% increased Skill Speed","5% increased Mana Regeneration Rate"],"stringId":"mana2"},"50219":{"ascendancyName":"Chronomancer","connections":[{"id":42035,"orbit":0}],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":2,"orbitIndex":21,"skill":50219,"stats":["8% increased Area of Effect"],"stringId":"AscendancySorceress2Small3"},"50228":{"connections":[{"id":20511,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":50228,"stats":["10% increased Fire Damage"],"stringId":"warcries43"},"50239":{"connections":[{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","isNotable":true,"name":"Mutewind Agility","orbit":7,"orbitIndex":5,"recipe":["Suffering","Envy","Suffering"],"skill":50239,"stats":["3% increased Movement Speed","+8% to Cold Resistance","+30% of Armour also applies to Cold Damage"],"stringId":"armour_and_evasion37"},"50253":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":370,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Aftershocks","orbit":0,"orbitIndex":0,"recipe":["Despair","Guilt","Greed"],"skill":50253,"stats":["Slam Skills you use yourself have 30% increased Aftershock Area of Effect"],"stringId":"slams5"},"50268":{"connections":[{"id":2446,"orbit":0}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Cold and Lightning Damage","orbit":2,"orbitIndex":20,"skill":50268,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"stringId":"monkchakra20_"},"50273":{"connections":[{"id":47893,"orbit":0},{"id":63267,"orbit":0},{"id":3131,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Damage","orbit":0,"orbitIndex":0,"skill":50273,"stats":["12% increased Attack Damage while Dual Wielding"],"stringId":"dual_wielding5"},"50277":{"connections":[{"id":50701,"orbit":0}],"group":1373,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50277,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock15"},"50302":{"connections":[{"id":63470,"orbit":0}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","orbit":3,"orbitIndex":11,"skill":50302,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"stringId":"life_costs2"},"50328":{"connections":[{"id":28992,"orbit":0},{"id":10053,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Life and Mana Flask Recovery","orbit":3,"orbitIndex":23,"skill":50328,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks20_"},"50342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":5227,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":17,"skill":50342,"stats":["15% increased Evasion Rating"],"stringId":"evasion15"},"50383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":784,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":50383,"stats":[],"stringId":"mastery_infusion295_"},"50392":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":216,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","isNotable":true,"name":"Brute Strength","orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Isolation"],"skill":50392,"stats":["10% reduced maximum Mana","1% increased Damage per 15 Strength"],"stringId":"strength108_"},"50403":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":50403,"stats":[],"stringId":"mastery_cold6170_"},"50420":{"connections":[{"id":51241,"orbit":-2},{"id":31364,"orbit":0}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":2,"skill":50420,"stats":["10% increased Charm Charges gained"],"stringId":"charms23"},"50423":{"connections":[{"id":38856,"orbit":0},{"id":23364,"orbit":0},{"id":56547,"orbit":0}],"group":673,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":57,"skill":50423,"stats":["+5 to any Attribute"],"stringId":"intelligence39"},"50437":{"connections":[{"id":35987,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":50437,"stats":["15% increased Evasion Rating"],"stringId":"evasion14"},"50459":{"classesStart":["Ranger","Huntress"],"connections":[{"id":46990,"orbit":0},{"id":1583,"orbit":0},{"id":24665,"orbit":0},{"id":41736,"orbit":0},{"id":63493,"orbit":0},{"id":36365,"orbit":0},{"id":13828,"orbit":0},{"id":56651,"orbit":0}],"group":912,"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","name":"RANGER","orbit":0,"orbitIndex":0,"skill":50459,"stats":[],"stringId":"ranger596"},"50469":{"connections":[{"id":32701,"orbit":0}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":50469,"stats":["+5 to any Attribute"],"stringId":"attributes66"},"50483":{"connections":[{"id":61842,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":22,"skill":50483,"stats":["Minions have 8% increased Area of Effect"],"stringId":"minion_offence8"},"50485":{"connections":[{"id":22959,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Zone of Control","orbit":2,"orbitIndex":18,"recipe":["Isolation","Isolation","Envy"],"skill":50485,"stats":["20% increased Area of Effect of Curses","10% increased Curse Magnitudes","Enemies you Curse are Hindered, with 15% reduced Movement Speed"],"stringId":"curses6"},"50498":{"connections":[],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Brain Storm","orbit":0,"orbitIndex":0,"recipe":["Suffering","Guilt","Guilt"],"skill":50498,"stats":["20% increased Lightning Damage","15% increased Mana Cost Efficiency"],"stringId":"lightning70"},"50510":{"connections":[{"id":46384,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":18,"skill":50510,"stats":["5% increased Block chance"],"stringId":"shield8"},"50516":{"connections":[{"id":2814,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Flammability Magnitude","orbit":7,"orbitIndex":2,"skill":50516,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"stringId":"area_attacks60"},"50535":{"connections":[{"id":10612,"orbit":2}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":2,"orbitIndex":18,"skill":50535,"stats":["15% increased effect of Archon Buffs on you"],"stringId":"cold19"},"50540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[{"id":16499,"orbit":0}],"group":893,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":50540,"stats":[],"stringId":"mastery_curse69"},"50558":{"connections":[{"id":32194,"orbit":0},{"id":12462,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isSwitchable":true,"name":"Aura Effect","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":36908,"name":"Damage","stats":["8% increased Damage"]}},"orbit":4,"orbitIndex":60,"skill":50558,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras3"},"50561":{"connections":[{"id":12418,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":18,"skill":50561,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries8"},"50562":{"connections":[{"id":43142,"orbit":0}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Barbaric Strength","orbit":7,"orbitIndex":8,"recipe":["Guilt","Despair","Envy"],"skill":50562,"stats":["45% increased Critical Damage Bonus","10% increased Mana Cost of Skills","+10 to Strength"],"stringId":"criticals74"},"50574":{"connections":[{"id":19426,"orbit":0},{"id":46034,"orbit":0}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Life Recoup","orbit":2,"orbitIndex":20,"skill":50574,"stats":["3% of Physical Damage taken Recouped as Life","5% increased Physical Damage"],"stringId":"physical45"},"50588":{"connections":[{"id":6010,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":2,"skill":50588,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy13"},"50609":{"connections":[{"id":11916,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds","isNotable":true,"name":"Hard to Kill","orbit":3,"orbitIndex":18,"skill":50609,"stats":["40% increased Flask Life Recovery rate","Regenerate 0.75% of maximum Life per second"],"stringId":"life_regeneration17_"},"50616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":262,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":50616,"stats":[],"stringId":"mastery_attack1"},"50626":{"connections":[{"id":32597,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":7,"skill":50626,"stats":["+10 to Armour","+5 to maximum Energy Shield"],"stringId":"energy_shield_and_armour1"},"50629":{"connections":[{"id":3218,"orbit":0},{"id":23930,"orbit":0},{"id":24430,"orbit":0}],"group":276,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":50629,"stats":["10% increased Elemental Damage"],"stringId":"elemental3"},"50635":{"connections":[{"id":25971,"orbit":0},{"id":42750,"orbit":5},{"id":9050,"orbit":-5}],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":13,"skill":50635,"stats":["3% increased Attack Speed"],"stringId":"attack_speed5"},"50673":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":58526,"orbit":-2},{"id":62427,"orbit":-2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Avoiding Deflection","orbit":3,"orbitIndex":18,"recipe":["Disgust","Greed","Suffering"],"skill":50673,"stats":["-5% to amount of Damage Prevented by Deflection","20% increased Deflection Rating"],"stringId":"deflect42"},"50687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Coursing Energy","orbit":7,"orbitIndex":14,"recipe":["Envy","Disgust","Paranoia"],"skill":50687,"stats":["40% increased Electrocute Buildup","30% increased Shock Chance against Electrocuted Enemies"],"stringId":"shock_mitigation8_"},"50701":{"connections":[{"id":44932,"orbit":0}],"group":1376,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50701,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock4"},"50715":{"connections":[{"id":50383,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Frozen Limit","orbit":7,"orbitIndex":21,"recipe":["Greed","Envy","Fear"],"skill":50715,"stats":["+1 to maximum Cold Infusions"],"stringId":"infusion23"},"50720":{"connections":[{"id":43557,"orbit":0},{"id":11376,"orbit":-3},{"id":34199,"orbit":3},{"id":30523,"orbit":3}],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":23,"skill":50720,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence35"},"50755":{"connections":[{"id":10131,"orbit":9},{"id":39567,"orbit":0},{"id":19355,"orbit":8}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":5,"skill":50755,"stats":["+8 to Intelligence"],"stringId":"intelligence103"},"50757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":308,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":50757,"stats":[],"stringId":"mastery_evasion108"},"50767":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":121,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":0,"skill":50767,"stats":[],"stringId":"mastery_shapeshifting_6685"},"50795":{"connections":[{"id":58013,"orbit":0},{"id":20744,"orbit":0}],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Careful Aim","orbit":7,"orbitIndex":7,"recipe":["Guilt","Guilt","Paranoia"],"skill":50795,"stats":["15% increased Accuracy Rating","20% increased Projectile Damage"],"stringId":"ranged31"},"50816":{"connections":[{"id":46554,"orbit":-9},{"id":39567,"orbit":0},{"id":37974,"orbit":-5}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":67,"skill":50816,"stats":["+8 to Intelligence"],"stringId":"intelligence102"},"50817":{"connections":[{"id":61355,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Damage from Mana","orbit":7,"orbitIndex":11,"skill":50817,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"monkchakra4"},"50820":{"connections":[{"id":65472,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":17,"skill":50820,"stats":["15% increased Glory generation"],"stringId":"glory25"},"50837":{"connections":[{"id":14598,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Speed","orbit":3,"orbitIndex":15,"skill":50837,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon21"},"50847":{"connections":[{"id":1130,"orbit":0}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":7,"orbitIndex":5,"skill":50847,"stats":["10% increased Damage with Flails"],"stringId":"flail3"},"50879":{"connections":[{"id":14211,"orbit":7}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":4,"skill":50879,"stats":["16% increased Hazard Damage"],"stringId":"hazards13"},"50881":{"connections":[{"id":55420,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect on Self","orbit":2,"orbitIndex":20,"skill":50881,"stats":["15% reduced effect of Curses on you"],"stringId":"curses27"},"50884":{"connections":[{"id":53696,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Primal Sundering","orbit":7,"orbitIndex":14,"recipe":["Guilt","Fear","Ire"],"skill":50884,"stats":["Damage Penetrates 12% Elemental Resistances","8% increased Area of Effect for Attacks"],"stringId":"elemental56"},"50908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Strength of the Deep","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":50908,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","+1 to Maximum Endurance Charges"],"stringId":"oracle_endurance_charge4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50912":{"connections":[],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Imbibed Power","orbit":7,"orbitIndex":20,"recipe":["Ire","Disgust","Paranoia"],"skill":50912,"stats":["6% increased Attack Speed during any Flask Effect","25% increased Damage during any Flask Effect"],"stringId":"attack46"},"50986":{"classesStart":["Duelist","Mercenary"],"connections":[{"id":39383,"orbit":0},{"id":10889,"orbit":0},{"id":62386,"orbit":0},{"id":36252,"orbit":0},{"id":7120,"orbit":0},{"id":55536,"orbit":0},{"id":59915,"orbit":0}],"group":825,"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","name":"DUELIST","orbit":0,"orbitIndex":0,"skill":50986,"stats":[],"stringId":"duelist597"},"51006":{"connections":[{"id":41877,"orbit":0}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":3,"orbitIndex":1,"skill":51006,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"mana_flasks9"},"51040":{"connections":[{"id":9652,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":0,"orbitIndex":0,"skill":51040,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"deflect60"},"51048":{"connections":[{"id":17702,"orbit":0},{"id":58814,"orbit":0},{"id":33946,"orbit":0},{"id":30910,"orbit":0}],"group":1108,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":51048,"stats":["+5 to any Attribute"],"stringId":"dexterity76"},"51052":{"connections":[{"id":22558,"orbit":0},{"id":761,"orbit":-8},{"id":51183,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":60,"skill":51052,"stats":["+5 to any Attribute"],"stringId":"strength10"},"51105":{"connections":[{"id":48979,"orbit":0},{"id":21127,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Spirit Bond","orbit":1,"orbitIndex":5,"recipe":["Greed","Ire","Fear"],"skill":51105,"stats":["30% increased Totem Life","30% increased Totem Duration"],"stringId":"totems21"},"51129":{"connections":[{"id":15892,"orbit":0},{"id":48717,"orbit":0}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Pile On","orbit":7,"orbitIndex":16,"recipe":["Isolation","Ire","Ire"],"skill":51129,"stats":["30% increased effect of Fully Broken Armour"],"stringId":"armour_break35"},"51142":{"ascendancyName":"Lich","connections":[{"id":26085,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Mana","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":15373,"name":"Minion Reservation Efficiency","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["6% increased Reservation Efficiency of Minion Skills"]}},"orbit":9,"orbitIndex":135,"skill":51142,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch3Small4"},"51169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Soul Bloom","orbit":7,"orbitIndex":21,"recipe":["Despair","Ire","Isolation"],"skill":51169,"stats":["15% faster start of Energy Shield Recharge"],"stringId":"mana40"},"51183":{"connections":[{"id":45301,"orbit":0},{"id":10635,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":12,"skill":51183,"stats":["10% increased Armour","10% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour26"},"51184":{"connections":[{"id":41965,"orbit":-4},{"id":29502,"orbit":6},{"id":3242,"orbit":-4}],"group":776,"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","isNotable":true,"isSwitchable":true,"name":"Raw Power","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","id":5788,"name":"Raw Destruction","stats":["16% increased Spell Damage","Minions deal 16% increased Damage","+10 to Intelligence"]}},"orbit":0,"orbitIndex":0,"skill":51184,"stats":["20% increased Spell Damage","+10 to Intelligence"],"stringId":"witch_sorceress_notable1"},"51194":{"connections":[{"id":24060,"orbit":2147483647},{"id":18793,"orbit":2147483647},{"id":49512,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":0,"skill":51194,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion11"},"51206":{"connections":[{"id":49642,"orbit":-6}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":17,"skill":51206,"stats":["15% increased Totem Damage"],"stringId":"totems3"},"51210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":51210,"stats":[],"stringId":"mastery_caster_6125"},"51213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":64747,"orbit":5}],"group":1162,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Wasting","orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Despair"],"skill":51213,"stats":["15% increased Duration of Damaging Ailments on Enemies","30% increased Damage with Hits against Enemies affected by Ailments"],"stringId":"ailments39_"},"51234":{"connections":[{"id":15991,"orbit":-2},{"id":27434,"orbit":7}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":2,"orbitIndex":6,"skill":51234,"stats":["15% increased effect of Archon Buffs on you"],"stringId":"lightning56"},"51241":{"connections":[{"id":55118,"orbit":-2}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":10,"skill":51241,"stats":["10% increased Charm Charges gained"],"stringId":"charms22"},"51248":{"connections":[{"id":38292,"orbit":0},{"id":6015,"orbit":4}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":9,"skill":51248,"stats":["10% increased Fire Damage"],"stringId":"fire27"},"51267":{"connections":[{"id":11886,"orbit":0}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":19,"skill":51267,"stats":["15% increased Stun Buildup"],"stringId":"stun26_"},"51299":{"connections":[{"id":35265,"orbit":0},{"id":19802,"orbit":0},{"id":44419,"orbit":0}],"group":595,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":0,"skill":51299,"stats":["+5 to any Attribute"],"stringId":"strength50"},"51303":{"connections":[{"id":38965,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":1,"orbitIndex":11,"skill":51303,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion9"},"51328":{"connections":[{"id":49938,"orbit":9}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":51328,"stats":["12% increased Cold Damage"],"stringId":"cold54"},"51335":{"connections":[{"id":51968,"orbit":-6},{"id":5726,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isNotable":true,"isSwitchable":true,"name":"Affliction Enforcer","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","id":64801,"name":"Jagged Shards","stats":["20% increased Critical Hit Chance for Spells","20% increased Physical Damage"]}},"orbit":7,"orbitIndex":21,"skill":51335,"stats":["40% increased Flammability Magnitude","20% increased Freeze Buildup","20% increased chance to Shock"],"stringId":"fire32"},"51336":{"connections":[{"id":56818,"orbit":4},{"id":53965,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":45,"skill":51336,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks5"},"51369":{"connections":[{"id":56061,"orbit":0},{"id":45503,"orbit":0}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Damage against Burning Enemies","orbit":2,"orbitIndex":6,"skill":51369,"stats":["14% increased Damage with Hits against Burning Enemies"],"stringId":"fire10"},"51394":{"connections":[{"id":29993,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Unimpeded","orbit":3,"orbitIndex":2,"recipe":["Isolation","Envy","Isolation"],"skill":51394,"stats":["24% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells4"},"51416":{"connections":[{"id":32016,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":54,"skill":51416,"stats":["3% increased Cast Speed"],"stringId":"spells17"},"51446":{"connections":[{"id":53647,"orbit":-7},{"id":19750,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Leather Bound Gauntlets","orbit":3,"orbitIndex":16,"recipe":["Greed","Suffering","Ire"],"skill":51446,"stats":["+1 to Evasion Rating per 1 Item Armour on Equipped Gloves"],"stringId":"evasion38_"},"51454":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":522,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":51454,"stats":[],"stringId":"oracle_life_corruption_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51463":{"connections":[{"id":4364,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Attack Damage while Moving","orbit":7,"orbitIndex":14,"skill":51463,"stats":["12% increased Attack Damage while moving"],"stringId":"slow_mitigation10_"},"51485":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":545,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":51485,"stats":[],"stringId":"mastery_shapeshifting_6684"},"51509":{"connections":[{"id":35848,"orbit":7},{"id":9393,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Waters of Life","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Disgust"],"skill":51509,"stats":["Recover 2% of maximum Life when you use a Mana Flask","Mana Flasks gain 0.1 charges per Second"],"stringId":"mana_flasks14"},"51522":{"connections":[{"id":56493,"orbit":-7}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":22,"skill":51522,"stats":["3% increased Attack Speed"],"stringId":"attack_speed58"},"51534":{"connections":[{"id":24483,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":14,"skill":51534,"stats":["16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"stringId":"criticals7"},"51535":{"connections":[{"id":8852,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Slower Leech","orbit":2,"orbitIndex":13,"skill":51535,"stats":["12% increased amount of Life Leeched","Leech Life 5% slower"],"stringId":"life_leech10"},"51546":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds","isNotable":true,"name":"Way of the Mountain","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":9,"orbitIndex":57,"skill":51546,"stats":["100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30","Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings"],"stringId":"AscendancyMonk1Notable6"},"51561":{"connections":[{"id":25312,"orbit":0},{"id":2491,"orbit":0},{"id":7716,"orbit":0}],"group":343,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":51561,"stats":["+5 to any Attribute"],"stringId":"strength71"},"51565":{"connections":[{"id":2335,"orbit":0},{"id":22682,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":6,"skill":51565,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"spells14"},"51583":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":51583,"stats":[],"stringId":"mastery_criticals64"},"51602":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Unsight","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Despair"],"skill":51602,"stats":["Enemies near Enemies you Mark are Blinded","Enemies you Mark cannot deal Critical Hits"],"stringId":"marks27"},"51606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":65207,"orbit":-7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Freedom of Movement","orbit":4,"orbitIndex":48,"recipe":["Greed","Greed","Envy"],"skill":51606,"stats":["20% increased Evasion Rating","10% reduced Slowing Potency of Debuffs on You","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion30"},"51618":{"connectionArt":"CharacterPlanned","connections":[{"id":11580,"orbit":0},{"id":43324,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs and Regeneration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":51618,"stats":["15% increased Life Regeneration rate","6% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_life_corruption1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51672":{"connections":[{"id":31955,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":10,"skill":51672,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour43"},"51683":{"connections":[],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":22,"skill":51683,"stats":["15% increased Totem Damage"],"stringId":"totems5"},"51690":{"ascendancyName":"Titan","connections":[{"id":12000,"orbit":-5}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Life Regeneration","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":6,"orbitIndex":43,"skill":51690,"stats":["Regenerate 0.5% of maximum Life per second"],"stringId":"AscendancyWarrior1Small7"},"51702":{"connections":[],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":16,"skill":51702,"stats":["+8 to Strength"],"stringId":"strength104"},"51707":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":38728,"orbit":5},{"id":41163,"orbit":0}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Enhanced Reflexes","orbit":5,"orbitIndex":66,"recipe":["Fear","Ire","Envy"],"skill":51707,"stats":["20% increased Evasion Rating","Gain Deflection Rating equal to 5% of Evasion Rating","8% increased Dexterity"],"stringId":"evasion32"},"51708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":51708,"stats":[],"stringId":"mastery_evasion_6509"},"51728":{"connections":[{"id":6505,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":2,"orbitIndex":7,"skill":51728,"stats":["15% chance to Pierce an Enemy"],"stringId":"ranged45"},"51732":{"connections":[{"id":26568,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":16,"skill":51732,"stats":["3% increased Attack Speed"],"stringId":"duration_spells8"},"51735":{"connections":[{"id":44707,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":2,"orbitIndex":17,"skill":51735,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield2"},"51737":{"ascendancyName":"Witchhunter","connections":[{"id":8272,"orbit":-8}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":51737,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancyMercenary2Small8_"},"51741":{"connections":[{"id":61834,"orbit":0},{"id":57230,"orbit":-4},{"id":57821,"orbit":0},{"id":45798,"orbit":0},{"id":15424,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":51741,"stats":["+5 to any Attribute"],"stringId":"intelligence25"},"51743":{"connections":[{"id":57617,"orbit":3}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Attack Damage","orbit":4,"orbitIndex":0,"skill":51743,"stats":["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting23"},"51749":{"connections":[{"id":30141,"orbit":0}],"flavourText":"Lay open your veins, and draw power from your own spilled life.","group":139,"icon":"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds","isKeystone":true,"name":"Blood Magic","orbit":0,"orbitIndex":0,"skill":51749,"stats":["You have no Mana","Skill Mana Costs Converted to Life Costs"],"stringId":"passive_keystone_blood_magic"},"51774":{"connections":[{"id":34425,"orbit":2}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":16,"skill":51774,"stats":["15% reduced Volatility Explosion delay"],"stringId":"volatility15"},"51788":{"connections":[{"id":5066,"orbit":-2}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Curse Effect on you","orbit":2,"orbitIndex":4,"skill":51788,"stats":["10% reduced effect of Curses on you"],"stringId":"mercenary7"},"51795":{"connections":[{"id":32271,"orbit":-2},{"id":53632,"orbit":7}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude and Fire Damage","orbit":7,"orbitIndex":12,"skill":51795,"stats":["8% increased Fire Damage","15% increased Flammability Magnitude"],"stringId":"fire22"},"51797":{"connections":[{"id":23939,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":51797,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup7"},"51807":{"connections":[{"id":57089,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":2,"orbitIndex":0,"skill":51807,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions39"},"51812":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":248,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":51812,"stats":[],"stringId":"mastery_attack_6302"},"51820":{"connections":[{"id":21127,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Conduits","orbit":6,"orbitIndex":30,"recipe":["Despair","Suffering","Suffering"],"skill":51820,"stats":["12% increased Attack and Cast Speed if you've summoned a Totem Recently"],"stringId":"totems33_"},"51821":{"connections":[{"id":20115,"orbit":0},{"id":25014,"orbit":0},{"id":39102,"orbit":0}],"group":257,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":51821,"stats":["+5 to any Attribute"],"stringId":"strength51"},"51825":{"connections":[{"id":47363,"orbit":0},{"id":9164,"orbit":0},{"id":13708,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":4,"orbitIndex":45,"skill":51825,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed20"},"51832":{"connections":[{"id":47722,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":2,"orbitIndex":6,"skill":51832,"stats":["16% increased Damage with Warcries"],"stringId":"warcries10"},"51847":{"connections":[{"id":33974,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":4,"orbitIndex":24,"skill":51847,"stats":["8% increased Attack Damage","5% increased Accuracy Rating"],"stringId":"attack31"},"51850":{"connectionArt":"CharacterPlanned","connections":[{"id":9535,"orbit":0},{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Path of the Renegade","orbit":3,"orbitIndex":10,"skill":51850,"stats":["+8% to Chaos Resistance","+20% of Armour also applies to Chaos Damage"],"stringId":"armour_and_evasion45","unlockConstraint":{"nodes":[50239,9535,61309]}},"51867":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":408,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Finality","orbit":0,"orbitIndex":0,"recipe":["Isolation","Guilt","Envy"],"skill":51867,"stats":["120% increased Damage with Hits against Enemies that are on Low Life","5% increased Damage taken while on Low Life"],"stringId":"enemies_on_low_life11"},"51868":{"connections":[{"id":19794,"orbit":3},{"id":38320,"orbit":0}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Molten Carapace","orbit":5,"orbitIndex":64,"recipe":["Guilt","Disgust","Suffering"],"skill":51868,"stats":["50% increased Armour while Ignited","+2% to Maximum Fire Resistance while Ignited","50% increased Fire Damage while Ignited"],"stringId":"ignite_mitigation4"},"51871":{"connections":[{"id":8045,"orbit":0}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Immortal Thirst","orbit":0,"orbitIndex":0,"recipe":["Guilt","Suffering","Guilt"],"skill":51871,"stats":["15% increased maximum Energy Shield","25% increased amount of Mana Leeched"],"stringId":"mana_leech20"},"51891":{"connections":[{"id":25528,"orbit":0}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Lucidity","orbit":7,"orbitIndex":17,"recipe":["Envy","Disgust","Suffering"],"skill":51891,"stats":["8% of Damage is taken from Mana before Life","+15 to Intelligence"],"stringId":"mana19"},"51892":{"connections":[{"id":59387,"orbit":0},{"id":64427,"orbit":0},{"id":44188,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion and Power Charge Duration","orbit":2,"orbitIndex":23,"skill":51892,"stats":["6% increased Power Charge Duration","6% increased Elemental Infusion duration"],"stringId":"power_charges18"},"51903":{"connections":[{"id":55058,"orbit":0},{"id":39347,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":17,"skill":51903,"stats":["10% increased Melee Damage"],"stringId":"melee48_"},"51921":{"connections":[{"id":36629,"orbit":-4}],"group":655,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":51921,"stats":["+5 to any Attribute"],"stringId":"strength42"},"51934":{"connections":[],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Invocated Efficiency","orbit":0,"orbitIndex":0,"recipe":["Isolation","Envy","Paranoia"],"skill":51934,"stats":["10% increased Mana Cost Efficiency","Triggered Spells deal 40% increased Spell Damage"],"stringId":"triggers17"},"51944":{"connections":[{"id":49406,"orbit":0},{"id":51728,"orbit":0},{"id":47683,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":15,"skill":51944,"stats":["10% increased Projectile Damage"],"stringId":"ranged29_"},"51968":{"connections":[],"group":777,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isSwitchable":true,"name":"Elemental Ailment Chance","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","id":18040,"name":"Physical Damage","stats":["10% increased Physical Damage"]}},"orbit":3,"orbitIndex":18,"skill":51968,"stats":["20% increased Flammability Magnitude","10% increased Freeze Buildup","10% increased chance to Shock"],"stringId":"fire3"},"51974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[{"id":25711,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":51974,"stats":[],"stringId":"mastery_fortify7"},"52003":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":772,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":2,"orbitIndex":18,"skill":52003,"stats":[],"stringId":"mastery_cold_6394"},"52038":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":572,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":52038,"stats":[],"stringId":"mastery_aura_6313"},"52053":{"connections":[{"id":14048,"orbit":3},{"id":24120,"orbit":-4}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":16,"skill":52053,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana33"},"52060":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52060,"stats":[],"stringId":"mastery_energy_shield_6493"},"52068":{"ascendancyName":"Warbringer","connections":[],"group":60,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds","isNotable":true,"name":"Turtle Charm","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":52068,"stats":["You take 20% of damage from Blocked Hits","Maximum Block chance is 75%"],"stringId":"AscendancyWarrior2Notable9"},"52106":{"connections":[{"id":44005,"orbit":0},{"id":10295,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":34,"skill":52106,"stats":["3% increased Cast Speed"],"stringId":"cast_speed3"},"52115":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Nurturing Nature","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":52115,"stats":["40% increased Mana Regeneration Rate while on Full Life"],"stringId":"oracle_life_corruption7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"52125":{"connections":[{"id":2847,"orbit":0},{"id":21721,"orbit":0}],"group":819,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":52125,"stats":["+5 to any Attribute"],"stringId":"dexterity79"},"52126":{"connections":[{"id":21885,"orbit":3}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":2,"orbitIndex":0,"skill":52126,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold25"},"52180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Trained Deflection","orbit":1,"orbitIndex":9,"recipe":["Suffering","Despair","Suffering"],"skill":52180,"stats":["Prevent +6% of Damage from Deflected Hits"],"stringId":"deflect58"},"52191":{"connections":[{"id":57724,"orbit":-7}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Event Horizon","orbit":0,"orbitIndex":0,"recipe":["Despair","Isolation","Guilt"],"skill":52191,"stats":["53% increased Chaos Damage","Lose 3% of maximum Life and Energy Shield when you use a Chaos Skill"],"stringId":"chaos33_"},"52199":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":44498,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Overexposure","orbit":0,"orbitIndex":0,"recipe":["Suffering","Isolation","Greed"],"skill":52199,"stats":["30% increased Exposure Effect"],"stringId":"elemental36"},"52215":{"connections":[{"id":56366,"orbit":0}],"group":1516,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Chance","orbit":0,"orbitIndex":0,"skill":52215,"stats":["10% increased Critical Hit Chance with Daggers"],"stringId":"dagger9"},"52220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":226,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":52220,"stats":[],"stringId":"mastery_physical194"},"52229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","isNotable":true,"name":"Secrets of the Orb","orbit":0,"orbitIndex":0,"recipe":["Disgust","Suffering","Despair"],"skill":52229,"stats":["Orb Skills have +1 to Limit"],"stringId":"orb5"},"52241":{"connections":[{"id":94,"orbit":2}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana on Kill","orbit":1,"orbitIndex":3,"skill":52241,"stats":["Recover 1% of maximum Mana on Kill"],"stringId":"mana_regeneration47_"},"52245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds","isNotable":true,"name":"Distant Dreamer","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Envy"],"skill":52245,"stats":["+10% to Chaos Resistance","Gain 5% of Damage as Extra Chaos Damage","50% reduced effect of Withered on you"],"stringId":"monkchaos6"},"52254":{"connections":[{"id":42290,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":14,"skill":52254,"stats":["6% increased Curse Magnitudes"],"stringId":"curses20"},"52257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Conductive Embrace","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Guilt"],"skill":52257,"stats":["+10% to Lightning Resistance","+2% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed"],"stringId":"shock36"},"52260":{"connections":[{"id":3688,"orbit":-2}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":8,"skill":52260,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers8_"},"52274":{"connections":[{"id":3109,"orbit":0},{"id":21077,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":9,"skill":52274,"stats":["12% increased Grenade Damage"],"stringId":"grenades8"},"52295":{"ascendancyName":"Martial Artist","connections":[{"id":39595,"orbit":7}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Evasion and Energy Shield","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":4,"orbitIndex":15,"skill":52295,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"stringId":"AscendancyMonk1Small3"},"52298":{"connections":[{"id":4527,"orbit":0},{"id":26725,"orbit":0},{"id":53308,"orbit":0},{"id":31805,"orbit":0},{"id":52126,"orbit":0}],"group":267,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":52298,"stats":["+5 to any Attribute"],"stringId":"strength61_"},"52300":{"connections":[{"id":53440,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Rage on Hit","orbit":3,"orbitIndex":9,"skill":52300,"stats":["Gain 1 Rage on Melee Axe Hit"],"stringId":"axe12"},"52319":{"connections":[{"id":48305,"orbit":-6}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":52319,"stats":["+5 to any Attribute"],"stringId":"strength5"},"52348":{"connections":[{"id":51206,"orbit":-5},{"id":34487,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Carved Earth","orbit":7,"orbitIndex":15,"recipe":["Suffering","Suffering","Ire"],"skill":52348,"stats":["20% increased Totem Damage","6% increased Attack and Cast Speed if you've summoned a Totem Recently"],"stringId":"totems8"},"52351":{"connections":[{"id":52260,"orbit":0}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":12,"skill":52351,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers7"},"52354":{"connections":[{"id":41171,"orbit":0}],"group":1014,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":52354,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"stringId":"boss_slaying6"},"52361":{"connections":[{"id":26107,"orbit":7}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":2,"orbitIndex":9,"skill":52361,"stats":["10% increased Projectile Damage"],"stringId":"projectiles10"},"52373":{"connections":[{"id":37276,"orbit":-2},{"id":56342,"orbit":7}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":20,"skill":52373,"stats":["+2 to Maximum Rage"],"stringId":"rage1"},"52374":{"ascendancyName":"Oracle","connections":[],"group":21,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds","isNotable":true,"name":"Unnamed Heartwood","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":52374,"stats":["+1 to maximum number of Summoned Totems","Totems die 6 seconds after their Life is reduced to 0"],"stringId":"AscendancyDruid1Notable6"},"52392":{"connections":[{"id":25934,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Singular Purpose","orbit":3,"orbitIndex":17,"recipe":["Disgust","Envy","Fear"],"skill":52392,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"stringId":"two_handed8"},"52395":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":56331,"orbit":0},{"id":26283,"orbit":0},{"id":664,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds","isMultipleChoice":true,"isNotable":true,"name":"Lucid Dreaming","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":5,"orbitIndex":27,"skill":52395,"stats":[],"stringId":"AscendancyMonk3Notable6_Choice"},"52399":{"connections":[{"id":9444,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Damage","orbit":5,"orbitIndex":38,"skill":52399,"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"stringId":"quarterstaff16_"},"52410":{"connections":[],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":4,"orbitIndex":26,"skill":52410,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"buckler10"},"52415":{"connections":[{"id":32655,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Attack Speed with Companion in Presence","orbit":2,"orbitIndex":22,"skill":52415,"stats":["4% increased Attack Speed while your Companion is in your Presence"],"stringId":"companions32"},"52429":{"connections":[{"id":58930,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":13,"skill":52429,"stats":["3% increased Cast Speed"],"stringId":"cast_speed26"},"52440":{"connections":[{"id":53893,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":2,"orbitIndex":18,"skill":52440,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions40"},"52442":{"connections":[],"group":826,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":52442,"stats":["3% increased Attack Speed"],"stringId":"attack_speed1"},"52445":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1364,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52445,"stats":[],"stringId":"mastery_evasion_and_energy_shield_6498"},"52448":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds","isNotable":true,"name":"...and Scatter Them to the Winds","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":53,"skill":52448,"stats":["Trigger Elemental Expression on Melee Critical Hit","Grants Skill: Elemental Expression"],"stringId":"AscendancyMonk2Notable7_"},"52454":{"connections":[{"id":46604,"orbit":3}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":21,"skill":52454,"stats":["7% increased Chaos Damage"],"stringId":"chaos15"},"52462":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":496,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":52462,"stats":[],"stringId":"mastery_armour5_"},"52464":{"connections":[],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":6,"orbitIndex":24,"skill":52464,"stats":["Recover 1% of maximum Life on Kill"],"stringId":"life_on_kill5"},"52501":{"connections":[{"id":60700,"orbit":2147483647}],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Empowered Attack Freeze Buildup","orbit":7,"orbitIndex":8,"skill":52501,"stats":["20% increased Freeze Buildup with Empowered Attacks"],"stringId":"cold50"},"52537":{"connections":[],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Penetration","orbit":2,"orbitIndex":13,"skill":52537,"stats":["10% increased Magnitude of Chill you inflict"],"stringId":"cold_penetration4"},"52556":{"connections":[{"id":16347,"orbit":-7},{"id":28304,"orbit":0}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":8,"skill":52556,"stats":["+2 to Maximum Rage"],"stringId":"rage3"},"52568":{"connections":[{"id":3665,"orbit":-7},{"id":62779,"orbit":0}],"group":1026,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds","isNotable":true,"name":"Bond of the Owl","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Despair"],"skill":52568,"stats":["Gain 6% of Damage as Extra Cold Damage","Companions gain 12% Damage as extra Cold Damage"],"stringId":"companions51"},"52574":{"connections":[{"id":55478,"orbit":-7}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":7,"orbitIndex":21,"skill":52574,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks21"},"52576":{"connections":[{"id":64550,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":9,"skill":52576,"stats":["20% increased Damage against Immobilised Enemies"],"stringId":"immobilisation4"},"52615":{"connections":[],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":7,"orbitIndex":18,"skill":52615,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells6"},"52618":{"connections":[{"id":32777,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Boon of the Beast","orbit":3,"orbitIndex":18,"recipe":["Fear","Suffering","Paranoia"],"skill":52618,"stats":["When you Shapeshift to Human form, gain 10% increased Spell Damage per second you were Shapeshifted, up to a maximum of 80%, for 8 seconds"],"stringId":"shapeshifting19"},"52630":{"connections":[{"id":61800,"orbit":0},{"id":28371,"orbit":0}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Critical Damage vs Full Life","orbit":7,"orbitIndex":13,"skill":52630,"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"stringId":"enemies_on_full_life2"},"52659":{"connections":[{"id":10362,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":20,"skill":52659,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration2"},"52669":{"connections":[{"id":55188,"orbit":-3}],"group":98,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Flamekeeper","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Ire"],"skill":52669,"stats":["20% increased Fire Damage","15% increased Ignite Magnitude","30% reduced Magnitude of Ignite on you"],"stringId":"fire75"},"52676":{"connections":[],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":7,"orbitIndex":3,"skill":52676,"stats":["16% increased Minion Duration"],"stringId":"minion_reservation9"},"52684":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":8115,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Eroding Chains","orbit":4,"orbitIndex":32,"recipe":["Guilt","Fear","Guilt"],"skill":52684,"stats":["Break 50% of Armour on Pinning an Enemy"],"stringId":"armour_break38"},"52695":{"connections":[{"id":57230,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":1,"skill":52695,"stats":["10% increased Physical Damage"],"stringId":"chaos6"},"52703":{"ascendancyName":"Blood Mage","connections":[],"group":979,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds","isNotable":true,"name":"Gore Spike","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":52703,"stats":["1% increased Critical Damage Bonus per 50 current Life"],"stringId":"AscendancyWitch2Notable1"},"52743":{"connections":[{"id":34541,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":10,"skill":52743,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"deflect47"},"52746":{"connections":[{"id":9796,"orbit":0},{"id":64471,"orbit":3}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":52746,"stats":["12% increased Fire Damage"],"stringId":"fire14"},"52764":{"connections":[{"id":47606,"orbit":0}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Mystical Rage","orbit":1,"orbitIndex":0,"recipe":["Isolation","Greed","Envy"],"skill":52764,"stats":["Every Rage also grants 2% increased Spell Damage"],"stringId":"rage40"},"52765":{"connections":[],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":52765,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration12"},"52774":{"connections":[{"id":5084,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":52774,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite12"},"52796":{"connections":[{"id":30371,"orbit":-6}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":4,"orbitIndex":66,"skill":52796,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield24"},"52799":{"connections":[{"id":47270,"orbit":-4},{"id":19955,"orbit":4},{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":3,"orbitIndex":0,"skill":52799,"stats":["15% increased Freeze Buildup"],"stringId":"cold10"},"52800":{"connections":[{"id":57615,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":6,"orbitIndex":54,"skill":52800,"stats":["+8% Surpassing chance to fire an additional Arrow"],"stringId":"bow19"},"52803":{"connections":[{"id":59356,"orbit":0}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Hale Traveller","orbit":7,"orbitIndex":0,"recipe":["Envy","Disgust","Disgust"],"skill":52803,"stats":["20% increased Life Recovery from Flasks","Life Flasks gain 0.1 charges per Second"],"stringId":"life_flasks5_"},"52807":{"connections":[{"id":60551,"orbit":0},{"id":61836,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":52807,"stats":["15% increased Presence Area of Effect"],"stringId":"auras13"},"52829":{"connections":[{"id":375,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage and Stun Buildup","orbit":4,"orbitIndex":63,"skill":52829,"stats":["12% increased Stun Buildup","10% increased Damage with Maces"],"stringId":"mace8"},"52836":{"connections":[{"id":11980,"orbit":7},{"id":56806,"orbit":0}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":66,"skill":52836,"stats":["5% increased Block chance"],"stringId":"block11"},"52860":{"connections":[{"id":45494,"orbit":0},{"id":40975,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":12,"skill":52860,"stats":["15% increased Ballista damage"],"stringId":"ballista2"},"52875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":52875,"stats":[],"stringId":"mastery_attack21"},"52971":{"connections":[{"id":21227,"orbit":-2},{"id":25528,"orbit":0}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds","isNotable":true,"name":"The Soul Meridian","orbit":4,"orbitIndex":45,"recipe":["Envy","Disgust","Fear"],"skill":52971,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating","8% faster start of Energy Shield Recharge","10% increased Mana Cost Efficiency","10% increased Reservation Efficiency of Minion Skills"],"stringId":"energy_shield_recovery13"},"52973":{"connections":[{"id":12851,"orbit":0},{"id":57555,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":2,"orbitIndex":11,"skill":52973,"stats":["15% chance to Impale on Spell Hit"],"stringId":"physical8"},"52980":{"connections":[{"id":18970,"orbit":0},{"id":44343,"orbit":-4}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":4,"orbitIndex":48,"skill":52980,"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"stringId":"evasion_and_energy_shield1"},"52993":{"connectionArt":"CharacterPlanned","connections":[{"id":9414,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":52993,"stats":["16% increased Elemental Damage"],"stringId":"oracle_glory_elemental1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53030":{"connections":[{"id":11525,"orbit":0},{"id":48267,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Immolation","orbit":2,"orbitIndex":2,"recipe":["Ire","Despair","Disgust"],"skill":53030,"stats":["25% increased Ignite Magnitude","+10 to Strength"],"stringId":"ignite5"},"53089":{"connections":[{"id":9918,"orbit":0},{"id":10474,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":53089,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks13"},"53094":{"connections":[{"id":38703,"orbit":0},{"id":51048,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":20,"skill":53094,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy36"},"53108":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36822,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds","isNotable":true,"name":"Adaptive Capability","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":53108,"stats":["Attribute Requirements of Gems can be satisified by your highest Attribute"],"stringId":"AscendancyMercenary3Notable6"},"53123":{"connections":[{"id":8421,"orbit":-2},{"id":54982,"orbit":-2},{"id":5862,"orbit":-2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","name":"Shaman","orbit":7,"orbitIndex":18,"skill":53123,"stats":["+3% to all Elemental Resistances"],"stringId":"shaman1"},"53131":{"connections":[{"id":7060,"orbit":0},{"id":46665,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Tukohama's Brew","orbit":7,"orbitIndex":16,"recipe":["Isolation","Paranoia","Greed"],"skill":53131,"stats":["50% of Skill Mana costs Converted to Life Costs during any Life Flask Effect"],"stringId":"life_flasks43"},"53149":{"connections":[{"id":24647,"orbit":-5}],"group":1062,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":22,"skill":53149,"stats":["15% increased Freeze Buildup"],"stringId":"cold29"},"53150":{"connections":[{"id":15270,"orbit":0},{"id":17589,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Sharp Sight","orbit":3,"orbitIndex":18,"recipe":["Guilt","Disgust","Ire"],"skill":53150,"stats":["5% increased Attack Speed","30% increased Accuracy Rating against Rare or Unique Enemies"],"stringId":"accuracy30"},"53166":{"connections":[{"id":26194,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":21,"skill":53166,"stats":["20% increased Presence Area of Effect"],"stringId":"auras9"},"53177":{"connections":[{"id":43944,"orbit":2147483647}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility when Stunned","orbit":2,"orbitIndex":3,"skill":53177,"stats":["50% chance to gain Volatility when you are Stunned"],"stringId":"volatility9"},"53185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds","isNotable":true,"name":"The Winter Owl","orbit":3,"orbitIndex":19,"recipe":["Greed","Greed","Fear"],"skill":53185,"stats":["3% increased Evasion Rating per 10 Intelligence","Gain Accuracy Rating equal to your Intelligence","+10 to Intelligence"],"stringId":"azmerianimals54"},"53187":{"connections":[{"id":35011,"orbit":0},{"id":57775,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Warlord Berserker","orbit":2,"orbitIndex":22,"recipe":["Disgust","Fear","Fear"],"skill":53187,"stats":["40% reduced Presence Area of Effect","Allies in your Presence Regenerate 5 Rage per second if you have gained Rage Recently"],"stringId":"auras24"},"53188":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":53188,"stats":[],"stringId":"mastery_mana158"},"53194":{"connections":[{"id":38130,"orbit":3}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":16,"skill":53194,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries20"},"53196":{"connections":[{"id":46692,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask and Charm Charges Gained","orbit":7,"orbitIndex":12,"skill":53196,"stats":["8% increased Flask and Charm Charges gained"],"stringId":"flasks12"},"53207":{"connections":[{"id":47635,"orbit":0},{"id":56914,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":1,"orbitIndex":4,"skill":53207,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration3"},"53216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":268,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":53216,"stats":[],"stringId":"mastery_warcry252_"},"53261":{"connections":[{"id":30780,"orbit":-2}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Area and Damage","orbit":7,"orbitIndex":11,"skill":53261,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"stringId":"melee61"},"53265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Nature's Bite","orbit":0,"orbitIndex":0,"recipe":["Ire","Despair","Suffering"],"skill":53265,"stats":["20% increased Elemental Damage","15% increased chance to inflict Ailments"],"stringId":"ailments48"},"53266":{"connections":[{"id":13576,"orbit":0},{"id":20387,"orbit":0},{"id":53560,"orbit":0}],"group":994,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":53266,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning7"},"53272":{"connections":[{"id":2560,"orbit":0},{"id":2582,"orbit":0}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":3,"orbitIndex":20,"skill":53272,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect54"},"53280":{"ascendancyName":"Martial Artist","connections":[{"id":41751,"orbit":3}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Attack Speed","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":3,"orbitIndex":3,"skill":53280,"stats":["4% increased Attack Speed"],"stringId":"AscendancyMonk1Small1"},"53294":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":33397,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Burn Away","orbit":0,"orbitIndex":0,"recipe":["Fear","Disgust","Disgust"],"skill":53294,"stats":["15% increased Fire Damage","10% increased Ignite Magnitude","Damage Penetrates 10% Fire Resistance"],"stringId":"fire33"},"53308":{"connections":[{"id":17138,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":5,"skill":53308,"stats":["10% increased Melee Damage"],"stringId":"melee47"},"53320":{"connections":[{"id":43791,"orbit":0}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":22,"skill":53320,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners18"},"53324":{"connections":[],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":8,"skill":53324,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster4"},"53329":{"connections":[{"id":64724,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability and Ignite Magnitude","orbit":2,"orbitIndex":20,"skill":53329,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"stringId":"ignite4"},"53354":{"connections":[{"id":36250,"orbit":4},{"id":33408,"orbit":5},{"id":20289,"orbit":0}],"group":127,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Leech","orbit":0,"orbitIndex":0,"skill":53354,"stats":["10% increased amount of Life Leeched while Shapeshifted"],"stringId":"wolf4"},"53367":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Symbol of Defiance","orbit":3,"orbitIndex":0,"recipe":["Despair","Ire","Greed"],"skill":53367,"stats":["Banner Skills have 30% increased Area of Effect","Banner Skills have 30% increased Duration"],"stringId":"banners11"},"53373":{"connections":[{"id":39517,"orbit":3},{"id":36629,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":4,"orbitIndex":45,"skill":53373,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold26"},"53386":{"connections":[{"id":57388,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":7,"orbitIndex":0,"skill":53386,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals65"},"53396":{"connections":[{"id":10156,"orbit":6}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":53396,"stats":["+5 to any Attribute"],"stringId":"intelligence30"},"53405":{"connections":[{"id":17468,"orbit":0},{"id":16090,"orbit":6},{"id":26798,"orbit":4},{"id":8693,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":53405,"stats":["+5 to any Attribute"],"stringId":"strength58"},"53440":{"connections":[{"id":11306,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Rage on Hit","orbit":3,"orbitIndex":7,"skill":53440,"stats":["Gain 2 Rage on Melee Axe Hit"],"stringId":"axe10"},"53443":{"connections":[{"id":5710,"orbit":-6},{"id":59767,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":8,"skill":53443,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks24"},"53444":{"connections":[{"id":752,"orbit":5}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":4,"orbitIndex":31,"skill":53444,"stats":["12% increased Minion Duration"],"stringId":"minion_reservation3_"},"53471":{"connections":[{"id":11836,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Critical vs Blinded","orbit":7,"orbitIndex":4,"skill":53471,"stats":["12% increased Critical Hit Chance against Blinded Enemies"],"stringId":"blind16"},"53505":{"connections":[{"id":21468,"orbit":6}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":18,"skill":53505,"stats":["Leech Life 8% faster"],"stringId":"life_leech22"},"53524":{"connections":[{"id":32727,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Armour Break","orbit":7,"orbitIndex":19,"skill":53524,"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"stringId":"physical21"},"53527":{"connections":[{"id":58855,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Shattering Blow","orbit":7,"orbitIndex":0,"recipe":["Fear","Guilt","Guilt"],"skill":53527,"stats":["Break 50% of Armour on Heavy Stunning an Enemy"],"stringId":"stun17"},"53539":{"connections":[{"id":46705,"orbit":0},{"id":13379,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage if Melee Hit","orbit":3,"orbitIndex":6,"skill":53539,"stats":["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"stringId":"ranged17"},"53560":{"connections":[{"id":46157,"orbit":0}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Skill Chain Chance","orbit":0,"orbitIndex":0,"skill":53560,"stats":["20% chance for Lightning Skills to Chain an additional time"],"stringId":"shock1"},"53566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Run and Gun","orbit":4,"orbitIndex":29,"recipe":["Suffering","Paranoia","Fear"],"skill":53566,"stats":["5% reduced Movement Speed Penalty from using Skills while moving","Projectile Attacks have a 12% chance to fire two additional Projectiles while moving"],"stringId":"slow_mitigation16"},"53589":{"connections":[{"id":25374,"orbit":0}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":53589,"stats":["+5 to any Attribute"],"stringId":"attributes64"},"53595":{"connections":[{"id":29458,"orbit":7},{"id":38628,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":19,"skill":53595,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison4"},"53607":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Fortified Location","orbit":4,"orbitIndex":3,"recipe":["Suffering","Despair","Disgust"],"skill":53607,"stats":["10% increased Armour and Evasion Rating per Summoned Totem in your Presence","10% increased Attack Damage per Summoned Totem in your Presence"],"stringId":"ballista17"},"53632":{"connections":[{"id":28482,"orbit":3}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage","orbit":2,"orbitIndex":8,"skill":53632,"stats":["12% increased Fire Damage"],"stringId":"fire29_"},"53647":{"connections":[],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":12,"skill":53647,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion24"},"53675":{"connections":[{"id":59498,"orbit":0}],"group":473,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":0,"skill":53675,"stats":["15% increased Presence Area of Effect"],"stringId":"auras8"},"53683":{"connections":[{"id":30082,"orbit":0},{"id":61432,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Efficient Loading","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Despair","Isolation"],"skill":53683,"stats":["30% chance when you Reload a Crossbow to be immediate"],"stringId":"crossbow26"},"53696":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":53696,"stats":[],"stringId":"mastery_attack10_"},"53697":{"connections":[{"id":47555,"orbit":7},{"id":3041,"orbit":-3}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":26,"skill":53697,"stats":["+5 to any Attribute"],"stringId":"intelligence26"},"53698":{"connections":[{"id":20916,"orbit":-3},{"id":59355,"orbit":0}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":53698,"stats":["10% increased Attack Damage"],"stringId":"attack14"},"53719":{"connections":[{"id":27082,"orbit":0}],"group":171,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":53719,"stats":["+5 to any Attribute"],"stringId":"attributes71"},"53762":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36728,"orbit":2147483647}],"group":551,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":53762,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"AscendancyMercenary3Small8"},"53771":{"connections":[{"id":52361,"orbit":-2}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":9,"skill":53771,"stats":["10% increased Projectile Damage"],"stringId":"projectiles12"},"53785":{"connections":[{"id":1170,"orbit":0},{"id":23307,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":18,"skill":53785,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks8"},"53795":{"connections":[{"id":62210,"orbit":5},{"id":53324,"orbit":-4},{"id":64804,"orbit":-5}],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":0,"orbitIndex":0,"skill":53795,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster2_"},"53804":{"connections":[{"id":56112,"orbit":7}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":4,"orbitIndex":48,"skill":53804,"stats":["10% increased Fire Damage"],"stringId":"warcries46"},"53822":{"connections":[],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":14,"skill":53822,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage17"},"53823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":10508,"orbit":-3}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Towering Shield","orbit":3,"orbitIndex":18,"recipe":["Ire","Despair","Guilt"],"skill":53823,"stats":["25% increased Chance to Block if you've Blocked with a raised Shield Recently","50% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block14"},"53853":{"connections":[{"id":57320,"orbit":0}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Backup Plan","orbit":7,"orbitIndex":19,"recipe":["Greed","Greed","Ire"],"skill":53853,"stats":["20% increased Armour and Evasion Rating","40% increased Evasion Rating if you have been Hit Recently","40% increased Armour if you haven't been Hit Recently"],"stringId":"armour_and_evasion13"},"53893":{"connections":[{"id":21784,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":2,"orbitIndex":14,"skill":53893,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions26"},"53895":{"connections":[{"id":17303,"orbit":2}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Fuse Duration","orbit":3,"orbitIndex":8,"skill":53895,"stats":["15% reduced Grenade Detonation Time"],"stringId":"grenades24"},"53901":{"connections":[{"id":34375,"orbit":7}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":3,"orbitIndex":12,"skill":53901,"stats":["5% increased Block chance"],"stringId":"shield20"},"53910":{"connectionArt":"CharacterPlanned","connections":[{"id":9212,"orbit":0},{"id":58368,"orbit":7}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","isNotable":true,"name":"Forbidden Path","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":53910,"stats":["5% reduced maximum Life","-10% to all Elemental Resistances","Minions Recoup 30% of Damage taken as Life","Minions Gain 20% of Elemental Damage as Extra Chaos Damage"],"stringId":"oracle_forbidden_path5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":58838,"orbit":0},{"id":40596,"orbit":0}],"group":324,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Unbreaking","orbit":5,"orbitIndex":48,"recipe":["Paranoia","Envy","Paranoia"],"skill":53921,"stats":["30% increased Stun Threshold","30% increased Elemental Ailment Threshold"],"stringId":"stun_threshold12"},"53935":{"connections":[{"id":10677,"orbit":2},{"id":25281,"orbit":0}],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Briny Carapace","orbit":2,"orbitIndex":14,"recipe":["Guilt","Ire","Paranoia"],"skill":53935,"stats":["100% increased Stun Threshold for each time you've been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun9"},"53938":{"connections":[{"id":36931,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":18,"skill":53938,"stats":["10% increased Attack Damage"],"stringId":"attack43"},"53941":{"connections":[{"id":17283,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Shimmering","orbit":3,"orbitIndex":12,"recipe":["Envy","Envy","Suffering"],"skill":53941,"stats":["10% faster start of Energy Shield Recharge","20% increased Evasion Rating if you haven't been Hit Recently","3% increased Movement Speed while you have Energy Shield"],"stringId":"evasion_and_energy_shield15"},"53958":{"connections":[{"id":51006,"orbit":2}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":3,"orbitIndex":23,"skill":53958,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks8"},"53960":{"connections":[{"id":8975,"orbit":-5}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":54,"skill":53960,"stats":["+5 to any Attribute"],"stringId":"intelligence5"},"53965":{"connections":[{"id":12337,"orbit":0}],"group":1065,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":53965,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning27"},"53975":{"connections":[{"id":33254,"orbit":0}],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":8,"skill":53975,"stats":["10% increased Spell Damage"],"stringId":"spells1"},"53989":{"connections":[{"id":29372,"orbit":8}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":6,"orbitIndex":59,"skill":53989,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage20"},"53996":{"connections":[{"id":9941,"orbit":7},{"id":28556,"orbit":3}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":22,"skill":53996,"stats":["8% increased Melee Damage"],"stringId":"melee21"},"54031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds","isNotable":true,"name":"The Great Boar","orbit":0,"orbitIndex":0,"recipe":["Envy","Suffering","Guilt"],"skill":54031,"stats":["+1 Life per 4 Dexterity","+1 to Stun Threshold per Dexterity","+5 to Strength"],"stringId":"azmerianimals6_"},"54036":{"connections":[{"id":30720,"orbit":0},{"id":15809,"orbit":-7},{"id":17501,"orbit":-7},{"id":18485,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":3,"orbitIndex":2,"skill":54036,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation4"},"54058":{"connections":[{"id":62001,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Damage","orbit":0,"orbitIndex":0,"skill":54058,"stats":["10% increased Critical Damage Bonus with Daggers"],"stringId":"dagger14"},"54067":{"connections":[{"id":27626,"orbit":0},{"id":2244,"orbit":-4}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge on Critical Hit","orbit":5,"orbitIndex":49,"skill":54067,"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"stringId":"mana_regeneration30"},"54099":{"connections":[{"id":8493,"orbit":0},{"id":2847,"orbit":0},{"id":55700,"orbit":0}],"group":738,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54099,"stats":["+5 to any Attribute"],"stringId":"strength83"},"54127":{"connections":[{"id":54282,"orbit":0},{"id":15182,"orbit":0},{"id":56978,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":54127,"stats":[],"stringId":"jewel_slot1975"},"54138":{"connections":[{"id":38564,"orbit":0},{"id":37963,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":2,"orbitIndex":12,"skill":54138,"stats":["3% increased Attack Speed with Swords"],"stringId":"sword8"},"54148":{"connections":[{"id":52746,"orbit":0},{"id":56934,"orbit":0}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Smoke Inhalation","orbit":2,"orbitIndex":6,"recipe":["Isolation","Envy","Fear"],"skill":54148,"stats":["Damage Penetrates 15% Fire Resistance","15% increased Duration of Damaging Ailments on Enemies"],"stringId":"fire_penetration25"},"54152":{"connections":[{"id":43453,"orbit":0}],"group":1396,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":54152,"stats":["3% increased Movement Speed while Sprinting"],"stringId":"Sprint3"},"54176":{"connections":[{"id":55463,"orbit":0},{"id":26598,"orbit":0}],"group":1239,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54176,"stats":["15% increased chance to Shock"],"stringId":"shock8"},"54194":{"ascendancyName":"Chronomancer","connections":[{"id":10987,"orbit":0}],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cast Speed","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":2,"orbitIndex":3,"skill":54194,"stats":["6% increased Cast Speed"],"stringId":"AscendancySorceress2Small4"},"54198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1229,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":54198,"stats":[],"stringId":"mastery_companion294"},"54228":{"connections":[{"id":64240,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":2,"skill":54228,"stats":["10% increased Physical Damage"],"stringId":"physical29"},"54232":{"connections":[{"id":44659,"orbit":5}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54232,"stats":["+5 to any Attribute"],"stringId":"strength24_"},"54282":{"connections":[{"id":52125,"orbit":0},{"id":11066,"orbit":2147483647}],"group":835,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":0,"skill":54282,"stats":["+5 to any Attribute"],"stringId":"strength82"},"54283":{"connections":[{"id":26324,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":21,"skill":54283,"stats":["15% increased Armour"],"stringId":"armour10"},"54288":{"connections":[{"id":35966,"orbit":7}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":54288,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup9"},"54289":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Gift of the Plains","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":54289,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges","+1 to Maximum Power Charges"],"stringId":"oracle_power_charge4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54297":{"connectionArt":"CharacterPlanned","connections":[{"id":25678,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":24,"skill":54297,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption10","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54311":{"connections":[{"id":28482,"orbit":7}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":54311,"stats":["30% increased Flammability Magnitude"],"stringId":"fire24"},"54340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":388,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":2,"orbitIndex":3,"skill":54340,"stats":[],"stringId":"mastery_armour10"},"54351":{"connections":[{"id":52464,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":7,"orbitIndex":7,"skill":54351,"stats":["Recover 1% of maximum Life on Kill"],"stringId":"life_on_kill3"},"54378":{"connections":[{"id":26863,"orbit":0}],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":2,"skill":54378,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges15"},"54380":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":464,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":54380,"stats":[],"stringId":"oracle_poison_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54413":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":3,"orbitIndex":10,"skill":54413,"stats":[],"stringId":"mastery_evasion114"},"54416":{"connections":[{"id":60274,"orbit":4}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":6,"skill":54416,"stats":["20% increased Armour if you have been Hit Recently"],"stringId":"armour3"},"54417":{"connections":[],"group":823,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":21,"skill":54417,"stats":["+5 to any Attribute"],"stringId":"dexterity29"},"54437":{"connections":[{"id":16111,"orbit":-5},{"id":2397,"orbit":0},{"id":8493,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage on Low Life","orbit":7,"orbitIndex":20,"skill":54437,"stats":["20% increased Attack Damage while on Low Life"],"stringId":"attack37"},"54447":{"classesStart":["Witch","Sorceress"],"connections":[{"id":23710,"orbit":0},{"id":59822,"orbit":0},{"id":32699,"orbit":0},{"id":40721,"orbit":0},{"id":22147,"orbit":0},{"id":8305,"orbit":0},{"id":4739,"orbit":0}],"group":818,"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","name":"WITCH","orbit":0,"orbitIndex":0,"skill":54447,"stats":[],"stringId":"witch595"},"54453":{"connections":[{"id":19006,"orbit":0},{"id":61042,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":12,"skill":54453,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation11"},"54485":{"connections":[{"id":25482,"orbit":0}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":54485,"stats":["+8 to Strength"],"stringId":"strength105"},"54512":{"ascendancyName":"Shaman","connections":[{"id":56933,"orbit":6}],"group":64,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":54512,"stats":["+3 to Maximum Rage"],"stringId":"AscendancyDruid2Small3"},"54521":{"connections":[{"id":13537,"orbit":5},{"id":58789,"orbit":0},{"id":22185,"orbit":4}],"group":682,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54521,"stats":["+5 to any Attribute"],"stringId":"intelligence53_"},"54545":{"connections":[{"id":38342,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":0,"skill":54545,"stats":["15% increased Magnitude of Daze"],"stringId":"daze_8"},"54557":{"connections":[{"id":9421,"orbit":-6}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":2,"skill":54557,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration7"},"54562":{"connections":[{"id":2745,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":10,"skill":54562,"stats":["10% increased Critical Hit Chance"],"stringId":"azmerianimals46"},"54631":{"connections":[{"id":30132,"orbit":0}],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":54631,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers8"},"54632":{"connections":[{"id":36507,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":2,"orbitIndex":12,"skill":54632,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence33"},"54640":{"connections":[{"id":64042,"orbit":0}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Constricting","orbit":0,"orbitIndex":0,"recipe":["Fear","Greed","Greed"],"skill":54640,"stats":["Debuffs you inflict have 5% increased Slow Magnitude","25% increased Physical Damage"],"stringId":"physical54"},"54675":{"connections":[{"id":58814,"orbit":0}],"group":986,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":54675,"stats":["10% increased Lightning Damage"],"stringId":"lightning24"},"54676":{"connections":[{"id":39759,"orbit":0},{"id":37612,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":15,"skill":54676,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration29"},"54678":{"connections":[{"id":41877,"orbit":0}],"group":1313,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54678,"stats":["15% increased chance to Shock"],"stringId":"shock10"},"54701":{"connections":[{"id":21089,"orbit":2},{"id":1286,"orbit":-7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":16,"skill":54701,"stats":["16% increased Thorns damage"],"stringId":"getting_hit20"},"54708":{"connections":[{"id":13855,"orbit":0},{"id":3918,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":11,"skill":54708,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration1"},"54725":{"connections":[{"id":56336,"orbit":0}],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Activation Speed and Effect","orbit":7,"orbitIndex":0,"skill":54725,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"stringId":"curses1"},"54733":{"connections":[{"id":5314,"orbit":-4}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":4,"orbitIndex":55,"skill":54733,"stats":["15% increased Effect of Puppet Master"],"stringId":"Puppetmaster11"},"54746":{"connections":[{"id":14343,"orbit":7}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Effect","orbit":0,"orbitIndex":0,"skill":54746,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments16"},"54783":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":10,"skill":54783,"stats":[],"stringId":"mastery_energy_shield_6485"},"54785":{"connections":[{"id":32885,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":7,"skill":54785,"stats":["5% increased Block chance"],"stringId":"shield16"},"54805":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Hindered Capabilities","orbit":5,"orbitIndex":27,"recipe":["Suffering","Greed","Envy"],"skill":54805,"stats":["30% increased Damage with Hits against Hindered Enemies","Debuffs you inflict have 10% increased Slow Magnitude"],"stringId":"slowed_enemies15"},"54811":{"connections":[{"id":13474,"orbit":0}],"group":422,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54811,"stats":["+5 to any Attribute"],"stringId":"strength15"},"54814":{"connections":[{"id":16114,"orbit":0}],"group":473,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Profane Commander","orbit":2,"orbitIndex":14,"recipe":["Guilt","Isolation","Isolation"],"skill":54814,"stats":["30% increased Presence Area of Effect","4% increased Spirit"],"stringId":"auras19"},"54818":{"connections":[{"id":18801,"orbit":0}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54818,"stats":["+5 to any Attribute"],"stringId":"strength80"},"54838":{"ascendancyName":"Tactician","connections":[],"group":359,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds","isNotable":true,"name":"Right Where We Want Them","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":54838,"stats":["Projectile Damage builds Pin","Pinned enemies cannot perform actions"],"stringId":"AscendancyMercenary1Notable5"},"54849":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":236,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":54849,"stats":[],"stringId":"mastery_minionoffence185"},"54868":{"connections":[{"id":14265,"orbit":0}],"group":409,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":54868,"stats":["12% increased Fire Damage"],"stringId":"fire74"},"54883":{"connections":[{"id":34473,"orbit":-2}],"group":1321,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":54883,"stats":["7% increased Chaos Damage"],"stringId":"chaos21"},"54886":{"connections":[{"id":56997,"orbit":-4}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage and Stun","orbit":7,"orbitIndex":20,"skill":54886,"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"stringId":"two_handed11"},"54887":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":350,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":54887,"stats":[],"stringId":"mastery_projectile203"},"54892":{"ascendancyName":"Tactician","connections":[{"id":44371,"orbit":0}],"group":391,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":54892,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary1Small7_"},"54911":{"connections":[{"id":11505,"orbit":0},{"id":39716,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Firestarter","orbit":2,"orbitIndex":6,"recipe":["Greed","Isolation","Guilt"],"skill":54911,"stats":["80% increased Flammability Magnitude","Enemies Ignited by you have -5% to Fire Resistance"],"stringId":"ignite10"},"54923":{"connections":[{"id":27638,"orbit":2147483647}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":7,"skill":54923,"stats":["15% increased Glory generation"],"stringId":"glory4"},"54934":{"connections":[{"id":15494,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Fire Damage when consuming an Endurance Charge","orbit":2,"orbitIndex":4,"skill":54934,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges14"},"54937":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Vengeful Fury","orbit":1,"orbitIndex":9,"recipe":["Suffering","Ire","Despair"],"skill":54937,"stats":["Gain 5 Rage when Hit by an Enemy","Every Rage also grants 1% increased Armour"],"stringId":"rage18"},"54962":{"connections":[{"id":35849,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration while Stationary","orbit":7,"orbitIndex":4,"skill":54962,"stats":["15% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration14"},"54964":{"connections":[{"id":23078,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":16,"skill":54964,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels3"},"54975":{"connections":[{"id":7526,"orbit":-9}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect","orbit":5,"orbitIndex":66,"skill":54975,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"stringId":"slowed_enemies3_"},"54982":{"connections":[{"id":34818,"orbit":-9}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":7,"skill":54982,"stats":["+5% to Fire Resistance"],"stringId":"shaman7"},"54983":{"connections":[{"id":39369,"orbit":3}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":7,"orbitIndex":2,"skill":54983,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals59"},"54984":{"connections":[{"id":34015,"orbit":0},{"id":34702,"orbit":-4},{"id":55118,"orbit":0},{"id":37951,"orbit":0}],"group":1417,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54984,"stats":["+5 to any Attribute"],"stringId":"dexterity54"},"54985":{"connections":[{"id":14602,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":7,"skill":54985,"stats":["8% increased Bolt Speed"],"stringId":"crossbow28"},"54990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Bloodletting","orbit":7,"orbitIndex":1,"recipe":["Fear","Suffering","Ire"],"skill":54990,"stats":["10% chance to inflict Bleeding on Hit","15% increased Magnitude of Bleeding you inflict"],"stringId":"bleed6"},"54998":{"connections":[{"id":29993,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Protraction","orbit":2,"orbitIndex":5,"recipe":["Despair","Disgust","Guilt"],"skill":54998,"stats":["20% increased Skill Effect Duration","15% increased Duration of Damaging Ailments on Enemies"],"stringId":"duration5"},"54999":{"connections":[{"id":14511,"orbit":-3}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Attack Damage and Stun","orbit":3,"orbitIndex":2,"skill":54999,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"stringId":"melee58"},"55011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":580,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":55011,"stats":[],"stringId":"mastery_caster_6355"},"55033":{"connectionArt":"CharacterPlanned","connections":[{"id":17059,"orbit":-3}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Life Recoup","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":14,"skill":55033,"stats":["10% of Damage taken Recouped as Life while Channelling"],"stringId":"oracle_channelling2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55041":{"connections":[{"id":35564,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage and Projectile Speed","orbit":3,"orbitIndex":21,"skill":55041,"stats":["8% increased Spell Damage","5% reduced Projectile Speed for Spell Skills"],"stringId":"projectile_spells2"},"55048":{"connections":[],"flavourText":"Embrace the pain, drink it in.\\nYour enemies will know your agony tenfold.","group":211,"icon":"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds","isKeystone":true,"name":"Pain Attunement","orbit":0,"orbitIndex":0,"skill":55048,"stats":["30% less Critical Damage Bonus when on Full Life","30% more Critical Damage Bonus when on Low Life"],"stringId":"passive_keystone_pain_attunement"},"55058":{"connections":[{"id":63790,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage against Immobilised","orbit":5,"orbitIndex":48,"skill":55058,"stats":["20% increased Melee Damage against Immobilised Enemies"],"stringId":"melee52"},"55060":{"connections":[{"id":33037,"orbit":0},{"id":45576,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Shrapnel","orbit":5,"orbitIndex":9,"recipe":["Guilt","Guilt","Disgust"],"skill":55060,"stats":["30% chance to Pierce an Enemy","Projectiles have 10% chance to Chain an additional time from terrain"],"stringId":"ranged39"},"55063":{"connections":[{"id":51535,"orbit":4}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Slower Leech","orbit":2,"orbitIndex":5,"skill":55063,"stats":["12% increased amount of Life Leeched","Leech Life 5% slower"],"stringId":"life_leech8"},"55066":{"connections":[{"id":19796,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Attack Damage vs Bleeding Enemies","orbit":2,"orbitIndex":21,"skill":55066,"stats":["16% increased Attack Damage against Bleeding Enemies"],"stringId":"bleed11__"},"55088":{"connections":[{"id":61196,"orbit":5}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":55088,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals12"},"55101":{"connections":[{"id":58016,"orbit":7}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":55101,"stats":["10% increased Elemental Damage"],"stringId":"elemental11_"},"55104":{"connections":[{"id":33254,"orbit":-7},{"id":19125,"orbit":7}],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":7,"orbitIndex":22,"skill":55104,"stats":["10% increased Spell Damage"],"stringId":"spells12"},"55118":{"connections":[{"id":50420,"orbit":0}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":18,"skill":55118,"stats":["10% increased Charm Charges gained"],"stringId":"charms24"},"55131":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Light on your Feet","orbit":4,"orbitIndex":38,"recipe":["Disgust","Isolation","Greed"],"skill":55131,"stats":["3% increased Movement Speed","Immune to Hinder","Immune to Maim"],"stringId":"slow_mitigation8"},"55135":{"ascendancyName":"Oracle","connections":[],"group":23,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds","isNotable":true,"name":"Forced Outcome","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":6,"orbitIndex":16,"skill":55135,"stats":["Inevitable Critical Hits"],"stringId":"AscendancyDruid1Notable8"},"55149":{"connections":[],"group":1333,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Pure Chaos","orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Guilt"],"skill":55149,"stats":["Gain 11% of Damage as Extra Chaos Damage"],"stringId":"chaos30"},"55152":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":5580,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":3,"orbitIndex":1,"skill":55152,"stats":[],"stringId":"mastery_totem231"},"55180":{"connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Relentless Fallen","orbit":3,"orbitIndex":15,"recipe":["Despair","Fear","Isolation"],"skill":55180,"stats":["3% increased Movement Speed","Minions have 20% increased Movement Speed","Minions have 8% increased Attack and Cast Speed"],"stringId":"minion_offence21_"},"55188":{"connections":[{"id":13326,"orbit":3}],"group":124,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":55188,"stats":["12% increased Fire Damage"],"stringId":"fire70"},"55190":{"connections":[],"group":95,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":0,"skill":55190,"stats":[],"stringId":"jewel_slot1971"},"55193":{"connections":[{"id":10944,"orbit":-2}],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Subterfuge Mask","orbit":1,"orbitIndex":4,"recipe":["Ire","Suffering","Paranoia"],"skill":55193,"stats":["+1 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"],"stringId":"evasion_and_energy_shield25"},"55227":{"connections":[{"id":29479,"orbit":0},{"id":15829,"orbit":0}],"group":1128,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":13,"skill":55227,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech7"},"55231":{"connections":[{"id":37361,"orbit":0},{"id":9857,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":7,"orbitIndex":13,"skill":55231,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed21_"},"55235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"id":63830,"orbit":0},{"id":44756,"orbit":0},{"id":36976,"orbit":0}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","isOnlyImage":true,"name":"Mark Mastery","orbit":1,"orbitIndex":4,"skill":55235,"stats":[],"stringId":"mastery_mark_6606"},"55241":{"connections":[{"id":38614,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":1,"orbitIndex":4,"skill":55241,"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells5"},"55250":{"connections":[{"id":56649,"orbit":-4},{"id":41669,"orbit":4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":4,"orbitIndex":30,"skill":55250,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration10"},"55260":{"connections":[{"id":19751,"orbit":-5}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Threshold","orbit":2,"orbitIndex":23,"skill":55260,"stats":["15% increased Freeze Threshold"],"stringId":"chill_and_freeze21"},"55270":{"connections":[{"id":60083,"orbit":0}],"group":1141,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":1,"skill":55270,"stats":["15% increased Pin Buildup"],"stringId":"pin2"},"55275":{"connections":[{"id":12890,"orbit":6}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":2,"skill":55275,"stats":["15% increased Evasion Rating"],"stringId":"evasion18"},"55276":{"connections":[{"id":13411,"orbit":5}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":24,"skill":55276,"stats":["+5 to any Attribute"],"stringId":"dexterity2"},"55308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":38313,"orbit":0},{"id":30701,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds","isNotable":true,"name":"Sling Shots","orbit":7,"orbitIndex":12,"recipe":["Envy","Ire","Suffering"],"skill":55308,"stats":["20% increased Projectile Damage","20% increased chance to inflict Ailments with Projectiles"],"stringId":"projectiles39"},"55329":{"connections":[{"id":42036,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":4,"orbitIndex":12,"skill":55329,"stats":["15% increased Parried Debuff Duration"],"stringId":"buckler5"},"55342":{"connections":[{"id":17248,"orbit":-5}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":61,"skill":55342,"stats":["+5 to any Attribute"],"stringId":"intelligence3"},"55348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":23227,"orbit":0}],"group":645,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":55348,"stats":[],"stringId":"mastery_dualwield90"},"55375":{"connections":[{"id":62748,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","isNotable":true,"name":"Licking Wounds","orbit":2,"orbitIndex":21,"recipe":["Fear","Disgust","Ire"],"skill":55375,"stats":["Minions have 15% increased maximum Life","5% increased Life and Mana Regeneration Rate for each Minion in your Presence, up to a maximum of 40%"],"stringId":"companions50"},"55377":{"connections":[{"id":26211,"orbit":0},{"id":33463,"orbit":0}],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Combo","orbit":2,"orbitIndex":0,"skill":55377,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"stringId":"area_attacks45__"},"55397":{"connections":[{"id":44527,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isSwitchable":true,"name":"Flask Charges Gained","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","id":1247,"name":"Ailment Threshold","stats":["15% increased Elemental Ailment Threshold"]}},"orbit":7,"orbitIndex":21,"skill":55397,"stats":["15% increased Flask Charges gained"],"stringId":"flasks22"},"55400":{"connections":[{"id":30372,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":5,"skill":55400,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration9"},"55405":{"connections":[{"id":25620,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":1,"orbitIndex":10,"skill":55405,"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"stringId":"corpses6"},"55412":{"connections":[{"id":22538,"orbit":0},{"id":17796,"orbit":-4}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":15,"skill":55412,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slowed_enemies16"},"55420":{"connections":[{"id":30061,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":0,"skill":55420,"stats":["6% increased Curse Magnitudes"],"stringId":"curses22"},"55422":{"connections":[{"id":54640,"orbit":4}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":17,"skill":55422,"stats":["12% increased Physical Damage"],"stringId":"physical51"},"55429":{"connections":[{"id":22049,"orbit":0}],"group":1080,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","id":24854,"name":"Melee and Projectile Damage","stats":["10% increased Melee Damage","10% increased Projectile Damage"]}},"orbit":0,"orbitIndex":0,"skill":55429,"stats":["10% increased Projectile Damage"],"stringId":"projectiles17"},"55450":{"connections":[{"id":57089,"orbit":0},{"id":34443,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","isNotable":true,"name":"Rallying Form","orbit":7,"orbitIndex":7,"recipe":["Greed","Isolation","Fear"],"skill":55450,"stats":["Companions in your Presence have Onslaught while you are Shapeshifted"],"stringId":"companions28"},"55463":{"connections":[{"id":27875,"orbit":0}],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":14,"skill":55463,"stats":["15% increased chance to Shock"],"stringId":"shock7"},"55473":{"connections":[{"id":43164,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":23,"skill":55473,"stats":["8% increased Melee Damage"],"stringId":"melee44"},"55478":{"connections":[{"id":48006,"orbit":4},{"id":16168,"orbit":-3}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":2,"orbitIndex":2,"skill":55478,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks22"},"55491":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":475,"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","isOnlyImage":true,"name":"Reservation Mastery","orbit":1,"orbitIndex":7,"skill":55491,"stats":[],"stringId":"mastery_reservation209"},"55507":{"connections":[{"id":22359,"orbit":-6},{"id":38338,"orbit":6}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":16,"skill":55507,"stats":["10% increased Elemental Damage"],"stringId":"elemental22"},"55536":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":34882,"orbit":2147483647},{"id":1442,"orbit":0},{"id":3084,"orbit":2147483647}],"group":487,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Gemling Legionnaire","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":9,"orbitIndex":72,"skill":55536,"stats":[],"stringId":"AscendancyMercenary3Start"},"55554":{"connections":[{"id":8821,"orbit":0},{"id":22271,"orbit":0}],"group":897,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":55554,"stats":["15% increased chance to Shock"],"stringId":"lightning18"},"55568":{"connections":[{"id":41522,"orbit":0},{"id":44690,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Forthcoming","orbit":2,"orbitIndex":21,"recipe":["Despair","Greed","Suffering"],"skill":55568,"stats":["16% reduced Skill Effect Duration","10% increased Cooldown Recovery Rate"],"stringId":"duration11"},"55572":{"connections":[{"id":57626,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.dds","name":"Cold and Fire Damage","orbit":7,"orbitIndex":20,"skill":55572,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"stringId":"cold9"},"55575":{"connections":[{"id":58002,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical as Extra Chaos Damage","orbit":2,"orbitIndex":9,"skill":55575,"stats":["Gain 3% of Physical Damage as extra Chaos Damage"],"stringId":"physical11"},"55582":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":60287,"orbit":2147483647}],"group":406,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":55582,"stats":["+2% to Quality of all Skills"],"stringId":"AscendancyMercenary3Small2"},"55596":{"connections":[{"id":8509,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":16,"skill":55596,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals35"},"55598":{"connections":[{"id":15644,"orbit":4},{"id":9112,"orbit":-3},{"id":28050,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":2,"skill":55598,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression31"},"55611":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":-2}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":4,"orbitIndex":15,"skill":55611,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyMonk2Small5"},"55617":{"connections":[{"id":29914,"orbit":0},{"id":19546,"orbit":2}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour and Evasion while Surrounded","orbit":3,"orbitIndex":3,"skill":55617,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded18"},"55621":{"connections":[{"id":38537,"orbit":-3}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":16,"skill":55621,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals56"},"55635":{"connections":[{"id":52440,"orbit":0},{"id":51807,"orbit":0},{"id":33722,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":7,"orbitIndex":21,"skill":55635,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions22"},"55664":{"connections":[{"id":31826,"orbit":-3}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Presence Area and Companion Area","orbit":4,"orbitIndex":0,"skill":55664,"stats":["10% increased Presence Area of Effect","Companions have 10% increased Area of Effect"],"stringId":"companions12"},"55668":{"connections":[{"id":25557,"orbit":0},{"id":47754,"orbit":0},{"id":55420,"orbit":0}],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":55668,"stats":["+5 to any Attribute"],"stringId":"intelligence63__"},"55672":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":5,"orbitIndex":46,"skill":55672,"stats":["10% increased Accuracy Rating while Shapeshifted"],"stringId":"wyvern7"},"55680":{"connections":[{"id":61112,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":14,"skill":55680,"stats":["3% increased Attack Speed with Spears"],"stringId":"spear7"},"55700":{"connections":[{"id":44983,"orbit":2147483647}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":8,"skill":55700,"stats":["+3 to all Attributes"],"stringId":"all_attributes4"},"55708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":918,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electric Amplification","orbit":7,"orbitIndex":10,"recipe":["Isolation","Fear","Disgust"],"skill":55708,"stats":["Damage Penetrates 18% Lightning Resistance","Gain 6% of Elemental Damage as Extra Lightning Damage"],"stringId":"lightning_penetration27"},"55724":{"connections":[{"id":42714,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":4,"orbitIndex":58,"skill":55724,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed43"},"55746":{"connections":[{"id":61935,"orbit":-2}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":4,"skill":55746,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage8"},"55789":{"connections":[{"id":41665,"orbit":-2}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":3,"skill":55789,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals71"},"55796":{"ascendancyName":"Amazon","connections":[{"id":43095,"orbit":0}],"group":1592,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds","isNotable":true,"name":"Predatory Instinct","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":55796,"stats":["Reveal Weaknesses against Rare and Unique enemies","50% more damage against enemies with an Open Weakness"],"stringId":"AscendancyHuntress1Notable3"},"55802":{"connections":[{"id":2847,"orbit":0},{"id":3717,"orbit":0}],"group":901,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":55802,"stats":["+5 to any Attribute"],"stringId":"dexterity77"},"55807":{"connections":[{"id":6686,"orbit":-4}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isSwitchable":true,"name":"Mana Regeneration","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":21429,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":2,"orbitIndex":5,"skill":55807,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana25"},"55817":{"connections":[{"id":58674,"orbit":0}],"group":695,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Alchemical Oil","orbit":7,"orbitIndex":1,"recipe":["Ire","Isolation","Guilt"],"skill":55817,"stats":["30% increased Exposure Effect"],"stringId":"slowed_enemies30"},"55829":{"connections":[{"id":1420,"orbit":2147483647}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":0,"skill":55829,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks52"},"55835":{"connections":[{"id":52537,"orbit":2147483647},{"id":20909,"orbit":-9},{"id":7023,"orbit":0}],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Exposed to the Cosmos","orbit":2,"orbitIndex":19,"recipe":["Isolation","Fear","Paranoia"],"skill":55835,"stats":["Damage Penetrates 18% Cold Resistance","20% increased chance to inflict Ailments against Enemies with Exposure"],"stringId":"cold_penetration23"},"55843":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":463,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":55843,"stats":[],"stringId":"mastery_armour_and_energy_shield_6275"},"55846":{"connections":[{"id":24239,"orbit":0}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":5,"skill":55846,"stats":["Gain 5 Life per enemy killed"],"stringId":"life_on_kill11"},"55847":{"connections":[{"id":27274,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Ice Walls","orbit":7,"orbitIndex":8,"recipe":["Fear","Paranoia","Disgust"],"skill":55847,"stats":["200% increased Ice Crystal Life"],"stringId":"cold_penetration15"},"55872":{"connections":[],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":3,"orbitIndex":23,"skill":55872,"stats":["Offering Skills have 15% increased Buff effect"],"stringId":"corpses22"},"55888":{"connections":[{"id":18746,"orbit":0},{"id":49256,"orbit":0},{"id":440,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":0,"orbitIndex":0,"skill":55888,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour8"},"55897":{"connectionArt":"CharacterPlanned","connections":[{"id":14432,"orbit":0}],"group":120,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Mana Regeneration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":55897,"stats":["20% increased Mana Regeneration Rate while Shapeshifted"],"stringId":"oracle_wolf_addon1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55909":{"connections":[{"id":64046,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","isSwitchable":true,"name":"Infused Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","id":10903,"name":"Chaos Damage","stats":["10% increased Chaos Damage"]}},"orbit":4,"orbitIndex":3,"skill":55909,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"sorcerer_start3"},"55925":{"connections":[{"id":37290,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage while Shapeshifted","orbit":7,"orbitIndex":8,"skill":55925,"stats":["+3 to maximum Rage while Shapeshifted"],"stringId":"rage23"},"55930":{"connections":[{"id":40687,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":16,"skill":55930,"stats":["15% increased Glory generation"],"stringId":"glory19"},"55931":{"connections":[{"id":62034,"orbit":0},{"id":62313,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Armour Applies to Fire Damage Hits","orbit":3,"orbitIndex":18,"skill":55931,"stats":["+15% of Armour also applies to Fire Damage"],"stringId":"maximum_resistances3_"},"55933":{"connections":[{"id":60886,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":55933,"stats":["+5 to any Attribute"],"stringId":"strength8"},"55938":{"connections":[{"id":41394,"orbit":7}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":3,"orbitIndex":9,"skill":55938,"stats":["10% increased effect of Archon Buffs on you"],"stringId":"archon10"},"55947":{"connections":[{"id":46088,"orbit":3}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":2,"orbitIndex":1,"skill":55947,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals12_"},"55995":{"connections":[{"id":41873,"orbit":0}],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":55995,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges4"},"56016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":65149,"orbit":-8},{"id":35594,"orbit":2147483647}],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"Passthrough Rounds","orbit":2,"orbitIndex":2,"recipe":["Greed","Guilt","Isolation"],"skill":56016,"stats":["Projectiles Pierce enemies with Fully Broken Armour"],"stringId":"armour_break19"},"56023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56023,"stats":[],"stringId":"mastery_projectile202"},"56045":{"connections":[{"id":24647,"orbit":4},{"id":11604,"orbit":0}],"group":1116,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56045,"stats":["+5 to any Attribute"],"stringId":"dexterity6"},"56061":{"connections":[],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Damage against Burning Enemies","orbit":2,"orbitIndex":12,"skill":56061,"stats":["14% increased Damage with Hits against Burning Enemies"],"stringId":"fire16"},"56063":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Lingering Horror","orbit":0,"orbitIndex":0,"recipe":["Isolation","Disgust","Disgust"],"skill":56063,"stats":["23% increased Chaos Damage","15% increased Skill Effect Duration"],"stringId":"chaos37"},"56090":{"connectionArt":"CharacterPlanned","connections":[{"id":59136,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":16,"skill":56090,"stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"stringId":"oracle_spell_poison1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56104":{"connections":[],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":16,"skill":56104,"stats":["Break 20% increased Armour"],"stringId":"armour_break27"},"56112":{"connections":[{"id":42059,"orbit":-2},{"id":49259,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Extinguishing Exhalation","orbit":3,"orbitIndex":18,"recipe":["Suffering","Despair","Paranoia"],"skill":56112,"stats":["Remove Ignite when you Warcry"],"stringId":"warcries47"},"56118":{"connections":[{"id":19341,"orbit":-5},{"id":22976,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":4,"orbitIndex":12,"skill":56118,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life4"},"56162":{"ascendancyName":"Blood Mage","connections":[{"id":50192,"orbit":-9}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds","isNotable":true,"name":"Grasping Wounds","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":8,"orbitIndex":13,"skill":56162,"stats":["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"],"stringId":"AscendancyWitch2Notable7"},"56174":{"connectionArt":"CharacterPlanned","connections":[{"id":1887,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":5,"skill":56174,"stats":["30% increased Armour while stationary"],"stringId":"oracle_crab_claw2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56214":{"connections":[{"id":30334,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":3,"skill":56214,"stats":["8% increased Ignite Duration on Enemies"],"stringId":"ignite_mitigation9"},"56216":{"connections":[{"id":9485,"orbit":0}],"group":857,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56216,"stats":["+5 to any Attribute"],"stringId":"intelligence21"},"56219":{"connections":[{"id":52764,"orbit":-2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":7,"orbitIndex":2,"skill":56219,"stats":["Inherent loss of Rage is 15% slower"],"stringId":"rage38"},"56237":{"connections":[{"id":1825,"orbit":0}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","isNotable":true,"name":"Enhancing Attacks","orbit":3,"orbitIndex":23,"recipe":["Envy","Guilt","Disgust"],"skill":56237,"stats":["12% increased Spell Damage for each different Non-Instant Attack you've used in the past 8 seconds"],"stringId":"attacks_and_spells13"},"56265":{"connections":[{"id":42802,"orbit":0}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Throatseeker","orbit":2,"orbitIndex":2,"recipe":["Greed","Envy","Isolation"],"skill":56265,"stats":["60% increased Critical Damage Bonus","20% reduced Critical Hit Chance"],"stringId":"criticals90"},"56284":{"connections":[{"id":1928,"orbit":-2}],"group":553,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":0,"orbitIndex":0,"skill":56284,"stats":["Minions have 5% increased Attack and Cast Speed"],"stringId":"minion_offence46"},"56320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connectionArt":"CharacterPlanned","connections":[],"group":440,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":56320,"stats":[],"stringId":"oracle_iron_blood_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56325":{"connections":[{"id":21280,"orbit":0}],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion and Reduced Movement Penalty","orbit":0,"orbitIndex":0,"skill":56325,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion23_"},"56330":{"connections":[{"id":39570,"orbit":2147483647}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance on Critical","orbit":7,"orbitIndex":22,"skill":56330,"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"stringId":"bleed8_"},"56331":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1588,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds","isMultipleChoiceOption":true,"name":"Choice of Life","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56331,"stats":["Remnants you create have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Red"],"stringId":"AscendancyMonk3Notable6_3"},"56334":{"connections":[{"id":46171,"orbit":7},{"id":41753,"orbit":0}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy and Critical Chance","orbit":7,"orbitIndex":7,"skill":56334,"stats":["Meta Skills gain 4% increased Energy","5% increased Critical Hit Chance"],"stringId":"monkelemental3"},"56336":{"connections":[{"id":21208,"orbit":0}],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Activation Speed and Effect","orbit":7,"orbitIndex":20,"skill":56336,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"stringId":"curses2"},"56342":{"connections":[{"id":7341,"orbit":3}],"group":366,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":0,"orbitIndex":0,"skill":56342,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage4"},"56349":{"connections":[],"flavourText":"Give up everything in pursuit of greatness - even life itself.","group":1289,"icon":"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds","isKeystone":true,"name":"Chaos Inoculation","orbit":0,"orbitIndex":0,"skill":56349,"stats":["Maximum Life is 1","Immune to Chaos Damage and Bleeding"],"stringId":"passive_keystone_chaos_inoculation"},"56360":{"connections":[{"id":24812,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":19,"skill":56360,"stats":["20% increased Power Charge Duration"],"stringId":"power_charges2"},"56366":{"connections":[{"id":35755,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","isNotable":true,"name":"Silent Shiv","orbit":3,"orbitIndex":16,"skill":56366,"stats":["5% increased Attack Speed with Daggers","15% increased Critical Hit Chance with Daggers"],"stringId":"dagger13"},"56368":{"connections":[{"id":61393,"orbit":-4}],"group":134,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Regeneration","orbit":0,"orbitIndex":0,"skill":56368,"stats":["15% increased Life Regeneration rate while Shapeshifted"],"stringId":"wolf3"},"56388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Reinforced Rallying","orbit":5,"orbitIndex":0,"recipe":["Ire","Envy","Isolation"],"skill":56388,"stats":["+1 to maximum number of placed Banners"],"stringId":"banners12"},"56409":{"connections":[{"id":25101,"orbit":0},{"id":43139,"orbit":0},{"id":65248,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Chance","orbit":4,"orbitIndex":12,"skill":56409,"stats":["24% increased Flammability Magnitude","12% increased Freeze Buildup","12% increased chance to Shock"],"stringId":"elemental51"},"56453":{"connections":[{"id":37691,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Killer Instinct","orbit":5,"orbitIndex":39,"recipe":["Greed","Paranoia","Greed"],"skill":56453,"stats":["40% increased Attack Damage while on Full Life","60% increased Attack Damage while on Low Life"],"stringId":"attack27"},"56466":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Night's Bite","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":56466,"stats":["Spells Gain 12% of Damage as extra Chaos Damage"],"stringId":"oracle_spell_poison4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56472":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56472,"stats":[],"stringId":"mastery_projectile_6652"},"56488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Glancing Deflection","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Envy"],"skill":56488,"stats":["10% increased Deflection Rating"],"stringId":"deflect29"},"56489":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds","isNotable":true,"name":"Idolatry","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":9,"orbitIndex":10,"skill":56489,"stats":["Companions deal 10% increased damage per Idol in your Equipment","2% increased Reservation Efficiency of Skills per Idol in your Equipment","-4% to all Elemental Resistances per non-Idol Augment in your Equipment"],"stringId":"AscendancyHuntress2Notable8"},"56493":{"connections":[],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Agile Succession","orbit":3,"orbitIndex":3,"recipe":["Greed","Greed","Disgust"],"skill":56493,"stats":["6% increased Attack Speed","30% increased Evasion Rating if you have Hit an Enemy Recently"],"stringId":"attack_speed60_"},"56505":{"ascendancyName":"Oracle","connections":[{"id":4197,"orbit":-6}],"group":13,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Immobilisation Buildup","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56505,"stats":["20% increased Immobilisation buildup"],"stringId":"AscendancyDruid1Small4"},"56547":{"connections":[{"id":12189,"orbit":4}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":21,"skill":56547,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical61"},"56564":{"connections":[{"id":8349,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":15,"skill":56564,"stats":["+8 to Intelligence"],"stringId":"energy_shield28_"},"56567":{"connections":[{"id":151,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":11,"skill":56567,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy5"},"56595":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":471,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":56595,"stats":[],"stringId":"mastery_attack17"},"56605":{"connections":[],"flavourText":"In battle, certainty is worth a little pain.","group":514,"icon":"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds","isKeystone":true,"name":"Bulwark","orbit":0,"orbitIndex":0,"skill":56605,"stats":["Dodge Roll cannot Avoid Damage","Take 30% less Damage from Hits while Dodge Rolling"],"stringId":"passive_keystone_bulwark"},"56616":{"connections":[{"id":13562,"orbit":3},{"id":41415,"orbit":0}],"group":618,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Desperate Times","orbit":2,"orbitIndex":0,"recipe":["Despair","Disgust","Ire"],"skill":56616,"stats":["Regenerate 1.5% of maximum Life per second while on Low Life","40% increased Life Recovery from Flasks used when on Low Life"],"stringId":"life_regeneration8_"},"56618":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1569,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds","isMultipleChoiceOption":true,"name":"Fulminating Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56618,"stats":["Grants Skill: Fulminating Concoction"],"stringId":"AscendancyRanger3Notable7_3"},"56638":{"connections":[],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if not Stunned recently","orbit":2,"orbitIndex":2,"skill":56638,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun4"},"56640":{"connections":[{"id":10398,"orbit":2147483647}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":22,"skill":56640,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals5"},"56649":{"connections":[{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":8,"skill":56649,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration12__"},"56651":{"connections":[{"id":38143,"orbit":0}],"group":927,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":39263,"name":"Attack Damage","stats":["10% increased Attack Damage"]}},"orbit":0,"orbitIndex":0,"skill":56651,"stats":["10% increased Projectile Damage"],"stringId":"projectiles15"},"56666":{"connections":[],"group":734,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds","isNotable":true,"name":"Thaumaturgic Generator","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Disgust","Isolation"],"skill":56666,"stats":["Grants Thaumaturgical Dynamism"],"stringId":"DeliriumAnoint_ThaumaturgicGenerator"},"56701":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1460,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":56701,"stats":[],"stringId":"mastery_companion295"},"56703":{"connections":[{"id":15782,"orbit":0},{"id":28839,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":8,"skill":56703,"stats":["3% increased Cast Speed"],"stringId":"cast_speed11"},"56714":{"connections":[{"id":47212,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Swift Flight","orbit":3,"orbitIndex":10,"recipe":["Suffering","Suffering","Guilt"],"skill":56714,"stats":["15% increased Projectile Speed","20% increased Physical Damage"],"stringId":"projectiles48"},"56729":{"connections":[{"id":26308,"orbit":0},{"id":34201,"orbit":0}],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":16,"skill":56729,"stats":["20% increased Evasion Rating while moving"],"stringId":"azmerianimals19"},"56757":{"connections":[{"id":10100,"orbit":0}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":10,"skill":56757,"stats":["20% increased Totem Placement speed"],"stringId":"totems41"},"56761":{"connections":[{"id":8560,"orbit":0},{"id":48531,"orbit":0},{"id":2408,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":18,"skill":56761,"stats":["8% increased Melee Damage"],"stringId":"melee27"},"56762":{"connections":[{"id":28839,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":56762,"stats":["3% increased Cast Speed"],"stringId":"cast_speed16"},"56767":{"connections":[{"id":19461,"orbit":0},{"id":1416,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Electrifying Daze","orbit":7,"orbitIndex":13,"recipe":["Isolation","Disgust","Envy"],"skill":56767,"stats":["5% chance to Daze on Hit","Gain 12% of Physical Damage as Extra Lightning Damage against Dazed Enemies"],"stringId":"daze_18"},"56776":{"connections":[{"id":45609,"orbit":5},{"id":24129,"orbit":0}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Cooked","orbit":1,"orbitIndex":7,"recipe":["Suffering","Ire","Envy"],"skill":56776,"stats":["60% increased Critical Damage Bonus","25% reduced Armour, Evasion and Energy Shield"],"stringId":"criticals49"},"56783":{"ascendancyName":"Disciple of Varashta","connections":[],"group":678,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56783,"stats":["8% increased Area of Effect"],"stringId":"AscendancySorceress3Small6_"},"56806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Swift Blocking","orbit":7,"orbitIndex":22,"recipe":["Ire","Fear","Ire"],"skill":56806,"stats":["12% increased Block chance","1% increased Movement Speed for each time you've Blocked in the past 10 seconds"],"stringId":"block16"},"56818":{"connections":[{"id":43423,"orbit":-3},{"id":62510,"orbit":-6}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":18,"skill":56818,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks7"},"56838":{"connections":[{"id":42805,"orbit":-4},{"id":62624,"orbit":5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":2,"skill":56838,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield22"},"56841":{"connections":[{"id":18451,"orbit":0}],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":20,"skill":56841,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges11"},"56842":{"ascendancyName":"Titan","connections":[{"id":59540,"orbit":-5}],"group":80,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Stun Buildup","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56842,"stats":["18% increased Stun Buildup"],"stringId":"AscendancyWarrior1Small4"},"56844":{"connections":[{"id":40929,"orbit":-2}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":0,"skill":56844,"stats":["15% increased Archon Buff duration"],"stringId":"archon12"},"56847":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":22,"skill":56847,"stats":["12% increased Damage while affected by a Herald"],"stringId":"heralds12_"},"56857":{"ascendancyName":"Disciple of Varashta","connections":[],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds","isNotable":true,"name":"Sacred Rituals","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":44,"skill":56857,"stats":["60% of your current Energy Shield is added to your Armour for","determining your Physical Damage Reduction from Armour"],"stringId":"AscendancySorceress3Notable1"},"56860":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Resolute Reprisal","orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Despair"],"skill":56860,"stats":["30% increased Parry Range","Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently"],"stringId":"buckler15"},"56876":{"connections":[{"id":46380,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Energy Shield if Consumed Power Charge","orbit":2,"orbitIndex":6,"skill":56876,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_charges12"},"56890":{"connectionArt":"CharacterPlanned","connections":[{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Endlessly Soaring","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":69,"skill":56890,"stats":["Shapeshift Skills have 30% increased Skill Effect Duration"],"stringId":"oracle_wyvern_addon2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56893":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Thicket Warding","orbit":7,"orbitIndex":16,"recipe":["Paranoia","Fear","Paranoia"],"skill":56893,"stats":["20% chance for Charms you use to not consume Charges","Recover 5% of maximum Mana when a Charm is used"],"stringId":"charms5"},"56897":{"connections":[],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Damage","orbit":7,"orbitIndex":10,"skill":56897,"stats":["10% increased Ballista Critical Damage Bonus"],"stringId":"ballista12"},"56910":{"connections":[{"id":28510,"orbit":6},{"id":34061,"orbit":0},{"id":29328,"orbit":6}],"group":840,"icon":"Art/2DArt/SkillIcons/passives/Meleerange.dds","isNotable":true,"name":"Battle-hardened","orbit":5,"orbitIndex":51,"skill":56910,"stats":["Hits against you have 20% reduced Critical Damage Bonus","20% increased Armour and Evasion Rating","+5 to Strength and Dexterity"],"stringId":"duelist_mercenary_notable1"},"56914":{"connections":[{"id":50121,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":5,"skill":56914,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration4"},"56926":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":977,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":3,"skill":56926,"stats":[],"stringId":"mastery_minion_defence_6611"},"56928":{"connections":[{"id":62350,"orbit":7}],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Flask Duration","orbit":3,"orbitIndex":15,"skill":56928,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"stringId":"attack_speed16"},"56933":{"ascendancyName":"Shaman","connections":[{"id":35920,"orbit":0}],"group":68,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds","isNotable":true,"name":"Druidic Champion","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":56933,"stats":["Every 2 Rage also grants 1% more Spell damage"],"stringId":"AscendancyDruid2Notable3"},"56934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":588,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":56934,"stats":[],"stringId":"mastery_fire_6522"},"56935":{"connections":[{"id":57710,"orbit":0},{"id":34058,"orbit":0}],"group":778,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56935,"stats":["+5 to any Attribute"],"stringId":"intelligence15"},"56956":{"connections":[{"id":15885,"orbit":-4},{"id":54632,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":2,"orbitIndex":20,"skill":56956,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence31"},"56978":{"connections":[{"id":21274,"orbit":0}],"group":868,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56978,"stats":["+5 to any Attribute"],"stringId":"dexterity73"},"56988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electric Blood","orbit":0,"orbitIndex":0,"recipe":["Isolation","Isolation","Guilt"],"skill":56988,"stats":["+1% to Maximum Lightning Resistance","50% reduced effect of Shock on you"],"stringId":"lightning59"},"56996":{"connections":[{"id":9568,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":4,"orbitIndex":3,"skill":56996,"stats":["16% increased Totem Life"],"stringId":"totems17_"},"56997":{"connections":[{"id":23861,"orbit":-5},{"id":56595,"orbit":0}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Heavy Contact","orbit":4,"orbitIndex":6,"recipe":["Ire","Envy","Despair"],"skill":56997,"stats":["Hits that Heavy Stun Enemies have Culling Strike"],"stringId":"two_handed12"},"56999":{"connections":[],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Locked On","orbit":0,"orbitIndex":0,"recipe":["Despair","Disgust","Envy"],"skill":56999,"stats":["15% increased Critical Hit Chance for Attacks","15% increased Accuracy Rating"],"stringId":"accuracy19"},"57002":{"connectionArt":"CharacterPlanned","connections":[{"id":48761,"orbit":0}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","isNotable":true,"name":"Rough Carapace","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":57002,"stats":["Gain Physical Thorns damage equal to 8% of maximum Life while Shapeshifted"],"stringId":"oracle_thorns3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57021":{"connections":[{"id":8957,"orbit":0},{"id":45343,"orbit":0},{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":16,"skill":57021,"stats":["Minions have 8% increased Area of Effect"],"stringId":"minion_offence27_"},"57039":{"connections":[{"id":44605,"orbit":6}],"group":803,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":4,"skill":57039,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns1"},"57047":{"connections":[{"id":45278,"orbit":0},{"id":4492,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","isNotable":true,"name":"Polymathy","orbit":5,"orbitIndex":48,"recipe":["Isolation","Suffering","Paranoia"],"skill":57047,"stats":["7% increased Attributes"],"stringId":"all_attributes6"},"57069":{"connections":[{"id":52257,"orbit":0}],"group":1473,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage and Resistance","orbit":0,"orbitIndex":0,"skill":57069,"stats":["5% increased Lightning Damage","+3% to Lightning Resistance"],"stringId":"shock23"},"57079":{"connectionArt":"CharacterPlanned","connections":[{"id":19966,"orbit":-3},{"id":15842,"orbit":0}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Known by All","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":12,"skill":57079,"stats":["Temporary Minion Skills have +2 to Limit of Minions summoned"],"stringId":"oracle_big_family10","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57088":{"connections":[{"id":54557,"orbit":-5}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":20,"skill":57088,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration1"},"57089":{"connections":[],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":2,"orbitIndex":4,"skill":57089,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions23"},"57110":{"connections":[{"id":62159,"orbit":-2},{"id":46561,"orbit":0}],"group":982,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Infused Flesh","orbit":7,"orbitIndex":5,"recipe":["Greed","Envy","Envy"],"skill":57110,"stats":["+20 to maximum Life","8% of Damage taken Recouped as Life"],"stringId":"life_recoup16"},"57141":{"ascendancyName":"Pathfinder","connections":[],"group":1567,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds","isMultipleChoice":true,"isNotable":true,"name":"Brew Concoction","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":57141,"stats":[],"stringId":"AscendancyRanger3Notable7_Choice"},"57178":{"connections":[{"id":21245,"orbit":0},{"id":5284,"orbit":0}],"group":549,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance and Critical Ailment Effect","orbit":0,"orbitIndex":0,"skill":57178,"stats":["10% increased Critical Hit Chance for Spells","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"stringId":"physical17"},"57181":{"ascendancyName":"Invoker","connections":[{"id":52448,"orbit":-7}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":24,"skill":57181,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyMonk2Small7"},"57190":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":27859,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Doomsayer","orbit":1,"orbitIndex":6,"recipe":["Paranoia","Guilt","Disgust"],"skill":57190,"stats":["Herald Skills have 25% increased Area of Effect","Herald Skills deal 30% increased Damage"],"stringId":"heralds19"},"57196":{"connections":[],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":14,"skill":57196,"stats":["3% increased Attack Speed"],"stringId":"attack_speed41"},"57202":{"connectionArt":"CharacterPlanned","connections":[{"id":1628,"orbit":2147483647}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":12,"skill":57202,"stats":["17% increased Stun Threshold"],"stringId":"oracle_beast_corruption4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57204":{"connections":[{"id":47833,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Critical Exploit","orbit":2,"orbitIndex":13,"recipe":["Envy","Paranoia","Ire"],"skill":57204,"stats":["25% increased Critical Hit Chance"],"stringId":"criticals30"},"57227":{"connections":[{"id":23259,"orbit":-5}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":5,"skill":57227,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals77"},"57230":{"connections":[{"id":25851,"orbit":-4},{"id":36270,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":6,"orbitIndex":6,"skill":57230,"stats":["10% increased Physical Damage"],"stringId":"chaos8"},"57253":{"ascendancyName":"Pathfinder","connections":[{"id":38646,"orbit":0},{"id":3936,"orbit":0}],"group":1573,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds","isMultipleChoiceOption":true,"name":"Path of the Warrior","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":57253,"stats":["Can Allocate Passive Skills from the Warrior's starting point","Grants 4 Passive Skill Point"],"stringId":"AscendancyRanger3Notable8_3"},"57273":{"connections":[{"id":33562,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":4,"orbitIndex":33,"skill":57273,"stats":["12% increased Damage while Shapeshifted"],"stringId":"wyvern18"},"57320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":728,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":57320,"stats":[],"stringId":"mastery_armour_and_evasion_6278"},"57373":{"connections":[{"id":44733,"orbit":4}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":57373,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite11"},"57379":{"connections":[{"id":39190,"orbit":0},{"id":49111,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"In Your Face","orbit":3,"orbitIndex":10,"recipe":["Fear","Greed","Envy"],"skill":57379,"stats":["40% increased Melee Damage with Hits at Close Range"],"stringId":"melee33"},"57386":{"connectionArt":"CharacterPlanned","connections":[{"id":4621,"orbit":-6}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Elemental Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":13,"skill":57386,"stats":["17% increased Elemental Ailment Threshold"],"stringId":"oracle_beast_corruption6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57388":{"connections":[{"id":9698,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Overwhelming Strike","orbit":3,"orbitIndex":22,"recipe":["Despair","Envy","Disgust"],"skill":57388,"stats":["15% increased Critical Hit Chance for Attacks","20% increased Critical Damage Bonus for Attack Damage","20% more Stun Buildup with Critical Hits"],"stringId":"criticals64"},"57405":{"connections":[{"id":64807,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":2,"skill":57405,"stats":["10% increased Attack Area Damage"],"stringId":"slam_area4"},"57449":{"ascendancyName":"Martial Artist","connections":[{"id":17356,"orbit":9},{"id":19370,"orbit":-9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":63,"skill":57449,"stats":["8% increased Area of Effect"],"stringId":"AscendancyMonk1Small5"},"57462":{"connections":[{"id":12078,"orbit":-6}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":3,"orbitIndex":17,"skill":57462,"stats":["8% increased Projectile Speed"],"stringId":"projectiles11"},"57471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":42578,"orbit":-4}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Hunker Down","orbit":3,"orbitIndex":8,"recipe":["Despair","Despair","Paranoia"],"skill":57471,"stats":["Recover 20 Life when you Block","+2% to maximum Block chance","80% less Knockback Distance for Blocked Hits"],"stringId":"block13"},"57513":{"connections":[],"flavourText":"What need have I for defence when my enemies\\nare reduced to ash and splinters?","group":1083,"icon":"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds","isKeystone":true,"name":"Eldritch Battery","orbit":0,"orbitIndex":0,"skill":57513,"stats":["Convert 100% of maximum Energy Shield to maximum Mana","Mana Costs are Doubled"],"stringId":"passive_keystone_eldritch_battery__"},"57517":{"connections":[{"id":28268,"orbit":0}],"group":1068,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":57517,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed37"},"57518":{"connections":[{"id":17146,"orbit":4}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":23,"skill":57518,"stats":["20% increased Parry Damage"],"stringId":"deflect3"},"57552":{"connections":[{"id":24871,"orbit":0},{"id":46696,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":4,"orbitIndex":0,"skill":57552,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed19"},"57555":{"connections":[{"id":37608,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":7,"orbitIndex":15,"skill":57555,"stats":["15% chance to Impale on Spell Hit"],"stringId":"physical7"},"57571":{"connections":[{"id":37905,"orbit":-3}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":6,"skill":57571,"stats":["30% increased Flammability Magnitude"],"stringId":"fire_penetration4"},"57596":{"connectionArt":"CharacterPlanned","connections":[{"id":13468,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":71,"skill":57596,"stats":["8% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_life_corruption3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57608":{"connections":[{"id":61703,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Physical Damage","orbit":2,"orbitIndex":15,"skill":57608,"stats":["12% increased Physical Damage while Shapeshifted"],"stringId":"shapeshifting3"},"57615":{"connections":[{"id":32319,"orbit":0},{"id":48836,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":4,"orbitIndex":54,"skill":57615,"stats":["+8% Surpassing chance to fire an additional Arrow"],"stringId":"bow20"},"57616":{"connections":[{"id":56388,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":4,"orbitIndex":3,"skill":57616,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners26"},"57617":{"connections":[{"id":14996,"orbit":-2},{"id":16506,"orbit":-2},{"id":37509,"orbit":-2},{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Shifted Strikes","orbit":0,"orbitIndex":0,"recipe":["Greed","Guilt","Disgust"],"skill":57617,"stats":["30% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting26"},"57626":{"connections":[{"id":36782,"orbit":0}],"group":862,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.dds","name":"Cold and Fire Damage","orbit":7,"orbitIndex":16,"skill":57626,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"stringId":"cold8_"},"57683":{"connections":[{"id":35031,"orbit":2}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":11,"skill":57683,"stats":["3% of Damage taken Recouped as Life"],"stringId":"monkchakra14"},"57703":{"connections":[{"id":54811,"orbit":0},{"id":54485,"orbit":0},{"id":38130,"orbit":0},{"id":19674,"orbit":0}],"group":364,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":57703,"stats":["+5 to any Attribute"],"stringId":"attributes32"},"57710":{"connections":[{"id":39037,"orbit":0},{"id":40783,"orbit":0},{"id":53975,"orbit":0},{"id":58090,"orbit":2147483647}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":0,"skill":57710,"stats":["+5 to any Attribute"],"stringId":"intelligence16"},"57724":{"connections":[{"id":54883,"orbit":-7}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":20,"skill":57724,"stats":["7% increased Chaos Damage"],"stringId":"chaos20_"},"57774":{"connections":[{"id":49657,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Speed","orbit":3,"orbitIndex":21,"skill":57774,"stats":["3% increased Attack Speed while Dual Wielding"],"stringId":"dual_wielding7"},"57775":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":456,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":57775,"stats":[],"stringId":"mastery_aura_6311_"},"57785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":31112,"orbit":0},{"id":56897,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Trained Turrets","orbit":7,"orbitIndex":6,"recipe":["Greed","Despair","Ire"],"skill":57785,"stats":["25% increased Ballista Critical Damage Bonus","20% increased Ballista Critical Hit Chance"],"stringId":"ballista15"},"57791":{"connections":[{"id":52229,"orbit":0}],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Spell Damage and Cast Speed","orbit":2,"orbitIndex":16,"skill":57791,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"stringId":"orb4"},"57805":{"connections":[{"id":43444,"orbit":4}],"group":830,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","isNotable":true,"name":"Clear Space","orbit":4,"orbitIndex":18,"recipe":["Paranoia","Guilt","Guilt"],"skill":57805,"stats":["20% increased Knockback Distance","20% chance to Knock Enemies Back with Hits at Close Range"],"stringId":"knockback20_"},"57810":{"connections":[{"id":40073,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":57810,"stats":["15% increased chance to Shock"],"stringId":"shock13"},"57816":{"connections":[{"id":364,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":8,"skill":57816,"stats":["+8 to Dexterity"],"stringId":"attributes106"},"57819":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":533,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds","isNotable":true,"name":"Integrated Efficiency","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":57819,"stats":["Skills deal 20% increased Damage per Connected Red Support Gem","Skills have 6% increased Skill Speed per Connected Green Support Gem","Skills have 20% increased Critical Hit Chance per Connected Blue Support Gem"],"stringId":"AscendancyMercenary3Notable7"},"57821":{"connections":[{"id":31765,"orbit":0},{"id":26034,"orbit":0}],"group":1366,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":12,"skill":57821,"stats":["+5 to any Attribute"],"stringId":"dexterity9"},"57832":{"connections":[{"id":46300,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":9,"skill":57832,"stats":["10% increased Ignite Magnitude"],"stringId":"ignite13"},"57846":{"connections":[{"id":63451,"orbit":0},{"id":38876,"orbit":6}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":12,"skill":57846,"stats":["15% increased Stun Buildup"],"stringId":"stun19"},"57863":{"connections":[{"id":26356,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Detonator Area","orbit":7,"orbitIndex":5,"skill":57863,"stats":["Detonator skills have 8% increased Area of Effect"],"stringId":"area_attacks43"},"57880":{"connections":[{"id":27082,"orbit":0},{"id":6269,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Damage","orbit":3,"orbitIndex":3,"skill":57880,"stats":["12% increased Damage with Axes"],"stringId":"axe3"},"57921":{"connections":[{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Wolf's Howl","orbit":3,"orbitIndex":21,"recipe":["Disgust","Paranoia","Greed"],"skill":57921,"stats":["30% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting29"},"57928":{"connections":[{"id":43303,"orbit":2}],"group":1201,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":57928,"stats":["12% increased Lightning Damage"],"stringId":"lightning66"},"57933":{"connections":[{"id":16150,"orbit":0}],"group":1539,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":57933,"stats":["Companions deal 12% increased Damage"],"stringId":"companions18"},"57945":{"connections":[{"id":7412,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charge Generation","orbit":7,"orbitIndex":12,"skill":57945,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks9"},"57959":{"ascendancyName":"Smith of Kitava","connections":[{"id":63401,"orbit":0}],"group":9,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds","isNotable":true,"name":"Coal Stoker","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":57959,"stats":["Modifiers to Fire Resistance also grant Cold and Lightning Resistance at 50% of their value"],"stringId":"AscendancyWarrior3Notable4"},"57966":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":57966,"stats":[],"stringId":"mastery_critical_6416"},"57967":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":640,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Sturdy Mind","orbit":0,"orbitIndex":0,"skill":57967,"stats":["+30 to maximum Mana","14% increased Mana Regeneration Rate"],"stringId":"mana17"},"57970":{"connections":[{"id":55995,"orbit":0},{"id":21537,"orbit":0}],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":10,"skill":57970,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges6"},"58002":{"connections":[{"id":45086,"orbit":0},{"id":55668,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":3,"orbitIndex":3,"skill":58002,"stats":["10% increased Physical Damage"],"stringId":"physical10"},"58013":{"connections":[{"id":4844,"orbit":0}],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":4,"skill":58013,"stats":["10% increased Projectile Damage"],"stringId":"ranged4"},"58016":{"connections":[{"id":49537,"orbit":7},{"id":42205,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"All Natural","orbit":4,"orbitIndex":42,"recipe":["Fear","Fear","Greed"],"skill":58016,"stats":["+5% to all Elemental Resistances","30% increased Elemental Damage"],"stringId":"elemental39"},"58022":{"connections":[{"id":5186,"orbit":3},{"id":26762,"orbit":-7}],"group":1363,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":58022,"stats":["11% increased Chaos Damage"],"stringId":"chaos19"},"58038":{"connections":[{"id":31566,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":3,"skill":58038,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded7"},"58058":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connectionArt":"CharacterPlanned","connections":[],"group":86,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Bow Mastery","orbit":0,"orbitIndex":0,"skill":58058,"stats":[],"stringId":"oracle_bow_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58088":{"connections":[{"id":16620,"orbit":5}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Block and Movement Penalty with Raised Shield","orbit":4,"orbitIndex":36,"skill":58088,"stats":["4% increased Block chance","5% reduced Movement Speed Penalty while Actively Blocking"],"stringId":"shield29"},"58090":{"connections":[{"id":21540,"orbit":4},{"id":34367,"orbit":3}],"group":851,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":58090,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup1"},"58096":{"connections":[{"id":17411,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Lasting Incantations","orbit":3,"orbitIndex":20,"recipe":["Isolation","Greed","Disgust"],"skill":58096,"stats":["20% increased Spell Damage","15% increased Skill Effect Duration"],"stringId":"spells31"},"58109":{"connections":[{"id":14340,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":58109,"stats":["+5 to any Attribute"],"stringId":"dexterity69"},"58115":{"connections":[{"id":52241,"orbit":2},{"id":11672,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana on Kill","orbit":2,"orbitIndex":12,"skill":58115,"stats":["Recover 1% of maximum Mana on Kill"],"stringId":"mana_regeneration48"},"58117":{"connections":[{"id":41186,"orbit":0},{"id":13839,"orbit":0},{"id":56996,"orbit":0},{"id":53719,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":3,"skill":58117,"stats":["15% increased Totem Damage"],"stringId":"totems39"},"58125":{"connections":[{"id":10681,"orbit":5}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":60,"skill":58125,"stats":["5% increased Block chance"],"stringId":"shield12"},"58138":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":125,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":1,"orbitIndex":6,"skill":58138,"stats":[],"stringId":"mastery_armour_and_energy_shield_6274"},"58149":{"ascendancyName":"Ritualist","connections":[{"id":62804,"orbit":8}],"group":1618,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Life Recovery Rate","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":58149,"stats":["10% increased Life Recovery rate"],"stringId":"AscendancyHuntress3Small5"},"58157":{"connections":[{"id":61149,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":7,"orbitIndex":17,"skill":58157,"stats":["20% increased Stun Recovery"],"stringId":"monkchakra28"},"58170":{"connections":[{"id":61067,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","id":41568,"name":"Life Regeneration","stats":["Regenerate 0.2% of maximum Life per second"]}},"orbit":2,"orbitIndex":1,"skill":58170,"stats":["10% increased Spell Damage"],"stringId":"spells2"},"58182":{"connections":[{"id":49220,"orbit":-5}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":22,"skill":58182,"stats":["Gain 3 Life per enemy killed"],"stringId":"life_on_kill1"},"58183":{"connections":[{"id":60241,"orbit":0},{"id":21245,"orbit":0},{"id":32278,"orbit":0}],"group":531,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Blood Tearing","orbit":2,"orbitIndex":11,"recipe":["Despair","Isolation","Greed"],"skill":58183,"stats":["15% increased Magnitude of Bleeding you inflict","25% increased Physical Damage"],"stringId":"physical35"},"58197":{"connectionArt":"CharacterPlanned","connections":[{"id":35980,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Unquenchable Iron","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":6,"orbitIndex":60,"skill":58197,"stats":["Gain 18% of Physical Damage as Extra Lightning Damage"],"stringId":"oracle_rust_king8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Well of Power","orbit":0,"orbitIndex":0,"recipe":["Fear","Ire","Ire"],"skill":58198,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently","Recover 5% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges16"},"58215":{"connections":[{"id":292,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Sanguimantic Rituals","orbit":4,"orbitIndex":8,"recipe":["Paranoia","Suffering","Isolation"],"skill":58215,"stats":["Regenerate 1% of maximum Life per second","Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"],"stringId":"life_recoup26"},"58295":{"connections":[],"group":271,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":4,"skill":58295,"stats":["+5 to any Attribute"],"stringId":"strength45_"},"58312":{"connections":[{"id":49497,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":10,"skill":58312,"stats":["5% increased Culling Strike Threshold"],"stringId":"slaying2_"},"58329":{"connections":[{"id":56360,"orbit":0},{"id":61196,"orbit":0},{"id":56638,"orbit":0}],"group":987,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":18,"skill":58329,"stats":["+5 to any Attribute"],"stringId":"intelligence77"},"58362":{"connections":[{"id":51335,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isSwitchable":true,"name":"Elemental Ailment Chance","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","id":15545,"name":"Physical Damage","stats":["10% increased Physical Damage"]}},"orbit":4,"orbitIndex":69,"skill":58362,"stats":["20% increased Flammability Magnitude","10% increased Freeze Buildup","10% increased chance to Shock"],"stringId":"sorcerer_start1"},"58363":{"connections":[{"id":55938,"orbit":2}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":7,"orbitIndex":6,"skill":58363,"stats":["10% increased effect of Archon Buffs on you"],"stringId":"archon9"},"58368":{"connectionArt":"CharacterPlanned","connections":[{"id":40511,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":0,"skill":58368,"stats":["Minions have 12% increased maximum Life"],"stringId":"oracle_forbidden_path2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58379":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1570,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds","isMultipleChoiceOption":true,"name":"Acidic Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":58379,"stats":["Grants Skill: Acidic Concoction"],"stringId":"AscendancyRanger3Notable7_4"},"58387":{"connections":[{"id":52454,"orbit":4}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":6,"skill":58387,"stats":["7% increased Chaos Damage"],"stringId":"chaos14"},"58388":{"connections":[{"id":13157,"orbit":0},{"id":17702,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":23,"skill":58388,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks4"},"58397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":19338,"orbit":0},{"id":31647,"orbit":0},{"id":2334,"orbit":0}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","isNotable":true,"name":"Proficiency","orbit":0,"orbitIndex":0,"recipe":["Fear","Guilt","Paranoia"],"skill":58397,"stats":["+25 to Dexterity"],"stringId":"dexterity102"},"58416":{"connections":[],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Speed","orbit":2,"orbitIndex":11,"skill":58416,"stats":["10% increased Projectile Speed"],"stringId":"quivers6"},"58426":{"connections":[{"id":34401,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Pocket Sand","orbit":2,"orbitIndex":21,"recipe":["Paranoia","Guilt","Paranoia"],"skill":58426,"stats":["50% increased Blind Effect"],"stringId":"blind9"},"58496":{"connections":[{"id":9328,"orbit":-4},{"id":37187,"orbit":5}],"group":150,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage against Immobilised","orbit":0,"orbitIndex":0,"skill":58496,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"stringId":"bear5"},"58513":{"connections":[{"id":14418,"orbit":2147483647},{"id":11774,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion and Movement Speed","orbit":3,"orbitIndex":9,"skill":58513,"stats":["1% increased Movement Speed","8% increased Evasion Rating"],"stringId":"azmerianimals7"},"58526":{"connections":[],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":15,"skill":58526,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect37"},"58528":{"connections":[{"id":5710,"orbit":6}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":2,"skill":58528,"stats":["10% increased Melee Damage"],"stringId":"melee54"},"58539":{"connections":[{"id":60899,"orbit":0}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Movement Penalty","orbit":7,"orbitIndex":2,"skill":58539,"stats":["3% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"spell_suppression36"},"58574":{"ascendancyName":"Ritualist","connections":[],"group":1612,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Mana","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":58574,"stats":["30% reduced maximum Mana"],"stringId":"AscendancyHuntress3Small1_1"},"58591":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":589,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds","isNotable":true,"name":"Enhanced Effectiveness","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":58591,"stats":["20% less Attributes","Inherent bonuses gained from Attributes are doubled"],"stringId":"AscendancyMercenary3Notable5__"},"58593":{"connections":[{"id":33463,"orbit":9},{"id":26556,"orbit":-5}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":5,"orbitIndex":48,"skill":58593,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield30"},"58644":{"connections":[{"id":42714,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":7,"orbitIndex":21,"skill":58644,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed44"},"58646":{"ascendancyName":"Shaman","connections":[{"id":46654,"orbit":2147483647}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds","isNotable":true,"name":"Reactive Growth","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":6,"orbitIndex":26,"skill":58646,"stats":["10% less Elemental Damage taken","Adapt to the highest Elemental Damage Type of each Hit you take","10% less Damage taken of each Elemental Damage Type per matching Adaptation"],"stringId":"AscendancyDruid2Notable4"},"58651":{"connections":[{"id":49357,"orbit":0},{"id":50558,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isSwitchable":true,"name":"Minion Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":63913,"name":"Armour and Energy Shield","stats":["12% increased Armour","12% increased maximum Energy Shield"]}},"orbit":4,"orbitIndex":71,"skill":58651,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence1"},"58674":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":695,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":1,"skill":58674,"stats":[],"stringId":"mastery_elemental_6469"},"58692":{"connections":[],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":3,"orbitIndex":1,"skill":58692,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield29_"},"58704":{"ascendancyName":"Warbringer","connections":[{"id":49380,"orbit":0}],"group":29,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds","isNotable":true,"name":"Anvil's Weight","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":58704,"stats":["Break Armour equal to 10% of Hit Damage dealt"],"stringId":"AscendancyWarrior2Notable1"},"58714":{"connections":[{"id":39431,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Grenadier","orbit":4,"orbitIndex":60,"recipe":["Paranoia","Fear","Isolation"],"skill":58714,"stats":["Grenade Skills have +1 Cooldown Use"],"stringId":"grenades10"},"58718":{"connections":[{"id":35015,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":58718,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed25"},"58747":{"ascendancyName":"Chronomancer","connections":[],"group":390,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds","isNotable":true,"name":"Ultimate Command","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":58747,"stats":["Grants Skill: Time Freeze"],"stringId":"AscendancySorceress2Notable2"},"58751":{"ascendancyName":"Lich","connections":[{"id":17788,"orbit":0}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Energy Shield","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":35941,"name":"Energy Shield","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["20% increased maximum Energy Shield"]}},"orbit":8,"orbitIndex":0,"skill":58751,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancyWitch3Small9"},"58779":{"connections":[{"id":51040,"orbit":0},{"id":327,"orbit":0},{"id":23822,"orbit":0},{"id":47976,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":2,"orbitIndex":6,"skill":58779,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"deflect65"},"58783":{"connections":[{"id":26520,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech. Armour and Evasion while Leeching","orbit":2,"orbitIndex":19,"skill":58783,"stats":["6% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech1"},"58789":{"connections":[{"id":13307,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":20,"skill":58789,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield14"},"58814":{"connections":[{"id":55802,"orbit":0},{"id":244,"orbit":0},{"id":12465,"orbit":0},{"id":26830,"orbit":0},{"id":26952,"orbit":0}],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":58814,"stats":["+5 to any Attribute"],"stringId":"attributes8_"},"58817":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Artillery Strike","orbit":4,"orbitIndex":15,"recipe":["Suffering","Suffering","Fear"],"skill":58817,"stats":["Attack Skills have +1 to maximum number of Summoned Ballista Totems","15% increased Area of Effect while you have a Totem"],"stringId":"ballista16"},"58838":{"connections":[{"id":26725,"orbit":6}],"group":324,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":60,"skill":58838,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold21"},"58848":{"connections":[{"id":22962,"orbit":2147483647},{"id":10576,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":7,"orbitIndex":10,"skill":58848,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed40"},"58855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":250,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":58855,"stats":[],"stringId":"mastery_armour_6293"},"58884":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":930,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":58884,"stats":[],"stringId":"mastery_two_hand_6773"},"58894":{"connections":[],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Dominus' Providence","orbit":2,"orbitIndex":1,"recipe":["Guilt","Suffering","Envy"],"skill":58894,"stats":["+8% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","30% reduced effect of Curses on you","Immune to Exposure"],"stringId":"energy_shield_and_armour48"},"58926":{"connections":[{"id":64572,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":16,"skill":58926,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze27"},"58930":{"connections":[{"id":14934,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":9,"skill":58930,"stats":["3% increased Cast Speed"],"stringId":"cast_speed25"},"58932":{"ascendancyName":"Lich","connections":[],"group":1160,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds","isNotable":true,"isSwitchable":true,"name":"Eldritch Empowerment","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":0,"orbitIndex":0,"skill":58932,"stats":["Sacrificing Energy Shield does not interrupt Recharge","Sacrifice 5% of maximum Energy Shield when you Cast a Spell","Spells for which this Sacrifice was fully made deal 30% more Damage"],"stringId":"AscendancyWitch3Notable8"},"58939":{"connections":[{"id":44608,"orbit":0}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Dispatch Foes","orbit":2,"orbitIndex":8,"recipe":["Envy","Envy","Paranoia"],"skill":58939,"stats":["40% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"stringId":"criticals80"},"58971":{"connections":[{"id":12998,"orbit":-6},{"id":38678,"orbit":-7}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":11,"skill":58971,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression27"},"59006":{"connections":[{"id":37956,"orbit":7}],"group":500,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":59006,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration_spells5"},"59028":{"connections":[{"id":41210,"orbit":0}],"group":838,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":16,"skill":59028,"stats":["10% increased Projectile Damage"],"stringId":"projectiles6__"},"59039":{"connectionArt":"CharacterPlanned","connections":[{"id":28223,"orbit":4}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":38,"skill":59039,"stats":["20% increased Critical Damage Bonus"],"stringId":"oracle_slow_crits1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59053":{"connections":[{"id":54805,"orbit":-7}],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect and Hinder Duration","orbit":3,"orbitIndex":8,"skill":59053,"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"stringId":"slowed_enemies14_"},"59061":{"connections":[{"id":28267,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":6,"skill":59061,"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"stringId":"criticals31"},"59064":{"connections":[],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":3,"orbitIndex":21,"skill":59064,"stats":["10% increased Effect of your Mark Skills"],"stringId":"marks16"},"59070":{"connections":[{"id":55011,"orbit":0}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Enduring Archon","orbit":7,"orbitIndex":13,"recipe":["Disgust","Isolation","Paranoia"],"skill":59070,"stats":["30% increased Archon Buff duration"],"stringId":"archon4"},"59083":{"connections":[{"id":32364,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":4,"skill":59083,"stats":["10% increased Ignite Magnitude"],"stringId":"fire51_"},"59093":{"connections":[{"id":14110,"orbit":0},{"id":5088,"orbit":0},{"id":53444,"orbit":0},{"id":4621,"orbit":0},{"id":25890,"orbit":0}],"group":287,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59093,"stats":["+5 to any Attribute"],"stringId":"intelligence71"},"59136":{"connectionArt":"CharacterPlanned","connections":[{"id":17729,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":21,"skill":59136,"stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"stringId":"oracle_spell_poison2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59180":{"connections":[{"id":50023,"orbit":2147483647}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":7,"orbitIndex":15,"skill":59180,"stats":["10% increased Attack Damage"],"stringId":"glory3"},"59208":{"connections":[{"id":5681,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Frantic Fighter","orbit":2,"orbitIndex":16,"recipe":["Ire","Guilt","Suffering"],"skill":59208,"stats":["30% reduced Accuracy Rating while Surrounded","100% increased Attack Damage while Surrounded"],"stringId":"being_surrounded24"},"59213":{"connections":[{"id":48240,"orbit":3}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":2,"orbitIndex":15,"skill":59213,"stats":["20% increased Stun Recovery"],"stringId":"stun_threshold3"},"59214":{"connections":[{"id":26268,"orbit":0},{"id":6570,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Fated End","orbit":7,"orbitIndex":18,"recipe":["Disgust","Isolation","Despair"],"skill":59214,"stats":["30% increased Curse Duration","Targets Cursed by you have 50% reduced Life Regeneration Rate","Enemies you Curse cannot Recharge Energy Shield"],"stringId":"curses14"},"59256":{"connections":[{"id":8531,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":7,"skill":59256,"stats":["10% increased Critical Hit Chance if you have Killed Recently"],"stringId":"criticals6"},"59263":{"connections":[{"id":37963,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Ripping Blade","orbit":4,"orbitIndex":33,"skill":59263,"stats":["25% increased Damage with Swords"],"stringId":"sword14"},"59281":{"connections":[{"id":14394,"orbit":7},{"id":1221,"orbit":0},{"id":50124,"orbit":-7},{"id":58109,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":22,"skill":59281,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion30_"},"59289":{"connections":[{"id":22532,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":21,"skill":59289,"stats":["15% increased Immobilisation buildup"],"stringId":"immobilisation2"},"59303":{"connections":[{"id":25029,"orbit":0}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Lucky Rabbit Foot","orbit":4,"orbitIndex":3,"recipe":["Isolation","Disgust","Ire"],"skill":59303,"stats":["30% increased Damage while you have an active Charm","6% increased Movement Speed while you have an active Charm"],"stringId":"charms6"},"59342":{"ascendancyName":"Blood Mage","connections":[{"id":23416,"orbit":9}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life Leech","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":6,"orbitIndex":68,"skill":59342,"stats":["12% increased amount of Life Leeched"],"stringId":"AscendancyWitch2Small6"},"59355":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":59355,"stats":[],"stringId":"mastery_attack_6298"},"59356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":59356,"stats":[],"stringId":"mastery_flask6173_"},"59362":{"connections":[{"id":41669,"orbit":0},{"id":62677,"orbit":0},{"id":50720,"orbit":0}],"group":810,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59362,"stats":["+5 to any Attribute"],"stringId":"intelligence45"},"59367":{"connections":[{"id":10774,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":2,"orbitIndex":6,"skill":59367,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells10"},"59368":{"connections":[{"id":61215,"orbit":4},{"id":48116,"orbit":0}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":2,"skill":59368,"stats":["12% increased Stun Threshold"],"stringId":"azmerianimals2"},"59372":{"ascendancyName":"Titan","connections":[{"id":56842,"orbit":-5}],"group":79,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds","isNotable":true,"name":"Crushing Impacts","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":59372,"stats":["25% more Damage against Heavy Stunned Enemies","Your Hits are Crushing Blows"],"stringId":"AscendancyWarrior1Notable4"},"59376":{"connections":[],"group":673,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":3,"skill":59376,"stats":["+5 to any Attribute"],"stringId":"intelligence83"},"59387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Infusion of Power","orbit":0,"orbitIndex":0,"recipe":["Despair","Guilt","Fear"],"skill":59387,"stats":["Gain a Power Charge when you consume an Elemental Infusion"],"stringId":"power_charges20"},"59390":{"connections":[{"id":11472,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Evasion if Consumed Frenzy Charge","orbit":2,"orbitIndex":16,"skill":59390,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"stringId":"frenzy_charges3"},"59413":{"connections":[],"group":675,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59413,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup29"},"59425":{"connections":[{"id":23939,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":16,"skill":59425,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup21"},"59433":{"connections":[{"id":60916,"orbit":0}],"group":233,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Thirst for Endurance","orbit":2,"orbitIndex":20,"recipe":["Despair","Envy","Ire"],"skill":59433,"stats":["25% chance when you gain an Endurance Charge to gain an additional Endurance Charge"],"stringId":"power_endurance_charges6"},"59438":{"connections":[{"id":18101,"orbit":-7},{"id":15801,"orbit":0}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Flow of Life","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Fear"],"skill":59438,"stats":["Debuffs on you expire 10% faster","20% increased speed of Recoup Effects"],"stringId":"life_recoup35"},"59442":{"connections":[{"id":59413,"orbit":0}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59442,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup33"},"59446":{"connections":[{"id":4544,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":5,"skill":59446,"stats":["10% increased Life Recovery from Flasks"],"stringId":"azmerianimals63"},"59466":{"connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":7,"orbitIndex":0,"skill":59466,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries6"},"59480":{"connections":[{"id":3999,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":69,"skill":59480,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks14"},"59498":{"connections":[{"id":54814,"orbit":0}],"group":473,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":59498,"stats":["20% increased Presence Area of Effect"],"stringId":"auras6"},"59501":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[{"id":25619,"orbit":0},{"id":42354,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":59501,"stats":[],"stringId":"mastery_attack16"},"59503":{"connections":[{"id":22208,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Critical Chance","orbit":7,"orbitIndex":13,"skill":59503,"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"stringId":"accuracy10"},"59538":{"connections":[{"id":34912,"orbit":0},{"id":47976,"orbit":0}],"group":1425,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59538,"stats":["+5 to any Attribute"],"stringId":"intelligence67"},"59540":{"ascendancyName":"Titan","connections":[],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds","isNotable":true,"name":"Mountain Splitter","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":9,"orbitIndex":67,"skill":59540,"stats":["Every Third Slam skill that doesn't create Fissures which you use yourself causes 3 additional Aftershocks ahead and to each side of the initial area"],"stringId":"AscendancyWarrior1Notable3"},"59541":{"connections":[{"id":28573,"orbit":7},{"id":56926,"orbit":0}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Necrotised Flesh","orbit":3,"orbitIndex":3,"recipe":["Fear","Guilt","Fear"],"skill":59541,"stats":["Minions have 40% increased maximum Life","Minions have 10% reduced Life Recovery rate"],"stringId":"minion_defence15"},"59542":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1555,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds","isMultipleChoiceOption":true,"name":"Far Shot","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":59542,"stats":["Projectiles deal 0% more Hit damage to targets in the first 3.5 metres of their movement, scaling up with distance travelled to reach 20% after 7 metres"],"stringId":"AscendancyRanger1Notable2_1"},"59589":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":52659,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Heavy Armour","orbit":3,"orbitIndex":23,"recipe":["Despair","Fear","Greed"],"skill":59589,"stats":["Gain Armour equal to 150% of total Strength Requirements of Equipped Boots, Gloves and Helmet"],"stringId":"armour33"},"59600":{"connections":[{"id":9411,"orbit":0}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":21,"skill":59600,"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"stringId":"life_flasks17"},"59603":{"connections":[],"group":982,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":59603,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup12"},"59636":{"connections":[{"id":13769,"orbit":-4},{"id":48007,"orbit":0}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Open Mind","orbit":7,"orbitIndex":12,"skill":59636,"stats":["25% increased Mana Regeneration Rate"],"stringId":"mana_regeneration22_"},"59644":{"connections":[{"id":42959,"orbit":-7}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":15,"skill":59644,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison31"},"59647":{"connections":[{"id":8791,"orbit":3}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":7,"orbitIndex":10,"skill":59647,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"duelist_minions8"},"59651":{"connections":[{"id":41654,"orbit":2147483647},{"id":47821,"orbit":4},{"id":25557,"orbit":0}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":11,"skill":59651,"stats":["Offering Skills have 20% increased Duration"],"stringId":"corpses18"},"59653":{"connections":[{"id":35987,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":7,"orbitIndex":10,"skill":59653,"stats":["2% increased Movement Speed"],"stringId":"movement_speed3"},"59657":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":42078,"orbit":0}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds","isNotable":true,"name":"First Teachings of the Keeper","orbit":3,"orbitIndex":16,"recipe":["Disgust","Greed","Despair"],"skill":59657,"stats":["+5% to Fire Resistance","+5% to Chaos Resistance","Gain Deflection Rating equal to 8% of Evasion Rating","10% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield28"},"59661":{"connections":[{"id":12245,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Faster Ignites and Flammability Magnitude","orbit":7,"orbitIndex":17,"skill":59661,"stats":["15% increased Flammability Magnitude","Ignites you inflict deal Damage 4% faster"],"stringId":"fire59"},"59694":{"connections":[{"id":52399,"orbit":0}],"group":1506,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Damage","orbit":0,"orbitIndex":0,"skill":59694,"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"stringId":"quarterstaff17"},"59695":{"connections":[{"id":28950,"orbit":8}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":19,"skill":59695,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration9"},"59710":{"connections":[{"id":52618,"orbit":5}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Spell Damage","orbit":7,"orbitIndex":21,"skill":59710,"stats":["12% increased Spell Damage if you have Shapeshifted to Human form Recently"],"stringId":"shapeshifting15"},"59720":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":41163,"orbit":0}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Beastial Skin","orbit":5,"orbitIndex":42,"recipe":["Greed","Disgust","Envy"],"skill":59720,"stats":["100% increased Evasion Rating from Equipped Body Armour"],"stringId":"evasion33"},"59759":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":60251,"orbit":4}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds","isNotable":true,"name":"Chayula's Gift","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":8,"orbitIndex":4,"skill":59759,"stats":["+10% to Maximum Chaos Resistance","Chaos Resistance is doubled"],"stringId":"AscendancyMonk3Notable4"},"59767":{"connections":[{"id":31292,"orbit":0},{"id":20645,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Reverberating Impact","orbit":3,"orbitIndex":11,"skill":59767,"stats":["Break 25% increased Armour","12% increased Area of Effect for Attacks"],"stringId":"area_attacks32"},"59775":{"connections":[{"id":20782,"orbit":-4}],"group":1324,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":59775,"stats":["7% increased Chaos Damage"],"stringId":"chaos23"},"59777":{"connections":[{"id":10362,"orbit":0},{"id":17791,"orbit":0},{"id":13937,"orbit":0},{"id":53719,"orbit":0}],"group":159,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59777,"stats":["+5 to any Attribute"],"stringId":"strength65_"},"59779":{"connections":[{"id":50986,"orbit":0},{"id":42350,"orbit":6},{"id":97,"orbit":6},{"id":11311,"orbit":5}],"group":805,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":59779,"stats":["+10 to Armour","+8 to Evasion Rating"],"stringId":"armour_and_evasion2"},"59781":{"connections":[{"id":39416,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds","isNotable":true,"name":"Embodiment of Death","orbit":2,"orbitIndex":19,"recipe":["Despair","Greed","Fear"],"skill":59781,"stats":["Immune to Bleeding while affected by an Archon Buff"],"stringId":"archon25"},"59785":{"connections":[{"id":27296,"orbit":0},{"id":1200,"orbit":0},{"id":33452,"orbit":0},{"id":8852,"orbit":0}],"group":130,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59785,"stats":["+5 to any Attribute"],"stringId":"attributes5"},"59795":{"connections":[{"id":10156,"orbit":-3}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":33,"skill":59795,"stats":["+5 to any Attribute"],"stringId":"strength95"},"59798":{"connections":[{"id":5335,"orbit":-4}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Ailment Threshold from Energy Shield","orbit":1,"orbitIndex":5,"skill":59798,"stats":["Gain additional Ailment Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield20"},"59799":{"connections":[{"id":7338,"orbit":4}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":1,"orbitIndex":10,"skill":59799,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield18"},"59822":{"ascendancyName":"Blood Mage","connections":[{"id":8415,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Blood Mage","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":59822,"stats":[],"stringId":"AscendancyWitch2Start"},"59881":{"connections":[{"id":54417,"orbit":0},{"id":28556,"orbit":-5}],"group":844,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":16,"skill":59881,"stats":["+5 to any Attribute"],"stringId":"dexterity28"},"59886":{"connections":[{"id":4442,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Armour Applies to Lightning Damage Hits","orbit":5,"orbitIndex":23,"skill":59886,"stats":["+15% of Armour also applies to Lightning Damage"],"stringId":"maximum_resistances11"},"59908":{"connectionArt":"CharacterPlanned","connections":[{"id":36197,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Area of Effect","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":23,"skill":59908,"stats":["10% increased Area of Effect for Skills used by Totems"],"stringId":"oracle_totems5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59909":{"connections":[{"id":30539,"orbit":4}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":7,"orbitIndex":22,"skill":59909,"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"stringId":"corpses7"},"59913":{"ascendancyName":"Deadeye","connections":[{"id":29871,"orbit":0}],"group":1556,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds","isNotable":true,"name":"Called Shots","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":59913,"stats":["Grants Skill: Called Shots"],"stringId":"AscendancyRanger1Notable7"},"59915":{"connections":[{"id":7741,"orbit":-6},{"id":97,"orbit":-6},{"id":2455,"orbit":-6}],"group":837,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":59915,"stats":["10% increased Projectile Damage"],"stringId":"projectiles18"},"59938":{"connections":[{"id":50757,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Against the Elements","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Envy"],"skill":59938,"stats":["30% increased Elemental Ailment Threshold","15% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation19_"},"59945":{"connections":[{"id":4527,"orbit":0},{"id":45327,"orbit":0},{"id":21684,"orbit":0}],"group":214,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59945,"stats":["+5 to any Attribute"],"stringId":"attributes81"},"60014":{"connectionArt":"CharacterPlanned","connections":[{"id":38474,"orbit":0}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Scent of Blood","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":16,"skill":60014,"stats":["3% increased Movement Speed","20% increased Bleeding Duration","40% chance for Attack Hits to apply Incision"],"stringId":"oracle_bleed3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":15207,"orbit":0},{"id":22208,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Falcon Dive","orbit":0,"orbitIndex":0,"recipe":["Isolation","Paranoia","Paranoia"],"skill":60034,"stats":["4% increased Attack Speed","1% increased Attack Speed per 400 Accuracy Rating, up to 20%"],"stringId":"accuracy20"},"60064":{"connections":[{"id":47263,"orbit":0},{"id":3027,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":18,"skill":60064,"stats":["10% increased Physical Damage"],"stringId":"physical26"},"60068":{"connections":[{"id":55925,"orbit":7}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":3,"orbitIndex":12,"skill":60068,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage22"},"60083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":44239,"orbit":0}],"group":1141,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Pin and Run","orbit":0,"orbitIndex":0,"recipe":["Disgust","Despair","Disgust"],"skill":60083,"stats":["30% increased Pin Buildup","5% increased Movement Speed if you've Pinned an Enemy Recently"],"stringId":"pin10"},"60085":{"connections":[{"id":55802,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":15,"skill":60085,"stats":["10% increased Damage"],"stringId":"mercenary11"},"60107":{"connections":[{"id":57204,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":9,"skill":60107,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals24"},"60116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":906,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":3,"orbitIndex":10,"skill":60116,"stats":[],"stringId":"mastery_armour_and_evasion_6283"},"60138":{"connections":[{"id":52695,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Stylebender","orbit":5,"orbitIndex":3,"recipe":["Greed","Paranoia","Suffering"],"skill":60138,"stats":["Hits Break 30% increased Armour on targets with Ailments","+10 to Strength","25% increased Physical Damage"],"stringId":"chaos35"},"60170":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":60170,"stats":[],"stringId":"mastery_cold59"},"60173":{"connections":[{"id":4238,"orbit":2}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Accuracy","orbit":7,"orbitIndex":21,"skill":60173,"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"stringId":"one_handed11"},"60191":{"connections":[{"id":54985,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":11,"skill":60191,"stats":["8% increased Bolt Speed"],"stringId":"crossbow27"},"60203":{"connections":[{"id":5332,"orbit":9}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":2,"skill":60203,"stats":["+8 to Strength"],"stringId":"attributes112"},"60210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":63431,"orbit":0}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":1,"orbitIndex":9,"skill":60210,"stats":[],"stringId":"mastery_poison200"},"60230":{"connections":[{"id":56935,"orbit":0},{"id":58362,"orbit":0},{"id":10192,"orbit":0},{"id":55909,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":19602,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":5,"orbitIndex":0,"skill":60230,"stats":["8% increased Elemental Damage"],"stringId":"elemental15"},"60239":{"connections":[{"id":15343,"orbit":5},{"id":49356,"orbit":-2}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":7,"skill":60239,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield32"},"60241":{"connections":[{"id":57178,"orbit":0}],"group":521,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":60241,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical16"},"60251":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34567,"orbit":6}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Damage","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":8,"orbitIndex":71,"skill":60251,"stats":["11% increased Chaos Damage"],"stringId":"AscendancyMonk3Small10"},"60269":{"connections":[{"id":6588,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Roil","orbit":7,"orbitIndex":19,"recipe":["Disgust","Greed","Ire"],"skill":60269,"stats":["10% reduced Spell Area Damage","Spell Skills have 25% increased Area of Effect"],"stringId":"area_spells24"},"60273":{"connections":[{"id":28199,"orbit":0},{"id":40626,"orbit":0}],"group":1323,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Hindering Obstacles","orbit":0,"orbitIndex":0,"recipe":["Disgust","Guilt","Despair"],"skill":60273,"stats":["Debuffs inflicted by Hazards have 30% increased Slow Magnitude","30% increased Hazard Immobilisation buildup"],"stringId":"hazards20"},"60274":{"connections":[{"id":13293,"orbit":4},{"id":19236,"orbit":0}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":0,"skill":60274,"stats":["15% increased Armour"],"stringId":"armour4_"},"60287":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":37397,"orbit":0},{"id":32952,"orbit":0},{"id":63259,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds","isMultipleChoice":true,"isNotable":true,"name":"Implanted Gems","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":60287,"stats":[],"stringId":"AscendancyMercenary3Notable2"},"60298":{"ascendancyName":"Smith of Kitava","connections":[],"group":15,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds","isNotable":true,"name":"Against the Anvil","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":60298,"stats":["Grants Skill: Temper Weapon"],"stringId":"AscendancyWarrior3Notable3"},"60313":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":724,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":60313,"stats":[],"stringId":"mastery_chaos6172"},"60323":{"connections":[{"id":9199,"orbit":0},{"id":47560,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Surpassing Projectile Chance","orbit":6,"orbitIndex":54,"skill":60323,"stats":["+8% Surpassing chance to fire an additional Projectile"],"stringId":"projectiles43"},"60324":{"connections":[{"id":1506,"orbit":2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":14,"skill":60324,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant16_"},"60332":{"connections":[{"id":21213,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":4,"skill":60332,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour54"},"60362":{"connections":[{"id":56265,"orbit":0}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":6,"skill":60362,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals88_"},"60404":{"connections":[{"id":20691,"orbit":0},{"id":25011,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Perfect Opportunity","orbit":2,"orbitIndex":14,"recipe":["Ire","Suffering","Suffering"],"skill":60404,"stats":["30% increased Stun Buildup","Damage with Hits is Lucky against Heavy Stunned Enemies"],"stringId":"stun16"},"60464":{"connections":[{"id":58971,"orbit":-6},{"id":28623,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Fan the Flames","orbit":4,"orbitIndex":45,"recipe":["Suffering","Paranoia","Despair"],"skill":60464,"stats":["25% reduced Ignite Duration on you","40% increased Elemental Ailment Threshold"],"stringId":"spell_suppression23"},"60480":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":4,"skill":60480,"stats":["8% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds11"},"60483":{"connections":[{"id":7809,"orbit":0},{"id":36540,"orbit":0}],"group":1429,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":60483,"stats":["12% increased Lightning Damage"],"stringId":"lightning5"},"60488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":903,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":60488,"stats":[],"stringId":"mastery_trap_6765"},"60505":{"connections":[{"id":28050,"orbit":0},{"id":65009,"orbit":0},{"id":19808,"orbit":0},{"id":18831,"orbit":0}],"group":1119,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":60505,"stats":["+5 to any Attribute"],"stringId":"dexterity19"},"60515":{"connections":[{"id":19955,"orbit":-4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":4,"skill":60515,"stats":["12% increased Cold Damage"],"stringId":"cold12"},"60551":{"connections":[{"id":21861,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":14,"skill":60551,"stats":["20% increased Presence Area of Effect"],"stringId":"auras15_"},"60560":{"connections":[{"id":29527,"orbit":-3}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage vs Full Life","orbit":0,"orbitIndex":0,"skill":60560,"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"stringId":"enemies_on_full_life7"},"60568":{"connections":[{"id":52348,"orbit":-6}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":3,"orbitIndex":13,"skill":60568,"stats":["20% increased Totem Placement speed"],"stringId":"totems25"},"60619":{"connections":[{"id":541,"orbit":-5},{"id":41609,"orbit":-5},{"id":31010,"orbit":0},{"id":27216,"orbit":0},{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Scales of the Wyvern","orbit":4,"orbitIndex":15,"recipe":["Fear","Fear","Suffering"],"skill":60619,"stats":["20% faster start of Energy Shield Recharge while Shapeshifted","20% increased Energy Shield Recharge Rate while Shapeshifted","+1% to Maximum Lightning Resistance while Shapeshifted"],"stringId":"wyvern4"},"60620":{"connections":[{"id":45992,"orbit":0}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":4,"skill":60620,"stats":["+8 to Strength"],"stringId":"strength106"},"60634":{"ascendancyName":"Titan","connections":[{"id":27418,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds","isNotable":true,"name":"Colossal Capacity","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":5,"orbitIndex":48,"skill":60634,"stats":["Carry a Chest which adds 20 Inventory Slots"],"stringId":"AscendancyWarrior1Notable6"},"60662":{"ascendancyName":"Amazon","connections":[{"id":7979,"orbit":0}],"group":1597,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":60662,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyHuntress1Small5"},"60685":{"connections":[{"id":1826,"orbit":0}],"group":895,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":60685,"stats":["+5 to any Attribute"],"stringId":"intelligence19"},"60692":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":16367,"orbit":2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Echoing Flames","orbit":7,"orbitIndex":12,"recipe":["Guilt","Suffering","Disgust"],"skill":60692,"stats":["30% increased Elemental Damage if you've Ignited an Enemy Recently"],"stringId":"fire34"},"60700":{"connections":[{"id":44974,"orbit":2147483647}],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Empowered Attack Freeze Buildup","orbit":7,"orbitIndex":3,"skill":60700,"stats":["20% increased Freeze Buildup with Empowered Attacks"],"stringId":"cold49"},"60708":{"connectionArt":"CharacterPlanned","connections":[{"id":17894,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":17,"skill":60708,"stats":["16% increased Damage with Bows"],"stringId":"oracle_bow_movement2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60735":{"connections":[{"id":42658,"orbit":0},{"id":11825,"orbit":0}],"group":1314,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":60735,"stats":[],"stringId":"jewel_slot1960"},"60738":{"connections":[{"id":37408,"orbit":0}],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":19,"skill":60738,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks29"},"60741":{"connections":[{"id":33922,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":12,"skill":60741,"stats":["10% increased Elemental Damage"],"stringId":"elemental57"},"60764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Feathered Fletching","orbit":5,"orbitIndex":12,"recipe":["Isolation","Suffering","Suffering"],"skill":60764,"stats":["Increases and Reductions to Projectile Speed also apply to Damage with Bows"],"stringId":"bow13"},"60809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Channelling Mastery","orbit":0,"orbitIndex":0,"skill":60809,"stats":[],"stringId":"mastery_channelling_6377"},"60829":{"connections":[{"id":36630,"orbit":2147483647}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":2,"orbitIndex":22,"skill":60829,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed35"},"60859":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":9}],"group":1620,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Charm Charges","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":60859,"stats":["15% increased Charm Charges gained"],"stringId":"AscendancyHuntress3Small4"},"60878":{"connections":[{"id":17044,"orbit":2147483647},{"id":14122,"orbit":0},{"id":44405,"orbit":2}],"group":799,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Lightning Storm","orbit":0,"orbitIndex":0,"recipe":["Guilt","Despair","Isolation"],"skill":60878,"stats":["Gain 6% of Lightning damage as Extra Cold damage","15% reduced effect of Shock on you","15% increased Magnitude of Shock you inflict"],"stringId":"lightning69_"},"60886":{"connections":[{"id":59213,"orbit":3}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":1,"orbitIndex":5,"skill":60886,"stats":["20% increased Stun Recovery"],"stringId":"stun_threshold6"},"60891":{"connections":[{"id":53185,"orbit":0}],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Accuracy Rating","orbit":1,"orbitIndex":9,"skill":60891,"stats":["8% increased Accuracy Rating"],"stringId":"azmerianimals50"},"60899":{"connections":[{"id":32543,"orbit":-7}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Movement Penalty","orbit":7,"orbitIndex":22,"skill":60899,"stats":["3% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"spell_suppression6"},"60913":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":52,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds","isNotable":true,"name":"Kitavan Engraving","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":60913,"stats":["Body Armour grants 15% increased maximum Life"],"stringId":"AscendancyWarrior3Notable6_5"},"60916":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":233,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Endurance Charge Mastery","orbit":0,"orbitIndex":0,"skill":60916,"stats":[],"stringId":"mastery_endurance_charge_6478"},"60974":{"connections":[{"id":1506,"orbit":-2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Additional Remnant Chance","orbit":2,"orbitIndex":2,"skill":60974,"stats":["5% chance to create an additional Remnant"],"stringId":"remnant12_"},"60992":{"connections":[{"id":24889,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Nurturing Guardian","orbit":1,"orbitIndex":1,"recipe":["Paranoia","Despair","Suffering"],"skill":60992,"stats":["Life Recovery from your Flasks also applies to your Companions"],"stringId":"companions3"},"61026":{"connections":[{"id":34552,"orbit":0},{"id":17378,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Crystalline Flesh","orbit":3,"orbitIndex":0,"recipe":["Despair","Paranoia","Suffering"],"skill":61026,"stats":["Minions have +20% to all Elemental Resistances","Minions have +5% to all Maximum Elemental Resistances"],"stringId":"minion_defence21"},"61027":{"connections":[],"group":858,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Mana Blessing","orbit":0,"orbitIndex":0,"skill":61027,"stats":["+20 to maximum Mana","20% increased Mana Regeneration Rate"],"stringId":"mana18"},"61039":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":55,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds","isNotable":true,"name":"Tantalum Alloy","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":61039,"stats":["Body Armour grants +75% to Fire Resistance"],"stringId":"AscendancyWarrior3Notable6_1"},"61042":{"connections":[{"id":44344,"orbit":0}],"group":667,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61042,"stats":["+5 to any Attribute"],"stringId":"attributes62"},"61056":{"connections":[{"id":40399,"orbit":-4}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":61056,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers9"},"61063":{"connections":[],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":0,"skill":61063,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"stringId":"elemental2"},"61067":{"connections":[],"group":680,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","isSwitchable":true,"name":"Spell Critical Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","id":50065,"name":"Life Regeneration","stats":["Regenerate 0.2% of maximum Life per second"]}},"orbit":2,"orbitIndex":21,"skill":61067,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals6"},"61104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Staggering Wounds","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Greed","Guilt"],"skill":61104,"stats":["50% chance to Knock Back Bleeding Enemies with Hits"],"stringId":"bleed34"},"61106":{"connections":[{"id":59653,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":2,"orbitIndex":15,"skill":61106,"stats":["2% increased Movement Speed"],"stringId":"movement_speed1"},"61112":{"connections":[{"id":36071,"orbit":0},{"id":20105,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Roll and Strike","orbit":5,"orbitIndex":14,"recipe":["Guilt","Paranoia","Disgust"],"skill":61112,"stats":["25% increased Damage with Spears","10% increased Attack Speed with Spears"],"stringId":"spear18"},"61113":{"connectionArt":"CharacterPlanned","connections":[{"id":53910,"orbit":-3}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":61113,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_forbidden_path4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61119":{"connections":[{"id":64325,"orbit":4},{"id":63431,"orbit":0}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":18,"skill":61119,"stats":["10% increased Poison Duration"],"stringId":"poison25"},"61142":{"connections":[{"id":38365,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Recover Life on consuming Endurance Charge","orbit":2,"orbitIndex":12,"skill":61142,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"stringId":"endurance_charges5"},"61149":{"connections":[{"id":42760,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":2,"orbitIndex":13,"skill":61149,"stats":["20% increased Stun Recovery"],"stringId":"monkchakra29"},"61170":{"connections":[{"id":27186,"orbit":7}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":1,"orbitIndex":3,"skill":61170,"stats":["10% increased Fire Damage"],"stringId":"ground1"},"61179":{"connections":[{"id":21245,"orbit":0}],"group":536,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":61179,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical18"},"61196":{"connections":[{"id":56045,"orbit":5},{"id":13419,"orbit":0}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":61196,"stats":["+5 to any Attribute"],"stringId":"intelligence10"},"61215":{"connections":[{"id":37242,"orbit":3}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":8,"skill":61215,"stats":["12% increased Stun Threshold"],"stringId":"azmerianimals3"},"61246":{"connections":[{"id":144,"orbit":5}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Freeze Buildup","orbit":4,"orbitIndex":18,"skill":61246,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"stringId":"elemental26"},"61263":{"connections":[{"id":4544,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Poison Duration on You","orbit":2,"orbitIndex":11,"skill":61263,"stats":["10% reduced Poison Duration on you"],"stringId":"azmerianimals62"},"61267":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds","isNotable":true,"name":"Mastered Darkness","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":6,"orbitIndex":60,"skill":61267,"stats":["Demonflame has no maximum"],"stringId":"AscendancyWitch1Notable6"},"61281":{"connections":[{"id":9217,"orbit":0}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":2,"orbitIndex":14,"skill":61281,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed23"},"61309":{"connections":[{"id":42169,"orbit":5},{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","isNotable":true,"name":"Redblade Discipline","orbit":7,"orbitIndex":15,"recipe":["Despair","Despair","Greed"],"skill":61309,"stats":["+8% to Fire Resistance","20% increased Stun Threshold","+30% of Armour also applies to Fire Damage"],"stringId":"armour_and_evasion44"},"61312":{"connections":[{"id":56841,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":42,"skill":61312,"stats":["+5 to any Attribute"],"stringId":"dexterity22"},"61318":{"connections":[{"id":61396,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":13,"skill":61318,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion17"},"61333":{"connections":[{"id":46197,"orbit":0}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":11,"skill":61333,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals85"},"61338":{"connections":[{"id":7333,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Breath of Lightning","orbit":4,"orbitIndex":6,"recipe":["Disgust","Paranoia","Isolation"],"skill":61338,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"stringId":"lightning_penetration25"},"61347":{"connections":[{"id":64488,"orbit":3}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Critical Chance","orbit":7,"orbitIndex":8,"skill":61347,"stats":["Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m"],"stringId":"projectiles34"},"61354":{"connections":[{"id":50383,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Infernal Limit","orbit":3,"orbitIndex":18,"recipe":["Envy","Greed","Fear"],"skill":61354,"stats":["+1 to maximum Fire Infusions"],"stringId":"infusion24"},"61355":{"connections":[{"id":29306,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Damage from Mana","orbit":2,"orbitIndex":8,"skill":61355,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"monkchakra5"},"61356":{"connections":[{"id":12498,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":12,"skill":61356,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers2"},"61362":{"connections":[{"id":36737,"orbit":-2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":61362,"stats":["10% increased Area Damage"],"stringId":"area_of_effect19"},"61367":{"connectionArt":"CharacterPlanned","connections":[{"id":64239,"orbit":2147483647}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Attack Added Lighting Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":61367,"stats":["Adds 1 to 7 Lightning damage to Attacks"],"stringId":"oracle_flat_lightning2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61373":{"connections":[{"id":63610,"orbit":-7},{"id":5988,"orbit":7}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Damage vs Blinded","orbit":3,"orbitIndex":4,"skill":61373,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"blind5"},"61393":{"connections":[{"id":43941,"orbit":-7}],"group":119,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":61393,"stats":["12% increased Damage while Shapeshifted"],"stringId":"wolf1"},"61396":{"connections":[{"id":10998,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":11,"skill":61396,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion16"},"61403":{"connections":[{"id":56349,"orbit":0},{"id":14231,"orbit":3},{"id":24150,"orbit":0},{"id":17602,"orbit":0},{"id":45377,"orbit":2147483647}],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61403,"stats":["+5 to any Attribute"],"stringId":"intelligence69"},"61404":{"connections":[{"id":51210,"orbit":2},{"id":61429,"orbit":0}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","isNotable":true,"name":"Equilibrium","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Despair"],"skill":61404,"stats":["30% increased Attack Damage if you've Cast a Spell Recently","10% increased Cast Speed if you've Attacked Recently"],"stringId":"attacks_and_spells20"},"61409":{"connections":[{"id":13075,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":61409,"stats":["+12 to Strength"],"stringId":"strength101"},"61419":{"connections":[{"id":3025,"orbit":0},{"id":5314,"orbit":0},{"id":46819,"orbit":0}],"group":813,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61419,"stats":[],"stringId":"jewel_slot1972"},"61421":{"connections":[{"id":16121,"orbit":7}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy and Critical Chance","orbit":7,"orbitIndex":19,"skill":61421,"stats":["Meta Skills gain 4% increased Energy","5% increased Critical Hit Chance"],"stringId":"monkelemental2"},"61429":{"connections":[{"id":44902,"orbit":3}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":7,"orbitIndex":20,"skill":61429,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells6"},"61432":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":6178,"orbit":0}],"group":976,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":61432,"stats":[],"stringId":"mastery_crossbow_6418"},"61438":{"connections":[{"id":28510,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":62,"skill":61438,"stats":["+5 to any Attribute"],"stringId":"strength33_"},"61441":{"connections":[{"id":54138,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":6,"orbitIndex":7,"skill":61441,"stats":["3% increased Attack Speed with Swords"],"stringId":"sword7_"},"61444":{"connections":[{"id":17411,"orbit":0},{"id":34096,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Wasting Casts","orbit":3,"orbitIndex":2,"recipe":["Fear","Envy","Despair"],"skill":61444,"stats":["25% increased Damage with Hits against Hindered Enemies","15% chance to Hinder Enemies on Hit with Spells"],"stringId":"spells30"},"61461":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":2147483647}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Speed","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":6,"orbitIndex":24,"skill":61461,"stats":["10% increased Projectile Speed"],"stringId":"AscendancyRanger1Small2"},"61471":{"connectionArt":"CharacterPlanned","connections":[{"id":49153,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":61471,"stats":["15% increased Damage","Minions deal 15% increased Damage"],"stringId":"oracle_damage_and_minions1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61472":{"connections":[{"id":9417,"orbit":0},{"id":36389,"orbit":6}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":10,"skill":61472,"stats":["+8 to Strength"],"stringId":"strength107"},"61487":{"connections":[{"id":36596,"orbit":-4},{"id":19341,"orbit":5},{"id":11410,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":4,"orbitIndex":48,"skill":61487,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life5"},"61490":{"connections":[{"id":47429,"orbit":-8},{"id":64995,"orbit":0},{"id":8600,"orbit":0}],"group":437,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61490,"stats":["+5 to any Attribute"],"stringId":"strength75"},"61525":{"classesStart":["Templar","Druid"],"connections":[{"id":13855,"orbit":0},{"id":35715,"orbit":0},{"id":26353,"orbit":0},{"id":950,"orbit":0},{"id":28429,"orbit":0},{"id":35535,"orbit":0},{"id":42761,"orbit":0}],"group":747,"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","name":"TEMPLAR","orbit":0,"orbitIndex":0,"skill":61525,"stats":[],"stringId":"templar598"},"61534":{"connections":[{"id":4665,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":18,"skill":61534,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration20"},"61586":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds","isNotable":true,"name":"Martial Master","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":5,"orbitIndex":19,"skill":61586,"stats":["Skills can build and retain Combo regardless of Weapon Set","Gain Combo from all Attack Hits"],"stringId":"AscendancyMonk1Notable2"},"61601":{"connections":[{"id":44420,"orbit":0},{"id":9586,"orbit":0}],"group":1246,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"True Strike","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Disgust"],"skill":61601,"stats":["+10 to Dexterity","20% increased Critical Hit Chance"],"stringId":"criticals28"},"61615":{"connections":[{"id":59442,"orbit":0}],"group":633,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":61615,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup31"},"61632":{"connections":[{"id":34316,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Freeze and Daze Buildup","orbit":5,"orbitIndex":2,"skill":61632,"stats":["5% chance to Daze on Hit","20% increased Freeze Buildup with Quarterstaves"],"stringId":"quarterstaff6"},"61657":{"connections":[{"id":17750,"orbit":6},{"id":45808,"orbit":-5}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":2,"skill":61657,"stats":["+5% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"armour_and_evasion46"},"61703":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Sharpened Claw","orbit":3,"orbitIndex":20,"recipe":["Ire","Greed","Greed"],"skill":61703,"stats":["30% increased Physical Damage while Shapeshifted"],"stringId":"shapeshifting12"},"61718":{"connections":[{"id":38342,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Damage vs Dazed Enemies","orbit":2,"orbitIndex":16,"skill":61718,"stats":["15% increased Damage against Dazed Enemies"],"stringId":"daze_4"},"61722":{"ascendancyName":"Shaman","connections":[{"id":58646,"orbit":6}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Resistances","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":6,"orbitIndex":36,"skill":61722,"stats":["+3% to all Elemental Resistances"],"stringId":"AscendancyDruid2Small4_"},"61741":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":40024,"orbit":2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Lasting Toxins","orbit":0,"orbitIndex":0,"recipe":["Despair","Isolation","Envy"],"skill":61741,"stats":["10% increased Skill Effect Duration","40% increased Poison Duration"],"stringId":"poison28"},"61768":{"connections":[],"group":975,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":61768,"stats":["Minions have +20% to Cold Resistance","Minions have +3% to Maximum Cold Resistances"],"stringId":"minion_defence27"},"61796":{"connections":[{"id":8260,"orbit":-4}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":20,"skill":61796,"stats":["20% increased Armour Break Duration"],"stringId":"armour_break2"},"61800":{"connections":[],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Critical Damage vs Full Life","orbit":7,"orbitIndex":11,"skill":61800,"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"stringId":"enemies_on_full_life1"},"61811":{"connectionArt":"CharacterPlanned","connections":[{"id":44452,"orbit":-8}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":42,"skill":61811,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical1__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61834":{"connections":[{"id":17088,"orbit":0},{"id":24958,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61834,"stats":[],"stringId":"jewel_slot1961"},"61835":{"connections":[{"id":32549,"orbit":0},{"id":56237,"orbit":-2}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":20,"skill":61835,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells9"},"61836":{"connections":[{"id":65243,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":4,"skill":61836,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras14"},"61842":{"connections":[{"id":33240,"orbit":0},{"id":14712,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":0,"skill":61842,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence12_"},"61847":{"connections":[{"id":43443,"orbit":-4}],"group":175,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Critical Chance","orbit":0,"orbitIndex":0,"skill":61847,"stats":["10% increased Critical Hit Chance with Flails"],"stringId":"flail7"},"61863":{"connections":[{"id":42045,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":6,"skill":61863,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold16"},"61896":{"connections":[{"id":53354,"orbit":-1},{"id":8850,"orbit":-3}],"group":117,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Critical Chance","orbit":0,"orbitIndex":0,"skill":61896,"stats":["10% increased Critical Hit Chance while Shapeshifted"],"stringId":"wolf6"},"61897":{"ascendancyName":"Witchhunter","connections":[{"id":38601,"orbit":8}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":8,"orbitIndex":32,"skill":61897,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary2Small5"},"61905":{"connections":[{"id":12778,"orbit":0},{"id":8938,"orbit":0},{"id":3251,"orbit":-4}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":12,"skill":61905,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical_witch5_"},"61921":{"connections":[],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Storm Surge","orbit":3,"orbitIndex":23,"recipe":["Envy","Isolation","Greed"],"skill":61921,"stats":["Damage Penetrates 8% Cold Resistance","Damage Penetrates 15% Lightning Resistance"],"stringId":"lightning_penetration24"},"61923":{"connections":[{"id":16256,"orbit":-6}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":4,"skill":61923,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration34"},"61926":{"connections":[{"id":1603,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Recoup","orbit":2,"orbitIndex":12,"skill":61926,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery39"},"61927":{"connections":[{"id":14515,"orbit":0},{"id":3698,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Jagged Ground Effect","orbit":2,"orbitIndex":5,"skill":61927,"stats":["15% increased Magnitude of Jagged Ground you create"],"stringId":"jagged_ground5"},"61934":{"connections":[{"id":48418,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":2,"skill":61934,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold20"},"61935":{"connections":[{"id":4624,"orbit":7}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":61935,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage7"},"61938":{"connections":[{"id":14515,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Jagged Ground Effect","orbit":3,"orbitIndex":14,"skill":61938,"stats":["15% increased Magnitude of Jagged Ground you create"],"stringId":"jagged_ground3"},"61942":{"connections":[],"flavourText":"Strength begets respect. There is no simpler law.","group":170,"icon":"Art/2DArt/SkillIcons/passives/DruidAnimism.dds","isKeystone":true,"name":"Lord of the Wilds","orbit":0,"orbitIndex":0,"skill":61942,"stats":["You can equip a non-Unique Sceptre while wielding a Talisman","50% less Spirit","Non-Minion Skills have 50% less Reservation Efficiency"],"stringId":"passive_keystone_lord_of_the_wilds"},"61973":{"ascendancyName":"Witchhunter","connections":[{"id":40719,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds","isNotable":true,"name":"Pitiless Killer","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":6,"orbitIndex":44,"skill":61973,"stats":["Culling Strike"],"stringId":"AscendancyMercenary2Notable1"},"61974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connectionArt":"CharacterPlanned","connections":[],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Invocation Mastery","orbit":7,"orbitIndex":2,"skill":61974,"stats":[],"stringId":"oracle_energy_gain_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61976":{"connections":[{"id":7526,"orbit":0},{"id":36298,"orbit":6},{"id":2200,"orbit":0}],"group":1181,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61976,"stats":["+5 to any Attribute"],"stringId":"attributes43"},"61977":{"connectionArt":"CharacterPlanned","connections":[{"id":61471,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":54,"skill":61977,"stats":["15% increased Damage","Minions deal 15% increased Damage"],"stringId":"oracle_damage_and_minions2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61983":{"ascendancyName":"Shaman","connections":[],"group":70,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds","isNotable":true,"name":"Avatar of Evolution","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":61983,"stats":["5% of Physical Damage taken as Fire Damage","5% of Physical Damage taken as Lightning Damage","5% of Physical Damage taken as Cold Damage","Adaptations have a duration of 5 seconds","Double Adaptation Effect"],"stringId":"AscendancyDruid2Notable5"},"61985":{"ascendancyName":"Stormweaver","connections":[{"id":29398,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds","isNotable":true,"name":"Heavy Snows","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":6,"orbitIndex":6,"skill":61985,"stats":["Targets can be affected by two of your Chills at the same time","Your Chills can Slow targets by up to a maximum of 35%","25% less Magnitude of Chill you inflict"],"stringId":"AscendancySorceress1Notable7"},"61991":{"ascendancyName":"Pathfinder","connections":[],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds","isNotable":true,"name":"Running Assault","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":9,"orbitIndex":96,"skill":61991,"stats":["Cannot be Heavy Stunned while Sprinting","30% less Movement Speed Penalty from using Skills while moving"],"stringId":"AscendancyRanger3Notable1_"},"61992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":880,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":6,"skill":61992,"stats":[],"stringId":"mastery_minionoffence184"},"62001":{"connections":[],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","isNotable":true,"name":"Backstabbing","orbit":2,"orbitIndex":1,"skill":62001,"stats":["25% increased Critical Damage Bonus with Daggers"],"stringId":"dagger18"},"62015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":62015,"stats":[],"stringId":"mastery_warcry253"},"62023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":62023,"stats":[],"stringId":"mastery_attack12"},"62034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","connections":[],"group":154,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Prism Guard","orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Ire"],"skill":62034,"stats":["+30% of Armour also applies to Elemental Damage"],"stringId":"maximum_resistances21"},"62039":{"connections":[{"id":49618,"orbit":0}],"group":644,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":18,"skill":62039,"stats":["10% increased Melee Damage"],"stringId":"melee42"},"62051":{"connections":[{"id":21755,"orbit":-9}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":3,"orbitIndex":0,"skill":62051,"stats":["3% increased Movement Speed if you've Killed Recently"],"stringId":"movement_speed8_"},"62096":{"connections":[{"id":28414,"orbit":0}],"group":1464,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":62096,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions63"},"62122":{"connections":[{"id":4295,"orbit":-3}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":3,"orbitIndex":4,"skill":62122,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"damage_from_mana1"},"62152":{"aliasPassiveSocket":"voices_jewel_slot1","connections":[],"group":703,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":62152,"stats":[],"stringId":"voices_jewel_slot1"},"62153":{"connections":[{"id":55947,"orbit":3}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":17,"skill":62153,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals17_"},"62159":{"connections":[{"id":59603,"orbit":-7}],"group":982,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":62159,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup11"},"62166":{"connections":[{"id":19337,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Speed","orbit":2,"orbitIndex":0,"skill":62166,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"accuracy39"},"62185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1336,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Rattled","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Ire"],"skill":62185,"stats":["+20 to maximum Mana","50% increased Shock Duration"],"stringId":"shock18"},"62194":{"connections":[{"id":19129,"orbit":2147483647}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":0,"skill":62194,"stats":["15% increased Pin Buildup"],"stringId":"bleed48"},"62200":{"connections":[{"id":8460,"orbit":-3},{"id":29762,"orbit":-4}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":20,"skill":62200,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries13"},"62210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds","isNotable":true,"name":"Puppet Master chance","orbit":3,"orbitIndex":5,"recipe":["Greed","Despair","Fear"],"skill":62210,"stats":["15% increased Mana Cost Efficiency of Command Skills","+1 maximum stacks of Puppet Master"],"stringId":"Puppetmaster6"},"62216":{"connections":[{"id":26070,"orbit":3},{"id":38130,"orbit":-3}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":8,"skill":62216,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries23"},"62230":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":19355,"orbit":0}],"group":1040,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Patient Barrier","orbit":6,"orbitIndex":0,"recipe":["Suffering","Isolation","Fear"],"skill":62230,"stats":["50% increased maximum Energy Shield","20% slower start of Energy Shield Recharge"],"stringId":"energy_shield33_"},"62235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":957,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":12,"skill":62235,"stats":[],"stringId":"mastery_evasion109"},"62237":{"connections":[{"id":60116,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Saqawal's Talon","orbit":4,"orbitIndex":24,"recipe":["Disgust","Fear","Envy"],"skill":62237,"stats":["+5% to Cold Resistance","25% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion29"},"62258":{"connections":[{"id":62455,"orbit":0},{"id":21096,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":7,"orbitIndex":22,"skill":62258,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners6"},"62303":{"connections":[{"id":59938,"orbit":-4}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Ailment Threshold and Slow Effect on You","orbit":7,"orbitIndex":23,"skill":62303,"stats":["10% increased Elemental Ailment Threshold","5% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation17"},"62310":{"connections":[{"id":36325,"orbit":2},{"id":56934,"orbit":0}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Incendiary","orbit":7,"orbitIndex":22,"recipe":["Isolation","Disgust","Guilt"],"skill":62310,"stats":["60% increased Flammability Magnitude","30% increased Damage with Hits against Burning Enemies"],"stringId":"fire39"},"62313":{"connections":[],"group":154,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Armour Applies to Fire Damage Hits","orbit":5,"orbitIndex":52,"skill":62313,"stats":["+15% of Armour also applies to Fire Damage"],"stringId":"maximum_resistances2"},"62341":{"connections":[{"id":52836,"orbit":7}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":61,"skill":62341,"stats":["5% increased Block chance"],"stringId":"block9"},"62350":{"connections":[],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Flask Duration","orbit":2,"orbitIndex":12,"skill":62350,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"stringId":"attack_speed17"},"62360":{"connections":[{"id":25014,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":2,"skill":62360,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries41"},"62376":{"connections":[{"id":54640,"orbit":-5}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Reduced Duration","orbit":7,"orbitIndex":9,"skill":62376,"stats":["4% reduced Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical57"},"62378":{"connectionArt":"CharacterPlanned","connections":[{"id":47633,"orbit":0}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":62378,"stats":["20% increased Thorns damage"],"stringId":"oracle_thorns1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"62388":{"ascendancyName":"Blood Mage","connections":[{"id":26282,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Bleed on Critical Chance","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":5,"orbitIndex":70,"skill":62388,"stats":["15% chance to inflict Bleeding on Critical Hit"],"stringId":"AscendancyWitch2Small4_"},"62424":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":5,"orbitIndex":29,"skill":62424,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyHuntress2Small5"},"62427":{"connections":[],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection Rating","orbit":2,"orbitIndex":21,"skill":62427,"stats":["4% increased Deflection Rating"],"stringId":"deflect40"},"62431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Anticipation","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Despair"],"skill":62431,"stats":["Sealed Skills have 25% increased Seal gain frequency"],"stringId":"spells29_"},"62436":{"connections":[{"id":3215,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":5,"skill":62436,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield16"},"62439":{"connections":[{"id":24224,"orbit":0},{"id":52300,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","isNotable":true,"name":"Enraged Reaver","orbit":3,"orbitIndex":11,"skill":62439,"stats":["+10 to Maximum Rage while wielding an Axe"],"stringId":"axe14"},"62455":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Bannerman","orbit":0,"orbitIndex":0,"recipe":["Suffering","Greed","Ire"],"skill":62455,"stats":["Banner Buffs linger on you for 2 seconds after you leave the Area"],"stringId":"banners9"},"62464":{"connections":[{"id":17854,"orbit":7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":22,"skill":62464,"stats":["15% increased Evasion Rating"],"stringId":"evasion17_"},"62496":{"connections":[{"id":34912,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":48,"skill":62496,"stats":["10% increased Trap Damage"],"stringId":"trap2"},"62498":{"connections":[{"id":3446,"orbit":0},{"id":51561,"orbit":0},{"id":21390,"orbit":0},{"id":41363,"orbit":0},{"id":12255,"orbit":0}],"group":295,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":62498,"stats":["+5 to any Attribute"],"stringId":"attributes6"},"62505":{"connections":[{"id":32436,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":18,"skill":62505,"stats":["+8 to Intelligence"],"stringId":"attributes110"},"62510":{"connections":[{"id":8697,"orbit":4},{"id":17118,"orbit":6}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":69,"skill":62510,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks1"},"62518":{"connections":[{"id":41414,"orbit":4}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Fire Resistance","orbit":3,"orbitIndex":7,"skill":62518,"stats":["+5% to Fire Resistance"],"stringId":"maximum_resistances1"},"62523":{"ascendancyName":"Shaman","connections":[{"id":26063,"orbit":2147483647}],"group":74,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds","isNotable":true,"name":"Turning of the Seasons","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":62523,"stats":["Enemies in your Presence have Exposure","Gain 10% of Damage as Extra Damage of a random Element"],"stringId":"AscendancyDruid2Notable1"},"62542":{"connections":[{"id":16329,"orbit":7},{"id":57821,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":3,"orbitIndex":0,"skill":62542,"stats":["10% increased Flask Charges gained"],"stringId":"flasks1"},"62578":{"connections":[{"id":30102,"orbit":-7}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":7,"orbitIndex":16,"skill":62578,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility7"},"62581":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":486,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":62581,"stats":[],"stringId":"mastery_block_6339"},"62588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":50609,"orbit":0}],"group":787,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62588,"stats":[],"stringId":"mastery_life138"},"62603":{"connections":[{"id":19715,"orbit":3}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":20,"skill":62603,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration11_"},"62609":{"connections":[{"id":11014,"orbit":0},{"id":16051,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Unity","orbit":7,"orbitIndex":6,"recipe":["Suffering","Fear","Envy"],"skill":62609,"stats":["Attacks used by Totems have 4% increased Attack Speed per Summoned Totem"],"stringId":"totems15"},"62624":{"connections":[],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":22,"skill":62624,"stats":["+30 to Evasion Rating","+15 to maximum Energy Shield"],"stringId":"evasion_and_energy_shield7"},"62628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":966,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":62628,"stats":[],"stringId":"mastery_projectile_6648"},"62640":{"connections":[{"id":24880,"orbit":-7}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":32,"skill":62640,"stats":["3% increased Attack Speed"],"stringId":"attack_speed28"},"62661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":583,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":62661,"stats":[],"stringId":"mastery_critical_271_"},"62670":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":160,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":62670,"stats":[],"stringId":"mastery_minion_defence_6610"},"62677":{"connections":[],"group":907,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":62677,"stats":["+5 to any Attribute"],"stringId":"intelligence58"},"62679":{"connections":[],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":12,"skill":62679,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant5"},"62702":{"ascendancyName":"Spirit Walker","connections":[{"id":27773,"orbit":-7}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":4,"orbitIndex":38,"skill":62702,"stats":["2% increased Movement Speed"],"stringId":"AscendancyHuntress2Small2_"},"62723":{"connections":[{"id":38732,"orbit":8}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":4,"orbitIndex":33,"skill":62723,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster8"},"62732":{"connections":[{"id":64192,"orbit":0},{"id":49391,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/Hearty.dds","isNotable":true,"name":"Titan's Determination","orbit":3,"orbitIndex":9,"skill":62732,"stats":["25% increased Stun Threshold","20% increased Life Regeneration Rate while moving"],"stringId":"stun_threshold11"},"62743":{"ascendancyName":"Spirit Walker","connections":[{"id":21519,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds","isNotable":true,"name":"Wild Protector","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":6,"orbitIndex":34,"skill":62743,"stats":["Grants Skill: Wild Protector"],"stringId":"AscendancyHuntress2Notable3"},"62748":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":351,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62748,"stats":[],"stringId":"mastery_life148"},"62757":{"connections":[{"id":46741,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":4,"skill":62757,"stats":["15% increased Stun Buildup"],"stringId":"stun1"},"62779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1039,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":62779,"stats":[],"stringId":"mastery_companion296"},"62785":{"connections":[{"id":4948,"orbit":-7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":2,"skill":62785,"stats":["Break 20% increased Armour"],"stringId":"armour_break15__"},"62797":{"ascendancyName":"Lich","connections":[{"id":23352,"orbit":-4}],"group":1182,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Curse Area","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":11965,"name":"Curse Area","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["15% increased Area of Effect of Curses"]}},"orbit":0,"orbitIndex":0,"skill":62797,"stats":["15% increased Area of Effect of Curses"],"stringId":"AscendancyWitch3Small2"},"62803":{"connections":[{"id":25029,"orbit":0}],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Woodland Aspect","orbit":4,"orbitIndex":51,"recipe":["Suffering","Guilt","Isolation"],"skill":62803,"stats":["Charms applied to you have 25% increased Effect"],"stringId":"charms7"},"62804":{"ascendancyName":"Ritualist","connections":[],"group":1609,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds","isNotable":true,"name":"Wildwood Persistence","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":62804,"stats":["10% increased Life Recovery rate per 5% missing Unreserved Life"],"stringId":"AscendancyHuntress3Notable5"},"62841":{"connections":[{"id":17367,"orbit":-6},{"id":56045,"orbit":0},{"id":53941,"orbit":5}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":20,"skill":62841,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield17"},"62844":{"connections":[{"id":32427,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":18,"skill":62844,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration9"},"62887":{"connections":[{"id":41225,"orbit":0}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","isNotable":true,"name":"Living Death","orbit":2,"orbitIndex":16,"recipe":["Greed","Suffering","Disgust"],"skill":62887,"stats":["Minions have +22% to all Elemental Resistances","Minions have +3% to all Maximum Elemental Resistances"],"stringId":"minion_defence42"},"62914":{"connections":[{"id":47270,"orbit":5},{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":20,"skill":62914,"stats":["12% increased Cold Damage"],"stringId":"cold5"},"62936":{"connections":[{"id":51891,"orbit":7}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":2,"orbitIndex":11,"skill":62936,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"mana14"},"62948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":34617,"orbit":0},{"id":64770,"orbit":0}],"group":377,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":62948,"stats":[],"stringId":"mastery_armour_and_energy_shield_6276"},"62963":{"connections":[{"id":14601,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/flameborn.dds","isNotable":true,"name":"Flamewalker","orbit":7,"orbitIndex":18,"recipe":["Suffering","Fear","Greed"],"skill":62963,"stats":["40% reduced Magnitude of Ignite on you","Gain 15% of Damage as Extra Fire Damage while on Ignited Ground"],"stringId":"ground5"},"62973":{"connections":[{"id":26070,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Power Counted","orbit":3,"orbitIndex":1,"skill":62973,"stats":["10% increased total Power counted by Warcries"],"stringId":"warcries28"},"62984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":15975,"orbit":0}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Mindful Awareness","orbit":2,"orbitIndex":4,"skill":62984,"stats":["24% increased Evasion Rating","24% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield35_"},"62986":{"connections":[{"id":60173,"orbit":4}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Accuracy","orbit":7,"orbitIndex":18,"skill":62986,"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"stringId":"one_handed13"},"62998":{"connections":[{"id":63600,"orbit":0}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":62998,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation2"},"63002":{"ascendancyName":"Chronomancer","connections":[{"id":26638,"orbit":0}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Buff Expiry Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63002,"stats":["Buffs on you expire 10% slower"],"stringId":"AscendancySorceress2Small2"},"63009":{"connections":[{"id":37593,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":0,"skill":63009,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant6"},"63021":{"connections":[{"id":23091,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":14,"skill":63021,"stats":["12% increased Fire Damage"],"stringId":"fire18"},"63031":{"connections":[{"id":41821,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Glorious Anticipation","orbit":4,"orbitIndex":54,"recipe":["Paranoia","Despair","Despair"],"skill":63031,"stats":["Skills gain 1 Glory every 2 seconds for each Rare or Unique monster in your Presence"],"stringId":"glory15"},"63037":{"connections":[{"id":24430,"orbit":0},{"id":44298,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Sigil of Fire","orbit":4,"orbitIndex":70,"recipe":["Suffering","Guilt","Ire"],"skill":63037,"stats":["30% increased Damage with Hits against Ignited Enemies"],"stringId":"fire31"},"63064":{"connections":[{"id":30634,"orbit":3},{"id":54413,"orbit":0}],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","isNotable":true,"name":"Mystic Stance","orbit":2,"orbitIndex":10,"skill":63064,"stats":["12% faster start of Energy Shield Recharge","30% increased Stun Threshold while on Full Life"],"stringId":"energy_shield_recovery12"},"63074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Dark Entries","orbit":1,"orbitIndex":2,"recipe":["Despair","Isolation","Isolation"],"skill":63074,"stats":["+1 to Level of all Chaos Skills"],"stringId":"chaos31"},"63085":{"connections":[{"id":36100,"orbit":9},{"id":34490,"orbit":0}],"group":168,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":63085,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear6"},"63114":{"connections":[{"id":26725,"orbit":0},{"id":21387,"orbit":0},{"id":26176,"orbit":0},{"id":35048,"orbit":0}],"group":231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":4,"skill":63114,"stats":["+5 to any Attribute"],"stringId":"strength68"},"63170":{"connectionArt":"CharacterPlanned","connections":[{"id":6999,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed and Elemental Resistance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":9,"skill":63170,"stats":["Totems gain +1% to all Maximum Elemental Resistances","Spells Cast by Totems have 2% increased Cast Speed","Attacks used by Totems have 2% increased Attack Speed"],"stringId":"oracle_totems9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63182":{"connections":[{"id":29930,"orbit":3}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":7,"orbitIndex":6,"skill":63182,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"duelist_minions7"},"63192":{"connections":[{"id":62096,"orbit":0},{"id":48116,"orbit":0}],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":63192,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions67"},"63209":{"connections":[{"id":30704,"orbit":0},{"id":22045,"orbit":0},{"id":17655,"orbit":-4},{"id":36602,"orbit":-3}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration and Damage","orbit":2,"orbitIndex":22,"skill":63209,"stats":["5% increased Damage","Regenerate 0.1% of maximum Life per second"],"stringId":"life_regeneration11"},"63236":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds","isNotable":true,"name":"The Soul Springs Eternal","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":6,"orbitIndex":17,"skill":63236,"stats":["Meta Skills gain 35% more Energy","Meta Skills have 50% increased Reservation Efficiency"],"stringId":"AscendancyMonk2Notable9"},"63243":{"connectionArt":"CharacterPlanned","connections":[{"id":48160,"orbit":2147483647},{"id":49543,"orbit":0}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Ally Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":10,"skill":63243,"stats":["Allies in your Presence deal 20% increased Damage","10% reduced Damage"],"stringId":"oracle_self_sacrificing1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63246":{"connections":[{"id":33585,"orbit":-7}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Ailment Threshold and Companion Resistance","orbit":4,"orbitIndex":12,"skill":63246,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"stringId":"companions25"},"63254":{"ascendancyName":"Amazon","connections":[],"group":1602,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds","isNotable":true,"name":"Stalking Panther","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":63254,"stats":["Evasion Rating from Equipped Helmet, Gloves and Boots is doubled","Evasion Rating from Equipped Body Armour is halved"],"stringId":"AscendancyHuntress1Notable8"},"63255":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Savagery","orbit":0,"orbitIndex":0,"recipe":["Suffering","Fear","Paranoia"],"skill":63255,"stats":["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently","+1 to Maximum Frenzy Charges"],"stringId":"frenzy_charges8"},"63259":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":405,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds","isMultipleChoiceOption":true,"name":"Motoric Implants","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63259,"stats":["+2 to Level of all Skills with a Dexterity requirement"],"stringId":"AscendancyMercenary3Notable2_2_"},"63267":{"connections":[{"id":65424,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Damage","orbit":2,"orbitIndex":3,"skill":63267,"stats":["12% increased Attack Damage while Dual Wielding"],"stringId":"dual_wielding1"},"63268":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":532,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":6,"skill":63268,"stats":[],"stringId":"mastery_fire119"},"63360":{"connections":[{"id":62258,"orbit":2147483647}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":7,"orbitIndex":14,"skill":63360,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners4_"},"63393":{"connections":[{"id":7721,"orbit":3},{"id":36709,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":12,"skill":63393,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold15"},"63400":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":22851,"orbit":-7}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","isNotable":true,"name":"Chakra of Elements","orbit":2,"orbitIndex":6,"recipe":["Greed","Suffering","Greed"],"skill":63400,"stats":["Gain 8% of Physical Damage as Extra Cold Damage against Shocked Enemies","Gain 8% of Physical Damage as Extra Lightning Damage against Chilled Enemies"],"stringId":"monkchakra24"},"63401":{"ascendancyName":"Smith of Kitava","connections":[{"id":48537,"orbit":0}],"group":26,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Resistance","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63401,"stats":["+8% to Fire Resistance"],"stringId":"AscendancyWarrior3Small5"},"63402":{"connections":[{"id":29881,"orbit":2}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Arcane Surge Effect","orbit":2,"orbitIndex":4,"skill":63402,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"wyvern16"},"63431":{"connections":[],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Leeching Toxins","orbit":1,"orbitIndex":3,"recipe":["Greed","Suffering","Suffering"],"skill":63431,"stats":["30% increased Magnitude of Poison you inflict","Recover 2% of maximum Life on Killing a Poisoned Enemy"],"stringId":"poison27"},"63445":{"connections":[{"id":43562,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":6,"skill":63445,"stats":["3% increased Attack Speed"],"stringId":"attack_speed45"},"63451":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44406,"orbit":0},{"id":64312,"orbit":0}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Cranial Impact","orbit":6,"orbitIndex":6,"recipe":["Greed","Paranoia","Disgust"],"skill":63451,"stats":["30% increased Stun Buildup","Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"],"stringId":"stun15"},"63469":{"connections":[{"id":30834,"orbit":0},{"id":50216,"orbit":0}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Skill Speed","orbit":2,"orbitIndex":10,"skill":63469,"stats":["2% increased Skill Speed","5% increased Mana Regeneration Rate"],"stringId":"mana1"},"63470":{"connections":[{"id":9908,"orbit":-3}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","orbit":3,"orbitIndex":14,"skill":63470,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"stringId":"life_costs1"},"63482":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":47387,"orbit":0}],"group":101,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":63482,"stats":[],"stringId":"mastery_lightning148"},"63484":{"ascendancyName":"Infernalist","connections":[{"id":18158,"orbit":7}],"group":774,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Flammability Magnitude","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63484,"stats":["40% increased Flammability Magnitude"],"stringId":"AscendancyWitch1Small8"},"63493":{"ascendancyName":"Spirit Walker","connections":[{"id":26294,"orbit":6},{"id":37769,"orbit":9},{"id":45228,"orbit":0},{"id":5733,"orbit":6},{"id":62424,"orbit":5},{"id":28254,"orbit":5}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Spirit Walker","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":8,"orbitIndex":21,"skill":63493,"stats":[],"stringId":"AscendancyHuntress2Start"},"63517":{"connections":[{"id":48974,"orbit":0},{"id":53958,"orbit":2}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":22,"skill":63517,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks4_"},"63525":{"connections":[{"id":53094,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Critical Chance","orbit":7,"orbitIndex":2,"skill":63525,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"stringId":"accuracy33"},"63526":{"connections":[{"id":28370,"orbit":6},{"id":7788,"orbit":4}],"group":832,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":63526,"stats":["+5 to any Attribute"],"stringId":"strength37"},"63541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":17994,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Brush Off","orbit":2,"orbitIndex":9,"recipe":["Ire","Suffering","Ire"],"skill":63541,"stats":["15% increased Armour","Prevent +15% of Damage from Deflected Critical Hits"],"stringId":"deflect34"},"63545":{"connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":6,"skill":63545,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence26"},"63566":{"connections":[{"id":42658,"orbit":0},{"id":62350,"orbit":0},{"id":30871,"orbit":0}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":63566,"stats":["+5 to any Attribute"],"stringId":"dexterity61"},"63579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Momentum","orbit":4,"orbitIndex":30,"recipe":["Greed","Isolation","Disgust"],"skill":63579,"stats":["Ignore all Movement Penalties from Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation7_"},"63585":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1120,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Thunderstruck","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Paranoia"],"skill":63585,"stats":["50% increased Electrocute Buildup against Shocked Enemies","50% increased Shock Chance against Electrocuted Enemies"],"stringId":"lightning36"},"63600":{"connections":[{"id":36364,"orbit":0}],"group":1465,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":63600,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation3"},"63608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":110,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":63608,"stats":[],"stringId":"mastery_fire_6518"},"63610":{"connections":[{"id":38459,"orbit":-7}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Effect","orbit":2,"orbitIndex":0,"skill":63610,"stats":["10% increased Blind Effect"],"stringId":"blind6_"},"63618":{"connections":[{"id":31129,"orbit":2147483647}],"group":1537,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":0,"orbitIndex":0,"skill":63618,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions17"},"63659":{"connections":[{"id":33964,"orbit":0},{"id":37616,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Clever Construction","orbit":4,"orbitIndex":45,"skill":63659,"stats":["25% increased Critical Hit Chance with Traps"],"stringId":"trap13"},"63668":{"connections":[{"id":9069,"orbit":0},{"id":4328,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":3,"orbitIndex":4,"skill":63668,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers24_"},"63678":{"connections":[],"group":173,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Armour","orbit":0,"orbitIndex":0,"skill":63678,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"bear13"},"63679":{"connections":[{"id":20008,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Stun Buildup","orbit":1,"orbitIndex":11,"skill":63679,"stats":["18% increased Projectile Stun Buildup"],"stringId":"ranged24"},"63713":{"ascendancyName":"Invoker","connections":[{"id":57181,"orbit":-4}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds","isNotable":true,"name":"Sunder my Enemies...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":43,"skill":63713,"stats":["Critical Hits ignore non-negative Enemy Monster Elemental Resistances"],"stringId":"AscendancyMonk2Notable6"},"63731":{"connections":[{"id":244,"orbit":0}],"group":1004,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":63731,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"stringId":"boss_slaying7"},"63732":{"connections":[{"id":8440,"orbit":-3}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":1,"orbitIndex":10,"skill":63732,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life8"},"63739":{"connections":[{"id":37593,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Vigorous Remnants","orbit":7,"orbitIndex":14,"recipe":["Envy","Despair","Guilt"],"skill":63739,"stats":["Recover 3% of Maximum Life when you collect a Remnant"],"stringId":"remnant9"},"63759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":26565,"orbit":0}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Stacking Toxins","orbit":3,"orbitIndex":0,"recipe":["Isolation","Disgust","Paranoia"],"skill":63759,"stats":["Targets can be affected by +1 of your Poisons at the same time","20% reduced Magnitude of Poison you inflict"],"stringId":"poison30"},"63762":{"connections":[{"id":44522,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":2,"skill":63762,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect45"},"63772":{"connectionArt":"CharacterPlanned","connections":[{"id":37888,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":23,"skill":63772,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"oracle_movement_cooldown4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63790":{"connections":[{"id":48014,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage against Immobilised","orbit":5,"orbitIndex":54,"skill":63790,"stats":["20% increased Melee Damage against Immobilised Enemies"],"stringId":"melee53"},"63813":{"connections":[{"id":1169,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":20,"skill":63813,"stats":["16% increased Warcry Speed"],"stringId":"warcries37"},"63814":{"connections":[{"id":33216,"orbit":0}],"group":749,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":63814,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed4"},"63828":{"connections":[],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Strike and Damage","orbit":7,"orbitIndex":18,"skill":63828,"stats":["6% increased Ballista Critical Damage Bonus","10% increased Ballista Critical Hit Chance"],"stringId":"ballista8"},"63830":{"connections":[{"id":13624,"orbit":-5},{"id":45390,"orbit":5}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Marked for Sickness","orbit":3,"orbitIndex":3,"recipe":["Guilt","Disgust","Isolation"],"skill":63830,"stats":["Enemies you Mark have 10% reduced Accuracy Rating","Enemies you Mark take 10% increased Damage"],"stringId":"marks12"},"63861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":13,"skill":63861,"stats":[],"stringId":"mastery_criticals62"},"63863":{"connections":[],"group":917,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":63863,"stats":["12% increased Lightning Damage"],"stringId":"lightning20__"},"63888":{"connections":[{"id":35901,"orbit":0},{"id":61356,"orbit":0},{"id":26068,"orbit":0}],"group":1196,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":63888,"stats":["+5 to any Attribute"],"stringId":"attributes29"},"63891":{"connections":[{"id":63074,"orbit":0}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":1,"orbitIndex":7,"skill":63891,"stats":["7% increased Chaos Damage"],"stringId":"chaos11"},"63894":{"ascendancyName":"Infernalist","connections":[{"id":61267,"orbit":-4}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Spell Damage","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":6,"orbitIndex":64,"skill":63894,"stats":["12% increased Spell Damage"],"stringId":"AscendancyWitch1Small6"},"63926":{"connections":[],"group":992,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":63926,"stats":["Minions have +20% to Lightning Resistance","Minions have +3% to Maximum Lightning Resistances"],"stringId":"minion_defence23"},"63979":{"connections":[{"id":9750,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":8,"skill":63979,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries32"},"64023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":274,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":64023,"stats":[],"stringId":"mastery_thorns308"},"64031":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds","isNotable":true,"name":"...and I Shall Rage","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":3,"orbitIndex":4,"skill":64031,"stats":["Grants Skill: Unbound Avatar"],"stringId":"AscendancyMonk2Notable5"},"64042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":447,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":18,"skill":64042,"stats":[],"stringId":"mastery_physical197"},"64046":{"connections":[{"id":45522,"orbit":6},{"id":5726,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"isSwitchable":true,"name":"Principal Infusion","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","id":10941,"name":"Entropy","stats":["20% increased Chaos Damage","18% increased Skill Effect Duration"]}},"orbit":7,"orbitIndex":3,"skill":64046,"stats":["30% increased Elemental Infusion duration","Remnants can be collected from 30% further away"],"stringId":"lightning34"},"64050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1395,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","isNotable":true,"name":"Marathon Runner","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Guilt"],"skill":64050,"stats":["12% increased Movement Speed while Sprinting"],"stringId":"Sprint9_"},"64056":{"connections":[{"id":36931,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Daze Chance","orbit":2,"orbitIndex":6,"skill":64056,"stats":["5% chance to Daze on Hit"],"stringId":"attack44"},"64064":{"connections":[],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":0,"orbitIndex":0,"skill":64064,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy26"},"64083":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":3,"skill":64083,"stats":["20% increased Lightning Damage"],"stringId":"oracle_hierarchy5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64119":{"connections":[{"id":33596,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Rapid Reload","orbit":7,"orbitIndex":20,"recipe":["Fear","Guilt","Suffering"],"skill":64119,"stats":["40% increased Crossbow Reload Speed"],"stringId":"crossbow13"},"64139":{"connectionArt":"CharacterPlanned","connections":[{"id":22221,"orbit":-5},{"id":15842,"orbit":0}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Friend to Many","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":64139,"stats":["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"],"stringId":"oracle_big_family9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64140":{"connections":[{"id":51336,"orbit":-5},{"id":30905,"orbit":-4}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":10,"skill":64140,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks4"},"64192":{"connections":[{"id":53373,"orbit":3}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":12,"skill":64192,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold28"},"64213":{"connections":[{"id":12611,"orbit":-3},{"id":61246,"orbit":3}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Freeze Buildup","orbit":7,"orbitIndex":8,"skill":64213,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"stringId":"elemental16"},"64223":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56857,"orbit":6}],"group":593,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Energy Shield","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":64223,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancySorceress3Small2"},"64239":{"connectionArt":"CharacterPlanned","connections":[{"id":2733,"orbit":0}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Innate Rune","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":17,"skill":64239,"stats":["Adds 1 to 37 Lightning damage to Attacks"],"stringId":"oracle_flat_lightning3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64240":{"connections":[{"id":52220,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Battle Fever","orbit":2,"orbitIndex":6,"recipe":["Disgust","Guilt","Isolation"],"skill":64240,"stats":["5% increased Skill Speed","25% increased Physical Damage"],"stringId":"physical37"},"64284":{"connections":[{"id":27373,"orbit":0},{"id":19011,"orbit":4}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":4,"orbitIndex":51,"skill":64284,"stats":["8% increased Melee Damage"],"stringId":"melee19"},"64295":{"connections":[],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":54,"skill":64295,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap11"},"64299":{"connections":[{"id":17655,"orbit":2147483647}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"isSwitchable":true,"name":"Bolstering Presence","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":56845,"name":"Harbinger of Disaster","stats":["10% increased Critical Damage Bonus","10% increased Damage","10% increased Area Damage"]}},"orbit":2,"orbitIndex":20,"skill":64299,"stats":["Aura Skills have 12% increased Magnitudes"],"stringId":"auras18"},"64312":{"connections":[{"id":23861,"orbit":-7},{"id":54886,"orbit":7}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":7,"orbitIndex":2,"skill":64312,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed9"},"64318":{"connections":[{"id":61063,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":2,"skill":64318,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"stringId":"elemental1"},"64324":{"connections":[{"id":41442,"orbit":9}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Block and Stun Threshold","orbit":3,"orbitIndex":17,"skill":64324,"stats":["4% increased Block chance","5% increased Stun Threshold"],"stringId":"shield33"},"64325":{"connections":[{"id":45304,"orbit":-4}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":11,"skill":64325,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison23"},"64327":{"connections":[{"id":39517,"orbit":0},{"id":49391,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/steelspan.dds","isNotable":true,"name":"Defender's Resolve","orbit":3,"orbitIndex":21,"skill":64327,"stats":["12% increased Block chance","Your Heavy Stun buildup empties 50% faster"],"stringId":"block15"},"64345":{"connections":[{"id":49968,"orbit":0},{"id":63679,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Attack Damage","orbit":2,"orbitIndex":16,"skill":64345,"stats":["10% increased Attack Damage"],"stringId":"ranged22"},"64352":{"connections":[{"id":44345,"orbit":0}],"group":1031,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":64352,"stats":["10% increased Lightning Damage"],"stringId":"lightning11"},"64357":{"connections":[{"id":50062,"orbit":0},{"id":506,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":8,"skill":64357,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour16_"},"64370":{"connections":[{"id":53396,"orbit":0}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":17,"skill":64370,"stats":["+5 to any Attribute"],"stringId":"intelligence31"},"64379":{"ascendancyName":"Infernalist","connections":[{"id":25239,"orbit":-4}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Spell Damage","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":69,"skill":64379,"stats":["12% increased Spell Damage"],"stringId":"AscendancyWitch1Small5"},"64399":{"connections":[{"id":2511,"orbit":3}],"group":574,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":1,"orbitIndex":7,"skill":64399,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals67__"},"64405":{"connections":[],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":12,"skill":64405,"stats":["15% increased Totem Damage"],"stringId":"totems48_"},"64415":{"connections":[{"id":22063,"orbit":0},{"id":1416,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Shattering Daze","orbit":7,"orbitIndex":19,"recipe":["Disgust","Isolation","Envy"],"skill":64415,"stats":["5% chance to Daze on Hit","Gain 12% of Physical Damage as Extra Cold Damage against Dazed Enemies"],"stringId":"daze_17"},"64427":{"connections":[],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion and Power Charge Duration","orbit":2,"orbitIndex":15,"skill":64427,"stats":["6% increased Power Charge Duration","6% increased Elemental Infusion duration"],"stringId":"power_charges17"},"64434":{"connections":[{"id":3893,"orbit":2}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":64434,"stats":["15% increased Evasion Rating"],"stringId":"deflect28"},"64443":{"connections":[{"id":41126,"orbit":0},{"id":62023,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Impact Force","orbit":3,"orbitIndex":8,"recipe":["Fear","Ire","Fear"],"skill":64443,"stats":["20% increased Stun Buildup","25% increased Attack Area Damage"],"stringId":"area_attacks29"},"64462":{"connections":[{"id":53150,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":17,"skill":64462,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech2"},"64471":{"connections":[{"id":43843,"orbit":0}],"group":628,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":54,"skill":64471,"stats":["+5 to any Attribute"],"stringId":"strength84"},"64474":{"connections":[],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":9,"skill":64474,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery27"},"64488":{"connections":[{"id":7201,"orbit":7}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Critical Chance","orbit":7,"orbitIndex":3,"skill":64488,"stats":["Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m"],"stringId":"projectiles35"},"64489":{"connections":[{"id":6952,"orbit":0},{"id":25162,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":14,"skill":64489,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks33"},"64492":{"connections":[{"id":46688,"orbit":7}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":9,"skill":64492,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed9"},"64525":{"connections":[{"id":58855,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Easy Target","orbit":7,"orbitIndex":4,"recipe":["Guilt","Greed","Fear"],"skill":64525,"stats":["Your Hits cannot be Evaded by Heavy Stunned Enemies"],"stringId":"stun21"},"64543":{"connections":[],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Unbound Forces","orbit":5,"orbitIndex":57,"recipe":["Disgust","Envy","Guilt"],"skill":64543,"stats":["40% increased Chill Duration on Enemies","40% increased Shock Duration","25% increased Magnitude of Chill you inflict","25% increased Magnitude of Shock you inflict"],"stringId":"elemental30"},"64550":{"connections":[{"id":22532,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":5,"skill":64550,"stats":["20% increased Damage against Immobilised Enemies"],"stringId":"immobilisation5"},"64572":{"connections":[{"id":48925,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":20,"skill":64572,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze28"},"64591":{"ascendancyName":"Disciple of Varashta","connections":[{"id":34207,"orbit":-8}],"flavourText":"\"I have seen countless battles. I know war! The taste of defeat... The taste of victory! But in this war... everything is at stake. So yes, those you speak of will know my blade. I will do whatever I must!\" \\n\\nRuzhan confided in his Tale-woman, Navira.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds","isNotable":true,"name":"Ruzhan's Trap","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":9,"orbitIndex":106,"skill":64591,"stats":["Grants Skill: Ruzhan's Trap"],"stringId":"AscendancySorceress3Notable16"},"64601":{"connections":[],"flavourText":"The body is a weapon waiting to be mastered.","group":1338,"icon":"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds","isKeystone":true,"name":"Hollow Palm Technique","orbit":0,"orbitIndex":0,"skill":64601,"stats":["Can Attack as though using a Quarterstaff while both of your hand slots are empty","Unarmed Attacks that would use an Equipped Quarterstaff's damage have:","Base Unarmed Physical damage replaced with damage based on their Skill Level","1% more Attack Speed per 75 Item Evasion on Equipped Armour Items","+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"],"stringId":"passive_keystone_hollow_palm_technique"},"64637":{"connections":[{"id":32543,"orbit":7}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":14,"skill":64637,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"spell_suppression7"},"64643":{"connections":[{"id":56360,"orbit":0},{"id":27176,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":3,"skill":64643,"stats":["20% increased Power Charge Duration"],"stringId":"power_charges3"},"64650":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Wary Dodging","orbit":2,"orbitIndex":12,"recipe":["Suffering","Suffering","Disgust"],"skill":64650,"stats":["Cannot be Light Stunned if you haven't been Hit Recently"],"stringId":"stun_threshold16_"},"64653":{"connections":[{"id":47420,"orbit":7}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":15,"skill":64653,"stats":["Minions deal 16% increased Damage"],"stringId":"minion_reservation8"},"64659":{"connections":[{"id":3355,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Lasting Boons","orbit":3,"orbitIndex":21,"recipe":["Isolation","Fear","Greed"],"skill":64659,"stats":["20% reduced Slowing Potency of Debuffs on You","Buffs on you expire 10% slower"],"stringId":"slowed_enemies18"},"64665":{"connections":[{"id":51847,"orbit":0},{"id":21274,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":4,"orbitIndex":30,"skill":64665,"stats":["8% increased Attack Damage","5% increased Accuracy Rating"],"stringId":"attack34"},"64683":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":685,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":64683,"stats":[],"stringId":"mastery_armour_6287"},"64700":{"connections":[{"id":61632,"orbit":0}],"group":1514,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Freeze and Daze Buildup","orbit":0,"orbitIndex":0,"skill":64700,"stats":["5% chance to Daze on Hit","20% increased Freeze Buildup with Quarterstaves"],"stringId":"quarterstaff15"},"64724":{"connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability and Ignite Magnitude","orbit":2,"orbitIndex":14,"skill":64724,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"stringId":"ignite3"},"64726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":46296,"orbit":0},{"id":38479,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":8,"skill":64726,"stats":[],"stringId":"mastery_projectile_6651"},"64747":{"connections":[{"id":33838,"orbit":-5}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Duration","orbit":4,"orbitIndex":39,"skill":64747,"stats":["6% increased chance to inflict Ailments","6% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments45"},"64770":{"connections":[],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Morgana, the Storm Seer","orbit":3,"orbitIndex":19,"recipe":["Envy","Despair","Paranoia"],"skill":64770,"stats":["+8% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","You cannot be Electrocuted","50% reduced effect of Shock on you"],"stringId":"energy_shield_and_armour24"},"64789":{"ascendancyName":"Stormweaver","connections":[{"id":8867,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Mana Regeneration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":68,"skill":64789,"stats":["12% increased Mana Regeneration Rate"],"stringId":"AscendancySorceress1Small1"},"64804":{"connections":[],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":10,"skill":64804,"stats":["25% increased Duration of each Puppet Master stack"],"stringId":"Puppetmaster3"},"64807":{"connections":[{"id":59945,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":2,"orbitIndex":20,"skill":64807,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"slam_area1"},"64819":{"connections":[{"id":47753,"orbit":-3}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Armour ","orbit":4,"orbitIndex":48,"skill":64819,"stats":["6% increased Fire Damage","10% increased Armour"],"stringId":"ignite_mitigation2"},"64851":{"connections":[{"id":21324,"orbit":0}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Flashy Parrying","orbit":7,"orbitIndex":9,"recipe":["Greed","Guilt","Greed"],"skill":64851,"stats":["12% increased Block chance","20% increased Parried Debuff Duration"],"stringId":"deflect10"},"64870":{"connections":[{"id":27439,"orbit":0}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Fire Damage","orbit":0,"orbitIndex":0,"skill":64870,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"stringId":"armour13_"},"64900":{"connections":[{"id":54999,"orbit":-4}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Attack Damage and Stun","orbit":7,"orbitIndex":23,"skill":64900,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"stringId":"melee59_"},"64927":{"connections":[{"id":52464,"orbit":4},{"id":51741,"orbit":-4},{"id":54351,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":6,"orbitIndex":18,"skill":64927,"stats":["10% increased amount of Mana Leeched"],"stringId":"life_on_kill4"},"64939":{"connections":[{"id":30123,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":2,"orbitIndex":12,"skill":64939,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed2"},"64948":{"connections":[{"id":48264,"orbit":0}],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":9,"skill":64948,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras27"},"64962":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":19,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds","isNotable":true,"name":"Dedication to Kitava","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":64962,"stats":["Body Armour grants +100% of Armour also applies to Chaos Damage"],"stringId":"AscendancyWarrior3Notable6_11"},"64990":{"connections":[{"id":60891,"orbit":0},{"id":18897,"orbit":0},{"id":27705,"orbit":0}],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":64990,"stats":["+8 to Intelligence"],"stringId":"azmerianimals53_"},"64995":{"connections":[{"id":17924,"orbit":0}],"group":408,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":3,"orbitIndex":0,"skill":64995,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life1"},"64996":{"connections":[{"id":7782,"orbit":-4},{"id":4810,"orbit":7}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":7,"orbitIndex":20,"skill":64996,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical_witch9"},"65009":{"connections":[{"id":29517,"orbit":0},{"id":31855,"orbit":7},{"id":61373,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":65009,"stats":["+5 to any Attribute"],"stringId":"dexterity36"},"65016":{"connections":[{"id":11505,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Intense Flames","orbit":3,"orbitIndex":16,"recipe":["Guilt","Suffering","Fear"],"skill":65016,"stats":["35% increased Damage with Hits against Burning Enemies"],"stringId":"fire35"},"65023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Impenetrable Shell","orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Ire"],"skill":65023,"stats":["Defend with 150% of Armour against Hits from Enemies that are further than 6m away"],"stringId":"armour36"},"65042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":190,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":1,"orbitIndex":6,"skill":65042,"stats":[],"stringId":"mastery_rage_6669"},"65091":{"connections":[{"id":51707,"orbit":6}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":65091,"stats":["15% increased Evasion Rating"],"stringId":"evasion16"},"65149":{"connections":[],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":2,"orbitIndex":20,"skill":65149,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break20"},"65154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":182,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":65154,"stats":[],"stringId":"mastery_totem235"},"65160":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44069,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Titanic","orbit":3,"orbitIndex":7,"recipe":["Despair","Paranoia","Guilt"],"skill":65160,"stats":["30% increased Stun Buildup","30% increased Stun Threshold","5% increased Strength"],"stringId":"stun14"},"65161":{"connections":[],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Deflection","orbit":2,"orbitIndex":16,"skill":65161,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"azmerianimals40"},"65167":{"connections":[{"id":712,"orbit":4}],"group":1427,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Area Damage and Companion Area of Effect","orbit":0,"orbitIndex":0,"skill":65167,"stats":["6% increased Area Damage","Companions have 10% increased Area of Effect"],"stringId":"companions61"},"65173":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds","isNotable":true,"name":"...and Protect me from Harm","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":139,"skill":65173,"stats":["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating","35% less Evasion Rating"],"stringId":"AscendancyMonk2Notable2_"},"65176":{"connections":[{"id":14045,"orbit":0},{"id":42250,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":6,"orbitIndex":48,"skill":65176,"stats":["10% increased Projectile Damage"],"stringId":"ranged15"},"65189":{"connections":[{"id":17260,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Penetration","orbit":2,"orbitIndex":7,"skill":65189,"stats":["Damage Penetrates 6% of Enemy Elemental Resistances while Shapeshifted"],"stringId":"shapeshifting7"},"65192":{"connectionArt":"CharacterPlanned","connections":[{"id":63170,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":11,"skill":65192,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"oracle_totems1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"65193":{"connections":[{"id":48714,"orbit":0},{"id":10245,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds","isNotable":true,"name":"Viciousness","orbit":3,"orbitIndex":13,"recipe":["Disgust","Greed","Paranoia"],"skill":65193,"stats":["3% increased Attack Speed per Enemy in Close Range","+10 to Dexterity"],"stringId":"melee34"},"65204":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":30615,"orbit":0},{"id":10162,"orbit":0}],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Overflowing Power","orbit":2,"orbitIndex":7,"recipe":["Isolation","Envy","Greed"],"skill":65204,"stats":["+2 to Maximum Power Charges"],"stringId":"power_charges8"},"65207":{"connections":[{"id":63566,"orbit":-6}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":14,"skill":65207,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"evasion20"},"65212":{"connections":[{"id":58539,"orbit":0},{"id":34968,"orbit":0}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":6,"skill":65212,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"spell_suppression11+"},"65226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":479,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":65226,"stats":[],"stringId":"mastery_infusion294"},"65228":{"ascendancyName":"Martial Artist","connections":[{"id":61586,"orbit":4}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Attack Speed","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":4,"orbitIndex":28,"skill":65228,"stats":["4% increased Attack Speed"],"stringId":"AscendancyMonk1Small2"},"65243":{"connections":[{"id":46421,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Enveloping Presence","orbit":2,"orbitIndex":22,"recipe":["Fear","Greed","Fear"],"skill":65243,"stats":["30% increased Presence Area of Effect","Aura Skills have 6% increased Magnitudes"],"stringId":"auras17"},"65248":{"connections":[],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Duration","orbit":4,"orbitIndex":24,"skill":65248,"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"stringId":"elemental49"},"65256":{"connections":[{"id":34845,"orbit":0},{"id":40626,"orbit":0}],"group":1306,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Widespread Coverage","orbit":0,"orbitIndex":0,"recipe":["Guilt","Disgust","Despair"],"skill":65256,"stats":["50% increased Hazard Area of Effect","20% reduced Hazard Damage"],"stringId":"hazards18"},"65265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[{"id":31366,"orbit":0},{"id":17146,"orbit":0}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Swift Interruption","orbit":0,"orbitIndex":0,"recipe":["Guilt","Envy","Greed"],"skill":65265,"stats":["12% increased Attack Speed if you've successfully Parried Recently","6% increased Movement Speed if you've successfully Parried Recently"],"stringId":"deflect9"},"65287":{"connections":[{"id":5580,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":6,"skill":65287,"stats":["15% increased Totem Damage"],"stringId":"totems16"},"65290":{"connections":[{"id":57069,"orbit":0}],"group":1488,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage and Resistance","orbit":0,"orbitIndex":0,"skill":65290,"stats":["5% increased Lightning Damage","+3% to Lightning Resistance"],"stringId":"shock22_"},"65310":{"connections":[{"id":22682,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":2,"skill":65310,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"spells13_"},"65322":{"connections":[{"id":54818,"orbit":0},{"id":13425,"orbit":0},{"id":47709,"orbit":0},{"id":58718,"orbit":0}],"group":744,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":65322,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed10"},"65324":{"connections":[{"id":1861,"orbit":7},{"id":9863,"orbit":-5}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":16,"skill":65324,"stats":["+5% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"armour_and_evasion50"},"65328":{"connections":[{"id":48565,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":2,"skill":65328,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels2"},"65353":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":535,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Banner Mastery","orbit":0,"orbitIndex":0,"skill":65353,"stats":[],"stringId":"mastery_banner304"},"65393":{"connections":[{"id":2732,"orbit":-2},{"id":11672,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":16,"skill":65393,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration46"},"65413":{"ascendancyName":"Stormweaver","connections":[{"id":12882,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":4,"skill":65413,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancySorceress1Small3"},"65424":{"connections":[{"id":58109,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Damage","orbit":3,"orbitIndex":3,"skill":65424,"stats":["12% increased Attack Damage while Dual Wielding"],"stringId":"dual_wielding2"},"65437":{"connections":[{"id":63064,"orbit":0}],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":14,"skill":65437,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery4"},"65439":{"connections":[{"id":12821,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Aura Effect","orbit":1,"orbitIndex":4,"skill":65439,"stats":["Banner Skills have 12% increased Aura Magnitudes"],"stringId":"banners2"},"65468":{"connections":[{"id":61432,"orbit":0},{"id":25807,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Repeating Explosives","orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Isolation"],"skill":65468,"stats":["Grenades have 15% chance to activate a second time"],"stringId":"crossbow10"},"65472":{"connections":[{"id":9323,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":3,"orbitIndex":21,"skill":65472,"stats":["15% increased Glory generation"],"stringId":"glory26"},"65493":{"connections":[{"id":43854,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area and Presence","orbit":3,"orbitIndex":10,"skill":65493,"stats":["15% reduced Presence Area of Effect","6% increased Area of Effect"],"stringId":"auras33"},"65498":{"connections":[{"id":37026,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":10,"skill":65498,"stats":["Break 20% increased Armour"],"stringId":"physical43"},"65509":{"connections":[{"id":41384,"orbit":0},{"id":51821,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":22,"skill":65509,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour41"},"65518":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds","isNotable":true,"name":"Sanguine Tides","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":5,"orbitIndex":6,"skill":65518,"stats":["Flasks do not recover Life","Gain 1 Life Flask Charge per 2% Life spent","On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed","Gain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"],"stringId":"AscendancyWitch2Notable9"}},"tree":"Default"} \ No newline at end of file +{"assets":{"CharacterAscendancyLineConnectorActive":["CharacterAscendancy_orbit_intermediateactive0.png"],"CharacterAscendancyLineConnectorIntermediate":["CharacterAscendancy_orbit_intermediate0.png"],"CharacterAscendancyLineConnectorNormal":["CharacterAscendancy_orbit_normal0.png"],"CharacterAscendancyOrbit1Active":["CharacterAscendancy_orbit_intermediateactive9.png"],"CharacterAscendancyOrbit1Intermediate":["CharacterAscendancy_orbit_intermediate9.png"],"CharacterAscendancyOrbit1Normal":["CharacterAscendancy_orbit_normal9.png"],"CharacterAscendancyOrbit2Active":["CharacterAscendancy_orbit_intermediateactive8.png"],"CharacterAscendancyOrbit2Intermediate":["CharacterAscendancy_orbit_intermediate8.png"],"CharacterAscendancyOrbit2Normal":["CharacterAscendancy_orbit_normal8.png"],"CharacterAscendancyOrbit3Active":["CharacterAscendancy_orbit_intermediateactive6.png"],"CharacterAscendancyOrbit3Intermediate":["CharacterAscendancy_orbit_intermediate6.png"],"CharacterAscendancyOrbit3Normal":["CharacterAscendancy_orbit_normal6.png"],"CharacterAscendancyOrbit4Active":["CharacterAscendancy_orbit_intermediateactive5.png"],"CharacterAscendancyOrbit4Intermediate":["CharacterAscendancy_orbit_intermediate5.png"],"CharacterAscendancyOrbit4Normal":["CharacterAscendancy_orbit_normal5.png"],"CharacterAscendancyOrbit5Active":["CharacterAscendancy_orbit_intermediateactive4.png"],"CharacterAscendancyOrbit5Intermediate":["CharacterAscendancy_orbit_intermediate4.png"],"CharacterAscendancyOrbit5Normal":["CharacterAscendancy_orbit_normal4.png"],"CharacterAscendancyOrbit6Active":["CharacterAscendancy_orbit_intermediateactive3.png"],"CharacterAscendancyOrbit6Intermediate":["CharacterAscendancy_orbit_intermediate3.png"],"CharacterAscendancyOrbit6Normal":["CharacterAscendancy_orbit_normal3.png"],"CharacterAscendancyOrbit7Active":["CharacterAscendancy_orbit_intermediateactive7.png"],"CharacterAscendancyOrbit7Intermediate":["CharacterAscendancy_orbit_intermediate7.png"],"CharacterAscendancyOrbit7Normal":["CharacterAscendancy_orbit_normal7.png"],"CharacterAscendancyOrbit8Active":["CharacterAscendancy_orbit_intermediateactive2.png"],"CharacterAscendancyOrbit8Intermediate":["CharacterAscendancy_orbit_intermediate2.png"],"CharacterAscendancyOrbit8Normal":["CharacterAscendancy_orbit_normal2.png"],"CharacterAscendancyOrbit9Active":["CharacterAscendancy_orbit_intermediateactive1.png"],"CharacterAscendancyOrbit9Intermediate":["CharacterAscendancy_orbit_intermediate1.png"],"CharacterAscendancyOrbit9Normal":["CharacterAscendancy_orbit_normal1.png"],"CharacterLineConnectorActive":["Character_orbit_intermediateactive0.png"],"CharacterLineConnectorIntermediate":["Character_orbit_intermediate0.png"],"CharacterLineConnectorNormal":["Character_orbit_normal0.png"],"CharacterOrbit1Active":["Character_orbit_intermediateactive9.png"],"CharacterOrbit1Intermediate":["Character_orbit_intermediate9.png"],"CharacterOrbit1Normal":["Character_orbit_normal9.png"],"CharacterOrbit2Active":["Character_orbit_intermediateactive8.png"],"CharacterOrbit2Intermediate":["Character_orbit_intermediate8.png"],"CharacterOrbit2Normal":["Character_orbit_normal8.png"],"CharacterOrbit3Active":["Character_orbit_intermediateactive6.png"],"CharacterOrbit3Intermediate":["Character_orbit_intermediate6.png"],"CharacterOrbit3Normal":["Character_orbit_normal6.png"],"CharacterOrbit4Active":["Character_orbit_intermediateactive5.png"],"CharacterOrbit4Intermediate":["Character_orbit_intermediate5.png"],"CharacterOrbit4Normal":["Character_orbit_normal5.png"],"CharacterOrbit5Active":["Character_orbit_intermediateactive4.png"],"CharacterOrbit5Intermediate":["Character_orbit_intermediate4.png"],"CharacterOrbit5Normal":["Character_orbit_normal4.png"],"CharacterOrbit6Active":["Character_orbit_intermediateactive3.png"],"CharacterOrbit6Intermediate":["Character_orbit_intermediate3.png"],"CharacterOrbit6Normal":["Character_orbit_normal3.png"],"CharacterOrbit7Active":["Character_orbit_intermediateactive7.png"],"CharacterOrbit7Intermediate":["Character_orbit_intermediate7.png"],"CharacterOrbit7Normal":["Character_orbit_normal7.png"],"CharacterOrbit8Active":["Character_orbit_intermediateactive2.png"],"CharacterOrbit8Intermediate":["Character_orbit_intermediate2.png"],"CharacterOrbit8Normal":["Character_orbit_normal2.png"],"CharacterOrbit9Active":["Character_orbit_intermediateactive1.png"],"CharacterOrbit9Intermediate":["Character_orbit_intermediate1.png"],"CharacterOrbit9Normal":["Character_orbit_normal1.png"],"CharacterPlannedLineConnectorActive":["CharacterPlanned_orbit_intermediateactive0.png"],"CharacterPlannedLineConnectorIntermediate":["CharacterPlanned_orbit_intermediate0.png"],"CharacterPlannedLineConnectorNormal":["CharacterPlanned_orbit_normal0.png"],"CharacterPlannedOrbit1Active":["CharacterPlanned_orbit_intermediateactive9.png"],"CharacterPlannedOrbit1Intermediate":["CharacterPlanned_orbit_intermediate9.png"],"CharacterPlannedOrbit1Normal":["CharacterPlanned_orbit_normal9.png"],"CharacterPlannedOrbit2Active":["CharacterPlanned_orbit_intermediateactive8.png"],"CharacterPlannedOrbit2Intermediate":["CharacterPlanned_orbit_intermediate8.png"],"CharacterPlannedOrbit2Normal":["CharacterPlanned_orbit_normal8.png"],"CharacterPlannedOrbit3Active":["CharacterPlanned_orbit_intermediateactive6.png"],"CharacterPlannedOrbit3Intermediate":["CharacterPlanned_orbit_intermediate6.png"],"CharacterPlannedOrbit3Normal":["CharacterPlanned_orbit_normal6.png"],"CharacterPlannedOrbit4Active":["CharacterPlanned_orbit_intermediateactive5.png"],"CharacterPlannedOrbit4Intermediate":["CharacterPlanned_orbit_intermediate5.png"],"CharacterPlannedOrbit4Normal":["CharacterPlanned_orbit_normal5.png"],"CharacterPlannedOrbit5Active":["CharacterPlanned_orbit_intermediateactive4.png"],"CharacterPlannedOrbit5Intermediate":["CharacterPlanned_orbit_intermediate4.png"],"CharacterPlannedOrbit5Normal":["CharacterPlanned_orbit_normal4.png"],"CharacterPlannedOrbit6Active":["CharacterPlanned_orbit_intermediateactive3.png"],"CharacterPlannedOrbit6Intermediate":["CharacterPlanned_orbit_intermediate3.png"],"CharacterPlannedOrbit6Normal":["CharacterPlanned_orbit_normal3.png"],"CharacterPlannedOrbit7Active":["CharacterPlanned_orbit_intermediateactive7.png"],"CharacterPlannedOrbit7Intermediate":["CharacterPlanned_orbit_intermediate7.png"],"CharacterPlannedOrbit7Normal":["CharacterPlanned_orbit_normal7.png"],"CharacterPlannedOrbit8Active":["CharacterPlanned_orbit_intermediateactive2.png"],"CharacterPlannedOrbit8Intermediate":["CharacterPlanned_orbit_intermediate2.png"],"CharacterPlannedOrbit8Normal":["CharacterPlanned_orbit_normal2.png"],"CharacterPlannedOrbit9Active":["CharacterPlanned_orbit_intermediateactive1.png"],"CharacterPlannedOrbit9Intermediate":["CharacterPlanned_orbit_intermediate1.png"],"CharacterPlannedOrbit9Normal":["CharacterPlanned_orbit_normal1.png"]},"classes":[{"ascendancies":[{"background":{"height":1500,"image":"ClassesDeadeye","section":"AscendancyBackground","width":1500,"x":15451.736075332,"y":1623.2446432539},"id":"Deadeye","internalId":"Ranger1","name":"Deadeye"},{"background":{"height":1500,"image":"ClassesPathfinder","section":"AscendancyBackground","width":1500,"x":14776.587030868,"y":4800.3694266947},"id":"Pathfinder","internalId":"Ranger3","name":"Pathfinder"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesRanger","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":15,"base_int":7,"base_str":7,"integerId":2,"name":"Ranger"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesAmazon","section":"AscendancyBackground","width":1500,"x":13455.630227224,"y":7767.6950314609},"id":"Amazon","internalId":"Huntress1","name":"Amazon"},{"background":{"height":1500,"image":"ClassesSpirit Walker","section":"AscendancyBackground","width":1500,"x":11546.597815372,"y":10395.535089816},"id":"Spirit Walker","internalId":"Huntress2","name":"Spirit Walker"},{"background":{"height":1500,"image":"ClassesRitualist","section":"AscendancyBackground","width":1500,"x":9132.9236722657,"y":12569.040381434},"id":"Ritualist","internalId":"Huntress3","name":"Ritualist"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesHuntress","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":15,"base_int":7,"base_str":7,"integerId":8,"name":"Huntress"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesTitan","section":"AscendancyBackground","width":1500,"x":-11551.107884827,"y":10390.523449116},"id":"Titan","internalId":"Warrior1","name":"Titan"},{"background":{"height":1500,"image":"ClassesWarbringer","section":"AscendancyBackground","width":1500,"x":-13458.999762149,"y":7761.8552109686},"id":"Warbringer","internalId":"Warrior2","name":"Warbringer"},{"background":{"height":1500,"image":"ClassesSmith of Kitava","section":"AscendancyBackground","width":1500,"x":-14778.668766418,"y":4793.956654588},"id":"Smith of Kitava","internalId":"Warrior3","name":"Smith of Kitava"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesWarrior","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":7,"base_str":15,"integerId":6,"name":"Warrior"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesTactician","section":"AscendancyBackground","width":1500,"x":3250.4343344123,"y":15192.950587402},"id":"Tactician","internalId":"Mercenary1","name":"Tactician"},{"background":{"height":1500,"image":"ClassesWitchhunter","section":"AscendancyBackground","width":1500,"x":20.612500410808,"y":15536.751463494},"id":"Witchhunter","internalId":"Mercenary2","name":"Witchhunter"},{"background":{"height":1500,"image":"ClassesGemling Legionnaire","section":"AscendancyBackground","width":1500,"x":-3210.1101987684,"y":15201.521747027},"id":"Gemling Legionnaire","internalId":"Mercenary3","name":"Gemling Legionnaire"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesMercenary","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":11,"base_int":7,"base_str":11,"integerId":9,"name":"Mercenary"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesOracle","section":"AscendancyBackground","width":1500,"x":-14155.374312805,"y":-6404.4085580119},"id":"Oracle","internalId":"Druid1","name":"Oracle"},{"background":{"height":1500,"image":"ClassesShaman","section":"AscendancyBackground","width":1500,"x":-12514.494009575,"y":-9207.524672672},"id":"Shaman","internalId":"Druid2","name":"Shaman"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesDruid","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":11,"base_str":11,"integerId":11,"name":"Druid"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesInfernalist","section":"AscendancyBackground","width":1500,"x":-9132.2814156951,"y":-12569.507033218},"id":"Infernalist","internalId":"Witch1","name":"Infernalist"},{"background":{"height":1500,"image":"ClassesBlood Mage","section":"AscendancyBackground","width":1500,"x":-6319.3716959661,"y":-14193.541217109},"id":"Blood Mage","internalId":"Witch2","name":"Blood Mage"},{"background":{"height":1500,"image":"ClassesLich","section":"AscendancyBackground","width":1500,"x":-3230.2751094136,"y":-15197.249541646},"id":"Lich","internalId":"Witch3","name":"Lich","replaceBy":"Abyssal Lich"},{"background":{"height":1500,"image":"ClassesAbyssal Lich","section":"AscendancyBackground","width":1500,"x":-3230.2751094136,"y":-15197.249541646},"id":"Abyssal Lich","internalId":"Witch3b","name":"Abyssal Lich","replace":"Lich"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesWitch","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":15,"base_str":7,"integerId":1,"name":"Witch"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesStormweaver","section":"AscendancyBackground","width":1500,"x":9.5135248468934e-13,"y":-15536.765136719},"id":"Stormweaver","internalId":"Sorceress1","name":"Stormweaver"},{"background":{"height":1500,"image":"ClassesChronomancer","section":"AscendancyBackground","width":1500,"x":3230.2751094136,"y":-15197.249541646},"id":"Chronomancer","internalId":"Sorceress2","name":"Chronomancer"},{"background":{"height":1500,"image":"ClassesDisciple of Varashta","section":"AscendancyBackground","width":1500,"x":6319.3716959661,"y":-14193.541217109},"id":"Disciple of Varashta","internalId":"Sorceress3","name":"Disciple of Varashta"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesSorceress","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":7,"base_int":15,"base_str":7,"integerId":7,"name":"Sorceress"},{"ascendancies":[{"background":{"height":1500,"image":"ClassesMartial Artist","section":"AscendancyBackground","width":1500,"x":11574.564583473,"y":-10364.38737295},"id":"Martial Artist","internalId":"Monk1","name":"Martial Artist"},{"background":{"height":1500,"image":"ClassesInvoker","section":"AscendancyBackground","width":1500,"x":13476.509879863,"y":-7731.4133488973},"id":"Invoker","internalId":"Monk2","name":"Invoker"},{"background":{"height":1500,"image":"ClassesAcolyte of Chayula","section":"AscendancyBackground","width":1500,"x":14789.467027034,"y":-4760.5394620606},"id":"Acolyte of Chayula","internalId":"Monk3","name":"Acolyte of Chayula"}],"background":{"active":{"height":2000,"width":2000},"bg":{"height":2000,"width":2000},"height":1500,"image":"ClassesMonk","section":"AscendancyBackground","width":1500,"x":0,"y":0},"base_dex":11,"base_int":11,"base_str":7,"integerId":10,"name":"Monk"}],"connectionArt":{"ascendancy":"CharacterAscendancy","default":"Character"},"constants":{"PSSCentreInnerRadius":130,"characterAttributes":{"Dexterity":1,"Intelligence":2,"Strength":0},"classes":{"DexClass":2,"DexIntClass":6,"IntClass":3,"StrClass":1,"StrDexClass":4,"StrDexIntClass":0,"StrIntClass":5},"orbitAnglesByOrbit":[[0,6.2831853071796],[0,0.5235987755983,1.0471975511966,1.5707963267949,2.0943951023932,2.6179938779915,3.1415926535898,3.6651914291881,4.1887902047864,4.7123889803847,5.235987755983,5.7595865315813,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.26179938779915,0.5235987755983,0.78539816339745,1.0471975511966,1.3089969389957,1.5707963267949,1.832595714594,2.0943951023932,2.3561944901923,2.6179938779915,2.8797932657906,3.1415926535898,3.4033920413889,3.6651914291881,3.9269908169872,4.1887902047864,4.4505895925855,4.7123889803847,4.9741883681838,5.235987755983,5.4977871437821,5.7595865315813,6.0213859193804,6.2831853071796],[0,0.087266462599716,0.17453292519943,0.26179938779915,0.34906585039887,0.43633231299858,0.5235987755983,0.61086523819802,0.69813170079773,0.78539816339745,0.87266462599716,0.95993108859688,1.0471975511966,1.1344640137963,1.221730476396,1.3089969389957,1.3962634015955,1.4835298641952,1.5707963267949,1.6580627893946,1.7453292519943,1.832595714594,1.9198621771938,2.0071286397935,2.0943951023932,2.1816615649929,2.2689280275926,2.3561944901923,2.4434609527921,2.5307274153918,2.6179938779915,2.7052603405912,2.7925268031909,2.8797932657906,2.9670597283904,3.0543261909901,3.1415926535898,3.2288591161895,3.3161255787892,3.4033920413889,3.4906585039887,3.5779249665884,3.6651914291881,3.7524578917878,3.8397243543875,3.9269908169872,4.014257279587,4.1015237421867,4.1887902047864,4.2760566673861,4.3633231299858,4.4505895925855,4.5378560551853,4.625122517785,4.7123889803847,4.7996554429844,4.8869219055841,4.9741883681838,5.0614548307836,5.1487212933833,5.235987755983,5.3232542185827,5.4105206811824,5.4977871437821,5.5850536063819,5.6723200689816,5.7595865315813,5.846852994181,5.9341194567807,6.0213859193804,6.1086523819802,6.1959188445799,6.2831853071796],[0,0.043633231299858,0.087266462599716,0.13089969389957,0.17453292519943,0.21816615649929,0.26179938779915,0.30543261909901,0.34906585039887,0.39269908169872,0.43633231299858,0.47996554429844,0.5235987755983,0.56723200689816,0.61086523819802,0.65449846949787,0.69813170079773,0.74176493209759,0.78539816339745,0.82903139469731,0.87266462599716,0.91629785729702,0.95993108859688,1.0035643198967,1.0471975511966,1.0908307824965,1.1344640137963,1.1780972450962,1.221730476396,1.2653637076959,1.3089969389957,1.3526301702956,1.3962634015955,1.4398966328953,1.4835298641952,1.527163095495,1.5707963267949,1.6144295580948,1.6580627893946,1.7016960206945,1.7453292519943,1.7889624832942,1.832595714594,1.8762289458939,1.9198621771938,1.9634954084936,2.0071286397935,2.0507618710933,2.0943951023932,2.1380283336931,2.1816615649929,2.2252947962928,2.2689280275926,2.3125612588925,2.3561944901923,2.3998277214922,2.4434609527921,2.4870941840919,2.5307274153918,2.5743606466916,2.6179938779915,2.6616271092914,2.7052603405912,2.7488935718911,2.7925268031909,2.8361600344908,2.8797932657906,2.9234264970905,2.9670597283904,3.0106929596902,3.0543261909901,3.0979594222899,3.1415926535898,3.1852258848897,3.2288591161895,3.2724923474894,3.3161255787892,3.3597588100891,3.4033920413889,3.4470252726888,3.4906585039887,3.5342917352885,3.5779249665884,3.6215581978882,3.6651914291881,3.708824660488,3.7524578917878,3.7960911230877,3.8397243543875,3.8833575856874,3.9269908169872,3.9706240482871,4.014257279587,4.0578905108868,4.1015237421867,4.1451569734865,4.1887902047864,4.2324234360862,4.2760566673861,4.319689898686,4.3633231299858,4.4069563612857,4.4505895925855,4.4942228238854,4.5378560551853,4.5814892864851,4.625122517785,4.6687557490848,4.7123889803847,4.7560222116845,4.7996554429844,4.8432886742843,4.8869219055841,4.930555136884,4.9741883681838,5.0178215994837,5.0614548307836,5.1050880620834,5.1487212933833,5.1923545246831,5.235987755983,5.2796209872828,5.3232542185827,5.3668874498826,5.4105206811824,5.4541539124823,5.4977871437821,5.541420375082,5.5850536063819,5.6286868376817,5.6723200689816,5.7159533002814,5.7595865315813,5.8032197628811,5.846852994181,5.8904862254809,5.9341194567807,5.9777526880806,6.0213859193804,6.0650191506803,6.1086523819802,6.15228561328,6.1959188445799,6.2395520758797,6.2831853071796]],"orbitRadii":[0,82,162,335,493,662,846,251,1080,1322],"skillsPerOrbit":[1,12,24,24,72,72,72,24,72,144]},"ddsCoords":{"ascendancy-background_1500_1500_BC7.dds.zst":{"ClassesAbyssal Lich":13,"ClassesAcolyte of Chayula":1,"ClassesAmazon":2,"ClassesBlood Mage":3,"ClassesChronomancer":4,"ClassesDeadeye":5,"ClassesDisciple of Varashta":6,"ClassesDruid":7,"ClassesDuelist":8,"ClassesGemling Legionnaire":9,"ClassesHuntress":10,"ClassesInfernalist":11,"ClassesInvoker":12,"ClassesLich":14,"ClassesMarauder":15,"ClassesMartial Artist":16,"ClassesMercenary":17,"ClassesMonk":18,"ClassesOracle":19,"ClassesPathfinder":20,"ClassesRanger":22,"ClassesRitualist":21,"ClassesShadow":23,"ClassesShaman":24,"ClassesSmith of Kitava":25,"ClassesSorceress":26,"ClassesSpirit Walker":33,"ClassesStormweaver":27,"ClassesTactician":28,"ClassesTemplar":29,"ClassesTitan":30,"ClassesWarbringer":31,"ClassesWarrior":32,"ClassesWitch":34,"ClassesWitchhunter":35},"ascendancy-background_4008_4008_BC7.dds.zst":{"BGTree":1,"BGTreeActive":2},"background_1048_1048_BC7.dds.zst":{"Background2":1},"group-background_100_100_BC7.dds.zst":{"AscendancyMiddle":1},"group-background_112_112_BC7.dds.zst":{"PSSkillFrame":6,"PSSkillFrameActive":4,"PSSkillFrameHighlighted":5,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds":3},"group-background_160_164_BC7.dds.zst":{"JewelFrameAllocated":16,"JewelFrameCanAllocate":17,"JewelFrameUnallocated":18,"NotableFrameAllocated":13,"NotableFrameCanAllocate":14,"NotableFrameUnallocated":15,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketactive.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketcanallocate.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketnormal.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds":7,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds":12},"group-background_164_164_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds":1},"group-background_168_168_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds":3},"group-background_168_172_BC7.dds.zst":{"Abyssal LichFrameSmallAllocated":1,"Abyssal LichFrameSmallCanAllocate":2,"Abyssal LichFrameSmallNormal":3,"Acolyte of ChayulaFrameSmallAllocated":4,"Acolyte of ChayulaFrameSmallCanAllocate":5,"Acolyte of ChayulaFrameSmallNormal":6,"AmazonFrameSmallAllocated":4,"AmazonFrameSmallCanAllocate":5,"AmazonFrameSmallNormal":6,"Blood MageFrameSmallAllocated":4,"Blood MageFrameSmallCanAllocate":5,"Blood MageFrameSmallNormal":6,"ChronomancerFrameSmallAllocated":4,"ChronomancerFrameSmallCanAllocate":5,"ChronomancerFrameSmallNormal":6,"DeadeyeFrameSmallAllocated":4,"DeadeyeFrameSmallCanAllocate":5,"DeadeyeFrameSmallNormal":6,"Disciple of VarashtaFrameSmallAllocated":4,"Disciple of VarashtaFrameSmallCanAllocate":5,"Disciple of VarashtaFrameSmallNormal":6,"Gemling LegionnaireFrameSmallAllocated":4,"Gemling LegionnaireFrameSmallCanAllocate":5,"Gemling LegionnaireFrameSmallNormal":6,"InfernalistFrameSmallAllocated":4,"InfernalistFrameSmallCanAllocate":5,"InfernalistFrameSmallNormal":6,"InvokerFrameSmallAllocated":4,"InvokerFrameSmallCanAllocate":5,"InvokerFrameSmallNormal":6,"LichFrameSmallAllocated":4,"LichFrameSmallCanAllocate":5,"LichFrameSmallNormal":6,"Martial ArtistFrameSmallAllocated":4,"Martial ArtistFrameSmallCanAllocate":5,"Martial ArtistFrameSmallNormal":6,"OracleFrameSmallAllocated":4,"OracleFrameSmallCanAllocate":5,"OracleFrameSmallNormal":6,"PathfinderFrameSmallAllocated":4,"PathfinderFrameSmallCanAllocate":5,"PathfinderFrameSmallNormal":6,"RitualistFrameSmallAllocated":4,"RitualistFrameSmallCanAllocate":5,"RitualistFrameSmallNormal":6,"ShamanFrameSmallAllocated":4,"ShamanFrameSmallCanAllocate":5,"ShamanFrameSmallNormal":6,"Smith of KitavaFrameSmallAllocated":4,"Smith of KitavaFrameSmallCanAllocate":5,"Smith of KitavaFrameSmallNormal":6,"Spirit WalkerFrameSmallAllocated":4,"Spirit WalkerFrameSmallCanAllocate":5,"Spirit WalkerFrameSmallNormal":6,"StormweaverFrameSmallAllocated":4,"StormweaverFrameSmallCanAllocate":5,"StormweaverFrameSmallNormal":6,"TacticianFrameSmallAllocated":4,"TacticianFrameSmallCanAllocate":5,"TacticianFrameSmallNormal":6,"TitanFrameSmallAllocated":4,"TitanFrameSmallCanAllocate":5,"TitanFrameSmallNormal":6,"WarbringerFrameSmallAllocated":4,"WarbringerFrameSmallCanAllocate":5,"WarbringerFrameSmallNormal":6,"WitchhunterFrameSmallAllocated":4,"WitchhunterFrameSmallCanAllocate":5,"WitchhunterFrameSmallNormal":6},"group-background_216_216_BC7.dds.zst":{"Abyssal LichFrameLargeAllocated":1,"Abyssal LichFrameLargeCanAllocate":2,"Abyssal LichFrameLargeNormal":3,"Acolyte of ChayulaFrameLargeAllocated":4,"Acolyte of ChayulaFrameLargeCanAllocate":5,"Acolyte of ChayulaFrameLargeNormal":6,"AmazonFrameLargeAllocated":4,"AmazonFrameLargeCanAllocate":5,"AmazonFrameLargeNormal":6,"Blood MageFrameLargeAllocated":4,"Blood MageFrameLargeCanAllocate":5,"Blood MageFrameLargeNormal":6,"ChronomancerFrameLargeAllocated":4,"ChronomancerFrameLargeCanAllocate":5,"ChronomancerFrameLargeNormal":6,"DeadeyeFrameLargeAllocated":4,"DeadeyeFrameLargeCanAllocate":5,"DeadeyeFrameLargeNormal":6,"Disciple of VarashtaFrameLargeAllocated":4,"Disciple of VarashtaFrameLargeCanAllocate":5,"Disciple of VarashtaFrameLargeNormal":6,"Gemling LegionnaireFrameLargeAllocated":4,"Gemling LegionnaireFrameLargeCanAllocate":5,"Gemling LegionnaireFrameLargeNormal":6,"InfernalistFrameLargeAllocated":4,"InfernalistFrameLargeCanAllocate":5,"InfernalistFrameLargeNormal":6,"InvokerFrameLargeAllocated":4,"InvokerFrameLargeCanAllocate":5,"InvokerFrameLargeNormal":6,"LichFrameLargeAllocated":4,"LichFrameLargeCanAllocate":5,"LichFrameLargeNormal":6,"Martial ArtistFrameLargeAllocated":4,"Martial ArtistFrameLargeCanAllocate":5,"Martial ArtistFrameLargeNormal":6,"OracleFrameLargeAllocated":4,"OracleFrameLargeCanAllocate":5,"OracleFrameLargeNormal":6,"PathfinderFrameLargeAllocated":4,"PathfinderFrameLargeCanAllocate":5,"PathfinderFrameLargeNormal":6,"RitualistFrameLargeAllocated":4,"RitualistFrameLargeCanAllocate":5,"RitualistFrameLargeNormal":6,"ShamanFrameLargeAllocated":4,"ShamanFrameLargeCanAllocate":5,"ShamanFrameLargeNormal":6,"Smith of KitavaFrameLargeAllocated":4,"Smith of KitavaFrameLargeCanAllocate":5,"Smith of KitavaFrameLargeNormal":6,"Spirit WalkerFrameLargeAllocated":4,"Spirit WalkerFrameLargeCanAllocate":5,"Spirit WalkerFrameLargeNormal":6,"StormweaverFrameLargeAllocated":4,"StormweaverFrameLargeCanAllocate":5,"StormweaverFrameLargeNormal":6,"TacticianFrameLargeAllocated":4,"TacticianFrameLargeCanAllocate":5,"TacticianFrameLargeNormal":6,"TitanFrameLargeAllocated":4,"TitanFrameLargeCanAllocate":5,"TitanFrameLargeNormal":6,"WarbringerFrameLargeAllocated":4,"WarbringerFrameLargeCanAllocate":5,"WarbringerFrameLargeNormal":6,"WitchhunterFrameLargeAllocated":4,"WitchhunterFrameLargeCanAllocate":5,"WitchhunterFrameLargeNormal":6},"group-background_228_232_BC7.dds.zst":{"KeystoneFrameAllocated":1,"KeystoneFrameCanAllocate":2,"KeystoneFrameUnallocated":3},"group-background_368_368_BC7.dds.zst":{"PSGroupBackground1":1,"PSGroupBackgroundSmallBlank":1},"group-background_476_476_BC7.dds.zst":{"PSGroupBackground2":1,"PSGroupBackgroundMediumBlank":1},"group-background_536_536_BC7.dds.zst":{"PSStartNodeBackgroundInactive":1},"group-background_748_392_BC7.dds.zst":{"PSGroupBackground3":1,"PSGroupBackgroundLargeBlank":1},"jewel-sockets_160_164_BC7.dds.zst":{"Against the Darkness":15,"Controlled Metamorphosis":4,"Diamond":6,"Emerald":8,"Flesh Crucible":18,"From Nothing":10,"Heart of the Well":3,"Heroic Tragedy":9,"Megalomaniac":5,"Prism of Belief":12,"Ruby":11,"Sapphire":1,"The Adorned":17,"Time-Lost Diamond":7,"Time-Lost Emerald":13,"Time-Lost Ruby":14,"Time-Lost Sapphire":16,"Timeless Jewel":15,"Undying Hate":2,"Voices":5},"legion_1032_1032_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysspassiveskillscreenjewelcircle1.dds":1},"legion_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AbyssDexNotable.dds":1,"Art/2DArt/SkillIcons/passives/AbyssIntNotable.dds":2,"Art/2DArt/SkillIcons/passives/AbyssStrNotable.dds":3,"Art/2DArt/SkillIcons/passives/AmanamusDefiance.dds":4,"Art/2DArt/SkillIcons/passives/CorruptedDefences.dds":5,"Art/2DArt/SkillIcons/passives/DevotionNotable.dds":6,"Art/2DArt/SkillIcons/passives/DivineFlesh.dds":7,"Art/2DArt/SkillIcons/passives/EternalEmpireDefensiveNotable.dds":8,"Art/2DArt/SkillIcons/passives/EternalEmpireOffensiveNotable.dds":9,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":10,"Art/2DArt/SkillIcons/passives/FocusedRage.dds":11,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":12,"Art/2DArt/SkillIcons/passives/InnerConviction.dds":13,"Art/2DArt/SkillIcons/passives/KalguuranDexKeystone.dds":14,"Art/2DArt/SkillIcons/passives/KalguuranDexNotable.dds":15,"Art/2DArt/SkillIcons/passives/KalguuranIntKeystone.dds":16,"Art/2DArt/SkillIcons/passives/KalguuranIntNotable.dds":17,"Art/2DArt/SkillIcons/passives/KalguuranStrKeystone.dds":18,"Art/2DArt/SkillIcons/passives/KalguuranStrNotable.dds":19,"Art/2DArt/SkillIcons/passives/KulemaksSovereignty.dds":20,"Art/2DArt/SkillIcons/passives/KurgasAmbition.dds":21,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":22,"Art/2DArt/SkillIcons/passives/OasisKeystone.dds":23,"Art/2DArt/SkillIcons/passives/PowerOfPurpose.dds":24,"Art/2DArt/SkillIcons/passives/SharpandBrittle.dds":25,"Art/2DArt/SkillIcons/passives/SoulTetherKeystone.dds":26,"Art/2DArt/SkillIcons/passives/StrengthOfBlood.dds":27,"Art/2DArt/SkillIcons/passives/SupremeDecadence.dds":28,"Art/2DArt/SkillIcons/passives/SupremeEgo.dds":29,"Art/2DArt/SkillIcons/passives/SupremeGrandstand.dds":30,"Art/2DArt/SkillIcons/passives/SupremeProdigy.dds":31,"Art/2DArt/SkillIcons/passives/TecrodsBrutality.dds":32,"Art/2DArt/SkillIcons/passives/TemperedByWar.dds":33,"Art/2DArt/SkillIcons/passives/TheBlindMonk.dds":34,"Art/2DArt/SkillIcons/passives/TranscendenceKeystone.dds":35,"Art/2DArt/SkillIcons/passives/UlamansVision.dds":36,"Art/2DArt/SkillIcons/passives/VaalNotableDefensive.dds":37,"Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds":38,"Art/2DArt/SkillIcons/passives/WindDancer.dds":39},"legion_572_572_BC7.dds.zst":{"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds":1,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds":2,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds":3,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle2.dds":4,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle1.dds":5,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkaruijewelcircle2.dds":6,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle1.dds":7,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenmarakethjewelcircle2.dds":8,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle1.dds":9,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreentemplarjewelcircle2.dds":10,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle1.dds":11,"art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenvaaljewelcircle2.dds":12},"legion_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AbyssJewelNode.dds":1,"Art/2DArt/SkillIcons/passives/DevotionNode.dds":2,"Art/2DArt/SkillIcons/passives/EternalEmpireBlank.dds":3,"Art/2DArt/SkillIcons/passives/VaalDefensive.dds":4,"Art/2DArt/SkillIcons/passives/VaalOffensive.dds":5},"mastery-active-effect_784_776_BC7.dds.zst":{"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern":1,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern":2,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern":3,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern":4,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern":5,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern":6,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern":7,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern":8,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern":9,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern":10,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern":11,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern":12,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern":13,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern":14,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern":15,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern":16,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern":17,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern":18,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern":19,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern":20,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern":21,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern":22,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern":23,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern":24,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern":25,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern":26,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern":27,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern":28,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern":29,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern":30,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern":31,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern":32,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern":33,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern":34,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern":35,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern":36,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern":37,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern":38,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern":39,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern":40,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern":41,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern":42,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern":43,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern":44,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern":45,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern":46,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern":47,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern":48,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern":49,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern":50,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern":51,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern":52,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern":53,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern":54,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern":55,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern":56,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern":57,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern":58,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern":59,"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern":60},"oils_108_108_RGBA.dds.zst":{"Contempt":11,"Despair":7,"Disgust":8,"Envy":9,"Fear":1,"Ferocity":12,"Greed":4,"Guilt":5,"Ire":6,"Isolation":2,"Melancholy":13,"Paranoia":10,"Suffering":3},"skills-disabled_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":1,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":2,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":3,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds":5,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":6,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":8,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds":9,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":10,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":11,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.dds":12,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds":13,"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds":14,"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds":15,"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds":16,"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds":17,"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds":18,"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds":19,"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds":20,"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds":21,"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds":22,"Art/2DArt/SkillIcons/passives/Annihilation.dds":23,"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds":24,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds":25,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds":26,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds":27,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":28,"Art/2DArt/SkillIcons/passives/AuraNotable.dds":29,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds":30,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds":31,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds":32,"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds":33,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds":34,"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds":35,"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds":36,"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds":37,"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds":38,"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds":39,"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds":40,"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds":41,"Art/2DArt/SkillIcons/passives/BattleRouse.dds":42,"Art/2DArt/SkillIcons/passives/Blood2.dds":43,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":44,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":45,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":46,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":47,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":48,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":49,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":50,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds":51,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":52,"Art/2DArt/SkillIcons/passives/BowDamage.dds":53,"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds":54,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":55,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":56,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":57,"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds":58,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":59,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":60,"Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.dds":61,"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds":62,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":63,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":64,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":65,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":75,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":92,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":93,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":94,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":95,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":96,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":100,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":103,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":104,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":105,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":106,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":107,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":109,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":120,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":121,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":122,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":123,"Art/2DArt/SkillIcons/passives/Harrier.dds":124,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":125,"Art/2DArt/SkillIcons/passives/Hearty.dds":126,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":127,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":128,"Art/2DArt/SkillIcons/passives/Hunter.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":133,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":143,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":144,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":153,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":160,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":161,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":164,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":165,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":168,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":176,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":177,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":185,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":186,"Art/2DArt/SkillIcons/passives/Meleerange.dds":187,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":188,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":189,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":195,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":196,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":197,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":198,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":199,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":207,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":222,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":223,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":224,"Art/2DArt/SkillIcons/passives/Poison.dds":225,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":232,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":233,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpseHand.dds":234,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":235,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":236,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":237,"Art/2DArt/SkillIcons/passives/RageNotable.dds":238,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":239,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":246,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":247,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":264,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":265,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":266,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":267,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":268,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":269,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":270,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":279,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":280,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":281,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":290,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":291,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":298,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":299,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":300,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":307,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":308,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":309,"Art/2DArt/SkillIcons/passives/Trap.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":316,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":317,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":318,"Art/2DArt/SkillIcons/passives/Warrior.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":326,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":327,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":334,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":335,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":336,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":337,"Art/2DArt/SkillIcons/passives/bodysoul.dds":338,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":339,"Art/2DArt/SkillIcons/passives/eagleeye.dds":340,"Art/2DArt/SkillIcons/passives/executioner.dds":341,"Art/2DArt/SkillIcons/passives/finesse.dds":342,"Art/2DArt/SkillIcons/passives/flameborn.dds":343,"Art/2DArt/SkillIcons/passives/frostborn.dds":344,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":345,"Art/2DArt/SkillIcons/passives/legstrength.dds":346,"Art/2DArt/SkillIcons/passives/lifeleech.dds":347,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":348,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":349,"Art/2DArt/SkillIcons/passives/steelspan.dds":350,"Art/2DArt/SkillIcons/passives/stormborn.dds":351,"Art/2DArt/SkillIcons/passives/strongarm.dds":352,"Art/2DArt/SkillIcons/passives/totemmax.dds":353,"Art/2DArt/SkillIcons/passives/vaalpact.dds":354},"skills-disabled_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"skills-disabled_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"skills-disabled_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":1,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":2,"Art/2DArt/SkillIcons/icongroundslam.dds":3,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":5,"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds":6,"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds":7,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds":8,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":9,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":10,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":11,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":12,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":13,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":14,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds":15,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds":16,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds":17,"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds":18,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds":19,"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds":20,"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds":21,"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds":22,"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds":23,"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds":24,"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds":25,"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds":26,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":27,"Art/2DArt/SkillIcons/passives/BucklerNode1.dds":28,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":29,"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds":30,"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds":31,"Art/2DArt/SkillIcons/passives/ChaosDamage.dds":32,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":33,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":34,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":35,"Art/2DArt/SkillIcons/passives/ColdFireNode.dds":36,"Art/2DArt/SkillIcons/passives/ColdLightningNode.dds":37,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":38,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":39,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":40,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":41,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":42,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":43,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":47,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":48,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":49,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":51,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":53,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":54,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":55,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":56,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":57,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":58,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":60,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":61,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":62,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":63,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":64,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":66,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":67,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":68,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":69,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":70,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":71,"Art/2DArt/SkillIcons/passives/MarkNode.dds":72,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":73,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":74,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":75,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":76,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":78,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":79,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":80,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":81,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":84,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":85,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":86,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":87,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":88,"Art/2DArt/SkillIcons/passives/Rage.dds":89,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":90,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":91,"Art/2DArt/SkillIcons/passives/Remnant.dds":92,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":93,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":94,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":95,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":96,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":97,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":98,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":99,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":100,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":102,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":103,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":104,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":105,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":106,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":107,"Art/2DArt/SkillIcons/passives/accuracydex.dds":108,"Art/2DArt/SkillIcons/passives/accuracystr.dds":109,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":110,"Art/2DArt/SkillIcons/passives/attackspeed.dds":111,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":112,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":113,"Art/2DArt/SkillIcons/passives/auraeffect.dds":114,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":115,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":116,"Art/2DArt/SkillIcons/passives/blankDex.dds":117,"Art/2DArt/SkillIcons/passives/blankInt.dds":118,"Art/2DArt/SkillIcons/passives/blankStr.dds":119,"Art/2DArt/SkillIcons/passives/blockstr.dds":120,"Art/2DArt/SkillIcons/passives/castspeed.dds":121,"Art/2DArt/SkillIcons/passives/chargedex.dds":122,"Art/2DArt/SkillIcons/passives/chargeint.dds":123,"Art/2DArt/SkillIcons/passives/chargestr.dds":124,"Art/2DArt/SkillIcons/passives/colddamage.dds":125,"Art/2DArt/SkillIcons/passives/coldresist.dds":126,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":128,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":129,"Art/2DArt/SkillIcons/passives/damage.dds":130,"Art/2DArt/SkillIcons/passives/damage_blue.dds":131,"Art/2DArt/SkillIcons/passives/damageaxe.dds":132,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":133,"Art/2DArt/SkillIcons/passives/damagespells.dds":134,"Art/2DArt/SkillIcons/passives/damagestaff.dds":135,"Art/2DArt/SkillIcons/passives/damagesword.dds":136,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":137,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":138,"Art/2DArt/SkillIcons/passives/energyshield.dds":139,"Art/2DArt/SkillIcons/passives/evade.dds":140,"Art/2DArt/SkillIcons/passives/firedamage.dds":141,"Art/2DArt/SkillIcons/passives/firedamageint.dds":142,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":143,"Art/2DArt/SkillIcons/passives/fireresist.dds":144,"Art/2DArt/SkillIcons/passives/flaskdex.dds":145,"Art/2DArt/SkillIcons/passives/flaskint.dds":146,"Art/2DArt/SkillIcons/passives/flaskstr.dds":147,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":148,"Art/2DArt/SkillIcons/passives/knockback.dds":149,"Art/2DArt/SkillIcons/passives/life1.dds":150,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":151,"Art/2DArt/SkillIcons/passives/lightningint.dds":152,"Art/2DArt/SkillIcons/passives/lightningstr.dds":153,"Art/2DArt/SkillIcons/passives/macedmg.dds":154,"Art/2DArt/SkillIcons/passives/mana.dds":155,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":156,"Art/2DArt/SkillIcons/passives/manastr.dds":157,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":158,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":159,"Art/2DArt/SkillIcons/passives/minionlife.dds":160,"Art/2DArt/SkillIcons/passives/minionstr.dds":161,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":162,"Art/2DArt/SkillIcons/passives/plusattribute.dds":163,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":164,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":165,"Art/2DArt/SkillIcons/passives/plusstrength.dds":166,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":167,"Art/2DArt/SkillIcons/passives/shieldblock.dds":168,"Art/2DArt/SkillIcons/passives/spellcritical.dds":169,"Art/2DArt/SkillIcons/passives/stun2h.dds":170,"Art/2DArt/SkillIcons/passives/stunstr.dds":171,"Art/2DArt/SkillIcons/passives/tempint.dds":172,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":173,"Art/2DArt/SkillIcons/passives/trapdamage.dds":174,"Art/2DArt/SkillIcons/passives/trapsmax.dds":175},"skills_128_128_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds":1,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds":2,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds":3,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds":5,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds":6,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds":7,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds":8,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds":9,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds":10,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds":11,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.dds":12,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds":13,"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds":14,"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds":15,"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds":16,"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds":17,"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds":18,"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds":19,"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds":20,"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds":21,"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds":22,"Art/2DArt/SkillIcons/passives/Annihilation.dds":23,"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds":24,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds":25,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds":26,"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds":27,"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds":28,"Art/2DArt/SkillIcons/passives/AuraNotable.dds":29,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds":30,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds":31,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds":32,"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds":33,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds":34,"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds":35,"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds":36,"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds":37,"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds":38,"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds":39,"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds":40,"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds":41,"Art/2DArt/SkillIcons/passives/BattleRouse.dds":42,"Art/2DArt/SkillIcons/passives/Blood2.dds":43,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds":44,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds":45,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds":46,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds":47,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds":48,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds":49,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds":50,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds":51,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds":52,"Art/2DArt/SkillIcons/passives/BowDamage.dds":53,"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds":54,"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds":55,"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds":56,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds":57,"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds":58,"Art/2DArt/SkillIcons/passives/CharmNotable1.dds":59,"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds":60,"Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.dds":61,"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds":62,"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds":63,"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds":64,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds":65,"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds":66,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds":67,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds":68,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds":69,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds":70,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds":71,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds":72,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds":73,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds":74,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds":75,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds":76,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds":77,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds":78,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds":79,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds":80,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds":81,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds":82,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds":83,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds":84,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds":85,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds":86,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds":87,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds":88,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds":89,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds":90,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds":91,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds":92,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds":93,"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds":94,"Art/2DArt/SkillIcons/passives/DruidAnimism.dds":95,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds":96,"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds":97,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds":98,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds":99,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds":100,"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds":101,"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds":102,"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds":103,"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds":104,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds":105,"Art/2DArt/SkillIcons/passives/EternalYouth.dds":106,"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds":107,"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds":108,"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds":109,"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds":110,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds":111,"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds":112,"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds":113,"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds":114,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds":115,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds":116,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds":117,"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds":118,"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds":119,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds":120,"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds":121,"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds":122,"Art/2DArt/SkillIcons/passives/GlancingBlows.dds":123,"Art/2DArt/SkillIcons/passives/Harrier.dds":124,"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds":125,"Art/2DArt/SkillIcons/passives/Hearty.dds":126,"Art/2DArt/SkillIcons/passives/HiredKiller2.dds":127,"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds":128,"Art/2DArt/SkillIcons/passives/Hunter.dds":129,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds":130,"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds":131,"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds":132,"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds":133,"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds":134,"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds":135,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds":136,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds":137,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds":138,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds":139,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds":140,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds":141,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds":142,"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds":143,"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds":144,"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds":145,"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds":146,"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds":147,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds":148,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds":149,"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds":150,"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds":151,"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds":152,"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds":153,"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds":154,"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds":155,"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds":156,"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds":157,"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds":158,"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds":159,"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds":160,"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds":161,"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds":162,"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds":163,"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds":164,"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds":165,"Art/2DArt/SkillIcons/passives/LethalAssault.dds":166,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds":167,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds":168,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds":169,"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds":170,"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds":171,"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds":172,"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds":173,"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds":174,"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds":175,"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds":176,"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds":177,"Art/2DArt/SkillIcons/passives/LifeandMana.dds":178,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds":179,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds":180,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds":181,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds":182,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds":183,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds":184,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds":185,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds":186,"Art/2DArt/SkillIcons/passives/Meleerange.dds":187,"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds":188,"Art/2DArt/SkillIcons/passives/MiracleMaker.dds":189,"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds":190,"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds":191,"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds":192,"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds":193,"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds":194,"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds":195,"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds":196,"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds":197,"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds":198,"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds":199,"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds":200,"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds":201,"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds":202,"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds":203,"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds":204,"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds":205,"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds":206,"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds":207,"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds":208,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds":209,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds":210,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds":211,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds":212,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds":213,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds":214,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds":215,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds":216,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds":217,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds":218,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds":219,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds":220,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds":221,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds":222,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds":223,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds":224,"Art/2DArt/SkillIcons/passives/Poison.dds":225,"Art/2DArt/SkillIcons/passives/PressurePoints.dds":226,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds":227,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds":228,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds":229,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds":230,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds":231,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds":232,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds":233,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpseHand.dds":234,"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds":235,"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds":236,"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds":237,"Art/2DArt/SkillIcons/passives/RageNotable.dds":238,"Art/2DArt/SkillIcons/passives/RemnantNotable.dds":239,"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds":240,"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds":241,"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds":242,"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds":243,"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds":244,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds":245,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds":246,"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds":247,"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds":248,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds":249,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds":250,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds":251,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds":252,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds":253,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds":254,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds":255,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds":256,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds":257,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds":258,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds":259,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds":260,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds":261,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds":262,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds":263,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds":264,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds":265,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds":266,"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds":267,"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds":268,"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds":269,"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds":270,"Art/2DArt/SkillIcons/passives/Storm Weaver.dds":271,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds":272,"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds":273,"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds":274,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds":275,"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds":276,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds":277,"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds":278,"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds":279,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds":280,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds":281,"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds":282,"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds":283,"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds":284,"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds":285,"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds":286,"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds":287,"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds":288,"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds":289,"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds":290,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds":291,"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds":292,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds":293,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds":294,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds":295,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds":296,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds":297,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds":298,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds":299,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds":300,"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds":301,"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds":302,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds":303,"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds":304,"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds":305,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds":306,"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds":307,"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds":308,"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds":309,"Art/2DArt/SkillIcons/passives/Trap.dds":310,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds":311,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds":312,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds":313,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds":314,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds":315,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds":316,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds":317,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds":318,"Art/2DArt/SkillIcons/passives/Warrior.dds":319,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds":320,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds":321,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds":322,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds":323,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds":324,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds":325,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds":326,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds":327,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds":328,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds":329,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds":330,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds":331,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds":332,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds":333,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds":334,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds":335,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds":336,"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds":337,"Art/2DArt/SkillIcons/passives/bodysoul.dds":338,"Art/2DArt/SkillIcons/passives/deepwisdom.dds":339,"Art/2DArt/SkillIcons/passives/eagleeye.dds":340,"Art/2DArt/SkillIcons/passives/executioner.dds":341,"Art/2DArt/SkillIcons/passives/finesse.dds":342,"Art/2DArt/SkillIcons/passives/flameborn.dds":343,"Art/2DArt/SkillIcons/passives/frostborn.dds":344,"Art/2DArt/SkillIcons/passives/heroicspirit.dds":345,"Art/2DArt/SkillIcons/passives/legstrength.dds":346,"Art/2DArt/SkillIcons/passives/lifeleech.dds":347,"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds":348,"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds":349,"Art/2DArt/SkillIcons/passives/steelspan.dds":350,"Art/2DArt/SkillIcons/passives/stormborn.dds":351,"Art/2DArt/SkillIcons/passives/strongarm.dds":352,"Art/2DArt/SkillIcons/passives/totemmax.dds":353,"Art/2DArt/SkillIcons/passives/vaalpact.dds":354},"skills_172_172_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/MasteryBlank.dds":1},"skills_176_176_BC1.dds.zst":{"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds":1},"skills_64_64_BC1.dds.zst":{"Art/2DArt/SkillIcons/ExplosiveGrenade.dds":1,"Art/2DArt/SkillIcons/WitchBoneStorm.dds":2,"Art/2DArt/SkillIcons/icongroundslam.dds":3,"Art/2DArt/SkillIcons/passives/2handeddamage.dds":4,"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds":5,"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds":6,"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds":7,"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds":8,"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds":9,"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds":10,"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds":11,"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds":12,"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds":13,"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds":14,"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds":15,"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds":16,"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds":17,"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds":18,"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds":19,"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds":20,"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds":21,"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds":22,"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds":23,"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds":24,"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds":25,"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds":26,"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds":27,"Art/2DArt/SkillIcons/passives/BucklerNode1.dds":28,"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds":29,"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds":30,"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds":31,"Art/2DArt/SkillIcons/passives/ChaosDamage.dds":32,"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds":33,"Art/2DArt/SkillIcons/passives/CharmNode1.dds":34,"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds":35,"Art/2DArt/SkillIcons/passives/ColdFireNode.dds":36,"Art/2DArt/SkillIcons/passives/ColdLightningNode.dds":37,"Art/2DArt/SkillIcons/passives/ColdResistNode.dds":38,"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds":39,"Art/2DArt/SkillIcons/passives/CorpseDamage.dds":40,"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds":41,"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds":42,"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds":43,"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds":44,"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds":45,"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds":46,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds":47,"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds":48,"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds":49,"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds":50,"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds":51,"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds":52,"Art/2DArt/SkillIcons/passives/EvasionNode.dds":53,"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds":54,"Art/2DArt/SkillIcons/passives/FireDamagenode.dds":55,"Art/2DArt/SkillIcons/passives/FireResistNode.dds":56,"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds":57,"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds":58,"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds":59,"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds":60,"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds":61,"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds":62,"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds":63,"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds":64,"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds":65,"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds":66,"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds":67,"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds":68,"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds":69,"Art/2DArt/SkillIcons/passives/LightningResistNode.dds":70,"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds":71,"Art/2DArt/SkillIcons/passives/MarkNode.dds":72,"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds":73,"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds":74,"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds":75,"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds":76,"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds":77,"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds":78,"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds":79,"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds":80,"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds":81,"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds":82,"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds":83,"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds":84,"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds":85,"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds":86,"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds":87,"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds":88,"Art/2DArt/SkillIcons/passives/Rage.dds":89,"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds":90,"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds":91,"Art/2DArt/SkillIcons/passives/Remnant.dds":92,"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds":93,"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds":94,"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds":95,"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds":96,"Art/2DArt/SkillIcons/passives/SpearsNode1.dds":97,"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds":98,"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds":99,"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds":100,"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds":101,"Art/2DArt/SkillIcons/passives/ThornsNode1.dds":102,"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds":103,"Art/2DArt/SkillIcons/passives/WarCryEffect.dds":104,"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds":105,"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds":106,"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds":107,"Art/2DArt/SkillIcons/passives/accuracydex.dds":108,"Art/2DArt/SkillIcons/passives/accuracystr.dds":109,"Art/2DArt/SkillIcons/passives/areaofeffect.dds":110,"Art/2DArt/SkillIcons/passives/attackspeed.dds":111,"Art/2DArt/SkillIcons/passives/attackspeedbow.dds":112,"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds":113,"Art/2DArt/SkillIcons/passives/auraeffect.dds":114,"Art/2DArt/SkillIcons/passives/avoidchilling.dds":115,"Art/2DArt/SkillIcons/passives/axedmgspeed.dds":116,"Art/2DArt/SkillIcons/passives/blankDex.dds":117,"Art/2DArt/SkillIcons/passives/blankInt.dds":118,"Art/2DArt/SkillIcons/passives/blankStr.dds":119,"Art/2DArt/SkillIcons/passives/blockstr.dds":120,"Art/2DArt/SkillIcons/passives/castspeed.dds":121,"Art/2DArt/SkillIcons/passives/chargedex.dds":122,"Art/2DArt/SkillIcons/passives/chargeint.dds":123,"Art/2DArt/SkillIcons/passives/chargestr.dds":124,"Art/2DArt/SkillIcons/passives/colddamage.dds":125,"Art/2DArt/SkillIcons/passives/coldresist.dds":126,"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds":127,"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds":128,"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds":129,"Art/2DArt/SkillIcons/passives/damage.dds":130,"Art/2DArt/SkillIcons/passives/damage_blue.dds":131,"Art/2DArt/SkillIcons/passives/damageaxe.dds":132,"Art/2DArt/SkillIcons/passives/damagedualwield.dds":133,"Art/2DArt/SkillIcons/passives/damagespells.dds":134,"Art/2DArt/SkillIcons/passives/damagestaff.dds":135,"Art/2DArt/SkillIcons/passives/damagesword.dds":136,"Art/2DArt/SkillIcons/passives/dmgreduction.dds":137,"Art/2DArt/SkillIcons/passives/elementaldamage.dds":138,"Art/2DArt/SkillIcons/passives/energyshield.dds":139,"Art/2DArt/SkillIcons/passives/evade.dds":140,"Art/2DArt/SkillIcons/passives/firedamage.dds":141,"Art/2DArt/SkillIcons/passives/firedamageint.dds":142,"Art/2DArt/SkillIcons/passives/firedamagestr.dds":143,"Art/2DArt/SkillIcons/passives/fireresist.dds":144,"Art/2DArt/SkillIcons/passives/flaskdex.dds":145,"Art/2DArt/SkillIcons/passives/flaskint.dds":146,"Art/2DArt/SkillIcons/passives/flaskstr.dds":147,"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds":148,"Art/2DArt/SkillIcons/passives/knockback.dds":149,"Art/2DArt/SkillIcons/passives/life1.dds":150,"Art/2DArt/SkillIcons/passives/lifepercentage.dds":151,"Art/2DArt/SkillIcons/passives/lightningint.dds":152,"Art/2DArt/SkillIcons/passives/lightningstr.dds":153,"Art/2DArt/SkillIcons/passives/macedmg.dds":154,"Art/2DArt/SkillIcons/passives/mana.dds":155,"Art/2DArt/SkillIcons/passives/manaregeneration.dds":156,"Art/2DArt/SkillIcons/passives/manastr.dds":157,"Art/2DArt/SkillIcons/passives/minionattackspeed.dds":158,"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds":159,"Art/2DArt/SkillIcons/passives/minionlife.dds":160,"Art/2DArt/SkillIcons/passives/minionstr.dds":161,"Art/2DArt/SkillIcons/passives/onehanddamage.dds":162,"Art/2DArt/SkillIcons/passives/plusattribute.dds":163,"Art/2DArt/SkillIcons/passives/plusdexterity.dds":164,"Art/2DArt/SkillIcons/passives/plusintelligence.dds":165,"Art/2DArt/SkillIcons/passives/plusstrength.dds":166,"Art/2DArt/SkillIcons/passives/projectilespeed.dds":167,"Art/2DArt/SkillIcons/passives/shieldblock.dds":168,"Art/2DArt/SkillIcons/passives/spellcritical.dds":169,"Art/2DArt/SkillIcons/passives/stun2h.dds":170,"Art/2DArt/SkillIcons/passives/stunstr.dds":171,"Art/2DArt/SkillIcons/passives/tempint.dds":172,"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds":173,"Art/2DArt/SkillIcons/passives/trapdamage.dds":174,"Art/2DArt/SkillIcons/passives/trapsmax.dds":175}},"groups":[{"nodes":[42761],"orbits":[0],"x":-15304.90389222,"y":-7077.31698124},{"nodes":[25092],"orbits":[0],"x":-14965.39389222,"y":-7075.62698124},null,{"nodes":[11335],"orbits":[0],"x":-14964.17389222,"y":-6594.24698124},{"nodes":[22541],"orbits":[0],"x":-16119.101927197,"y":4438.4370503224},{"nodes":[5386],"orbits":[0],"x":-16119.101927197,"y":4819.1370503224},{"nodes":[15275],"orbits":[0],"x":-14735.81389222,"y":-7075.62698124},{"nodes":[21284],"orbits":[0],"x":-14735.81389222,"y":-6824.05698124},{"nodes":[57959],"orbits":[0],"x":-15906.431927197,"y":4073.9070503224},{"nodes":[14960],"orbits":[0],"x":-15906.431927197,"y":4819.1370503224},{"nodes":[5571],"orbits":[0],"x":-14615.85389222,"y":-6148.10698124},{"nodes":[34313],"orbits":[0],"x":-14615.79389222,"y":-7507.15698124},{"nodes":[56505],"orbits":[0],"x":-14615.79389222,"y":-6937.15698124},{"nodes":[39659],"orbits":[0],"x":-14615.79389222,"y":-6709.09698124},{"nodes":[60298],"orbits":[0],"x":-15694.431927197,"y":4438.4370503224},{"nodes":[47236],"orbits":[0],"x":-15694.431927197,"y":4819.1370503224},{"nodes":[47184],"orbits":[0],"x":-15482.431927197,"y":4438.4370503224},{"nodes":[20895],"orbits":[0],"x":-15482.431927197,"y":4819.1370503224},{"nodes":[64962],"orbits":[0],"x":-15479.931927197,"y":5558.0570503224},{"nodes":[110],"orbits":[0],"x":-15422.891927197,"y":5717.9970503224},{"nodes":[52374],"orbits":[0],"x":-14144.72389222,"y":-7263.50698124},{"nodes":[30904],"orbits":[0],"x":-14144.72389222,"y":-6824.05698124},{"nodes":[32905,55135],"orbits":[6],"x":-14123.92389222,"y":-6819.93698124},{"nodes":[22908],"orbits":[0],"x":-15325.041927197,"y":5867.8370503224},{"nodes":[48537],"orbits":[0],"x":-15270.431927197,"y":4438.4370503224},{"nodes":[63401],"orbits":[0],"x":-15270.391927197,"y":4073.9070503224},{"nodes":[8525],"orbits":[0],"x":-15190.211927197,"y":5992.6870503224},{"nodes":[49380],"orbits":[0],"x":-14606.81101513,"y":7334.015606703},{"nodes":[58704],"orbits":[0],"x":-14606.81101513,"y":7697.015606703},{"nodes":[38769],"orbits":[0],"x":-14606.81101513,"y":8060.015606703},{"nodes":[36659],"orbits":[0],"x":-14539.78101513,"y":7083.845606703},{"nodes":[9997],"orbits":[0],"x":-15031.611927197,"y":6079.3970503224},{"nodes":[6127],"orbits":[0],"x":-14450.05101513,"y":7505.725606703},{"nodes":[18585],"orbits":[0],"x":-14450.05101513,"y":7918.875606703},{"nodes":[378],"orbits":[0],"x":-13677.60389222,"y":-7508.15698124},{"nodes":[4197],"orbits":[0],"x":-13677.60389222,"y":-6937.15698124},{"nodes":[37782],"orbits":[0],"x":-13677.60389222,"y":-6709.11698124},{"nodes":[47190],"orbits":[0],"x":-13677.60389222,"y":-6148.10698124},{"nodes":[13772],"orbits":[0],"x":-14861.501927197,"y":6123.0170503224},{"nodes":[40915],"orbits":[0],"x":-14352.33101513,"y":7083.805606703},{"nodes":[5852],"orbits":[9],"x":-14787.651927197,"y":4798.3970503224},{"nodes":[1994],"orbits":[0],"x":-14285.47101513,"y":8597.995606703},{"nodes":[48682],"orbits":[0],"x":-14285.29101513,"y":7334.015606703},{"nodes":[39411],"orbits":[0],"x":-14285.29101513,"y":7697.015606703},{"nodes":[25935],"orbits":[0],"x":-14285.29101513,"y":8423.795606703},{"nodes":[39365],"orbits":[0],"x":-14284.67101513,"y":8060.015606703},{"nodes":[9988],"orbits":[0],"x":-14769.631927197,"y":5458.3970503224},{"nodes":[25438],"orbits":[0],"x":-14678.231927197,"y":6123.0170503224},{"nodes":[49340],"orbits":[0],"x":-14511.001927197,"y":6079.3970503224},{"nodes":[35535],"orbits":[0],"x":-13664.02358899,"y":-9880.4330959001},{"nodes":[33812],"orbits":[6],"x":-13880.21101513,"y":8004.295606703},{"nodes":[60913],"orbits":[0],"x":-14353.191927197,"y":5992.6870503224},{"nodes":[47097],"orbits":[0],"x":-13831.53101513,"y":8677.045606703},{"nodes":[23005],"orbits":[0],"x":-13827.72101513,"y":8346.605606703},{"nodes":[61039],"orbits":[0],"x":-14229.211927197,"y":5867.8370503224},{"nodes":[20195],"orbits":[0],"x":-14136.951927197,"y":5717.9970503224},{"nodes":[16276],"orbits":[0],"x":-14062.601927197,"y":5558.0570503224},{"nodes":[16204],"orbits":[0],"x":-13233.22358899,"y":-9717.0130959001},{"nodes":[10072],"orbits":[0],"x":-13456.74101513,"y":8286.915606703},{"nodes":[52068],"orbits":[0],"x":-13427.83101513,"y":8705.925606703},null,{"nodes":[42253],"orbits":[0],"x":-12936.00358899,"y":-9284.5530959001},{"nodes":[33824],"orbits":[0],"x":-12936.00358899,"y":-8851.5530959001},{"nodes":[54512],"orbits":[0],"x":-12658.85358899,"y":-8617.4730959001},{"nodes":[58646,28022,61722,1855],"orbits":[6,8],"x":-12394.22358899,"y":-9283.8730959001},{"nodes":[35762],"orbits":[0],"x":-11956.16358899,"y":-9717.0130959001},{"nodes":[35920],"orbits":[0],"x":-11956.16358899,"y":-9241.2030959001},{"nodes":[56933],"orbits":[0],"x":-11956.16358899,"y":-8744.5430959001},{"nodes":[24807],"orbits":[0],"x":-12395.901045607,"y":9837.0838448507},{"nodes":[61983],"orbits":[0],"x":-11751.52358899,"y":-9863.9930959001},{"nodes":[46654],"orbits":[0],"x":-11751.52358899,"y":-9304.3030959001},{"nodes":[28745],"orbits":[0],"x":-11486.44358899,"y":-10044.1730959},{"nodes":[26063],"orbits":[0],"x":-11483.26358899,"y":-9396.9630959001},{"nodes":[62523],"orbits":[0],"x":-11481.39358899,"y":-8744.5730959001},{"nodes":[38014],"orbits":[0],"x":-11998.951045607,"y":9614.1838448507},{"nodes":[42275],"orbits":[0],"x":-11821.031045607,"y":10122.973844851},{"nodes":[3762,59540,30115,60634,35453,13715,19424,27418,51690,29323,32534],"orbits":[4,5,6,7,9],"x":-11560.091045607,"y":10394.963844851},{"nodes":[12000],"orbits":[0],"x":-11494.591045607,"y":11397.883844851},{"nodes":[59372],"orbits":[0],"x":-11454.221045607,"y":10756.733844851},{"nodes":[56842],"orbits":[0],"x":-11100.601045607,"y":11172.483844851},null,null,null,null,null,{"nodes":[58058,21218,60708,45226,11666,13950,7066,23932,8423,17894],"orbits":[0,2,3,4,5],"x":-12135.66,"y":-1230.15},{"nodes":[47753],"orbits":[0],"x":-11896.79,"y":-1926.84},{"nodes":[18353,42762,11984,20496,3544,19953,50142,58197,35980],"orbits":[0,3,4,6,7],"x":-11843.45,"y":816.54},{"nodes":[36025,57079,44309,44485,829,19966,43385,22221,7553,64139,15842],"orbits":[2,3,5,6,7],"x":-11682.6,"y":-5712.79},{"nodes":[38320],"orbits":[0],"x":-11504.95,"y":-1807.32},{"nodes":[28201,56174,1887,10713,16615,10636,38697,20391,16947,18713],"orbits":[0,3,4],"x":-11380.71,"y":-3346},{"nodes":[32845,23630,64819,31746,51868,19794,17885,11392],"orbits":[3,4,5],"x":-11338.93,"y":-2050.8},{"nodes":[65,36504,55260,19751,15698,35618],"orbits":[7,2],"x":-11110.55,"y":-639.7},{"nodes":[28589,7395,38670,30007,12565,3245,30300,3188,46051],"orbits":[0,1,2,3],"x":-11072.17,"y":1430.79},{"nodes":[55190],"orbits":[1],"x":-10939.38,"y":88.39},{"nodes":[41012],"orbits":[0],"x":-10916.6,"y":-2156.56},{"nodes":[24630],"orbits":[0],"x":-10708.76,"y":2443.13},{"nodes":[52669],"orbits":[0],"x":-10699.17,"y":174.47},{"nodes":[47469],"orbits":[0],"x":-10695.41,"y":165.04},{"nodes":[47387],"orbits":[0],"x":-10694.63,"y":-176.71},{"nodes":[63482],"orbits":[0],"x":-10692.04,"y":-175.72},{"nodes":[1200],"orbits":[4],"x":-10682.77,"y":445.3},{"nodes":[13326],"orbits":[0],"x":-10676.83,"y":493.76},{"nodes":[47080],"orbits":[0],"x":-10673.33,"y":-593.4},{"nodes":[28982],"orbits":[0],"x":-10667.72,"y":-1117.08},{"nodes":[64489,25162,6952,750],"orbits":[2],"x":-10654.45,"y":2047.3},{"nodes":[3348],"orbits":[0],"x":-10649.96,"y":-3724.53},{"nodes":[48314],"orbits":[0],"x":-10649.96,"y":-3509.98},{"nodes":[43941],"orbits":[0],"x":-10648.12,"y":-3316.27},{"nodes":[17348,11433,15522,13893,11275,42390,44753,63608],"orbits":[0,3,4,7],"x":-10615.17,"y":3051.94},{"nodes":[440],"orbits":[0],"x":-10594.08,"y":-4757.69},{"nodes":[14509,589,46399,50820,65472,9323,40395],"orbits":[0,2,3,7],"x":-10593.41,"y":-2769.62},{"nodes":[18593],"orbits":[0],"x":-10577.37,"y":-391.04},{"nodes":[65192,33423,15672,6999,59908,36197,27096,45400,63170,13691],"orbits":[0,3,7],"x":-10575.67,"y":-6386.37},{"nodes":[37113],"orbits":[0],"x":-10559.05,"y":-803.16},{"nodes":[8850],"orbits":[0],"x":-10520.26,"y":-3933.98},{"nodes":[61896],"orbits":[0],"x":-10520.26,"y":-3710.82},{"nodes":[2617],"orbits":[0],"x":-10463.58,"y":671.22},{"nodes":[61393],"orbits":[0],"x":-10448.6,"y":-3316.27},{"nodes":[55897],"orbits":[0],"x":-10443.83,"y":-4121.17},{"nodes":[50767,20289],"orbits":[0,2],"x":-10439.87,"y":-3500.92},{"nodes":[14432],"orbits":[0],"x":-10437.87,"y":-4316.54},{"nodes":[41768],"orbits":[0],"x":-10398.41,"y":-2166.4},{"nodes":[55188],"orbits":[0],"x":-10390.83,"y":399.02},{"nodes":[17349,5728,23940,14342,49256,14439,58138,46384,33402,58125,6133,10681,27581,50510],"orbits":[1,3,4,7],"x":-10374.96,"y":-5305.09},{"nodes":[55888],"orbits":[0],"x":-10371.25,"y":-4590.02},{"nodes":[53354],"orbits":[0],"x":-10368.75,"y":-3710.82},{"nodes":[33408],"orbits":[0],"x":-10368.59,"y":-3933.98},{"nodes":[30141],"orbits":[0],"x":-10364.84,"y":5.97},{"nodes":[59785],"orbits":[0],"x":-10358.72,"y":2132.05},{"nodes":[20989,42984,21184,20251],"orbits":[1,3,7],"x":-10288.58,"y":-393.3},{"nodes":[14511,54999,64900,30780,53261,18207,17112,5410,4331],"orbits":[2,3,4,7],"x":-10266.25,"y":5666.88},{"nodes":[36250],"orbits":[0],"x":-10252.92,"y":-3509.98},{"nodes":[56368],"orbits":[0],"x":-10251.16,"y":-3312.73},{"nodes":[49214],"orbits":[0],"x":-10248.76,"y":-3724.53},{"nodes":[375,12276,14693,13937,13980,17791,526,2645,52829,14832],"orbits":[0,4,7],"x":-10240.12,"y":4633.75},{"nodes":[18684],"orbits":[0],"x":-10198.25,"y":3732.13},{"nodes":[18746],"orbits":[0],"x":-10160.38,"y":-4757.69},{"nodes":[51749],"orbits":[0],"x":-10158.37,"y":296.7},{"nodes":[29611],"orbits":[0],"x":-10134.33,"y":-3151.93},{"nodes":[33590],"orbits":[0],"x":-10128.99,"y":5639.94},{"nodes":[21291,32836,675,13489,47517],"orbits":[0,2,3],"x":-10100.67,"y":1717.72},{"nodes":[11656,9106,53822,54937],"orbits":[1,7],"x":-10089.33,"y":1201.49},{"nodes":[37484],"orbits":[0],"x":-10073.8,"y":-2358.14},{"nodes":[9352,31295,32071,49111,39190,8800,15427,57379],"orbits":[0,3],"x":-10026.06,"y":-1117.08},{"nodes":[27296],"orbits":[0],"x":-10009.75,"y":3405.64},{"nodes":[31554,49929,31757],"orbits":[6,5],"x":-9932.89,"y":-7295.29},{"nodes":[51535,18397,55063,8852,4139],"orbits":[0,2,3],"x":-9927.8,"y":2362.11},{"nodes":[9328],"orbits":[0],"x":-9903.54,"y":-6537.44},{"nodes":[58496],"orbits":[0],"x":-9903.54,"y":-6355.19},{"nodes":[39598,3949,28613,15247,46683],"orbits":[3,2],"x":-9851.18,"y":2995.92},{"nodes":[1130,50847,33393,42914],"orbits":[0,4,5,7],"x":-9825.21,"y":-3241.28},{"nodes":[32474],"orbits":[0],"x":-9791.13,"y":-4500.02},{"nodes":[4442,59886,62313,62034,55931,33939,6872],"orbits":[0,3,4,5],"x":-9765.33,"y":710.66},{"nodes":[53123,43250,34818,22697,8421,35404,5862,54982],"orbits":[1,2,7],"x":-9735.55,"y":-2055.78},{"nodes":[14026],"orbits":[0],"x":-9717.96,"y":-6634.67},{"nodes":[37187],"orbits":[0],"x":-9717.96,"y":-6452.32},{"nodes":[55152,42710,65287,56996,9568,41186,58117,13839,5580],"orbits":[0,2,3,4,5],"x":-9716.02,"y":6484.44},{"nodes":[59777],"orbits":[0],"x":-9701.92,"y":4489.54},{"nodes":[62670,41497,30554,21164,18245,10055],"orbits":[0,7],"x":-9699.83,"y":-2798.91},{"nodes":[917,44069,65160,21670,29358],"orbits":[1,2,3],"x":-9636.83,"y":3334.63},{"nodes":[30553],"orbits":[0],"x":-9621.33,"y":3036.16},{"nodes":[30457,13293,54416,19236,60274],"orbits":[0,7],"x":-9598.42,"y":-542.54},{"nodes":[18448],"orbits":[0],"x":-9598.42,"y":4},{"nodes":[19563,34782,34490,18972],"orbits":[0,2,3,7],"x":-9524.42,"y":-6101.02},{"nodes":[47931],"orbits":[0],"x":-9524.42,"y":-5501.21},{"nodes":[36100],"orbits":[0],"x":-9522.16,"y":-6739.15},{"nodes":[63085],"orbits":[0],"x":-9522.16,"y":-6562.27},{"nodes":[31290,37609,60332,32764,21213],"orbits":[0,7],"x":-9479.92,"y":-3960.99},{"nodes":[61942],"orbits":[0],"x":-9449.45,"y":-4442.32},{"nodes":[53719],"orbits":[0],"x":-9427.5,"y":5442.15},{"nodes":[10362,10830,9163,59589,44952,6153,52659],"orbits":[0,3,7],"x":-9363.33,"y":4400.29},{"nodes":[63678],"orbits":[0],"x":-9318.59,"y":-6631.85},{"nodes":[43460],"orbits":[0],"x":-9318.59,"y":-6434.75},{"nodes":[61847],"orbits":[0],"x":-9265.01,"y":-2982.99},{"nodes":[17587,59039,28223,6100,20963],"orbits":[1,2,4,5,7],"x":-9247.14,"y":-875.71},{"nodes":[29098,32549,10727,56237,43588,61835,1825],"orbits":[0,2,3],"x":-9224.21,"y":-4865.33},{"nodes":[41935],"orbits":[0],"x":-9155.13,"y":-6541.86},{"nodes":[6735],"orbits":[0],"x":-9155.13,"y":-6351.08},{"nodes":[33203,55033,17059,6874,34940],"orbits":[2,3,4],"x":-9153.31,"y":-1318.15},{"nodes":[37846],"orbits":[0],"x":-9079.06,"y":2754.99},{"nodes":[65154,2575,56757,11292],"orbits":[0,2],"x":-9064.75,"y":362.33},{"nodes":[49370,32148,8535,43443],"orbits":[0,2],"x":-9058.33,"y":-2717.44},{"nodes":[6502],"orbits":[0],"x":-9056.17,"y":-2715.81},{"nodes":[41747],"orbits":[0],"x":-9050.55,"y":-3180.38},{"nodes":[53440,52300,11178,62439,57880,11306,6269,45990,39448,24224],"orbits":[0,2,3],"x":-9040.02,"y":6723.44},{"nodes":[33452,57471,53823,23192,21684,1214,42578,52796,10508,30371,27687],"orbits":[2,3,4,5,7],"x":-8945,"y":1954.01},{"nodes":[11525,64724,53329,53030,30334,9324,43939,56214,48267],"orbits":[0,2,3],"x":-8860.46,"y":-5419.21},{"nodes":[10824,25648,43077,58894,15825,45736,26592,30393],"orbits":[0,2,3,4,7],"x":-8850.17,"y":-2069.46},{"nodes":[65042,60068,55925,37869,28892,13845,28408,21413,37290],"orbits":[0,1,3,7],"x":-8776.24,"y":-545.92},{"nodes":[61811,44452,21809,19162,34143,36408,15141],"orbits":[6,5],"x":-8734.51,"y":-7310.37},{"nodes":[21387],"orbits":[0],"x":-8724.91,"y":5036.5},{"nodes":[51129,26437,15892],"orbits":[3,7],"x":-8699.47,"y":5504.76},{"nodes":[52],"orbits":[0],"x":-8682.17,"y":-4609.87},{"nodes":[39131],"orbits":[0],"x":-8680.79,"y":-5014.13},{"nodes":[47606,28981,34871,27980,270,56219,52764],"orbits":[0,1,2,7],"x":-8664.77,"y":-6794.46},{"nodes":[33722],"orbits":[0],"x":-8664.77,"y":-6378.53},{"nodes":[47173,51832,6514,31373,47722,12418,50561,3988],"orbits":[0,2,3,4],"x":-8647.35,"y":4650.55},{"nodes":[10100],"orbits":[0],"x":-8622.21,"y":522.51},{"nodes":[23307],"orbits":[0],"x":-8621.47,"y":988.33},{"nodes":[27082],"orbits":[0],"x":-8618.25,"y":6301.67},{"nodes":[63243,48160,13108,49543,37778,24929],"orbits":[2,3,5],"x":-8606.47,"y":-3419.53},{"nodes":[8460,40328,62200,9528,38053,29762,28564],"orbits":[0,2,3],"x":-8509.27,"y":-1418.16},{"nodes":[47263],"orbits":[0],"x":-8484.8,"y":9.69},{"nodes":[51210],"orbits":[0],"x":-8483,"y":-2227.56},{"nodes":[61404,38923,44902,61429,511],"orbits":[0,7],"x":-8468.97,"y":-2457.13},{"nodes":[13482],"orbits":[0],"x":-8394.02,"y":5599.53},{"nodes":[22626,45227,30136],"orbits":[3,7],"x":-8335.67,"y":5293.13},{"nodes":[42111,48717],"orbits":[7,3],"x":-8316.62,"y":5282.9},{"nodes":[25300],"orbits":[0],"x":-8308.16,"y":504.36},{"nodes":[55048],"orbits":[0],"x":-8287.77,"y":-6378.53},{"nodes":[25315,25591,19820,5686],"orbits":[2],"x":-8258.71,"y":2390.73},{"nodes":[55635,57089,53893,55450,21784,50118,51807,52440,34443],"orbits":[0,1,2,7],"x":-8253.67,"y":-5967.44},{"nodes":[59945],"orbits":[0],"x":-8233.08,"y":1737.23},{"nodes":[12005,28489,56890,33562,41609,31010,27611,27216,30546,57273,60619,26104,43282,55672,32186,541],"orbits":[0,2,4,5,6,7],"x":-8221.2,"y":-7830.17},{"nodes":[50392],"orbits":[0],"x":-8217.79,"y":6324.33},{"nodes":[38365,61142,34626,46499],"orbits":[0,2],"x":-8210.95,"y":2826.15},{"nodes":[32349],"orbits":[0],"x":-8206.04,"y":7089.13},{"nodes":[61796,38066,8260,10286],"orbits":[7],"x":-8193.04,"y":453.74},{"nodes":[31779,20791,13777,38532],"orbits":[0,2],"x":-8166.54,"y":-4543.78},{"nodes":[38707],"orbits":[0],"x":-8161.98,"y":-1195.09},{"nodes":[24855,17138,53308,51903,39347,48014,55058,63790],"orbits":[0,3,4,5],"x":-8158.65,"y":3447.68},{"nodes":[11741],"orbits":[3],"x":-8149.73,"y":-4707.52},{"nodes":[41821],"orbits":[0],"x":-8141.21,"y":7641.73},{"nodes":[24801,34305,40736,8171,45162,63031,15606,31545],"orbits":[3,4,7],"x":-8131.61,"y":7618.79},{"nodes":[52220,60064,3027,54228,64240],"orbits":[0,2],"x":-8115.09,"y":-155.26},{"nodes":[61409,24646],"orbits":[3,7],"x":-8111.51,"y":6128.94},{"nodes":[59061,2672,8509,45569,55596,28267,35085],"orbits":[0,2,3],"x":-8101.59,"y":-5348.53},{"nodes":[8272],"orbits":[0],"x":-1028.4703459825,"y":15926.500291259},{"nodes":[21453],"orbits":[0],"x":-8091.65,"y":379.36},{"nodes":[63114],"orbits":[3],"x":-8046.92,"y":4659.56},{"nodes":[13075],"orbits":[0],"x":-8021.19,"y":6127.75},{"nodes":[60916,41701,11027,59433],"orbits":[0,2],"x":-8013.96,"y":-4798.6},{"nodes":[4140],"orbits":[0],"x":-8008.17,"y":-7035.15},{"nodes":[40105,30258,20558],"orbits":[2],"x":-8001.4,"y":-2679.74},{"nodes":[54849,3723,16413,17092,10484,42660],"orbits":[0,2],"x":-7994.15,"y":-746.39},{"nodes":[49259,25014,62360,36333,50228,20511,42059,53804,56112],"orbits":[0,3,4],"x":-7989.53,"y":-3652.59},{"nodes":[35048,26176,43650,21070,57388,53386,9698],"orbits":[1,2,3,7],"x":-7966.51,"y":4130.84},{"nodes":[49734],"orbits":[0],"x":-7956.51,"y":-1961.91},{"nodes":[39102,43486,13228,54289],"orbits":[0,2],"x":-7915.44,"y":-3108.31},{"nodes":[44017],"orbits":[0],"x":-7860.53,"y":2931.66},{"nodes":[41147,23797,31370,32448],"orbits":[2],"x":-7858.6,"y":6648.73},{"nodes":[4621,54297,24993,43721,9554,11160,49769,16332,1628,57202,3681,57386,8723,49258,25678,21374],"orbits":[2,3,4,6,7],"x":-7842.42,"y":-9697.42},{"nodes":[3446],"orbits":[0],"x":-7829.04,"y":7089.13},{"nodes":[51737],"orbits":[0],"x":-725.97034598253,"y":16707.190291259},{"nodes":[4527],"orbits":[0],"x":-7762.96,"y":2567.51},{"nodes":[20115],"orbits":[0],"x":-7745.48,"y":-2749.55},{"nodes":[51812,62757,4673,10047,46741],"orbits":[0,2],"x":-7735.13,"y":-1427.91},{"nodes":[64807,46674,35921,57405,5642],"orbits":[2],"x":-7728.69,"y":1935.05},{"nodes":[58855],"orbits":[0],"x":-7717.94,"y":1429.4},{"nodes":[53527,4985,64525,45327,7204,10251],"orbits":[0,2,3,7],"x":-7711.19,"y":1435.92},{"nodes":[35369,1459,47252,17282,43579],"orbits":[0,1,7],"x":-7642.03,"y":-4244.19},{"nodes":[2946,62518,4547,41414,41363],"orbits":[0,1,3,4,7],"x":-7612.36,"y":8202.29},{"nodes":[29197,23436,26300,11428],"orbits":[2,4,5,7],"x":-7605.69,"y":-5466.48},{"nodes":[15913,7542,36737,61362,28516,32599],"orbits":[2],"x":-7585.53,"y":-2160.61},{"nodes":[17646],"orbits":[0],"x":-515.80034598253,"y":15646.330291259},{"nodes":[51821],"orbits":[0],"x":-7574.92,"y":-3386.05},{"nodes":[31159,54962,35849,46017,12382],"orbits":[0,1,7],"x":-7523.03,"y":-4513.11},{"nodes":[43653,48171,26518,40803,3218],"orbits":[4],"x":-7479.31,"y":-755.12},{"nodes":[58088,16620,41442,21161,64324,10500,26479,6900,45751],"orbits":[2,3,4,5],"x":-7472.17,"y":6094.06},{"nodes":[9040],"orbits":[0],"x":-7472.17,"y":6133.69},{"nodes":[50616],"orbits":[0],"x":-7470.27,"y":4966.83},{"nodes":[46665],"orbits":[0],"x":-7469.65,"y":409.35},{"nodes":[18505,18496,18073,36027,49952,45090,13856],"orbits":[7],"x":-7463.54,"y":4960.9},{"nodes":[24339,7060,28214,1973,8607,53131],"orbits":[7,2],"x":-7459.86,"y":371.68},{"nodes":[39710],"orbits":[0],"x":-7441.19,"y":-3885.12},{"nodes":[52298],"orbits":[0],"x":-7437.53,"y":3131.16},{"nodes":[53216,52126,21885,1352],"orbits":[0,2,7],"x":-7437.53,"y":3624.13},{"nodes":[45202],"orbits":[0],"x":-7414.29,"y":-8107.33},{"nodes":[34317,8145,2344,23331,30959,31778,12992,16485,296],"orbits":[0,1,2,7],"x":-7383.29,"y":-7035.15},{"nodes":[58295],"orbits":[2],"x":-7366.84,"y":84.99},{"nodes":[47242,34493,48565,23078,65328,54964,49593,4725,17229],"orbits":[0,2,3,4,7],"x":-7350.17,"y":-6377.15},{"nodes":[26196],"orbits":[0],"x":-7344.38,"y":-4246.42},{"nodes":[40117,31848,1286,21089,17903,54701,64023],"orbits":[0,7],"x":-7296.92,"y":2335.67},{"nodes":[24430,47191,3601,8554,63037],"orbits":[4],"x":-7251.15,"y":-371.11},{"nodes":[50629],"orbits":[0],"x":-7241.96,"y":-651.55},{"nodes":[44298],"orbits":[0],"x":-7240.77,"y":-656.16},{"nodes":[17725,24420,33829,18737,9221,9442,37260,30395],"orbits":[0,1,2,7],"x":-7188.4,"y":-2426.53},{"nodes":[12232,36556,872,1502,11087,42635],"orbits":[0,2],"x":-7167.85,"y":-3642.67},{"nodes":[19936],"orbits":[0],"x":-7152.71,"y":-4265.26},{"nodes":[28774,17505,52106,2999,44005,10295,27733],"orbits":[4,5,6],"x":-7140.48,"y":-10437.39},{"nodes":[35966,41105,38835,4091,38368,54288,44316],"orbits":[0,1,7],"x":-7138.53,"y":-5046.81},{"nodes":[11048,47420,53444,9065,752,64653,52676],"orbits":[1,2,4,7],"x":-7123.17,"y":-8949.18},{"nodes":[50062,64357,6416,506,37641],"orbits":[0,2],"x":-7080.06,"y":-3066.48},{"nodes":[23930,30662,45383,26291,46024],"orbits":[4],"x":-7073.34,"y":-821.9},{"nodes":[65509,41384,51672,31955],"orbits":[3],"x":-7070.17,"y":-3075.76},{"nodes":[59093],"orbits":[0],"x":-7050.15,"y":-8009.76},{"nodes":[61973,38601,43131,40719,61897,34501,7120],"orbits":[6,5,9,8],"x":22.379654017468,"y":15546.750291259},{"nodes":[25172],"orbits":[0],"x":22.379654017468,"y":16596.080291259},{"nodes":[46535],"orbits":[0],"x":26.729654017468,"y":15646.330291259},{"nodes":[32559],"orbits":[0],"x":26.729654017468,"y":15948.310291259},{"nodes":[3704],"orbits":[0],"x":26.729654017468,"y":16229.120291259},{"nodes":[52993,9414,32768,8107,18081,14980],"orbits":[0,2,3,7],"x":-7038.4,"y":-1699.91},{"nodes":[25229,7972,21390,5663],"orbits":[0,2],"x":-7025.42,"y":7409.4},{"nodes":[62498],"orbits":[0],"x":-7025.42,"y":7906.98},{"nodes":[12255,989,26416,27740,35792],"orbits":[2],"x":-7025.42,"y":8507.21},{"nodes":[1040],"orbits":[0],"x":-6981.11,"y":-4477.76},{"nodes":[13693],"orbits":[0],"x":-6958.05,"y":-4267.12},{"nodes":[45632,25503,27068,35831,27388,28578,904,24551],"orbits":[0,7],"x":-6938.5,"y":-5539.42},{"nodes":[26725],"orbits":[0],"x":-6934.34,"y":4002.72},{"nodes":[31805,44461,54998,29041,31388,51394,29993],"orbits":[1,2,3,7],"x":-6908.33,"y":2821.11},{"nodes":[43778,36894,17330,3698,61938,14515,61927,33137],"orbits":[2,3],"x":-6902.9,"y":6655.38},{"nodes":[21568],"orbits":[0],"x":-6880.96,"y":-4712.38},{"nodes":[1170,53089,16626,64443,41126,10474,53785,9918,62023],"orbits":[0,2,3],"x":-6862.15,"y":988.33},{"nodes":[21127,35974,51105,5398,22484,51820,38124,6355,14110,48979],"orbits":[1,2,3,4,6,7],"x":-6849.4,"y":-7455.59},{"nodes":[48935,61367,64239,2733],"orbits":[0,2,3],"x":-6846.57,"y":-239.4},{"nodes":[16249],"orbits":[0],"x":2206.941488019,"y":15163.039415167},{"nodes":[50757,62303,33045,59938],"orbits":[0,4,7],"x":-6813.53,"y":-3551.71},{"nodes":[8553],"orbits":[0],"x":-6788.28,"y":-4451.87},{"nodes":[34331],"orbits":[0],"x":-6782.96,"y":-4268.65},{"nodes":[20390],"orbits":[0],"x":-6782,"y":-4265.36},{"nodes":[290],"orbits":[0],"x":-6781.38,"y":-4090.54},{"nodes":[40511,58368,29985,61113,53910,9212],"orbits":[0,1,7],"x":-6753.23,"y":-6208.67},{"nodes":[25031,17999,63979,9750,1169,42026,63813],"orbits":[0,7],"x":-6714.29,"y":9037.67},{"nodes":[11464,27405,30781,63772,37888,29663],"orbits":[2,3,5,6,7],"x":-6663.73,"y":-1193.34},{"nodes":[5800,45075,43149,43507,40292],"orbits":[1,2,7],"x":-6629.67,"y":5303.33},{"nodes":[32560],"orbits":[0],"x":2418.441488019,"y":15529.369415167},{"nodes":[37619],"orbits":[0],"x":-6598.9,"y":-4269.04},{"nodes":[25890,26863,54378,58198],"orbits":[0,2],"x":-6580.5,"y":-8082.37},{"nodes":[51328],"orbits":[0],"x":-6534.71,"y":-4055.73},{"nodes":[6935],"orbits":[0],"x":560.54965401747,"y":15646.330291259},{"nodes":[10371],"orbits":[0],"x":2527.921488019,"y":15120.769415167},{"nodes":[11248],"orbits":[0],"x":-6473.32,"y":-5120.01},{"nodes":[53921,40596,58838],"orbits":[5],"x":-6456.61,"y":5137.09},{"nodes":[22975],"orbits":[0],"x":-6409.48,"y":4911.79},{"nodes":[15044],"orbits":[0],"x":2629.941488019,"y":15895.699415167},{"nodes":[22270,1144,12471,19942,42070,26148],"orbits":[0,2],"x":-6401.88,"y":-5623.51},{"nodes":[37415],"orbits":[0],"x":-6394.63,"y":-4266.42},{"nodes":[21861,52807,61836,60551,65243,46421],"orbits":[0,2],"x":-6391.25,"y":-308.27},{"nodes":[3663],"orbits":[0],"x":-6370.88,"y":-1832.43},{"nodes":[43711,5544,14459],"orbits":[2],"x":-6370.69,"y":420.58},{"nodes":[45354,64948,48264,12964],"orbits":[0,2],"x":-6369.67,"y":-4773.94},{"nodes":[38921,49023,49198,12817,22967],"orbits":[1,2,3,7],"x":-6353.65,"y":4501.4},{"nodes":[34187,20848,32239,16721,9009,7128,18270,45874],"orbits":[0,3,4,5,6,7],"x":-6348.3,"y":-6484.17},{"nodes":[38596],"orbits":[0],"x":-6300.11,"y":-8244.85},{"nodes":[18678],"orbits":[0],"x":2726.7151094136,"y":-16520.239541646},{"nodes":[63002],"orbits":[0],"x":2726.7151094136,"y":-14316.419541646},{"nodes":[42845],"orbits":[0],"x":2739.421488019,"y":15487.109415167},{"nodes":[20830],"orbits":[0],"x":799.83965401747,"y":16707.190291259},{"nodes":[32777,17625,59710,21567,18822,10873,52618,47790],"orbits":[1,2,3,7],"x":-6239.27,"y":-3222.72},{"nodes":[39621,14176,18004,8881],"orbits":[0,2,3,4],"x":-6234.37,"y":3368.19},{"nodes":[11014,16784,26339,62609,18419,25312,24259,23667,64405,31650,16051,31017],"orbits":[0,1,3,5,7],"x":-6210.4,"y":7289.19},{"nodes":[51561],"orbits":[0],"x":-6210.4,"y":8758.64},{"nodes":[23382],"orbits":[0],"x":-6208.88,"y":-8867.25},{"nodes":[19674],"orbits":[3],"x":-6203.21,"y":3942.14},{"nodes":[10731],"orbits":[0],"x":2828.6351094136,"y":-16082.639541646},{"nodes":[27439],"orbits":[0],"x":-6186.82,"y":5297.48},{"nodes":[11786,7716,29447,18157],"orbits":[2],"x":-6167.94,"y":9255.09},{"nodes":[29162],"orbits":[0],"x":2869.651488019,"y":16135.409415167},{"nodes":[8982,58926,64572,14952,21985,48925,54887],"orbits":[0,3,7],"x":-6160.01,"y":-9509.97},{"nodes":[3363,38433,4970,23195,55375,62748],"orbits":[0,2],"x":-6116.54,"y":-6010.78},{"nodes":[41493],"orbits":[0],"x":-6116.29,"y":3951.76},{"nodes":[31925],"orbits":[0],"x":-6073,"y":-8397.31},{"nodes":[35408,24767],"orbits":[2],"x":-6070.48,"y":-8693.42},{"nodes":[41180,6222,17260,61703,9037,57608,32353,65189],"orbits":[0,2,3,7],"x":-6051.67,"y":-646.18},{"nodes":[29126,28770,479],"orbits":[0,7],"x":-6036.75,"y":-1514.07},{"nodes":[21017,26969,16861,55789,41665,27303,50562,43142],"orbits":[0,3,4,5,7],"x":-6026.21,"y":1197.89},{"nodes":[14654],"orbits":[0],"x":-6014.13,"y":4},{"nodes":[54838],"orbits":[0],"x":3024.181488019,"y":14820.959415167},{"nodes":[4245],"orbits":[0],"x":3024.181488019,"y":15243.969415167},{"nodes":[44746],"orbits":[0],"x":3024.181488019,"y":15666.969415167},{"nodes":[28153],"orbits":[0],"x":3040.6851094136,"y":-15421.219541646},{"nodes":[35977,38130,53194,35876,27540,62216,26070,62973],"orbits":[0,2,3],"x":-5982.73,"y":2748.83},{"nodes":[57703],"orbits":[0],"x":-5982.73,"y":3453.31},{"nodes":[37078],"orbits":[0],"x":1106.1996540175,"y":15926.500291259},{"nodes":[56342],"orbits":[0],"x":-5952.13,"y":8688.45},{"nodes":[7341],"orbits":[0],"x":-5946.57,"y":8472.91},{"nodes":[49938],"orbits":[0],"x":-5945.28,"y":-3432.51},{"nodes":[46522],"orbits":[0],"x":3111.921488019,"y":15994.419415167},{"nodes":[50253],"orbits":[0],"x":-5918.9,"y":4065.73},{"nodes":[26638],"orbits":[0],"x":3107.3351094136,"y":-14316.419541646},{"nodes":[64318,5088,55101,43893,26739,61063,38535,7777,58016,22873,16596,49537,42205],"orbits":[0,3,4],"x":-5912.67,"y":-7670.09},{"nodes":[46380,21327,56876,1104],"orbits":[0,2],"x":-5886.61,"y":-5253.73},{"nodes":[23879,51743,42452,57617,41620,35417,57921,16506,14996,37509],"orbits":[0,3,4,5,7],"x":-5885.4,"y":-2365.38},{"nodes":[44872],"orbits":[0],"x":-5846.29,"y":-5740.53},{"nodes":[36474],"orbits":[0],"x":-5842.29,"y":-8243.17},{"nodes":[62948],"orbits":[0],"x":-5841.98,"y":-6866.01},{"nodes":[42035,10987,50219,54194],"orbits":[2],"x":3230.2751094136,"y":-16146.949541646},{"nodes":[22147],"orbits":[9],"x":3230.2751094136,"y":-15207.249541646},{"nodes":[36252],"orbits":[6],"x":3252.201488019,"y":15678.949415167},{"nodes":[9884],"orbits":[0],"x":-5779.01,"y":-8993.83},{"nodes":[51795,32271,54311,28482,53632,19846],"orbits":[1,2,7],"x":-5766.42,"y":-4054.17},{"nodes":[43128],"orbits":[4],"x":3294.0451094136,"y":-16066.949541646},{"nodes":[40377,7554,23039,64770,46318,32964,34617],"orbits":[3],"x":-5724.5,"y":-6743.51},{"nodes":[8600],"orbits":[0],"x":-5721.96,"y":6102.63},{"nodes":[32952],"orbits":[0],"x":-4412.0930451617,"y":15102.650574792},{"nodes":[62015,7668,21982,47371],"orbits":[0,2],"x":-5694.65,"y":5052.28},{"nodes":[64870,34090,14655,372,54340],"orbits":[0,2,3,7],"x":-5677.8,"y":5511.25},{"nodes":[61471,61977,15580,49153],"orbits":[4],"x":-5667.96,"y":-4180.52},{"nodes":[58747],"orbits":[0],"x":3370.1251094136,"y":-14316.019541646},{"nodes":[54892],"orbits":[0],"x":3392.521488019,"y":15994.249415167},{"nodes":[3605],"orbits":[0],"x":3402.6551094136,"y":-15421.219541646},{"nodes":[37397],"orbits":[0],"x":-4302.9730451617,"y":14913.650574792},{"nodes":[60287],"orbits":[0],"x":-4302.9730451617,"y":15039.650574792},{"nodes":[7960],"orbits":[1],"x":-5597.85,"y":-9484.56},{"nodes":[40550,46205,41615,49192,44787,43396,10534,33209,2174,51683,19249],"orbits":[0,2,3,4,6,7],"x":-5585.44,"y":-521.46},{"nodes":[33244,52373,16347,52556,37276],"orbits":[0,2],"x":-5585.08,"y":8844.88},{"nodes":[38696],"orbits":[0],"x":-5557.42,"y":-9213.68},{"nodes":[32637],"orbits":[0],"x":3480.491488019,"y":14819.939415167},{"nodes":[30151],"orbits":[0],"x":3480.491488019,"y":15242.949415167},{"nodes":[44371],"orbits":[0],"x":3480.491488019,"y":15665.949415167},{"nodes":[20303,9908],"orbits":[2],"x":-5535.94,"y":811.34},{"nodes":[16311,32600,6304,12125],"orbits":[0,2],"x":-5532.01,"y":426.08},{"nodes":[20350,47006,43174,4948,62785,28542],"orbits":[1,3,7],"x":-5498.11,"y":8167.23},{"nodes":[63259],"orbits":[0],"x":-4193.8630451617,"y":15102.650574792},{"nodes":[55582],"orbits":[0],"x":-4167.0930451617,"y":15546.760574792},{"nodes":[25482,51702,54485,60620,61472],"orbits":[0,7],"x":-5457.8,"y":4362.34},{"nodes":[64995,51867,17924],"orbits":[0,3],"x":-5443.28,"y":6845.42},{"nodes":[54868],"orbits":[0],"x":-5431.5,"y":-9013.71},{"nodes":[27990],"orbits":[0],"x":3593.6051094136,"y":-16317.889541646},{"nodes":[761,22133,39857,4663],"orbits":[0,7],"x":-5431.35,"y":-1790.04},{"nodes":[2491],"orbits":[1],"x":-5399.53,"y":9533.46},{"nodes":[762],"orbits":[0],"x":3635.451488019,"y":16134.699415167},{"nodes":[49049],"orbits":[0],"x":3627.9251094136,"y":-16082.639541646},{"nodes":[14777,37226,4015,47429,9187,59466],"orbits":[2,3,4,6,7],"x":-5387.75,"y":7424.52},{"nodes":[14429],"orbits":[0],"x":-4082.4230451617,"y":14628.030574792},{"nodes":[44783,19277,35171,10029,8660,18846,22949,14113],"orbits":[0,2,3],"x":-5358.85,"y":-5492.92},{"nodes":[8629],"orbits":[0],"x":-5326.03,"y":2555.07},{"nodes":[16084],"orbits":[0],"x":-5314.13,"y":2655.72},{"nodes":[13474],"orbits":[0],"x":-5314.13,"y":2829.25},{"nodes":[10602,24871,57552,46696],"orbits":[4],"x":-5314.13,"y":2922.83},{"nodes":[54811],"orbits":[0],"x":-5314.13,"y":3067.3},{"nodes":[34210],"orbits":[0],"x":-5314.13,"y":3397.64},{"nodes":[25934,6923,1087,64939,30123,26092,52392],"orbits":[2,3,7],"x":-5314.13,"y":3520.75},{"nodes":[43471],"orbits":[0],"x":-5311.94,"y":-8795.16},{"nodes":[20015],"orbits":[0],"x":-5307.75,"y":7323.33},{"nodes":[20499,34327,32078,16940,25446,2336,63402,29881],"orbits":[0,1,2,7],"x":-5305.62,"y":-3550.7},{"nodes":[14265],"orbits":[0],"x":-5304.61,"y":-8799.35},{"nodes":[1579],"orbits":[0],"x":3733.2751094136,"y":-16527.249541646},{"nodes":[32856],"orbits":[0],"x":3733.2751094136,"y":-14316.019541646},{"nodes":[12099],"orbits":[0],"x":-5263.61,"y":-9401.91},{"nodes":[12054],"orbits":[0],"x":3775.731488019,"y":16377.669415167},{"nodes":[45248],"orbits":[0],"x":-3946.5530451617,"y":15135.140574792},{"nodes":[10169],"orbits":[0],"x":-5238.15,"y":5102.77},{"nodes":[44406,63451,57846],"orbits":[6],"x":-5197.82,"y":6507.02},{"nodes":[63470,50302,16090],"orbits":[3],"x":-5165.01,"y":833.39},{"nodes":[61490],"orbits":[0],"x":-5159.25,"y":6455.65},{"nodes":[28304],"orbits":[0],"x":-5153.8,"y":8943.84},{"nodes":[4833],"orbits":[0],"x":-5147,"y":-9203.79},{"nodes":[8693,35393,23708,3896,56320],"orbits":[0,2,7],"x":-5140.8,"y":745.04},{"nodes":[11641],"orbits":[0],"x":-3810.6630451617,"y":15642.260574792},{"nodes":[56703,28839,56762,20032,28680],"orbits":[0,2],"x":-5107.55,"y":-6981.78},{"nodes":[1988],"orbits":[0],"x":3929.031488019,"y":15965.199415167},{"nodes":[28002],"orbits":[0],"x":-5095.02,"y":-2941.61},{"nodes":[2955,28800,55308,38313,30701],"orbits":[0,2,7],"x":-5085.88,"y":-2565.83},{"nodes":[51183,10635,45301,31724,2074],"orbits":[0,2],"x":-5081.34,"y":-791.76},{"nodes":[64042,55422,34415,48387,54640,27900,62376],"orbits":[0,3,4,5,7],"x":-5055.9,"y":-4742.69},{"nodes":[18441,34181,45422],"orbits":[7],"x":-5039.48,"y":-3334.46},{"nodes":[51369,56061,6544,45503,37746,42604],"orbits":[0,2,4,7],"x":-5034.82,"y":1520.57},{"nodes":[33852],"orbits":[0],"x":-5013.88,"y":-8978.47},{"nodes":[50177],"orbits":[0],"x":-5006.69,"y":-8973.79},{"nodes":[34412,25915,8916,20547,33340,51267,11886],"orbits":[1,2,7],"x":-5003.08,"y":-1341.35},{"nodes":[45918],"orbits":[0],"x":-4999.75,"y":-8120.71},{"nodes":[49547],"orbits":[0],"x":-4997.46,"y":-3305.76},{"nodes":[10305,45586,35011,14761,53187,45215],"orbits":[2],"x":-4989.69,"y":6154.73},{"nodes":[57775],"orbits":[0],"x":-4987.35,"y":6165.44},{"nodes":[34882],"orbits":[0],"x":-3674.7830451617,"y":16149.370574792},{"nodes":[44191],"orbits":[0],"x":-4971.36,"y":-9503.08},{"nodes":[46628],"orbits":[4],"x":-4966.28,"y":-5972.03},{"nodes":[37523],"orbits":[0],"x":4069.301488019,"y":16208.169415167},{"nodes":[36880,15628,27626,2244,54067,43036],"orbits":[4,5,7],"x":-4903.32,"y":-8409.77},{"nodes":[48552],"orbits":[0],"x":-4902.61,"y":-8434.54},{"nodes":[10452,1878,44213,14328,869,18959,55843],"orbits":[0,2,7],"x":-4876.25,"y":-7652.71},{"nodes":[34990,25337,50184,46069,6088,54380],"orbits":[0,2,7],"x":-4860.65,"y":-5812},{"nodes":[47316,2888,21716,8827,16691,9583,28862],"orbits":[0,4,7],"x":-4814.59,"y":10580.08},{"nodes":[37258],"orbits":[0],"x":-4805.94,"y":8363.52},{"nodes":[59367,10774,26568,51732,35863],"orbits":[2],"x":-4801.92,"y":7834.96},{"nodes":[23062,19122,28432,20416],"orbits":[0,2],"x":-4747.08,"y":-251.96},{"nodes":[24696],"orbits":[0],"x":4295.151488019,"y":15983.139415167},{"nodes":[38965,11284,24764,12324,30985,31697,51303],"orbits":[1,2,7],"x":-4715.21,"y":-10127.67},{"nodes":[56595,23861,54886,56997,64312],"orbits":[0,4,7],"x":-4713.07,"y":5643.94},{"nodes":[15782],"orbits":[0],"x":-4694.67,"y":-6892.17},{"nodes":[54814,59498,53675,16114],"orbits":[0,2],"x":-4694.67,"y":-6482.36},{"nodes":[292],"orbits":[0],"x":-4681.54,"y":-9216.8},{"nodes":[31419,35787,42813,55491],"orbits":[1,7],"x":-4660.69,"y":223.67},{"nodes":[23825,11572,24325,32923,58215,40006,9896],"orbits":[2,3,4,7],"x":-4651.11,"y":-9191.09},{"nodes":[31238],"orbits":[0],"x":-4643.88,"y":-7996.23},{"nodes":[2653,19203,10260,30896,49172,33730,60809],"orbits":[0,2,7],"x":-4628.58,"y":-3070.51},{"nodes":[65226],"orbits":[0],"x":-4621.23,"y":-10104.85},{"nodes":[38876],"orbits":[0],"x":-4606.4,"y":6774.82},{"nodes":[5681],"orbits":[0],"x":-4573.05,"y":9245.21},{"nodes":[4086],"orbits":[0],"x":4459.721488019,"y":15683.469415167},{"nodes":[3339,23036,46931,45585,55617,29914,17825,19546,59208],"orbits":[0,2,3],"x":-4572.75,"y":9245.92},{"nodes":[39083],"orbits":[0],"x":-4542.4,"y":925.6},{"nodes":[14686,53795,64804,53324,19318,62210],"orbits":[0,3,7],"x":-4528.5,"y":-8746.5},{"nodes":[33978,30390,31609,36163,62581],"orbits":[0,2,3,7],"x":-4507.44,"y":2159.3},{"nodes":[55536],"orbits":[9],"x":-3208.3430451617,"y":15211.520574792},{"nodes":[10245,34308,65193,36478,48714,43014,37414],"orbits":[0,2,3],"x":-4432.96,"y":-2172.08},{"nodes":[14540],"orbits":[0],"x":-4431.15,"y":7184.65},{"nodes":[7878,48745,53901,34375,45612],"orbits":[0,2,3],"x":-4431.08,"y":-684.43},{"nodes":[9417],"orbits":[0],"x":-4427.82,"y":4646.67},{"nodes":[48505,10372,48240,36191,59213,7392,10571,60886,40325],"orbits":[1,2,3],"x":-4422.17,"y":-1471.64},{"nodes":[7642,6356,71,32859,12189,56547,15114],"orbits":[0,3,4,5,7],"x":-4418.06,"y":-4540.25},{"nodes":[13171],"orbits":[0],"x":-4346.51,"y":4339.79},{"nodes":[9638],"orbits":[0],"x":-4339.42,"y":843.27},{"nodes":[54283,26324,27950,4128,26532,46023,52462],"orbits":[0,2,3],"x":-4335.51,"y":3287.25},{"nodes":[41657,21286,45992,17029],"orbits":[2,3],"x":-4335.51,"y":3380.39},{"nodes":[26798],"orbits":[0],"x":-4335.1,"y":619.91},{"nodes":[51052,22616,17468,53405,22558],"orbits":[6],"x":-4308.23,"y":0.53},{"nodes":[59006],"orbits":[0],"x":-4296.44,"y":407.49},{"nodes":[48631],"orbits":[0],"x":-4289.92,"y":0.53},{"nodes":[14294,48530,4623,39130,48524],"orbits":[2],"x":-4288.8,"y":-6798.65},{"nodes":[43818],"orbits":[0],"x":-4285.55,"y":-6819.23},{"nodes":[14505,3866,22331,19644,32258,14712,33612,40200,61842,33240,45343,57021,8957,37594,50483,8983],"orbits":[0,1,2,3,4,5,7],"x":-4283.82,"y":-11016.96},{"nodes":[34552,61026,17378,40894,1218,8357,10742,41991,1447,38972,14945,22393,28458],"orbits":[0,3],"x":-4261.32,"y":-5891.9},{"nodes":[21251],"orbits":[0],"x":-4261.32,"y":-5204.4},{"nodes":[28175],"orbits":[0],"x":-4254.59,"y":10064.45},{"nodes":[17745],"orbits":[0],"x":-4238.73,"y":4457.57},{"nodes":[62378,47633,57002,48761],"orbits":[0,2],"x":-4230.17,"y":-789.73},{"nodes":[16725],"orbits":[0],"x":-4227.25,"y":2439.49},{"nodes":[4681,25058,48828,26228],"orbits":[0,2],"x":-4208.73,"y":-7738.4},{"nodes":[50104],"orbits":[0],"x":-4185.36,"y":-10001.8},{"nodes":[47212,17417,43843,3652,56714,27999,45777],"orbits":[0,1,2,3,5],"x":-4166,"y":10952.54},{"nodes":[56605],"orbits":[0],"x":-4163.59,"y":6722.67},{"nodes":[18146],"orbits":[0],"x":-2863.1830451617,"y":15383.910574792},{"nodes":[48121],"orbits":[0],"x":-4120.96,"y":4565.35},{"nodes":[4931,42825,21404,27674,44082,27307],"orbits":[0,2],"x":-4117.42,"y":-8135.44},{"nodes":[32745],"orbits":[0],"x":-4116.33,"y":-9838.01},{"nodes":[24438],"orbits":[0],"x":-4114.17,"y":4317.84},{"nodes":[40276],"orbits":[0],"x":-4113.12,"y":-9545.42},{"nodes":[60241],"orbits":[0],"x":-4113.12,"y":-9254.29},{"nodes":[51618,43324,57596,13468,11580,34769,52115,51454],"orbits":[0,2,3,4,7],"x":-4109.59,"y":-3555.51},{"nodes":[17762,2964,18374,28476],"orbits":[0,2],"x":-4107.23,"y":6275.65},{"nodes":[46742],"orbits":[0],"x":-4102.54,"y":-10310.91},{"nodes":[95],"orbits":[0],"x":-4084.76,"y":-7312.1},{"nodes":[26895],"orbits":[0],"x":-4082.88,"y":287.24},{"nodes":[17411,61444,58096,6008,29652,15180,34096],"orbits":[0,2,3],"x":-4077.15,"y":-2691.85},{"nodes":[26490,12751,6229,13356,18489],"orbits":[7,2],"x":-4066.8,"y":8524.92},{"nodes":[31903],"orbits":[0],"x":-4066.02,"y":7086.81},{"nodes":[3084],"orbits":[0],"x":-2738.2930451617,"y":16153.010574792},{"nodes":[32278,58183],"orbits":[2,7],"x":-4030.62,"y":-9550.54},{"nodes":[25990,43461,25753,32932,63268,29372,53989,36389,7720,14205],"orbits":[1,4,5,6,7,8],"x":-4027.59,"y":5238.17},{"nodes":[57819],"orbits":[0],"x":-2727.0430451617,"y":14875.830574792},{"nodes":[46748],"orbits":[0],"x":-3995.5,"y":4196.65},{"nodes":[4661,53367,10835,20842,12821,65439,48026,6623,65353],"orbits":[0,1,2,3],"x":-3978.69,"y":9586.58},{"nodes":[61179],"orbits":[0],"x":-3955.44,"y":-9600.64},{"nodes":[259],"orbits":[0],"x":-3931.69,"y":7603.71},{"nodes":[38010,13352,59180,54923,27638,50023,13524,4921],"orbits":[4,7],"x":-3931.58,"y":7588.67},{"nodes":[37956],"orbits":[0],"x":-3921.6,"y":394.73},{"nodes":[35645],"orbits":[0],"x":-3915.69,"y":-7172.57},{"nodes":[1928],"orbits":[0],"x":-3908.2,"y":-7290.56},{"nodes":[5284],"orbits":[0],"x":-3905.87,"y":-9191.64},{"nodes":[30996],"orbits":[0],"x":-2602.1530451617,"y":15644.940574792},{"nodes":[35581],"orbits":[0],"x":-3872.48,"y":156.68},{"nodes":[51485,41338,31673,48649],"orbits":[0,2],"x":-3861.26,"y":-1010.61},{"nodes":[32847],"orbits":[0],"x":-3856.25,"y":-7033.48},{"nodes":[8867,42522,39204,12882,38578,2857,39640,61985,18849,49189,64789,44484,7246,65413,25618,49759,7998,13673,29398,12488,40721],"orbits":[6,5,9,8],"x":9.0949470177293e-13,"y":-15546.765136719},{"nodes":[21245],"orbits":[0],"x":-3804.23,"y":-9338.75},{"nodes":[57178],"orbits":[0],"x":-3804.23,"y":-8886.17},{"nodes":[1442],"orbits":[0],"x":-2502.4330451617,"y":16388.870574792},{"nodes":[53762],"orbits":[0],"x":-2466.0130451617,"y":15136.860574792},{"nodes":[45962,48589,7922,7183,15617],"orbits":[0,2,3],"x":-3759.41,"y":5937.79},{"nodes":[56284],"orbits":[0],"x":-3754.39,"y":-7303},{"nodes":[9226,13500,47591,41044],"orbits":[1,2,3,7],"x":-3746.22,"y":-5464.19},{"nodes":[46565],"orbits":[0],"x":-3736.26,"y":12649.72},{"nodes":[34487,4882,60568,38172,51206,49642,52348],"orbits":[0,2,3,7],"x":-3727.22,"y":3905.64},{"nodes":[53443,20645,59767,31292,64284,58528,45363,19011,27373,22928],"orbits":[0,3,4,5],"x":-3724.22,"y":1390.39},{"nodes":[27290],"orbits":[0],"x":-3711.3,"y":11983.92},{"nodes":[6077],"orbits":[0],"x":-3709.27,"y":-7173.96},{"nodes":[8248,48079,60014,38474],"orbits":[7,2],"x":-3702.66,"y":-823.68},{"nodes":[8737],"orbits":[0],"x":-3697.15,"y":-7461.02},{"nodes":[53108],"orbits":[0],"x":-2366.0430451617,"y":15879.830574792},{"nodes":[35265],"orbits":[0],"x":-3657.51,"y":6318.1},{"nodes":[36728],"orbits":[0],"x":-2329.8730451617,"y":14628.780574792},{"nodes":[25927],"orbits":[0],"x":-3622.31,"y":-7106.13},{"nodes":[20637,25570,21549,37694,44560,64083,27572,12940],"orbits":[0,2,3,4,7],"x":-3604.52,"y":-11358.09},{"nodes":[62122,6748,37327,34248,48618,4295],"orbits":[0,3,7],"x":-3593.46,"y":-8544.35},{"nodes":[34840],"orbits":[0],"x":-3593.46,"y":-7995.13},{"nodes":[25011,60404,20691,41739],"orbits":[0,2],"x":-3589.42,"y":6610.21},{"nodes":[33601,5692,35708,41154,2863],"orbits":[0,2],"x":-3556.93,"y":-337.58},{"nodes":[23364,33781,65493,43854,48614,9018,35918],"orbits":[0,3,7],"x":-3555.35,"y":-3914.61},{"nodes":[52038],"orbits":[0],"x":-3550.74,"y":-3918.97},{"nodes":[36822],"orbits":[0],"x":-2229.6330451617,"y":15370.790574792},{"nodes":[2511,19802,64399],"orbits":[1,2,3],"x":-3517.31,"y":5116.13},{"nodes":[2071,37543,38420,16647],"orbits":[0,2],"x":-3516.49,"y":-3235.91},{"nodes":[33397,51248,53294,38292,39594],"orbits":[0,2],"x":-3498.41,"y":321.55},{"nodes":[44733],"orbits":[2],"x":-3497.77,"y":-6221.4},{"nodes":[49363],"orbits":[0],"x":-3496.22,"y":-6579.23},{"nodes":[49550,61935,55746,4624],"orbits":[0,7],"x":-3484.73,"y":4125.9},{"nodes":[43842,5695,32309,59070,28092,17061,31773,55011],"orbits":[0,3,7],"x":-3480.21,"y":-9844.83},{"nodes":[26697],"orbits":[0],"x":-3462.24,"y":12165.79},{"nodes":[41511],"orbits":[0],"x":-3445.11,"y":-7610.06},{"nodes":[62661],"orbits":[0],"x":-3443.04,"y":-4769.59},{"nodes":[1433],"orbits":[6],"x":-3428.17,"y":-7186.71},{"nodes":[35284,3921,38398,31898,7473,2211,8154],"orbits":[0,7],"x":-3422.22,"y":11010.67},{"nodes":[12786],"orbits":[0],"x":-3421.76,"y":-1975.64},{"nodes":[15374,48035,54676,39759,11329],"orbits":[0,2],"x":-3410.15,"y":7031.06},{"nodes":[52746,9796,62310,54148,36325,56934],"orbits":[0,2,4,7],"x":-3408.23,"y":9916.18},{"nodes":[58591],"orbits":[0],"x":-2093.2330451617,"y":14861.740574792},{"nodes":[37612],"orbits":[0],"x":-3366.12,"y":7490.9},{"nodes":[8531,24483,32660,8631,59256,51534,46760],"orbits":[0,2,3],"x":-3360.01,"y":-4893.8},{"nodes":[37963,15855,59263,61441,54138],"orbits":[2,3,4,5,6],"x":-3314.67,"y":11934.56},{"nodes":[64223],"orbits":[0],"x":5660.4216959661,"y":-14377.641217109},{"nodes":[9762,10783,38564,20091],"orbits":[2,3,5,6],"x":-3296.49,"y":11927.97},{"nodes":[51299],"orbits":[2],"x":-3292.33,"y":5858.65},{"nodes":[46060,29788,44419,7251,29270,7488],"orbits":[0,7],"x":-3285.98,"y":4891.42},{"nodes":[17655,64299,50558,12462,18465,39540,36602,6744,49357,32194,58651,5777,44951,37629,55933],"orbits":[2,3,4,6],"x":-3281.46,"y":-1894.64},{"nodes":[60191,54985,14602,42737],"orbits":[7],"x":-3244.55,"y":7079.31},{"nodes":[47168],"orbits":[0],"x":-3225.69,"y":-10395.75},{"nodes":[38235,34671,61934,24477,17532,48418],"orbits":[0,2],"x":-3224.09,"y":7913.29},{"nodes":[57373],"orbits":[0],"x":-3215.37,"y":-6401.48},{"nodes":[25303],"orbits":[0],"x":-3196.2,"y":-8995.5},{"nodes":[39935],"orbits":[0],"x":-3184.23,"y":-9385.96},{"nodes":[38323],"orbits":[0],"x":-3154.84,"y":556.13},{"nodes":[48305],"orbits":[0],"x":-3144.84,"y":-551.55},{"nodes":[4956],"orbits":[0],"x":-3121.95,"y":-1268.74},{"nodes":[35560],"orbits":[0],"x":-3116.51,"y":-7680.34},{"nodes":[22045,63209,30704,13505],"orbits":[0,2],"x":-3115.35,"y":-1267.96},{"nodes":[30979],"orbits":[0],"x":-3109.62,"y":-5381.56},{"nodes":[30265],"orbits":[0],"x":5882.2416959661,"y":-15234.651217109},{"nodes":[4407],"orbits":[0],"x":-3069.12,"y":-8364.27},{"nodes":[64327,18629,39517,49391,36629,44659,62732,53373,64192,18742],"orbits":[0,3,4,5],"x":-3067.29,"y":2529.2},{"nodes":[43366],"orbits":[0],"x":-3061.21,"y":-8608.16},{"nodes":[33618,12610,4873,12683,61974,39990,20718,13294],"orbits":[1,2,7],"x":-3049.94,"y":-5891.57},{"nodes":[15194],"orbits":[0],"x":-3049.19,"y":-8762.37},{"nodes":[34747,24753,56567,151,6274],"orbits":[0,7],"x":-3044.02,"y":6253.4},{"nodes":[43895,13562],"orbits":[7],"x":-2998.56,"y":4483.94},{"nodes":[23650,56616,41415],"orbits":[0,2],"x":-2977.66,"y":4483.94},{"nodes":[30219,45177,39732],"orbits":[1,2],"x":-2974.98,"y":3611.49},{"nodes":[61657,45808,17750,3191,65324,24736,1861,9863,658,35623],"orbits":[3,4,7],"x":-2957.14,"y":8505.46},{"nodes":[29148],"orbits":[0],"x":-2904.82,"y":-7995.13},{"nodes":[38300],"orbits":[0],"x":-2893.96,"y":-6643.12},{"nodes":[17517,13233,19873],"orbits":[0,7],"x":-2880.6,"y":-1668.56},{"nodes":[44344],"orbits":[0],"x":-2864.23,"y":-9385.96},{"nodes":[27726,32416,6529],"orbits":[2],"x":-2851.04,"y":1645.22},{"nodes":[8406,6015,35426],"orbits":[6,3],"x":-2849.6,"y":0.53},{"nodes":[2606,21606,20388],"orbits":[1,2,3],"x":-2824.48,"y":-8749.27},{"nodes":[64471],"orbits":[4],"x":-2808.97,"y":10498.42},{"nodes":[45824],"orbits":[0],"x":-2787.46,"y":11060.96},{"nodes":[6898],"orbits":[0],"x":-2774.37,"y":-1070.72},{"nodes":[3282,58817,53607,37302,52860,45494,40975,24368,40597],"orbits":[0,3,4,7],"x":-2756.41,"y":10024.89},{"nodes":[65016,21206,6752,7378,968,45899,54911,31326,39716,44092,11505],"orbits":[0,2,3],"x":-2750.44,"y":-7108.15},{"nodes":[61615],"orbits":[0],"x":-2744.4,"y":-4969.4},{"nodes":[14575],"orbits":[0],"x":-2730.42,"y":-9028.75},{"nodes":[32128],"orbits":[0],"x":-2720.45,"y":-5537.28},{"nodes":[56090,59136,17729,56466],"orbits":[0,2,3,7],"x":-2701.66,"y":-4273.5},{"nodes":[11184],"orbits":[0],"x":-2697.32,"y":-12038.7},{"nodes":[55412,22538,64659,25211,11330,22185,17796,12412,3355],"orbits":[1,2,3],"x":-2697.32,"y":-11149},{"nodes":[38105,49455,13537,44299,6006,23939,59425,2508,51797,22141,857,58789,46275,13307,26614,3894],"orbits":[0,4,7],"x":-2697.32,"y":-10245.46},{"nodes":[63469,57967,50216,30834],"orbits":[0,2],"x":-2656.19,"y":-2063.25},{"nodes":[56857,10561,43426,45602,23265,25653,36109,64591,25683,14131,46091,2810,20701,36891,32705,13289,34207,35880,9843,8305],"orbits":[2,3,4,5,6,7,9,8],"x":6319.3716959661,"y":-14679.541217109},{"nodes":[3414],"orbits":[0],"x":-2625.49,"y":-8808.47},{"nodes":[23227,39564,3516],"orbits":[4,7],"x":-2620.07,"y":7375.23},{"nodes":[38663,49618,62039],"orbits":[0,7],"x":-2620.07,"y":7379.36},{"nodes":[55348],"orbits":[0],"x":-2620.07,"y":7389.42},{"nodes":[13279],"orbits":[0],"x":-2620.07,"y":7921.63},{"nodes":[37967],"orbits":[0],"x":-2595.86,"y":24.3},{"nodes":[47284],"orbits":[0],"x":-2588.8,"y":-8604.12},{"nodes":[1865,54934,15494,43584],"orbits":[0,2],"x":-2568.32,"y":3948.16},{"nodes":[8493],"orbits":[0],"x":-2554.96,"y":10828.42},{"nodes":[42177,5049,43183,11153,49231],"orbits":[0,7],"x":-2553.76,"y":5504.65},{"nodes":[41838,38103,25429,34084],"orbits":[1,2,7],"x":-2541.03,"y":-1462.22},{"nodes":[3332],"orbits":[0],"x":-2530.04,"y":-8376.52},{"nodes":[53396,64370,45923,52319],"orbits":[6],"x":-2522.24,"y":-1450.05},{"nodes":[51921],"orbits":[6],"x":-2502.19,"y":3479.47},{"nodes":[59442],"orbits":[0],"x":-2496.77,"y":-4970.02},{"nodes":[18101],"orbits":[0],"x":-2496.26,"y":-5249.94},{"nodes":[44850],"orbits":[0],"x":-2494.67,"y":-5247.26},{"nodes":[15801],"orbits":[0],"x":-2494.45,"y":-5536.38},{"nodes":[5920,52574,55478,48006,33604],"orbits":[0,2,7],"x":-2481,"y":3401.68},{"nodes":[32523],"orbits":[0],"x":-2460.75,"y":-3489.54},{"nodes":[58930,52429,6294,4847,14934,858,58387,52454,46604,2138,1546,38827,31890,25745,21081],"orbits":[2,3,4,5,7],"x":-2457.53,"y":-3479.87},{"nodes":[35745,12601,483,50908],"orbits":[0,2],"x":-2431.32,"y":-2692.66},{"nodes":[27992],"orbits":[0],"x":-2415.33,"y":11530.75},{"nodes":[23373,23428,47623,53895,17026,17303,38570],"orbits":[2,3,7],"x":-2399.07,"y":11558.76},{"nodes":[5710,14923,46325,33556,55473,43164,1207,13397,39581,6839],"orbits":[0,4,7],"x":-2393.09,"y":1033.71},{"nodes":[61042],"orbits":[0],"x":-2364.29,"y":-8977.68},{"nodes":[11679],"orbits":[0],"x":-2364.29,"y":-7995.11},{"nodes":[54453,19006,39461,229,46365],"orbits":[0,2],"x":-2362.28,"y":-9378.04},{"nodes":[38856],"orbits":[6],"x":-2351.05,"y":-3487.38},{"nodes":[39207,33518,37519,17045,32564,63579,55131],"orbits":[0,4,7],"x":-2309.42,"y":8451.88},{"nodes":[28950],"orbits":[0],"x":-2308.21,"y":-1862.64},{"nodes":[46358,50423,59376],"orbits":[6],"x":-2291.85,"y":-4007.49},{"nodes":[59438],"orbits":[0],"x":-2280.15,"y":-5538.98},{"nodes":[59413],"orbits":[0],"x":-2250.63,"y":-4971.77},{"nodes":[19240],"orbits":[0],"x":-2241.38,"y":-4242.75},{"nodes":[13241],"orbits":[6],"x":-2221.54,"y":3539.9},{"nodes":[56783],"orbits":[0],"x":6756.5616959661,"y":-15234.651217109},{"nodes":[53589],"orbits":[0],"x":-2199.44,"y":3805.96},{"nodes":[17584,28446,12430,61067,1143,58170],"orbits":[2],"x":-2188.85,"y":-968.66},{"nodes":[28718],"orbits":[0],"x":-2187.5,"y":-962.97},{"nodes":[54521],"orbits":[0],"x":-2171.82,"y":-10395.75},{"nodes":[48670],"orbits":[6],"x":-2134.26,"y":3688.8},{"nodes":[6714,5066,51788,42583,10499],"orbits":[2],"x":-2097.34,"y":4206.32},{"nodes":[1913,4665,61534,7721,64683,41031,23570,36709,63393],"orbits":[0,4,7],"x":-2092.78,"y":1554.69},{"nodes":[10772,21468,2119,39274,53505],"orbits":[0,2,3],"x":-2087.68,"y":7594.08},{"nodes":[38430],"orbits":[0],"x":-2087.37,"y":4208.07},{"nodes":[2864],"orbits":[0],"x":-2086.96,"y":8229.42},{"nodes":[48581,15969,41129,24338,15838,33242,13387],"orbits":[3,4,5,6],"x":-2076.24,"y":-4701.25},{"nodes":[1543,14096,44293],"orbits":[1,2],"x":-2074.7,"y":-4534.37},{"nodes":[54232],"orbits":[0],"x":-2059.23,"y":2453.77},{"nodes":[44372,25829,57791,52229],"orbits":[0,2],"x":-2012.26,"y":-7643.07},{"nodes":[41646],"orbits":[0],"x":-2012.03,"y":4519.75},{"nodes":[28860,56104,14091,23993,8115,36449,42981,52684],"orbits":[1,2,3,4,7],"x":-2012.03,"y":4750.59},{"nodes":[58674,17867,37092,55817],"orbits":[7],"x":-1966.11,"y":4165.53},{"nodes":[2397,54437,16111,5324,46268],"orbits":[0,7],"x":-1955.87,"y":11130.6},{"nodes":[43791,53320,16385,41651,5098],"orbits":[2,3],"x":-1945.48,"y":5858.53},{"nodes":[3367],"orbits":[0],"x":-1941.19,"y":-330.33},{"nodes":[20119,18160,15809,26945,31175,22783,30720,54036,17501,18485],"orbits":[0,2,3,7],"x":-1940.55,"y":-8386.27},{"nodes":[39087],"orbits":[0],"x":-1940.44,"y":-177.34},{"nodes":[23960],"orbits":[0],"x":-1938.69,"y":-17},{"nodes":[26178],"orbits":[0],"x":-1938.53,"y":141.45},{"nodes":[62152],"orbits":[0],"x":-1936.2,"y":295.6},{"nodes":[50626,32597,12777,3918,54708,59695],"orbits":[2],"x":-1927.77,"y":-1422.19},{"nodes":[44948],"orbits":[0],"x":-1923.59,"y":-1417.27},{"nodes":[7424,27491,1823,36994,29432,4061,3471,34531,25363,44098],"orbits":[0,4,7],"x":-1909.32,"y":-6475.67},{"nodes":[3041,47555,53697,10156,59795],"orbits":[3,5,6],"x":-1892.34,"y":-3294.04},{"nodes":[13942,65023,18186,6626,32354,34433,24009,46475,16744,4716,24748],"orbits":[0,2,3,4],"x":-1863.48,"y":6665.33},{"nodes":[3685,55700,44983,32151],"orbits":[2,4,7],"x":-1788.73,"y":10569},{"nodes":[7628],"orbits":[6],"x":-1769.02,"y":3906.89},{"nodes":[33369],"orbits":[0],"x":-1760.47,"y":8417.92},{"nodes":[61170,25763,27186,62963],"orbits":[1,2,7],"x":-1731.48,"y":-9989.29},{"nodes":[43647,32727,53524,32507,12851,57555,52973,37608],"orbits":[0,2,4,7],"x":-1682.34,"y":-9147.25},{"nodes":[3999,9737,59480,36522,37665,4577,42410,24813,20397,35739,26356,15590,57863,8556],"orbits":[0,4,7],"x":-1653.23,"y":9760.91},{"nodes":[56388,21096,57616,63360,18801,62258,11752,62455],"orbits":[0,4,5,7],"x":-1626.68,"y":7851.58},{"nodes":[1220],"orbits":[0],"x":-1614.94,"y":-5019.94},{"nodes":[6655],"orbits":[2],"x":-1610.62,"y":8920.12},{"nodes":[35015],"orbits":[0],"x":-1587.62,"y":8880.27},{"nodes":[36286,14033,41130,34553,8397],"orbits":[1,2,7],"x":-1573.72,"y":-4956.19},{"nodes":[15885],"orbits":[0],"x":-1545.44,"y":-7995.13},{"nodes":[47796,62640,38501,27108,24880,17294,27501,19330,45916,34340,16168,45969,25374],"orbits":[2,4,5,6],"x":-1533.68,"y":2648.54},{"nodes":[50084],"orbits":[0],"x":-1527.89,"y":-734.8},{"nodes":[3936],"orbits":[0],"x":-1525.89,"y":733.41},{"nodes":[36358,19112,12367,3492,60313,56956,54632,36507],"orbits":[0,2,3],"x":-1522.24,"y":-7351.57},{"nodes":[35720,7258,11861,3281],"orbits":[0,7],"x":-1513.28,"y":-2332.55},{"nodes":[39416],"orbits":[0],"x":-1509.87,"y":-10892.06},{"nodes":[58718],"orbits":[0],"x":-1482.46,"y":8698.1},{"nodes":[53853,36170,28693,49280,57320],"orbits":[0,2,7],"x":-1456.07,"y":3778.76},{"nodes":[45497],"orbits":[0],"x":-1446.33,"y":-10165.59},{"nodes":[17057,22784,17025,13515,14601],"orbits":[1,2,7],"x":-1446.33,"y":-9722.75},{"nodes":[34058],"orbits":[0],"x":-1432.94,"y":-4703.73},{"nodes":[4345,14598,50837,43979,26926,45333,59781],"orbits":[2,3],"x":-1411.57,"y":-10845.83},{"nodes":[40336],"orbits":[0],"x":-1410.85,"y":8880.27},{"nodes":[56666],"orbits":[0],"x":-1406.42,"y":2428.11},{"nodes":[38646],"orbits":[0],"x":-1397.89,"y":957.2},{"nodes":[13855],"orbits":[0],"x":-1396.89,"y":-954.59},{"nodes":[42680],"orbits":[0],"x":-1385.44,"y":-8272.26},{"nodes":[54099],"orbits":[0],"x":-1367.15,"y":10828.42},{"nodes":[17150,23888,29399,7390,53647,51446,19750],"orbits":[0,3],"x":-1367.15,"y":11595},{"nodes":[44707,32885,54785,51735,6689,45599],"orbits":[0,2,4,7],"x":-1349.52,"y":4972.79},{"nodes":[17696],"orbits":[0],"x":-1349.52,"y":5917.08},{"nodes":[8349,56564,42077,31644,49235,14739,2102],"orbits":[0,2],"x":-1322.31,"y":-4290.85},{"nodes":[39886],"orbits":[0],"x":-1309.39,"y":-3298.79},{"nodes":[65322],"orbits":[0],"x":-1305.68,"y":8391.66},{"nodes":[47709],"orbits":[0],"x":-1305.68,"y":8698.1},{"nodes":[47175],"orbits":[0],"x":-1271.19,"y":733.1},{"nodes":[61525],"orbits":[0],"x":-1245.18,"y":-728.9},{"nodes":[23450,558,23091,63021,11366,39515,39228,62603,19715,46300,52774,57832,34290,5084,35324,34927],"orbits":[0,2,3,4,5],"x":-1218.9,"y":-11527.92},{"nodes":[63814],"orbits":[0],"x":-1200.68,"y":8879.97},{"nodes":[20495],"orbits":[0],"x":-1178.84,"y":-2058.22},{"nodes":[54818],"orbits":[0],"x":-1170.69,"y":8229.42},{"nodes":[47157,516,7201,61347,64488,48215],"orbits":[0,7],"x":-1169.57,"y":7550.25},{"nodes":[13333,1091,1700,48699],"orbits":[1,2,7],"x":-1161.05,"y":-9989.29},{"nodes":[13425],"orbits":[0],"x":-1137.16,"y":8698.1},{"nodes":[28492],"orbits":[0],"x":-1099.85,"y":11095.71},{"nodes":[45885],"orbits":[0],"x":-1051.9,"y":-10395.75},{"nodes":[40043,9857,55231,37361,54990],"orbits":[1,2,7],"x":-1048.42,"y":4248.9},{"nodes":[315],"orbits":[0],"x":-1032.12,"y":8879.97},{"nodes":[33216],"orbits":[2],"x":-1009.12,"y":8919.8},{"nodes":[13882],"orbits":[0],"x":-962.41,"y":-7706.15},{"nodes":[18086,32427,62844,24655,42127,41573,4456,14363,61338,4776,7333],"orbits":[0,2,3,4],"x":-949.03,"y":-5546.35},{"nodes":[51194,24060,3091,18793,33639,24087,8782],"orbits":[1,2,3,7],"x":-831.53,"y":-7676.31},{"nodes":[46343],"orbits":[0],"x":-767.04,"y":5189.25},{"nodes":[18407],"orbits":[0],"x":-752.96,"y":-2537.92},{"nodes":[13359,8382,61863,42045,50535,10612,31943],"orbits":[2,3],"x":-692.16,"y":-10845.95},{"nodes":[18158],"orbits":[0],"x":-9473.5114156951,"y":-13344.137033218},{"nodes":[58714,29514,21077,3109,36169,354,48429,52274,39431],"orbits":[0,3,4],"x":-617.1,"y":6556.71},{"nodes":[49512],"orbits":[0],"x":-613.84,"y":-7995.13},{"nodes":[35387],"orbits":[0],"x":-612.84,"y":-7781.69},{"nodes":[22439,44498,25101,52199,43139,65248,39752,56409,38068,5936],"orbits":[0,3,4],"x":-612.8,"y":-8637.76},{"nodes":[15182],"orbits":[0],"x":-593.45,"y":8229.42},{"nodes":[52003],"orbits":[2],"x":-509.65,"y":-10901.37},{"nodes":[38270,23724,7275,29402,4046,8875,50687],"orbits":[1,2,3,4,7],"x":-484.77,"y":9710.46},{"nodes":[63484],"orbits":[0],"x":-9304.0614156951,"y":-13507.497033218},{"nodes":[22821,22314],"orbits":[0,7],"x":-478.3,"y":-3316.19},{"nodes":[51184],"orbits":[0],"x":-478.3,"y":-3030.38},{"nodes":[3823,60230,51968,51335,64046,45522,5726,58362,10192,55909],"orbits":[0,1,3,4,5,7],"x":-478.24,"y":-3752.19},{"nodes":[56935],"orbits":[0],"x":-478.02,"y":-4703.73},{"nodes":[22419],"orbits":[0],"x":-478.01,"y":-2158.22},{"nodes":[6554],"orbits":[0],"x":-477.99,"y":-7622.1},{"nodes":[55066,19796,15899,18308,21721,21627,9290,19129,62194],"orbits":[2,3,4,7],"x":-477.54,"y":10441.93},{"nodes":[7049,25711,31566,24766,22556,11257,10271,58038,35028,51974],"orbits":[0,2,3],"x":-466.62,"y":8827.24},{"nodes":[39476],"orbits":[0],"x":-465.64,"y":-7778.58},{"nodes":[50383],"orbits":[0],"x":-458.18,"y":-9486.35},{"nodes":[29391,50715,61354,29800],"orbits":[2,3,7],"x":-429.99,"y":-9489.3},{"nodes":[47363,13708,9164,25513,51825,47856,32561],"orbits":[2,3,4,5,6],"x":-420.12,"y":4842.33},{"nodes":[62588],"orbits":[0],"x":-405.01,"y":3700.21},{"nodes":[44405],"orbits":[0],"x":-382.9,"y":-7264.94},{"nodes":[14997],"orbits":[0],"x":-376.02,"y":4798.23},{"nodes":[55807,6686,1922,41965,1755,18845],"orbits":[0,2,7],"x":-374.23,"y":-2574.13},{"nodes":[32976,34202,14428,49285,6287,38776,57816,364],"orbits":[1,2,3,4,7],"x":-344.33,"y":11065.56},{"nodes":[23907],"orbits":[0],"x":-317.61,"y":-7755.36},{"nodes":[36564,17754,24039,46644,18348,25239,61267,13174,34419,19482,39470,770,46016,8854,7793,64379,63894,23880,24135,32699],"orbits":[6,5,9,8],"x":-9132.2814156951,"y":-12579.507033218},{"nodes":[53975,55104,33254,19125],"orbits":[1,2,7],"x":-296.21,"y":-5775.53},{"nodes":[28510,61438,42350],"orbits":[6],"x":-262.23,"y":3156.44},{"nodes":[5407],"orbits":[0],"x":-257.48,"y":2491.06},{"nodes":[934,9825,12526],"orbits":[4,3],"x":-248.37,"y":7972.75},{"nodes":[14122],"orbits":[0],"x":-229.01,"y":-7281.87},{"nodes":[60878],"orbits":[0],"x":-211.59,"y":-7418.46},{"nodes":[21560],"orbits":[0],"x":-204.43,"y":-7142.42},{"nodes":[44605,2455,48588,13081],"orbits":[5],"x":-203.43,"y":2592.67},{"nodes":[17044],"orbits":[0],"x":-191.9,"y":-7617.42},{"nodes":[57039,14572,11037],"orbits":[3],"x":-152.71,"y":3700.23},{"nodes":[29328,43201,43383,37450],"orbits":[4],"x":-150.31,"y":3572.61},{"nodes":[59779],"orbits":[0],"x":-133.15,"y":1690.41},null,{"nodes":[35492,30523,11376,50720,34199,43557],"orbits":[1,3,4,5,7],"x":-73.93,"y":-9897.76},{"nodes":[44871],"orbits":[3],"x":-30.93,"y":-1405.7},{"nodes":[46819],"orbits":[0],"x":-0.88,"y":-7031.82},{"nodes":[59362],"orbits":[0],"x":0,"y":-10395.75},{"nodes":[29009],"orbits":[0],"x":0,"y":-9772.2},{"nodes":[5314],"orbits":[4],"x":0,"y":-9671.2},{"nodes":[61419],"orbits":[0],"x":0,"y":-7995.13},{"nodes":[8616],"orbits":[0],"x":0,"y":-5955.17},{"nodes":[57710],"orbits":[6],"x":0,"y":-4700.35},{"nodes":[22290,5501,48821,15618,32404],"orbits":[0,2,3],"x":0,"y":-4439.9},{"nodes":[29502,47307,36302,3242,13769,59636,48007],"orbits":[0,2,7],"x":0,"y":-3031.45},{"nodes":[54447],"orbits":[0],"x":0,"y":-1490.58},{"nodes":[52125],"orbits":[0],"x":0.13,"y":10105.93},{"nodes":[2847],"orbits":[0],"x":0.13,"y":10828.42},{"nodes":[11337,29369,23427,47270,52799,60515,44455,19955,62914,41669,55250,56649,41972,17380],"orbits":[0,1,3,4],"x":0.44,"y":-11452.46},{"nodes":[40691,36746,25893,51169,43576,14324,1468,7971],"orbits":[2,3,4,7],"x":0.82,"y":-6450.52},{"nodes":[54417,49657],"orbits":[6],"x":1.25,"y":3822.38},{"nodes":[10247,28370],"orbits":[6],"x":1.63,"y":3822.38},{"nodes":[50986],"orbits":[0],"x":1.95,"y":1469.82},{"nodes":[52442,14254,97],"orbits":[2],"x":1.95,"y":2418.36},{"nodes":[47150,38779,44836],"orbits":[2],"x":1.95,"y":2829.7},{"nodes":[48635],"orbits":[0],"x":1.95,"y":6250.78},{"nodes":[21755],"orbits":[0],"x":1.95,"y":7013.94},{"nodes":[57805,43444,7788],"orbits":[4,7],"x":3.72,"y":5712},{"nodes":[38003,28361,47782],"orbits":[4,7],"x":4.1,"y":5712},{"nodes":[63526],"orbits":[0],"x":6.24,"y":5223.21},{"nodes":[44176,16618,10273,49696,42280,24511,45272,21205,57047,35688,38138,45278,4492],"orbits":[0,5,7],"x":7.01,"y":11943.01},{"nodes":[54127],"orbits":[0],"x":8.31,"y":8229.42},{"nodes":[54282],"orbits":[3],"x":8.31,"y":9742.42},{"nodes":[4739],"orbits":[3],"x":28.94,"y":-1404.7},{"nodes":[59915],"orbits":[0],"x":136.86,"y":1689.33},{"nodes":[41210,43578,59028,8092],"orbits":[4],"x":150.01,"y":3572.63},{"nodes":[50609,14926,11916],"orbits":[3],"x":151.5,"y":3700.21},{"nodes":[11311,38057,34061,56910],"orbits":[5],"x":225.42,"y":2596.07},{"nodes":[27779],"orbits":[0],"x":239.13,"y":-10147.55},{"nodes":[16538,9217,61281,47733,5108,44330],"orbits":[0,2,3],"x":260.71,"y":6565.73},{"nodes":[10694],"orbits":[0],"x":-8561.6214156951,"y":-13001.437033218},{"nodes":[7741,42500,59881],"orbits":[6],"x":262.02,"y":3155.84},{"nodes":[17340,40341,62051],"orbits":[4,3],"x":265.15,"y":7972.57},{"nodes":[26648,22565,17994,24256,63541],"orbits":[2],"x":266.8,"y":10482.93},{"nodes":[2461],"orbits":[0],"x":273.71,"y":2491.06},{"nodes":[34367],"orbits":[0],"x":275.93,"y":-5926.79},{"nodes":[10398,3472,56640,26682],"orbits":[0,2],"x":310.14,"y":-7336.21},{"nodes":[30346,34006,15408,29695,43736,6338],"orbits":[0,2,7],"x":371.9,"y":-2574.13},{"nodes":[58090],"orbits":[0],"x":399.3,"y":-5702.27},{"nodes":[1477],"orbits":[0],"x":407.71,"y":3700.23},{"nodes":[48774],"orbits":[0],"x":410.9,"y":-6145.21},{"nodes":[4017,12918,26447,10079,49633],"orbits":[0,2],"x":418.52,"y":-9235.2},{"nodes":[517],"orbits":[0],"x":419.3,"y":-4284.19},{"nodes":[45570,43713,3051,35602,27009,30459],"orbits":[0,1,2,7],"x":452.02,"y":-9772.2},{"nodes":[56216],"orbits":[0],"x":472.38,"y":-2158.22},{"nodes":[14666,9642,17973,4748,61027],"orbits":[0,3,7],"x":480.3,"y":-3752.19},{"nodes":[39037],"orbits":[0],"x":486.61,"y":-4703.51},{"nodes":[2254],"orbits":[0],"x":486.99,"y":-3030.38},{"nodes":[4113,36782,55572,44179],"orbits":[0,7],"x":494.7,"y":-8434.59},{"nodes":[1151,4627,57626],"orbits":[7],"x":494.7,"y":-8404.42},{"nodes":[3025],"orbits":[0],"x":497.14,"y":-7995.13},{"nodes":[44765,22533,11066,26663,32233],"orbits":[0,2,3,7],"x":502.65,"y":8723.77},{"nodes":[27492],"orbits":[0],"x":538.54,"y":-5918.05},{"nodes":[45576,51944,55060,43829,49406,47683,51728,33037,6505],"orbits":[0,2,3,4,5,7],"x":541.38,"y":9564.7},{"nodes":[22691],"orbits":[0],"x":552.41,"y":-4284.19},{"nodes":[56978],"orbits":[0],"x":610.22,"y":8229.3},{"nodes":[63267,65424,4377,45488,50273,47893,57774,2394,3131],"orbits":[0,2,3],"x":615.53,"y":5034.86},{"nodes":[8872],"orbits":[0],"x":615.53,"y":5034.86},{"nodes":[34813,7218,62505,32436,60203,472,3744,5332],"orbits":[1,2,3,4,7],"x":624.45,"y":11228.41},{"nodes":[13909,31037,34866,40985,62679],"orbits":[2],"x":637.55,"y":-6943.69},{"nodes":[13542],"orbits":[0],"x":664.82,"y":-6148.06},{"nodes":[21540],"orbits":[0],"x":682.79,"y":-5708.98},null,{"nodes":[15984],"orbits":[0],"x":728.79,"y":-10884.25},{"nodes":[19223,25213,37872,21871,51847,33974,31189,64665,26194,53166,28863],"orbits":[0,4,7],"x":729.71,"y":7013.94},{"nodes":[50150,11873,37279,41159,27434,51234,15991],"orbits":[2,3],"x":743.22,"y":-10817.67},{"nodes":[9485],"orbits":[0],"x":756.52,"y":-2537.92},{"nodes":[34030,42614,25594,13634,47441,61992],"orbits":[0,1,2,7],"x":776.04,"y":-7570.94},{"nodes":[27658],"orbits":[0],"x":787.35,"y":-5929.12},{"nodes":[7104,54733,13123,62723,14258],"orbits":[2,4,7],"x":825.93,"y":-8807.18},{"nodes":[15083],"orbits":[0],"x":905.73,"y":-11253.83},{"nodes":[25619,42354,57196,23702,43562,3660,63445,59501],"orbits":[0,2,3],"x":924.86,"y":10235.46},{"nodes":[35653],"orbits":[0],"x":940.85,"y":11379.02},{"nodes":[58109],"orbits":[0],"x":1010.78,"y":4639.54},{"nodes":[22271],"orbits":[0],"x":1029.73,"y":-11468.6},{"nodes":[17711],"orbits":[0],"x":1057.83,"y":-5957.03},{"nodes":[46124,63009,37593,63739],"orbits":[0,2,7],"x":1060.36,"y":-5120.17},{"nodes":[40783],"orbits":[0],"x":1061.08,"y":-5546.35},{"nodes":[38732],"orbits":[0],"x":1063.41,"y":-7995.13},{"nodes":[40345,42290,52254,37991],"orbits":[7],"x":1070.74,"y":-9412.83},{"nodes":[50540],"orbits":[0],"x":1073.28,"y":-9540.92},{"nodes":[36639,32009,36814,16499],"orbits":[7],"x":1075.8,"y":-9669},{"nodes":[60685],"orbits":[0],"x":1089.99,"y":-3001.45},{"nodes":[18651],"orbits":[0],"x":1129.94,"y":-11238.26},{"nodes":[55554],"orbits":[0],"x":1139.73,"y":-11659.12},{"nodes":[33180,11788,14355,60269,8483,46989,6588],"orbits":[0,7],"x":1149.31,"y":-6643.67},{"nodes":[27853,59289,3365,52576,64550,22532],"orbits":[2,7],"x":1152.97,"y":4158.69},{"nodes":[35046],"orbits":[0],"x":1168.19,"y":-2023.36},{"nodes":[55802],"orbits":[0],"x":1168.66,"y":10828.42},{"nodes":[3717],"orbits":[0],"x":1168.66,"y":11146.25},{"nodes":[60488],"orbits":[0],"x":1170.11,"y":4170.02},{"nodes":[21274],"orbits":[0],"x":1188.06,"y":8229.3},{"nodes":[57190,27859,38694,38763,22188],"orbits":[1,7],"x":1188.06,"y":8669.63},{"nodes":[62237,59281,14394,1221,50124,35743,60116],"orbits":[0,2,3,4],"x":1234.8,"y":5027.55},{"nodes":[62677],"orbits":[0],"x":1235.03,"y":-10395.55},{"nodes":[26905],"orbits":[3],"x":1247.13,"y":-11855.75},{"nodes":[11736,8821,28975],"orbits":[3,4,6],"x":1249.73,"y":-11514.66},{"nodes":[17107],"orbits":[0],"x":1264.03,"y":-7385.9},{"nodes":[44683],"orbits":[0],"x":1270.43,"y":-728.84},{"nodes":[50459],"orbits":[0],"x":1274.68,"y":735.85},{"nodes":[1826],"orbits":[0],"x":1308.1,"y":-3294.7},{"nodes":[20686],"orbits":[0],"x":1348.97,"y":2324.75},{"nodes":[44566],"orbits":[0],"x":1353.57,"y":9646.22},{"nodes":[65468],"orbits":[0],"x":1366.53,"y":11380.85},{"nodes":[63863,27785],"orbits":[0,7],"x":1367.44,"y":-11645.12},{"nodes":[36293,55708],"orbits":[0,7],"x":1381.34,"y":-11239.64},{"nodes":[13828],"orbits":[0],"x":1402.97,"y":958.27},{"nodes":[48030,6715,62436,116,3215,41372,44359],"orbits":[0,7],"x":1423.72,"y":-4183.63},{"nodes":[47759],"orbits":[0],"x":1436.89,"y":-10147.25},{"nodes":[3995,12311,64119,18115,48856,17882,33596],"orbits":[0,7],"x":1450.76,"y":7777.63},{"nodes":[53996,17686,43575,41512],"orbits":[7],"x":1474.81,"y":3454.96},{"nodes":[42736],"orbits":[0],"x":1484.79,"y":-2826.54},{"nodes":[60741,49804,6950,24035,33922],"orbits":[2],"x":1505.67,"y":-5546.35},{"nodes":[10909,16489,28556],"orbits":[6,3],"x":1516.21,"y":2614.41},{"nodes":[56651],"orbits":[0],"x":1535.77,"y":727.98},{"nodes":[19998],"orbits":[0],"x":1559.69,"y":11253.56},{"nodes":[11672],"orbits":[0],"x":1563.03,"y":-4703.51},{"nodes":[2486,11410,22976,19341,56118,61487,36596,8440,63732,45013,58884],"orbits":[0,1,4,6,7],"x":1569.52,"y":6131.98},{"nodes":[48401,15507,1140],"orbits":[2,3,6],"x":1574.14,"y":1708.94},{"nodes":[39116,9941,38888],"orbits":[7,3],"x":1598.81,"y":3240.19},{"nodes":[42076,46972,17706],"orbits":[0,2,7],"x":1600.36,"y":-3445.28},{"nodes":[54783],"orbits":[1],"x":1609.09,"y":-3526.5},{"nodes":[58783,37190,35855,48583,26520,35859],"orbits":[0,2],"x":1632.43,"y":4050.7},{"nodes":[48846],"orbits":[0],"x":1657.19,"y":9770.52},{"nodes":[2978],"orbits":[0],"x":1663.34,"y":10309.59},{"nodes":[6266,60085,15839,11667,1915,48617],"orbits":[1,7],"x":1670.41,"y":10295.58},{"nodes":[30117],"orbits":[0],"x":-7077.2916959661,"y":-15153.531217109},{"nodes":[25807],"orbits":[0],"x":1694.19,"y":11468.66},{"nodes":[30555],"orbits":[0],"x":1695.71,"y":-2698.11},{"nodes":[27234],"orbits":[0],"x":1713.31,"y":-4986.63},{"nodes":[4203],"orbits":[0],"x":1714.69,"y":-2969.93},{"nodes":[14340],"orbits":[0],"x":1734.98,"y":4453},{"nodes":[58939,26319,30990,44608],"orbits":[0,2],"x":1737.77,"y":4778},{"nodes":[2732,65393,52241,58115,94,16790],"orbits":[1,2,7],"x":1746.18,"y":-5035.12},{"nodes":[49691,31409,50437,32274,61106,59653,35987],"orbits":[0,2,4,7],"x":1759.97,"y":1320.44},{"nodes":[48551],"orbits":[0],"x":-7001.4816959661,"y":-14067.501217109},{"nodes":[15876,7947,26061,4579],"orbits":[2],"x":1776.09,"y":-10680.12},{"nodes":[17672],"orbits":[0],"x":1797.54,"y":-7995.13},{"nodes":[11230],"orbits":[0],"x":1797.54,"y":-7675.13},{"nodes":[48290,49088,47155,55180,17394,45530,3443,63545],"orbits":[0,2,3,7],"x":1798.44,"y":-7166.71},{"nodes":[20140],"orbits":[0],"x":1800.67,"y":-8634.27},{"nodes":[20861,8522,26236,38069,45350,338,24491,3438,18856],"orbits":[1,2,3,4,7],"x":1802.15,"y":-8810.16},{"nodes":[7576,33866,10364,42857,20024,44223,55342,17248,10429,49220],"orbits":[0,1,2,4,5,7],"x":1821.35,"y":-1202.94},{"nodes":[39298],"orbits":[0],"x":1824.91,"y":8228.37},{"nodes":[10998,9736,61396,61318,2843,1019,45037,21438,62235],"orbits":[0,2,3,4,5,7],"x":1826.63,"y":8513.85},{"nodes":[7062,16680,48137,33887,43155,31763,33415,6178],"orbits":[4],"x":1857.66,"y":11423.83},{"nodes":[64726,19573,17553,46296,38479,19342,27493],"orbits":[1,2,3,4,7],"x":1899.93,"y":6744.84},{"nodes":[53683],"orbits":[0],"x":1904.34,"y":11524.96},{"nodes":[44430],"orbits":[0],"x":1949.13,"y":11357.83},{"nodes":[44343,55276,52980,17366,18970,29361,11938,39964,1215,48198],"orbits":[0,1,2,4,5,7],"x":1958.85,"y":-978.15},{"nodes":[33225],"orbits":[0],"x":1960.52,"y":-9606.62},{"nodes":[21779,9185,40760,60107,57204,47833],"orbits":[0,2],"x":1978.8,"y":-4255.94},{"nodes":[19779,63891,63074,42999,4925],"orbits":[1,2,3],"x":1999.54,"y":-11112.83},{"nodes":[35660,18548,62628,4313,35234,6789,28992],"orbits":[0,2,4,7],"x":2012.88,"y":865.02},{"nodes":[17726,11826],"orbits":[7],"x":2015.32,"y":2999.71},{"nodes":[11315],"orbits":[0],"x":2015.42,"y":9673.14},{"nodes":[64427,51892,44188,59387],"orbits":[0,2],"x":2081.9,"y":-8262.87},{"nodes":[23153,31112,56897,57785,63828,23996],"orbits":[0,7],"x":2082.55,"y":7631.77},{"nodes":[30082],"orbits":[0],"x":2092.43,"y":11575.37},{"nodes":[46554],"orbits":[0],"x":2107.3,"y":-10394.21},{"nodes":[41225,48611,4271,62887],"orbits":[0,2],"x":2107.3,"y":-9931.58},{"nodes":[47177],"orbits":[0],"x":2110.13,"y":-4703.51},{"nodes":[61768],"orbits":[0],"x":2157.18,"y":-9511.45},{"nodes":[61432],"orbits":[0],"x":2164.6,"y":11512.63},{"nodes":[56926,44255,14548,59541,10320,28573,15358,41905],"orbits":[0,2,3,7],"x":2165.23,"y":-6650.5},{"nodes":[2841,33059,39839,20205],"orbits":[0,2],"x":2192.99,"y":4717.44},{"nodes":[52703],"orbits":[0],"x":-6563.3716959661,"y":-13772.791217109},{"nodes":[48568],"orbits":[0],"x":2199.2,"y":3806.76},{"nodes":[49046],"orbits":[0],"x":2214.93,"y":-3836.38},{"nodes":[62159,59603,57110,46561],"orbits":[0,2,7],"x":2229.99,"y":-3149.3},{"nodes":[16460,43746,38143],"orbits":[2,3,6],"x":2235.52,"y":536.07},{"nodes":[57810],"orbits":[0],"x":2257.86,"y":-8717.37},{"nodes":[5961],"orbits":[0],"x":2260.4,"y":9939.27},{"nodes":[54675],"orbits":[0],"x":2281.59,"y":10332.05},{"nodes":[58329,31950,8569],"orbits":[6],"x":2292.18,"y":-3970.17},null,{"nodes":[39987,12419,18913,56063],"orbits":[0,2,3,7],"x":2317.51,"y":-5438.63},{"nodes":[40073],"orbits":[0],"x":2343.9,"y":-9085.31},{"nodes":[20744,33053,4844,50795,58013],"orbits":[1,7],"x":2377.83,"y":2986.75},{"nodes":[63926],"orbits":[0],"x":2393.91,"y":-9611.59},{"nodes":[26383,8415,26282,27667,23416,56162,65518,62388,30071,59342,47442,59822],"orbits":[6,5,9,8],"x":-6319.3716959661,"y":-14203.541217109},{"nodes":[53266],"orbits":[0],"x":2453.78,"y":-8312.45},{"nodes":[46224,24045,49799,45019],"orbits":[0,2],"x":2457.39,"y":3459.95},{"nodes":[26786,18882],"orbits":[0,5],"x":2459.2,"y":4266.46},{"nodes":[23764],"orbits":[0],"x":2459.21,"y":-3622.89},{"nodes":[5295],"orbits":[0],"x":2476.38,"y":9574.5},{"nodes":[50485,28229,8540,45230,22959],"orbits":[0,2],"x":2497.88,"y":-5053.36},{"nodes":[19288],"orbits":[0],"x":2503.68,"y":7415.67},{"nodes":[38814],"orbits":[0],"x":2503.68,"y":7792.67},{"nodes":[20387],"orbits":[0],"x":2504.3,"y":-8625.66},{"nodes":[43431,20779,50239,19224,32555,9535,24963,42169,61309,51850,37434],"orbits":[0,2,3,4,7],"x":2511.05,"y":8731.74},{"nodes":[63731],"orbits":[0],"x":2537.98,"y":11565.76},{"nodes":[58814],"orbits":[0],"x":2568.17,"y":10828.42},{"nodes":[29582,43923,19470,50328,10053,9458],"orbits":[0,2,3],"x":2573.06,"y":1485.46},{"nodes":[4850],"orbits":[0],"x":2577.55,"y":-4030.32},{"nodes":[11855,56999,44014,30829],"orbits":[0,2],"x":2590.36,"y":5169.65},{"nodes":[58002,55575,45086,34520,23738],"orbits":[0,2,3,7],"x":2590.88,"y":-7324.15},{"nodes":[17024],"orbits":[0],"x":2607.33,"y":-8878.62},{"nodes":[53196,12322,32135,35848,28625,46692,51509,9393],"orbits":[0,1,4,7],"x":2622.75,"y":6605.25},{"nodes":[35896],"orbits":[0],"x":2634.6,"y":-7995.13},{"nodes":[13738],"orbits":[0],"x":2641.65,"y":-9309.5},{"nodes":[52354],"orbits":[0],"x":2667.71,"y":11496.1},{"nodes":[31223],"orbits":[0],"x":-6075.3516959661,"y":-13772.791217109},{"nodes":[4157,55088,34168],"orbits":[7],"x":2694.54,"y":-2103.71},{"nodes":[53960],"orbits":[5],"x":2704.11,"y":-2329.78},{"nodes":[36479,36778,12925],"orbits":[4],"x":2724.74,"y":-2058.41},{"nodes":[61312,20831,29843,55397,44527,44875],"orbits":[0,2,4,7],"x":2727.45,"y":2024.66},{"nodes":[9020,244,41171,37767,6596,36341,35118],"orbits":[0,1,2,4,7],"x":2730.83,"y":11768.89},{"nodes":[35503],"orbits":[0],"x":2744.59,"y":-3760.9},{"nodes":[34233,14725,32545,16123],"orbits":[3,2],"x":2753.29,"y":-2001.95},{"nodes":[31745,3234,3624,10927,9272,18470,4447,12906],"orbits":[1,3,4,7],"x":2756.47,"y":5912.5},{"nodes":[13844],"orbits":[0],"x":2767.92,"y":0.42},{"nodes":[19104],"orbits":[0],"x":2770.83,"y":1599.66},{"nodes":[52568],"orbits":[0],"x":2776.83,"y":7019.78},{"nodes":[53560],"orbits":[0],"x":2785.02,"y":-8428.64},{"nodes":[34984,12661,44917,18895,703,10552],"orbits":[0,1,7],"x":2787.39,"y":-5900.44},{"nodes":[12465,30040,56016,65149,35594,26830],"orbits":[1,2,5,7],"x":2795.71,"y":10440.37},{"nodes":[13576],"orbits":[0],"x":2802.27,"y":-8676.29},{"nodes":[64352],"orbits":[0],"x":2806.74,"y":4311.96},{"nodes":[37372],"orbits":[0],"x":2810.3,"y":-9096.02},{"nodes":[12337],"orbits":[0],"x":2880.86,"y":9533.6},{"nodes":[25281,10677,56638,53935],"orbits":[1,2],"x":2886.44,"y":-3430.12},{"nodes":[7405],"orbits":[0],"x":2886.7,"y":-4100.44},{"nodes":[48585],"orbits":[0],"x":2890.88,"y":2251.96},{"nodes":[31517,11722,62431],"orbits":[0,2],"x":2898.16,"y":-5489.12},{"nodes":[13341,56841,18451,63255],"orbits":[0,2],"x":2899.54,"y":2850.56},{"nodes":[62779],"orbits":[0],"x":2918.45,"y":7099.38},{"nodes":[62230,19355,37974],"orbits":[6],"x":2922.78,"y":-10114.18},{"nodes":[39567,50816,50755,10159,4828,25026,36379,31977,19044,3567,33345,10314,61923,16256,53188],"orbits":[0,1,2,3,4,5],"x":2922.78,"y":-9973.75},{"nodes":[21336,15975,62984,58182,7344,26931],"orbits":[3,2],"x":2935.56,"y":-1694.84},{"nodes":[8975],"orbits":[0],"x":2939.76,"y":-2768.08},{"nodes":[44487,45137,39884,40271],"orbits":[7],"x":2946.52,"y":4969.56},{"nodes":[44345],"orbits":[0],"x":2947.79,"y":4537.32},{"nodes":[20504,52836,56806,11980,62341],"orbits":[0,4,7],"x":2995.2,"y":8568.45},{"nodes":[46157],"orbits":[0],"x":3017.04,"y":-8315.27},{"nodes":[3665],"orbits":[0],"x":3028.9,"y":6994.96},{"nodes":[50516,41447,31626,59661,13610,2814,26952,12245,19749],"orbits":[1,3,7],"x":3038.31,"y":11084.54},{"nodes":[38614,25827,55241,44201,27662],"orbits":[1,2,3],"x":3049.32,"y":-6418.35},{"nodes":[37806],"orbits":[0],"x":3052.85,"y":-8723.72},{"nodes":[42250],"orbits":[0],"x":3086.31,"y":5345.94},{"nodes":[40630],"orbits":[0],"x":3105.36,"y":2128.06},{"nodes":[6772,30695,13783,56472,22795,42781],"orbits":[0,2,4,7],"x":3109.38,"y":1336.95},{"nodes":[17118],"orbits":[0],"x":3112.88,"y":7440.94},{"nodes":[20049,30252,32818,48135,12750],"orbits":[0,7],"x":3112.88,"y":7857},{"nodes":[50192],"orbits":[0],"x":-5648.4816959661,"y":-14067.501217109},{"nodes":[32185],"orbits":[0],"x":3113.83,"y":7213.29},{"nodes":[63064,65437,30634,54413],"orbits":[3,2],"x":3116.47,"y":-1389.24},{"nodes":[26214],"orbits":[0],"x":3129.06,"y":-6970.48},{"nodes":[30047],"orbits":[0],"x":3144.14,"y":3080.1},{"nodes":[40068,53149,32683],"orbits":[4],"x":3145.56,"y":-1331.11},{"nodes":[56325],"orbits":[0],"x":3195.27,"y":2366.42},{"nodes":[3165],"orbits":[0],"x":-5560.9516959661,"y":-15153.501217109},{"nodes":[53965],"orbits":[0],"x":3203.89,"y":9325.66},{"nodes":[24825,34136,29479],"orbits":[5,3],"x":3203.92,"y":0.42},{"nodes":[48833],"orbits":[0],"x":3228.15,"y":4292.78},{"nodes":[57517],"orbits":[0],"x":3247.77,"y":3615.89},{"nodes":[4],"orbits":[0],"x":3249.41,"y":4552.82},{"nodes":[46034],"orbits":[0],"x":3255.08,"y":-5628.71},{"nodes":[55668],"orbits":[0],"x":3266.72,"y":-8000},{"nodes":[55420,30061,31908,5594,50107,50881],"orbits":[2],"x":3269.96,"y":-7564.13},{"nodes":[8785],"orbits":[0],"x":3272.71,"y":-7565.73},{"nodes":[29240],"orbits":[0],"x":3284.63,"y":-9003.35},{"nodes":[25170,19442,30820,8606],"orbits":[0,2,7],"x":3312.53,"y":4003.79},{"nodes":[13411],"orbits":[5],"x":3369.01,"y":-1178.15},{"nodes":[33946,34074,57227,23259,22864,57966],"orbits":[0,2,3,7],"x":3386.17,"y":9912.71},{"nodes":[16484],"orbits":[2],"x":3395.61,"y":6043.67},{"nodes":[32943,22368,47088,8789,16938,29930,63182,37266],"orbits":[0,2,4,7],"x":3395.61,"y":6863.03},{"nodes":[55429],"orbits":[0],"x":3398.9,"y":1369.34},{"nodes":[36630,60829,29941,28268],"orbits":[1,2,3],"x":3414.8,"y":3529.44},{"nodes":[19808],"orbits":[0],"x":3433.98,"y":1627.23},{"nodes":[57513],"orbits":[0],"x":3444.63,"y":-9280.49},{"nodes":[25557],"orbits":[6],"x":3446.89,"y":-7266.34},{"nodes":[21280],"orbits":[0],"x":3498.09,"y":2467.05},{"nodes":[41770,9441,5077,33080,43254,33400],"orbits":[0,2],"x":3507.9,"y":5460.57},{"nodes":[11578],"orbits":[0],"x":3512.67,"y":4752.05},{"nodes":[20837],"orbits":[0],"x":3537.82,"y":3734.46},{"nodes":[41029],"orbits":[0],"x":3541.56,"y":-6134.17},{"nodes":[28050],"orbits":[6],"x":3551.58,"y":2050.41},{"nodes":[31928,50574,19426,15443],"orbits":[0,2],"x":3553.55,"y":-5454.76},{"nodes":[5564],"orbits":[0],"x":3555.53,"y":4441.55},{"nodes":[21080,1869,27095,48658,14890],"orbits":[0,2,7],"x":3560.13,"y":-4198.58},{"nodes":[24812,56360,64643,27176],"orbits":[0,2],"x":3563.72,"y":-3733.75},{"nodes":[36997],"orbits":[0],"x":3599.3,"y":2962.09},{"nodes":[53539,46705,45650,9572,12822],"orbits":[0,2,3],"x":3607.08,"y":2672.84},{"nodes":[17548,14958,630,13419,31039],"orbits":[0,1,7],"x":3632.11,"y":-2981.28},{"nodes":[10671,23419,55930,5740,40687],"orbits":[2],"x":3636.66,"y":10787.37},{"nodes":[22049],"orbits":[0],"x":3638.69,"y":1581.38},{"nodes":[24239,55846,40213,24481],"orbits":[0,1],"x":3641.03,"y":-482.86},{"nodes":[62510,3985,43423,8697,30905,64140,51336,56818,38895,48660],"orbits":[0,2,3,4],"x":3650.57,"y":8506.92},{"nodes":[49473],"orbits":[0],"x":3660.16,"y":3626.42},{"nodes":[47754,23455,49740,55847,27274],"orbits":[0,1,7],"x":3668.09,"y":-8216.37},{"nodes":[63861,55947,13823,46088,62153,32054],"orbits":[3,2],"x":3689.45,"y":-9957.29},{"nodes":[25100],"orbits":[0],"x":3733.3,"y":5789.19},{"nodes":[25620,26804,55405,59909,30539,9083],"orbits":[0,1,7],"x":3771.31,"y":-7094.88},{"nodes":[10131],"orbits":[0],"x":3772.63,"y":-10338.81},{"nodes":[51048],"orbits":[0],"x":3772.84,"y":10291.5},{"nodes":[27761,5826],"orbits":[0,2],"x":3776.11,"y":2965.63},{"nodes":[61104],"orbits":[0],"x":3779.38,"y":3832.89},{"nodes":[39280,55568,44669,32951,14127,44690,41522],"orbits":[0,2,3],"x":3782.58,"y":-10845.24},{"nodes":[11838,10881,33112,36450],"orbits":[0,3,7],"x":3832.63,"y":-9003.35},{"nodes":[5257,55507,22359,9141,13748,38338,35760,16367,60692,5703],"orbits":[0,3,4,7],"x":3842.13,"y":-4910.29},{"nodes":[5702],"orbits":[0],"x":3849.74,"y":-1186.7},{"nodes":[38676,27910,53938,64056,36931],"orbits":[1,2,7],"x":3855.19,"y":-2510.92},{"nodes":[56045],"orbits":[0],"x":3856.59,"y":-2226.59},{"nodes":[44563,59053,54805],"orbits":[0,3,5],"x":3857.5,"y":-5882.32},{"nodes":[13379],"orbits":[0],"x":3866.11,"y":2806.15},{"nodes":[60505],"orbits":[0],"x":3888.73,"y":1790.7},{"nodes":[63585],"orbits":[0],"x":3915.95,"y":4292.71},{"nodes":[44612,9112,41538,55598,15644],"orbits":[0,1,3],"x":3917.46,"y":3195.79},{"nodes":[31855,37408,60738,46761],"orbits":[0,2,7],"x":3918.15,"y":449.43},{"nodes":[23961,10041,32799,30910,17600,8791,18519,59647,32096],"orbits":[0,2,3,7],"x":3926.82,"y":9716.85},{"nodes":[38459,61373,63610,5988,38568],"orbits":[1,2,3],"x":3926.84,"y":959.23},{"nodes":[33751,8810,12451],"orbits":[1,3,7],"x":3941.17,"y":7406.81},{"nodes":[14343],"orbits":[0],"x":3946.1,"y":8993.8},{"nodes":[18923],"orbits":[6],"x":3992.99,"y":6086.8},{"nodes":[46146,15829,55227],"orbits":[0,7],"x":3994,"y":-485.92},{"nodes":[32509,47614,3688,22219,52351,52260],"orbits":[0,2,7],"x":4031.85,"y":-6354.58},{"nodes":[13030],"orbits":[0],"x":4037.79,"y":5340.36},{"nodes":[43691,21746,65009,29517,32701],"orbits":[6],"x":4039.97,"y":0.42},{"nodes":[24647,61196],"orbits":[6],"x":4137.88,"y":-2406.01},{"nodes":[37220,50342,5227,17955,46402,51708],"orbits":[0,2,3,7],"x":4182.56,"y":6218.3},{"nodes":[36623,3628,64474,31630,10729],"orbits":[0,2],"x":4183.71,"y":-9861.17},{"nodes":[59651,47821,41654,41033,55872],"orbits":[3,2],"x":4188.77,"y":-7809.17},{"nodes":[54746],"orbits":[0],"x":4195.04,"y":9238},{"nodes":[41062,47677,14045,33848,31991,65176,36070,9472],"orbits":[0,4,5,6,7],"x":4216.28,"y":4693.55},{"nodes":[55],"orbits":[0],"x":4219.73,"y":5087.65},{"nodes":[38703,63525,8249,16816,53094],"orbits":[0,7],"x":4278.42,"y":10564.54},{"nodes":[8510],"orbits":[0],"x":4283.46,"y":5565.69},{"nodes":[44239,60083,55270],"orbits":[0,7],"x":4332.46,"y":-271.82},{"nodes":[9085],"orbits":[0],"x":4347,"y":6925.8},{"nodes":[51463,4364,36114,23360,23736,53566,17077],"orbits":[0,4,7],"x":4350.71,"y":7926.5},{"nodes":[50469],"orbits":[0],"x":4375.94,"y":0.42},{"nodes":[49110],"orbits":[0],"x":4385.38,"y":9460.25},{"nodes":[64851,15030,49545,45693,39658,18831,21324],"orbits":[0,2,7],"x":4386.25,"y":1960.69},{"nodes":[55938,41394,56844,40929,43633,40313,58363,10841],"orbits":[0,3,7],"x":4405.42,"y":-9374.35},{"nodes":[60974,1506,60324,42339,18744],"orbits":[2],"x":4414.61,"y":-8287.6},{"nodes":[12761,19156,53941,17367,62841,12249,17283],"orbits":[0,2,3],"x":4435.38,"y":-1892.44},{"nodes":[45481,29408,52765,34300,31888,13862],"orbits":[0,2],"x":4438.01,"y":-3100.56},{"nodes":[24922],"orbits":[0],"x":4451.73,"y":7751.52},{"nodes":[40918],"orbits":[0],"x":4468.06,"y":5319.67},{"nodes":[26068,37389,28061,35878,50884,53696,37644,46874,7449],"orbits":[0,2,3,7],"x":4480.65,"y":3149.72},{"nodes":[1773],"orbits":[0],"x":4488.81,"y":5009.54},{"nodes":[30562,13711,3203,8908,11032],"orbits":[0,2,7],"x":4520.4,"y":-6892.55},{"nodes":[36298],"orbits":[0],"x":4526.88,"y":5794.6},{"nodes":[33823],"orbits":[0],"x":4536.81,"y":-4967.55},{"nodes":[4519],"orbits":[0],"x":4542.03,"y":-5257.07},{"nodes":[20236],"orbits":[0],"x":4542.03,"y":-4689.37},{"nodes":[58932],"orbits":[0],"x":-3941.5251094136,"y":-15586.089541646},{"nodes":[27262],"orbits":[0],"x":4562.63,"y":9687.25},{"nodes":[51213],"orbits":[0],"x":4563.3,"y":4714.06},{"nodes":[50912,49461,21314,18818],"orbits":[0,2,7],"x":4597.23,"y":322.95},{"nodes":[28464],"orbits":[0],"x":4599.58,"y":-6751.84},{"nodes":[45193,4083,33815,35644,43677],"orbits":[0,2,3],"x":4605.3,"y":1275.23},{"nodes":[33979],"orbits":[0],"x":4648.31,"y":-8702.96},{"nodes":[11604],"orbits":[0],"x":4671.13,"y":-2696.8},{"nodes":[49661,49394,23786,33391,56330,39570],"orbits":[1,2,3,4,7],"x":4687.08,"y":7330.29},{"nodes":[3251],"orbits":[0],"x":4693.79,"y":-9892.16},{"nodes":[4059],"orbits":[0],"x":4703.02,"y":-8121.08},{"nodes":[4346],"orbits":[0],"x":4705.26,"y":-4974.35},{"nodes":[7782,48805,26563,4810,61905,8938,12778,33229,64996],"orbits":[1,3,4,7],"x":4748.75,"y":-10725.21},{"nodes":[6161],"orbits":[0],"x":4750.42,"y":-10827.13},{"nodes":[42460,11882,46182,33838,64747],"orbits":[0,4,7],"x":4766,"y":3895.65},{"nodes":[6912],"orbits":[0],"x":4782.59,"y":9204.08},{"nodes":[33292],"orbits":[0],"x":4784.23,"y":-9692.37},{"nodes":[20467,23244,29899,58312,49497,21792,16786,19001],"orbits":[1,3,7],"x":4786.73,"y":9130.06},{"nodes":[17702],"orbits":[0],"x":4788.07,"y":9831.08},{"nodes":[64650,35058,30210,38966],"orbits":[2],"x":4789.34,"y":6875.05},{"nodes":[1995],"orbits":[0],"x":4791.75,"y":2293.82},{"nodes":[61976],"orbits":[0],"x":4795.75,"y":6464.55},{"nodes":[62797],"orbits":[0],"x":-3677.4251094136,"y":-16234.729541646},{"nodes":[9510,16695,61926,1603],"orbits":[2],"x":4821.1,"y":-7752.56},{"nodes":[32040],"orbits":[0],"x":4825,"y":-7747.13},{"nodes":[7054,47009,37250,21142,55829,1420],"orbits":[2,7],"x":4849.31,"y":-3488.45},{"nodes":[34201],"orbits":[0],"x":4859.19,"y":8419.96},{"nodes":[38668,32664,27671,32681,5188],"orbits":[0,7],"x":4865.01,"y":-6372.1},{"nodes":[13724],"orbits":[4],"x":4872.03,"y":-4974.35},{"nodes":[23343,30392,13157,3775,28106,45244,58388,41016],"orbits":[0,2,3],"x":4874.52,"y":10455.42},{"nodes":[29763],"orbits":[0],"x":4889.32,"y":-7413.25},{"nodes":[39241],"orbits":[0],"x":-3593.3351094136,"y":-16051.419541646},{"nodes":[22152,15304,16466,40196],"orbits":[0,2],"x":4918.5,"y":-9036.21},{"nodes":[9586],"orbits":[4],"x":4931.31,"y":-4650.65},{"nodes":[13367,21713,50588,38969,6010],"orbits":[0,2],"x":4944.98,"y":-2386.46},{"nodes":[61356,12498,30341],"orbits":[0,7],"x":4953.65,"y":2387.3},{"nodes":[63888],"orbits":[0],"x":4955.38,"y":2861.7},{"nodes":[37695],"orbits":[0],"x":4989.84,"y":542.4},{"nodes":[50879,14211,43238,22972,44540],"orbits":[1,7],"x":4990.13,"y":5788.96},{"nodes":[43303],"orbits":[0],"x":4997.21,"y":-9613.09},{"nodes":[56729,26308,27017,21349],"orbits":[2],"x":5001.21,"y":7989.42},{"nodes":[57928],"orbits":[0],"x":5022.51,"y":-9397.47},{"nodes":[10382],"orbits":[0],"x":5026.31,"y":-8702.96},{"nodes":[20677],"orbits":[0],"x":5061.13,"y":-4971.48},{"nodes":[43877,51522,47895,56493],"orbits":[1,2,3],"x":5074.31,"y":-208.98},{"nodes":[38044,11813],"orbits":[7],"x":5074.6,"y":585.09},{"nodes":[64345,49968,63679,20008],"orbits":[1,2,7],"x":5085.86,"y":7486.56},{"nodes":[28142],"orbits":[0],"x":5094.15,"y":9900.68},{"nodes":[61263,59446,22115,4544],"orbits":[1,2,7],"x":5095.01,"y":174.43},{"nodes":[37946],"orbits":[0],"x":5112.65,"y":2295.51},{"nodes":[46782,53698,20916,59355],"orbits":[0,7],"x":5188.48,"y":-751.6},{"nodes":[9782],"orbits":[0],"x":5193.02,"y":-5200.3},{"nodes":[535],"orbits":[0],"x":5193.02,"y":-4742.69},{"nodes":[2446,50268,22851,37164,419,63400],"orbits":[2,3],"x":5214.31,"y":-8121.08},{"nodes":[63668,9069,42245,16024,49150,18167,29288],"orbits":[1,2,3],"x":5250.46,"y":-5999.69},{"nodes":[17788,23352,26085,2877,33570,28431,59,8611,20772,51142,36696,33141,58751,23710],"orbits":[6,9,8],"x":-3230.2751094136,"y":-15207.249541646},{"nodes":[49993,40632,48889,28038,3893,64434,56488],"orbits":[0,2,7],"x":5265.67,"y":5191.09},{"nodes":[50498],"orbits":[0],"x":5279.03,"y":-9458.27},{"nodes":[24210,26932,2200,35689,34543],"orbits":[0,2,7],"x":5279.5,"y":6677.73},{"nodes":[240],"orbits":[0],"x":5280.67,"y":-9450.66},{"nodes":[30456],"orbits":[0],"x":5286.04,"y":719.09},{"nodes":[39423,47635,53207,56914],"orbits":[1,2,3,7],"x":5288.98,"y":-7410.44},{"nodes":[17254,26596,14272],"orbits":[0,2,3],"x":5300.06,"y":-3797.31},{"nodes":[1953],"orbits":[0],"x":5316.81,"y":-1530.6},{"nodes":[9275,5704,62166,19337],"orbits":[0,2],"x":5320.34,"y":2650.99},{"nodes":[28021],"orbits":[0],"x":5324.92,"y":-5429.12},{"nodes":[34621],"orbits":[0],"x":5324.92,"y":-4513.87},{"nodes":[44684],"orbits":[0],"x":5328.27,"y":10118.54},{"nodes":[36759],"orbits":[0],"x":5333.76,"y":-6040.15},{"nodes":[54198],"orbits":[0],"x":5357.15,"y":9935.04},{"nodes":[40480],"orbits":[0],"x":5368.5,"y":-1842.95},{"nodes":[46961],"orbits":[0],"x":5371.78,"y":9762.63},{"nodes":[39569,9046,45609,56776,3458,7353,24129],"orbits":[0,1,2,3,7],"x":5399.15,"y":3723.01},{"nodes":[24165],"orbits":[0],"x":5409.48,"y":-6761.17},{"nodes":[21984],"orbits":[1],"x":5445.28,"y":-9562.99},{"nodes":[18121,45319,55041,26135,35564,2335,65310,51565,22682],"orbits":[0,3],"x":5452.61,"y":-10248.41},{"nodes":[44420],"orbits":[0],"x":5457.07,"y":-5200.42},{"nodes":[38541],"orbits":[0],"x":5457.07,"y":-4742.78},{"nodes":[41645,6490,43964,14082,8831],"orbits":[0,2,3,7],"x":5472.15,"y":-8445.56},{"nodes":[54176],"orbits":[0],"x":5478.57,"y":-1107.81},{"nodes":[7526],"orbits":[0],"x":5482.17,"y":6073.03},{"nodes":[24721],"orbits":[0],"x":5541.32,"y":-9278.17},{"nodes":[36808,37244,34076,22057,33445,30143,37795],"orbits":[0,2,7],"x":5544.92,"y":8921.21},{"nodes":[30663],"orbits":[0],"x":5545.19,"y":-9271},{"nodes":[14310],"orbits":[0],"x":5569.63,"y":-8962.42},{"nodes":[46882],"orbits":[1],"x":5571.69,"y":9486.45},{"nodes":[61601],"orbits":[0],"x":5579.63,"y":-4981.71},{"nodes":[64213,32155,44204,33729,25700,61246,144,41096,45712,12611],"orbits":[0,4,5,7],"x":5581.73,"y":1347.41},{"nodes":[4238,60173,62986,17316,43263,46688,40244,64492],"orbits":[0,4,7],"x":5585.65,"y":8198.85},{"nodes":[5191],"orbits":[0],"x":5620.6,"y":9982.22},{"nodes":[11472,19880,59390,40270],"orbits":[0,2],"x":5646.25,"y":635.1},{"nodes":[26598],"orbits":[0],"x":5646.98,"y":0.51},{"nodes":[32813],"orbits":[2],"x":5658.94,"y":4004.28},{"nodes":[59600,12208,13619,35809],"orbits":[1,7],"x":5658.94,"y":4289.75},{"nodes":[49466,9411,30871],"orbits":[7],"x":5658.96,"y":4337.05},{"nodes":[23905],"orbits":[0],"x":5664.01,"y":-1616.29},{"nodes":[2995],"orbits":[0],"x":-2784.3151094136,"y":-16234.729541646},{"nodes":[4328],"orbits":[0],"x":5749.4,"y":-6287.76},{"nodes":[3463],"orbits":[0],"x":5749.4,"y":-5672.71},{"nodes":[42379],"orbits":[0],"x":5749.4,"y":-4981.71},{"nodes":[32340],"orbits":[0],"x":5818.69,"y":-9005.17},{"nodes":[56860,29320,1680,17447,24843],"orbits":[0,2,7],"x":5833.86,"y":5463.88},{"nodes":[38111,10242,6079,32241],"orbits":[0,2],"x":5891.44,"y":-6838.35},{"nodes":[45377],"orbits":[0],"x":5901,"y":-8772.67},{"nodes":[10944,33366,55193],"orbits":[1,2,7],"x":5924.32,"y":-625.86},{"nodes":[25971,50635,44423],"orbits":[0,2,3],"x":5933.04,"y":-2670.25},{"nodes":[11764,38878,54975,26772,45774,34898,24240],"orbits":[0,4,5,7],"x":5943.98,"y":7225.03},{"nodes":[23915,41529,21380,31284],"orbits":[0,1,2,7],"x":5948.13,"y":186.79},{"nodes":[60700,52501,44974],"orbits":[0,7],"x":5965.19,"y":-239.81},{"nodes":[25520],"orbits":[0],"x":5975.67,"y":-4755.44},{"nodes":[27875,55463,32123],"orbits":[0,3],"x":5979.38,"y":-1521.97},{"nodes":[50121],"orbits":[0],"x":5988.31,"y":-7475.15},{"nodes":[21572,39050,6660],"orbits":[2],"x":6015.15,"y":6443.42},{"nodes":[21801,30748,44369,24150],"orbits":[1,2,7],"x":6032.38,"y":-8309.51},{"nodes":[31345,30372,42065,55400,37532],"orbits":[0,2],"x":6036.73,"y":1763.34},{"nodes":[2516],"orbits":[0],"x":-2412.6351094136,"y":-15898.889541646},{"nodes":[43720,14383,18568,46601,46887],"orbits":[0,2,3],"x":6104.56,"y":8403.35},{"nodes":[45329],"orbits":[0],"x":6129.78,"y":9643.2},{"nodes":[4552,17215,17668,50817,61355,29306],"orbits":[1,2,7],"x":6139.19,"y":-5350.4},{"nodes":[20820,44628,40166,48544],"orbits":[0,2],"x":6170.77,"y":-6134.8},{"nodes":[42750,37691,9050,56453,60138,25851,52695,57230,24958,51741,16705,17088,61834,24062,54351,64927,52464,5766,51416,32016,49984],"orbits":[0,5,6,7],"x":6172.4,"y":-3563.57},{"nodes":[45100,56928,62350,7163,23013],"orbits":[2,3,4,5],"x":6220.23,"y":4601.9},{"nodes":[20641,14231,40399,51934,43281,25304,47359,40453,61056],"orbits":[0,1,5,7],"x":6324.58,"y":-9381.54},{"nodes":[23608,40024,2091,61741,6951,63759,26565,24401],"orbits":[0,3,4,7],"x":6359.19,"y":2826.09},{"nodes":[39568],"orbits":[0],"x":6359.63,"y":6827.05},{"nodes":[35901,12890,63566,62464,55275,12120,65207,51606,17854],"orbits":[3,4,6],"x":6365.75,"y":3674.83},{"nodes":[43044],"orbits":[0],"x":6365.75,"y":5562.23},{"nodes":[34853,25458,37568,45370],"orbits":[7,2],"x":6365.75,"y":5989.65},{"nodes":[61403],"orbits":[0],"x":6372.73,"y":-8685.67},{"nodes":[56349],"orbits":[0],"x":6372.73,"y":-8307.67},{"nodes":[2128],"orbits":[0],"x":6402.75,"y":9679.75},{"nodes":[5009,36270,12169],"orbits":[0,2,3],"x":6411.76,"y":-4456.86},{"nodes":[28441,32721,24570,11836,47235,53471,10011,11871],"orbits":[2,3,7],"x":6431.15,"y":-2256.19},{"nodes":[11015],"orbits":[0],"x":6470.71,"y":9436.59},{"nodes":[54725,56336,21208,21748],"orbits":[7],"x":6488.25,"y":-6987.61},{"nodes":[32399],"orbits":[0],"x":6506.75,"y":-6478.52},{"nodes":[52191],"orbits":[0],"x":6536.96,"y":-5291.42},{"nodes":[57088,9421,28086,54557,60170],"orbits":[0,2],"x":6551.51,"y":876.88},{"nodes":[45709,26363,52803],"orbits":[7],"x":6555.55,"y":-642.86},{"nodes":[7412,49291,57945,59356],"orbits":[0,7],"x":6555.55,"y":-627.07},{"nodes":[3128,22713,12166],"orbits":[7],"x":6564.29,"y":-7691.65},{"nodes":[33221],"orbits":[0],"x":6564.44,"y":-7691.65},{"nodes":[19722,4959,26331,19003],"orbits":[0,7],"x":6564.44,"y":-7691.65},{"nodes":[42658],"orbits":[0],"x":6564.69,"y":4176.51},{"nodes":[46431],"orbits":[0],"x":6576.88,"y":8924.35},{"nodes":[6570],"orbits":[0],"x":6612.09,"y":-6987.61},{"nodes":[65256],"orbits":[0],"x":6617.23,"y":9944.27},{"nodes":[40626],"orbits":[0],"x":6619.11,"y":9595.71},{"nodes":[34845],"orbits":[0],"x":6636.34,"y":9687.17},{"nodes":[38463],"orbits":[0],"x":6649.25,"y":8378.88},{"nodes":[22329,58526,331,32891,62427,42103,50673],"orbits":[2,3,7],"x":6654.65,"y":7621.83},{"nodes":[1631,14001,56893,29049],"orbits":[7,2],"x":6661.76,"y":246.47},{"nodes":[28199],"orbits":[0],"x":6670.73,"y":9432.42},{"nodes":[54678],"orbits":[0],"x":6720.04,"y":-1779.61},{"nodes":[60735],"orbits":[0],"x":6729.48,"y":3890.84},{"nodes":[57724,26885,34473,20782,42361],"orbits":[0,2,3,4,7],"x":6734.63,"y":-5492.35},{"nodes":[26268,22710,45111,59214],"orbits":[7],"x":6735.94,"y":-6987.61},{"nodes":[21111,43522,33099],"orbits":[4,7],"x":6771.38,"y":8501.01},{"nodes":[46857],"orbits":[0],"x":6790.3,"y":-6502.08},{"nodes":[52060,17602,59799,7338,59798,5335],"orbits":[0,1,7],"x":6844.88,"y":-9157.81},{"nodes":[21495,42794,31433,5348],"orbits":[0,2,3],"x":6846.27,"y":4801},{"nodes":[54883],"orbits":[0],"x":6883.65,"y":-5638.13},{"nodes":[26432],"orbits":[0],"x":6900.54,"y":3596.76},{"nodes":[60273],"orbits":[0],"x":7001.73,"y":9638.79},{"nodes":[59775],"orbits":[0],"x":7020.48,"y":-5774.94},{"nodes":[6842,28329,18472,46533,3700,36723],"orbits":[2,3],"x":7031.53,"y":7197.76},{"nodes":[32438],"orbits":[0],"x":7037.31,"y":-8704.87},{"nodes":[28623,60464,12998,9968,30463,58971,38678],"orbits":[0,4,2],"x":7059,"y":5648.15},{"nodes":[51871,8045,3042],"orbits":[0,2,3],"x":7065.9,"y":-3324.15},{"nodes":[28823,11094,59303],"orbits":[4,7],"x":7074.07,"y":9630.67},{"nodes":[23547,45798,43944,30102,62578,46615,53177],"orbits":[0,2,3,7],"x":7077.07,"y":-4647.67},{"nodes":[14658],"orbits":[0],"x":7088.65,"y":0},{"nodes":[28903,42959,59644,32896,22517],"orbits":[0,7],"x":7088.65,"y":513.16},{"nodes":[55149],"orbits":[0],"x":7119.01,"y":-8248.39},{"nodes":[14446],"orbits":[0],"x":7123.27,"y":-7914.57},{"nodes":[11825],"orbits":[0],"x":7191.57,"y":4152.81},{"nodes":[62185],"orbits":[0],"x":7236.46,"y":5087.69},{"nodes":[48974,47418,63517,23839,53958,51006,10738],"orbits":[0,2,3],"x":7271.19,"y":-1655.98},{"nodes":[64601],"orbits":[0],"x":7273.71,"y":-2633.18},{"nodes":[41877],"orbits":[0],"x":7273.71,"y":-2313.18},{"nodes":[40333,43102,30197,52415,24178,42998,32655,33514],"orbits":[0,2,7],"x":7300.34,"y":2711.86},{"nodes":[29285,9745,11774,58513,16602,14418],"orbits":[0,3,7],"x":7334.57,"y":8277.54},{"nodes":[9199,60323,47560,6792,23221,4534,42302,33245,9151,45331,31918],"orbits":[1,2,3,4,5,6,7,8],"x":7345.82,"y":2075.69},{"nodes":[52971,21227,36290,23046,62936,51891,49976,25528],"orbits":[2,3,4,7],"x":7365.71,"y":-6708.34},{"nodes":[51040,23822,327,58779,9652],"orbits":[0,2],"x":7374.83,"y":-7151.38},{"nodes":[15424,35151,44453,58157,61149,42760],"orbits":[1,2,7],"x":7384.78,"y":-3775.87},{"nodes":[24120,52053,14048,34717,10495],"orbits":[0,3,4,7],"x":7386.63,"y":-380.49},{"nodes":[26762],"orbits":[0],"x":7420.17,"y":-8305.21},{"nodes":[30657],"orbits":[0],"x":7430.94,"y":7597.17},{"nodes":[22817,42714,22962,58848,55724,58644,10576,29065],"orbits":[0,1,3,4,5,7],"x":7459.44,"y":6789.98},{"nodes":[35380,10058],"orbits":[0,2],"x":7466.03,"y":-8440.87},{"nodes":[14724],"orbits":[0],"x":7487.17,"y":5195.85},{"nodes":[35671,11504,30839,31172],"orbits":[2,3,4,5],"x":7495.21,"y":1196.11},{"nodes":[44373],"orbits":[0],"x":7501.94,"y":-8629.84},{"nodes":[336,4806,49388,37304,64543,61921,38215],"orbits":[2,3,4,5],"x":7520.58,"y":-906.8},{"nodes":[6800],"orbits":[0],"x":7559.71,"y":-8913.34},{"nodes":[47374,18049,5802],"orbits":[0,4,7],"x":7559.9,"y":4790.76},{"nodes":[1448,6530,24269,19542],"orbits":[0,2,3],"x":7570.55,"y":3482.17},{"nodes":[32301],"orbits":[0],"x":7573.53,"y":5472.94},{"nodes":[15301,10277,64064,4709,35477],"orbits":[0,2],"x":7632.55,"y":696.89},{"nodes":[31692,46197,61333,45702,39237],"orbits":[0,2],"x":7645.67,"y":-7774.6},{"nodes":[49130,58416,1020,54631,30132],"orbits":[0,2,7],"x":7664.38,"y":1483.08},{"nodes":[37813],"orbits":[0],"x":7678.02,"y":5026.98},{"nodes":[58022],"orbits":[0],"x":7691.01,"y":-8333.04},{"nodes":[52445],"orbits":[0],"x":7747,"y":-5468.73},{"nodes":[34324,13457,3630,56838,26034,45631,62624,42805],"orbits":[3,4,7],"x":7749.73,"y":-5462.17},{"nodes":[57821],"orbits":[4],"x":7752.6,"y":-4481.19},{"nodes":[55377,26211,24883,44573],"orbits":[0,2],"x":7755.88,"y":-1645.82},{"nodes":[59503,22208,60034,6330,15207,4378],"orbits":[0,7],"x":7762.38,"y":6434.67},{"nodes":[5186],"orbits":[0],"x":7764.53,"y":-8668.33},{"nodes":[34497],"orbits":[0],"x":7768.26,"y":228.34},{"nodes":[56023],"orbits":[0],"x":7806.6,"y":-2934.34},{"nodes":[33404],"orbits":[0],"x":7810.1,"y":-4823.01},{"nodes":[50277],"orbits":[0],"x":7815.76,"y":5381.08},{"nodes":[44932],"orbits":[3],"x":7818.48,"y":5206.42},{"nodes":[52361,57462,53771,12078,33713,26107],"orbits":[0,2,3,5],"x":7868.42,"y":-3177.92},{"nodes":[50701],"orbits":[0],"x":7874.86,"y":5154.88},{"nodes":[47976],"orbits":[0],"x":7886.46,"y":-7151.38},{"nodes":[48462,38497,62803,25029],"orbits":[4,5,7],"x":7901.35,"y":8803.79},{"nodes":[33463],"orbits":[0],"x":7994.25,"y":-1873.69},{"nodes":[49996],"orbits":[0],"x":7994.25,"y":-996.85},{"nodes":[32183],"orbits":[0],"x":7994.25,"y":-571.97},{"nodes":[12253],"orbits":[0],"x":7994.25,"y":0},{"nodes":[35696],"orbits":[0],"x":7994.25,"y":1153.21},{"nodes":[2408],"orbits":[0],"x":7994.25,"y":2075.69},{"nodes":[42118],"orbits":[0],"x":7994.25,"y":2711.86},{"nodes":[10648,26400,8904],"orbits":[0,4,7],"x":8000.05,"y":4152.81},{"nodes":[63830,44841,45390,13624,59064,44756,28258,36927,36976,55235],"orbits":[0,1,2,3],"x":8014.32,"y":8180.55},{"nodes":[55664,16568,63246,34702,60992,31826,33585,24889],"orbits":[1,3,4,5,7],"x":8073.32,"y":5817.48},{"nodes":[17146,57518,31366,3843,65265],"orbits":[0,2],"x":8122.32,"y":3085.39},{"nodes":[43453],"orbits":[0],"x":8124.67,"y":632.41},{"nodes":[62542,45713,39607,2559,16329],"orbits":[0,2,3],"x":8175.23,"y":-4097.21},{"nodes":[24786],"orbits":[0],"x":8177.92,"y":6850.21},{"nodes":[44490],"orbits":[0],"x":8203.42,"y":-391.26},{"nodes":[12239],"orbits":[0],"x":8254.56,"y":-2462.39},{"nodes":[64050],"orbits":[0],"x":8280.06,"y":715.96},{"nodes":[54152],"orbits":[0],"x":8280.54,"y":369.3},{"nodes":[1599,35173,16013,41811,16140,31286],"orbits":[2,3,7],"x":8281.88,"y":-2509.71},{"nodes":[1416],"orbits":[0],"x":8284.38,"y":-6118.71},{"nodes":[8456,10267,38329],"orbits":[0,7],"x":8287.51,"y":1489.63},{"nodes":[5163,48103,26726,52875],"orbits":[0,2],"x":8294.62,"y":-1449.59},{"nodes":[16401],"orbits":[0],"x":8325.04,"y":-131.01},{"nodes":[39881],"orbits":[0],"x":8344.62,"y":-2618.36},{"nodes":[24070],"orbits":[0],"x":8357.14,"y":1153.21},{"nodes":[19461,38944,43338,5797,22063,64415,56767],"orbits":[2,3,7],"x":8357.5,"y":-6160.65},{"nodes":[33348,11509,17664,7465,11463],"orbits":[0,2,3],"x":8363.42,"y":2346.58},{"nodes":[51602,23305,21279,44280,35534],"orbits":[0,2],"x":8365.09,"y":1769.99},{"nodes":[3994,9089,37951,41020,34908],"orbits":[1,2,3],"x":8369.01,"y":4523.71},{"nodes":[3431,5305,43082],"orbits":[1,2],"x":8388.6,"y":6235.46},{"nodes":[30077],"orbits":[0],"x":8390.12,"y":-7635.29},{"nodes":[24656],"orbits":[0],"x":8400.25,"y":166.18},{"nodes":[7302,52615,33093,25729,37876],"orbits":[4,7],"x":8409.99,"y":-7674.9},{"nodes":[12800],"orbits":[0],"x":8433.06,"y":504.46},{"nodes":[61800,52630,28371,60560,29527],"orbits":[0,7],"x":8443.67,"y":-719.43},{"nodes":[1514],"orbits":[0],"x":8444.56,"y":-598.29},{"nodes":[12893],"orbits":[0],"x":8446.46,"y":6869.13},{"nodes":[7809],"orbits":[0],"x":8464.96,"y":-3633.16},{"nodes":[54984],"orbits":[0],"x":8470.97,"y":4890.73},{"nodes":[56988],"orbits":[0],"x":8506.18,"y":-3240.16},{"nodes":[47831,44522,63762,34541,52743,8734],"orbits":[1,2],"x":8512.95,"y":-1003.98},{"nodes":[12174,18864,49107,54562,49485,2745],"orbits":[1,2],"x":8553.74,"y":2712.82},{"nodes":[43090],"orbits":[0],"x":8601.56,"y":-234.45},{"nodes":[32672,23362,4031,17871,13701,9928,50403],"orbits":[0,2,3,4],"x":8602.39,"y":-5782.69},{"nodes":[8896],"orbits":[0],"x":8629.29,"y":605.39},{"nodes":[15814],"orbits":[0],"x":8660.79,"y":276.65},{"nodes":[59538],"orbits":[0],"x":8684.39,"y":-6347.76},{"nodes":[58397,19338,31647],"orbits":[0,3],"x":8692.14,"y":1153.21},{"nodes":[65167],"orbits":[0],"x":8704.67,"y":6828.76},{"nodes":[25055,13799,41580,36576,41298],"orbits":[0,2,7],"x":8732.17,"y":4438.38},{"nodes":[60483],"orbits":[0],"x":8733.08,"y":-3633.16},{"nodes":[36540],"orbits":[0],"x":8733.08,"y":-3371.16},{"nodes":[25070,11252,32903,39911,25361],"orbits":[2],"x":8744.6,"y":-4572.62},{"nodes":[19074,8560,31273,35985,13987,48531,56761,7604,17372],"orbits":[1,2,3,5,7],"x":8801.96,"y":2075.59},{"nodes":[712],"orbits":[0],"x":8833.93,"y":6608.57},{"nodes":[24948],"orbits":[0],"x":8835.76,"y":6604.98},{"nodes":[36071,38369,35223,36677,13895,61112,18910,21225,10265,9240,19767,55680,9227],"orbits":[0,2,3,4,5,6],"x":8847.14,"y":7072.15},{"nodes":[15625,23253,65161,3170,22811],"orbits":[2],"x":8862.17,"y":5791.31},{"nodes":[18717],"orbits":[0],"x":8862.26,"y":-3861.86},{"nodes":[24287],"orbits":[0],"x":8886.25,"y":6141.88},{"nodes":[8273],"orbits":[0],"x":8922.01,"y":-4178.25},{"nodes":[51241,50420,55118,31364],"orbits":[0,2],"x":8927.04,"y":4861.35},{"nodes":[60210,6078,64325,45304,61119,63431],"orbits":[1,2,3],"x":8940.31,"y":-1873.69},{"nodes":[1801,60,58426,34401],"orbits":[0,2,7],"x":8971.45,"y":474.23},{"nodes":[15356],"orbits":[0],"x":8992.39,"y":-3633.64},{"nodes":[40990],"orbits":[0],"x":8993.62,"y":-3178.16},{"nodes":[2334],"orbits":[0],"x":9027.14,"y":1153.21},{"nodes":[27704],"orbits":[0],"x":9053.85,"y":1471.47},{"nodes":[14226],"orbits":[0],"x":9119.2,"y":6374.82},{"nodes":[17420],"orbits":[0],"x":9124.17,"y":-3861.86},{"nodes":[18815],"orbits":[0],"x":9125.5,"y":-3407.73},{"nodes":[25565],"orbits":[2],"x":9152.09,"y":-4119.84},{"nodes":[34478],"orbits":[0],"x":9189.45,"y":3777.45},{"nodes":[53150,17589,45012,8246,37742,64462,37548,15270,36085],"orbits":[0,2,3],"x":9207.96,"y":-758.58},{"nodes":[41017],"orbits":[0],"x":9212.92,"y":-2.43},{"nodes":[59657,58692,58593,49356,60239,15343,26556,18314,42078],"orbits":[0,3,5],"x":9257.6,"y":-2702.28},{"nodes":[36364],"orbits":[0],"x":9287.06,"y":3103.82},{"nodes":[43064],"orbits":[0],"x":9288.71,"y":3526.05},{"nodes":[10162,3336,36231,30615,65204],"orbits":[0,2],"x":9329.96,"y":-5015.5},{"nodes":[37242,59368,61215,9532,16871,54031],"orbits":[0,7],"x":9400,"y":4449.79},{"nodes":[22927,20582,29246],"orbits":[6],"x":9400.47,"y":5023.83},{"nodes":[56701],"orbits":[0],"x":9437.62,"y":3691.67},{"nodes":[52257],"orbits":[0],"x":9455.83,"y":2570.72},{"nodes":[22726],"orbits":[0],"x":9458.47,"y":-3946},{"nodes":[27422,2021,17687,10472,25857],"orbits":[0,4,7],"x":9465.68,"y":5354.06},{"nodes":[62096],"orbits":[0],"x":9477.71,"y":3854.15},{"nodes":[63600],"orbits":[0],"x":9507.95,"y":2888.65},{"nodes":[31765],"orbits":[0],"x":9512.58,"y":-5497.3},{"nodes":[37616,8644,33964,64295,27834,63659,37688,27417,62496,34912,4664,43938,34449],"orbits":[4,5,6],"x":9516.92,"y":-7180.28},{"nodes":[34015],"orbits":[0],"x":9527.62,"y":5500.5},{"nodes":[47853],"orbits":[0],"x":9566.38,"y":3484.69},{"nodes":[27513,65498,39307,7294,37026],"orbits":[1,2,7],"x":9588.39,"y":-215.51},{"nodes":[44891,55835,20909,52537,7023],"orbits":[0,2],"x":9590.33,"y":-3478.67},{"nodes":[59083,32364,1073,32858,1205,14882,5048,261],"orbits":[0,2,3,7],"x":9649.45,"y":5859.96},{"nodes":[57069],"orbits":[0],"x":9696.74,"y":2772.94},{"nodes":[63192],"orbits":[0],"x":9712.8,"y":4026.57},{"nodes":[65091,1841,38728,44776,3209,14539,9405,51707,59720,41163],"orbits":[0,5,7],"x":9720.67,"y":1153.21},{"nodes":[62998],"orbits":[0],"x":9731.16,"y":3030.3},{"nodes":[28414],"orbits":[0],"x":9738.29,"y":3696.59},{"nodes":[45382,28859,53265],"orbits":[0,3,4],"x":9754.7,"y":-1887.15},{"nodes":[722],"orbits":[0],"x":9755.52,"y":-4566.29},{"nodes":[35095,19359,41886,9663,52245],"orbits":[0,2,3],"x":9759.71,"y":-5970.48},{"nodes":[20105],"orbits":[0],"x":9764.39,"y":6540.17},{"nodes":[65212,32543,34968,58539,60899,64637],"orbits":[0,7],"x":9805.18,"y":2135.11},{"nodes":[48116],"orbits":[0],"x":9826.06,"y":4319.11},{"nodes":[41861],"orbits":[0],"x":9855.92,"y":3274.55},{"nodes":[21156,19027,34623,40471,14769,7847],"orbits":[0,2,7],"x":9860.54,"y":353.55},{"nodes":[20649],"orbits":[0],"x":9947.79,"y":2860.79},{"nodes":[29990,47477,51774,36217,47021,34425],"orbits":[1,2,7],"x":9959.33,"y":-2457.79},{"nodes":[65290],"orbits":[0],"x":10006.41,"y":2637.88},{"nodes":[16121,61421,56334,46171,41753],"orbits":[0,7],"x":10039.26,"y":-5356.19},{"nodes":[14262],"orbits":[0],"x":10048.64,"y":0},{"nodes":[12116,52410,20414,55329,42036,35043,50146],"orbits":[4,3],"x":10080.5,"y":5416.44},{"nodes":[18624,17523,42032,30408,39608,12329,1778,17906],"orbits":[0,3,7],"x":10082.79,"y":4865.9},{"nodes":[49320,30973],"orbits":[6],"x":10091.58,"y":-5603.69},{"nodes":[15775],"orbits":[0],"x":10091.7,"y":-3334.83},{"nodes":[3640,28963,7888,17724,17101,25362,37780],"orbits":[2,3],"x":10100.39,"y":-1227.6},{"nodes":[23105],"orbits":[0],"x":10112.62,"y":-1237.84},{"nodes":[2582],"orbits":[0],"x":10184.13,"y":3019.63},{"nodes":[60891,18897,64990,53185],"orbits":[1,2,3],"x":10203.08,"y":1730.1},{"nodes":[47514,38342,21945,61718,26572,54545,39128],"orbits":[0,2,7],"x":10290.88,"y":-481.6},{"nodes":[29959,60362,6891,56265,42802],"orbits":[0,2],"x":10299.85,"y":-3717.25},{"nodes":[17792,34892,12066,42226,48734],"orbits":[3,2],"x":10370.85,"y":533.97},{"nodes":[30808],"orbits":[0],"x":10379,"y":-2278.35},{"nodes":[27705],"orbits":[0],"x":10420.75,"y":2130.08},{"nodes":[28835,60480,56847,8157,178,28044,43088,6988],"orbits":[0,2,3,5,7],"x":10451.5,"y":3456.48},{"nodes":[326],"orbits":[0],"x":10503.99,"y":-3050.26},{"nodes":[59694],"orbits":[0],"x":10614.77,"y":-3021.26},{"nodes":[3543,31825,20787,5390,16142],"orbits":[3,7],"x":10650.08,"y":2504.32},{"nodes":[632],"orbits":[0],"x":10657.31,"y":-5268.96},{"nodes":[48773],"orbits":[0],"x":10682.01,"y":1152.07},{"nodes":[34612,25992,60764,11526,31055,44141,7651,21788,21112,8573,25586],"orbits":[2,3,4,5,6],"x":10682.25,"y":4548.52},{"nodes":[2361,37514,31449,9444,52399,2113,34316,61632,4536,11598,44516],"orbits":[0,2,3,5,6],"x":10687.96,"y":-3515.65},{"nodes":[14267],"orbits":[0],"x":10699.04,"y":-1058.34},{"nodes":[28638],"orbits":[0],"x":10703.99,"y":-3595.77},{"nodes":[64700],"orbits":[0],"x":10769.27,"y":-4040.33},{"nodes":[18969],"orbits":[0],"x":10793.45,"y":4578.32},{"nodes":[52215],"orbits":[0],"x":10794.6,"y":-5031.25},{"nodes":[3419,28797,20429],"orbits":[6],"x":10801.88,"y":-4373.44},{"nodes":[46152,40110,42347,8302,4467,42974],"orbits":[1,2,3,7],"x":10802.3,"y":-2128.64},{"nodes":[38993],"orbits":[0],"x":10852.75,"y":5275.51},{"nodes":[32442],"orbits":[0],"x":10878.54,"y":-4005.64},{"nodes":[53272,2560,20044,30736,52180],"orbits":[1,2,3],"x":10949.1,"y":3186.63},{"nodes":[32763],"orbits":[1],"x":10978.46,"y":-82.24},{"nodes":[41873,55995,57970,21537],"orbits":[2],"x":11005.79,"y":1424.1},{"nodes":[27048],"orbits":[0],"x":11023.99,"y":2449.53},{"nodes":[43867,10423,37905,57571,28101],"orbits":[1,2,3,7],"x":11025.45,"y":-2615.56},{"nodes":[56366,54058,35755,4423,62001],"orbits":[0,2,3],"x":11047.97,"y":-5335.92},{"nodes":[39495],"orbits":[0],"x":11053.84,"y":2092.2},{"nodes":[38212,57683,1499,33830,35031],"orbits":[0,2],"x":11095.74,"y":-797.85},{"nodes":[328],"orbits":[0],"x":11202.42,"y":4037.83},{"nodes":[28976],"orbits":[0],"x":11230.95,"y":-1058.34},{"nodes":[47375],"orbits":[0],"x":11305.33,"y":2677.45},{"nodes":[39986],"orbits":[0],"x":11330.52,"y":1564.9},{"nodes":[6030,2500,15986,29458,2134,53595,9703,1723,38628],"orbits":[2,3,7],"x":11355.41,"y":-1515.36},{"nodes":[38493,38537,13407,39369,55621,2936,23040,54983,51583],"orbits":[0,2,4,7],"x":11355.97,"y":617.13},{"nodes":[46386],"orbits":[0],"x":11403.34,"y":1937.84},{"nodes":[23374],"orbits":[0],"x":11480.79,"y":-1058.34},{"nodes":[63618],"orbits":[0],"x":11588.89,"y":2604.19},{"nodes":[37971],"orbits":[0],"x":11726.63,"y":2342.66},{"nodes":[57933],"orbits":[0],"x":11768.79,"y":1960.45},null,{"nodes":[52800,57615,32319,48836,33542],"orbits":[0,4,6,7],"x":12068.18,"y":1163.81},{"nodes":[16150],"orbits":[0],"x":12070.35,"y":2129.97},{"nodes":[47443],"orbits":[0],"x":12118.08,"y":2530.75},{"nodes":[44699],"orbits":[0],"x":12345.66,"y":2292.24},{"nodes":[31129],"orbits":[0],"x":12484.46,"y":2765.08},{"nodes":[10315],"orbits":[0],"x":12637.88,"y":2423.74},null,null,null,{"nodes":[24226],"orbits":[0],"x":15371.480358698,"y":2616.7256992497},{"nodes":[12033,42416,46854,61461,3987,24295,49165,39723,46990],"orbits":[2,3,5,6,8,9],"x":15460.430358698,"y":1628.1856992497},{"nodes":[30],"orbits":[0],"x":15552.250358698,"y":2167.0456992497},{"nodes":[29871],"orbits":[0],"x":15654.500358698,"y":2540.8956992497},{"nodes":[8143,65173,7621,23587,64031,63713,52448,12876,63236,23415,13065,16100,17268,25434,55611,29133,57181,44357,27686,9994],"orbits":[3,4,5,6,8,9],"x":13486.994220367,"y":-7733.2438988933},{"nodes":[59542],"orbits":[0],"x":15918.770358698,"y":1995.6856992497},{"nodes":[59913],"orbits":[0],"x":15937.520358698,"y":2465.0556992497},{"nodes":[5817],"orbits":[0],"x":15971.490358698,"y":1439.8456992497},{"nodes":[41875],"orbits":[0],"x":16012.290358698,"y":1832.6856992497},{"nodes":[41751,61586,19370,17356,39552,51546,1739,39595,53280,65228,52295,34081,57449,36643,20437,37604,11495],"orbits":[1,3,4,5,6,7,9,8],"x":11912.761258739,"y":-10808.257010789},{"nodes":[23508],"orbits":[0],"x":16364.270358698,"y":949.95569924971},{"nodes":[35801],"orbits":[0],"x":16416.160358698,"y":1238.3156992497},{"nodes":[61991,24868,29074,14508,33736,9798,1583],"orbits":[9,8],"x":14785.281314235,"y":4805.3104826906},{"nodes":[37336],"orbits":[0],"x":16469.230358698,"y":1526.4756992497},{"nodes":[38004],"orbits":[0],"x":15288.991314235,"y":4350.8104826906},{"nodes":[9710],"orbits":[0],"x":15288.991314235,"y":4471.8104826906},{"nodes":[18940],"orbits":[0],"x":15393.791314235,"y":4290.3104826906},{"nodes":[57141],"orbits":[0],"x":15393.791314235,"y":4411.3104826906},{"nodes":[49503],"orbits":[0],"x":15393.791314235,"y":4911.0004826906},{"nodes":[56618],"orbits":[0],"x":15498.581314235,"y":4349.4104826906},{"nodes":[58379],"orbits":[0],"x":15498.581314235,"y":4471.8104826906},{"nodes":[16],"orbits":[0],"x":15675.421314235,"y":4911.0004826906},{"nodes":[41619],"orbits":[0],"x":15739.381314235,"y":4672.3404826906},{"nodes":[57253],"orbits":[0],"x":15851.451314235,"y":4800.8104826906},{"nodes":[16433],"orbits":[0],"x":15928.431314235,"y":4904.0004826906},{"nodes":[12183],"orbits":[0],"x":15928.431314235,"y":5186.2504826906},{"nodes":[46454],"orbits":[0],"x":15932.191314235,"y":4199.1104826906},{"nodes":[36676],"orbits":[0],"x":15932.191314235,"y":4531.3104826906},{"nodes":[12795],"orbits":[0],"x":16007.351314235,"y":4800.7904826906},{"nodes":[40],"orbits":[0],"x":16117.601314235,"y":4671.3404826906},{"nodes":[39292],"orbits":[0],"x":16182.151314235,"y":4911.0004826906},{"nodes":[35187],"orbits":[0],"x":12155.48775751,"y":7772.5537505729},{"nodes":[18826,34567,3781,25781,59759,50098,52395,41076,31116,34817,17923,60251,47344,36788,24475,1347,11771,25779,25885,32771,74],"orbits":[6,8,9,5],"x":14799.951367537,"y":-4762.3700120566},{"nodes":[41008],"orbits":[0],"x":12490.29775751,"y":8008.7037505729},{"nodes":[664],"orbits":[0],"x":15158.101367537,"y":-4236.3700120566},{"nodes":[42441],"orbits":[0],"x":12560.33775751,"y":7737.9837505729},{"nodes":[26283],"orbits":[0],"x":15264.521367537,"y":-4418.0400120566},{"nodes":[43095],"orbits":[0],"x":12722.48775751,"y":7924.4637505729},{"nodes":[56331],"orbits":[0],"x":15367.881367537,"y":-4235.0100120566},{"nodes":[528],"orbits":[0],"x":12956.91775751,"y":8209.9237505729},{"nodes":[19233],"orbits":[0],"x":13066.45775751,"y":7801.1337505729},{"nodes":[41401,27773,62743,765,46070,4367,39887,56489,28254,26294,62702,37769,21519,62424,41085,45228,5733,63493],"orbits":[3,4,5,6,8,9],"x":11656.97779015,"y":10781.951577101},{"nodes":[55796],"orbits":[0],"x":13289.47775751,"y":8076.4037505729},{"nodes":[9294],"orbits":[0],"x":13473.25775751,"y":8428.6837505729},{"nodes":[7979],"orbits":[0],"x":13624.14775751,"y":7862.8237505729},{"nodes":[46071],"orbits":[0],"x":13830.25775751,"y":8428.6837505729},{"nodes":[35033],"orbits":[0],"x":13856.52775751,"y":8228.3437505729},{"nodes":[60662],"orbits":[0],"x":13933.95775751,"y":8041.6837505729},{"nodes":[41736],"orbits":[6],"x":14010.99775751,"y":7835.4237505729},{"nodes":[2702],"orbits":[0],"x":14332.65775751,"y":7921.9737505729},{"nodes":[7068],"orbits":[0],"x":7883.7312025516,"y":12821.769100546},{"nodes":[3065],"orbits":[0],"x":14510.33775751,"y":7571.5037505729},{"nodes":[63254],"orbits":[0],"x":14604.25775751,"y":7921.9737505729},{"nodes":[6109],"orbits":[0],"x":14604.25775751,"y":8152.2037505729},{"nodes":[47312],"orbits":[0],"x":14698.13775751,"y":7571.6137505729},{"nodes":[3223],"orbits":[0],"x":8266.3112025516,"y":13156.799100546},{"nodes":[5563],"orbits":[0],"x":14865.93775751,"y":7921.9737505729},{"nodes":[34785],"orbits":[0],"x":8818.6112025516,"y":13230.029100546},{"nodes":[18280],"orbits":[0],"x":9314.5212025516,"y":12333.309100546},{"nodes":[62804],"orbits":[0],"x":9534.1712025516,"y":12751.159100546},{"nodes":[17058],"orbits":[0],"x":9549.6112025516,"y":12973.029100546},{"nodes":[42017],"orbits":[0],"x":9549.6112025516,"y":13230.029100546},{"nodes":[58574],"orbits":[0],"x":9549.6112025516,"y":13487.029100546},{"nodes":[37972],"orbits":[0],"x":9616.3212025516,"y":12375.639100546},{"nodes":[38813],"orbits":[0],"x":9625.0212025516,"y":12036.589100546},{"nodes":[36365],"orbits":[6],"x":9688.2912025516,"y":12636.769100546},{"nodes":[4891],"orbits":[0],"x":9850.4112025516,"y":12521.869100546},{"nodes":[30100],"orbits":[0],"x":9886.6612025516,"y":12162.199100546},{"nodes":[58149],"orbits":[0],"x":9893.7112025516,"y":12885.789100546},{"nodes":[37046],"orbits":[0],"x":9942.6712025516,"y":11772.789100546},{"nodes":[60859],"orbits":[0],"x":10074.361202552,"y":12761.739100546},{"nodes":[30233],"orbits":[0],"x":10115.831202552,"y":12357.719100546},{"nodes":[22661],"orbits":[0],"x":10251.191202552,"y":12701.699100546},{"nodes":[11776],"orbits":[0],"x":10396.921202552,"y":12302.639100546}],"jewelSlots":[26725,36634,33989,41263,60735,61834,31683,28475,6230,48768,34483,7960,46882,55190,61419,2491,54127,32763,26196,33631,21984,59740,63132,36044,17788,62152,26178,23960,39087,3367,11184],"max_x":24237.612927058,"max_y":24475.572859619,"min_x":-23887.484495557,"min_y":-24295.632110005,"nodeOverlay":{"Keystone":{"alloc":"KeystoneFrameAllocated","path":"KeystoneFrameCanAllocate","unalloc":"KeystoneFrameUnallocated"},"Normal":{"alloc":"PSSkillFrameActive","path":"PSSkillFrameHighlighted","unalloc":"PSSkillFrame"},"Notable":{"alloc":"NotableFrameAllocated","path":"NotableFrameCanAllocate","unalloc":"NotableFrameUnallocated"},"Socket":{"alloc":"JewelFrameAllocated","path":"JewelFrameCanAllocate","unalloc":"JewelFrameUnallocated"}},"nodes":{"4":{"connections":[{"id":11578,"orbit":0}],"group":1069,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":4,"stats":["15% increased chance to Shock"],"stringId":"lightning14"},"16":{"ascendancyName":"Pathfinder","connections":[{"id":41619,"orbit":7}],"group":1571,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Life Flask Charges","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":16,"stats":["20% increased Life Flask Charges gained"],"stringId":"AscendancyRanger3Small6"},"30":{"ascendancyName":"Deadeye","connections":[],"group":1552,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeTailwind.dds","isNotable":true,"name":"Gathering Winds","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30,"stats":["Gain Tailwind on Skill use","Lose all Tailwind when Hit"],"stringId":"AscendancyRanger1Notable3"},"40":{"ascendancyName":"Pathfinder","connections":[],"group":1579,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEvasionDmgReducVsElementalDmg.dds","isNotable":true,"name":"Sustainable Practices","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":40,"stats":["50% of Evasion Rating also grants Elemental Damage reduction"],"stringId":"AscendancyRanger3Notable5"},"52":{"connections":[{"id":39131,"orbit":0}],"flavourText":"Tear my flesh and splinter my bones. You will never break my spirit.","group":194,"icon":"Art/2DArt/SkillIcons/passives/liferegentoenergyshield.dds","isKeystone":true,"name":"Zealot's Oath","orbit":0,"orbitIndex":0,"skill":52,"stats":["Excess Life Recovery from Regeneration is applied to Energy Shield","Energy Shield does not Recharge"],"stringId":"passive_keystone_zealots_oath"},"55":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1138,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Fast Acting Toxins","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Greed","Isolation"],"skill":55,"stats":["Damaging Ailments deal damage 12% faster"],"stringId":"ailments38"},"59":{"ascendancyName":"Lich","connections":[],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichApplyAdditionalCurses.dds","isNotable":true,"isSwitchable":true,"name":"Incessant Cacophony","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":8,"orbitIndex":50,"skill":59,"stats":["Curses you inflict have infinite Duration","You can apply an additional Curse"],"stringId":"AscendancyWitch3Notable9"},"60":{"connections":[{"id":58426,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":2,"orbitIndex":13,"skill":60,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"blind2"},"65":{"connections":[{"id":15698,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":7,"skill":65,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze19_"},"71":{"connections":[{"id":62376,"orbit":0}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Reduced Duration","orbit":7,"orbitIndex":17,"skill":71,"stats":["4% reduced Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical58"},"74":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":17923,"orbit":0},{"id":24475,"orbit":-9},{"id":36788,"orbit":0},{"id":25779,"orbit":0},{"id":1347,"orbit":-8},{"id":25885,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Acolyte of Chayula","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":24,"skill":74,"stats":[],"stringId":"AscendancyMonk3Start"},"94":{"connections":[{"id":27234,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Efficient Killing","orbit":7,"orbitIndex":4,"recipe":["Envy","Guilt","Paranoia"],"skill":94,"stats":["15% increased Mana Regeneration Rate","Recover 2% of maximum Mana on Kill"],"stringId":"mana_regeneration49"},"95":{"connections":[{"id":8737,"orbit":0}],"group":525,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":95,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence41"},"97":{"connections":[{"id":52442,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":0,"skill":97,"stats":["3% increased Attack Speed"],"stringId":"attack_speed2_"},"110":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":20,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus10.dds","isNotable":true,"name":"Internal Layer","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":110,"stats":["Body Armour grants Hits against you have 100% reduced Critical Damage Bonus"],"stringId":"AscendancyWarrior3Notable6_10"},"116":{"connections":[{"id":44359,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Insightfulness","orbit":7,"orbitIndex":13,"recipe":["Guilt","Disgust","Fear"],"skill":116,"stats":["18% increased maximum Energy Shield","12% increased Mana Regeneration Rate","6% increased Intelligence"],"stringId":"energy_shield34_"},"144":{"connections":[{"id":26598,"orbit":0}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Freeze Buildup","orbit":5,"orbitIndex":12,"skill":144,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"stringId":"elemental27"},"151":{"connections":[{"id":34747,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":5,"skill":151,"stats":["16% increased Accuracy Rating at Close Range"],"stringId":"accuracy6"},"178":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":5,"orbitIndex":30,"skill":178,"stats":["8% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds14"},"229":{"connections":[{"id":46365,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":6,"skill":229,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation15_"},"240":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":50498,"orbit":0}],"group":1219,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":240,"stats":[],"stringId":"mastery_lightning150"},"244":{"connections":[{"id":52354,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Damage","orbit":4,"orbitIndex":66,"skill":244,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"stringId":"boss_slaying2_"},"259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":537,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":259,"stats":[],"stringId":"mastery_attack8"},"261":{"connections":[{"id":1205,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Toxic Sludge","orbit":3,"orbitIndex":13,"recipe":["Suffering","Guilt","Disgust"],"skill":261,"stats":["40% increased Duration of Poisons you inflict against Slowed Enemies"],"stringId":"poison41"},"270":{"connections":[{"id":56219,"orbit":2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":2,"orbitIndex":6,"skill":270,"stats":["Inherent loss of Rage is 15% slower"],"stringId":"rage37"},"290":{"connections":[{"id":37619,"orbit":2}],"group":312,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":290,"stats":["12% increased Fire Damage"],"stringId":"fire72"},"292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":474,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":292,"stats":[],"stringId":"mastery_life135"},"296":{"connections":[{"id":30959,"orbit":2},{"id":8145,"orbit":2},{"id":12992,"orbit":2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":7,"orbitIndex":18,"skill":296,"stats":["Damage Penetrates 3% of Enemy Elemental Resistances"],"stringId":"oracle7"},"315":{"connections":[{"id":33216,"orbit":0}],"group":758,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":315,"stats":["10% increased Bleeding Duration"],"stringId":"bleed1"},"326":{"connections":[{"id":31449,"orbit":0}],"group":1505,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Chance","orbit":0,"orbitIndex":0,"skill":326,"stats":["10% increased Critical Hit Chance with Quarterstaves"],"stringId":"quarterstaff12"},"327":{"connections":[{"id":9652,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":12,"skill":327,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"deflect63"},"328":{"connections":[{"id":25992,"orbit":0},{"id":60764,"orbit":0},{"id":21112,"orbit":0}],"group":1529,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":0,"orbitIndex":0,"skill":328,"stats":["10% increased Accuracy Rating with Bows"],"stringId":"bow8"},"331":{"connections":[{"id":42103,"orbit":2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection and Evasion","orbit":2,"orbitIndex":3,"skill":331,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"deflect38"},"336":{"connections":[{"id":4806,"orbit":-3}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Storm Swell","orbit":3,"orbitIndex":15,"recipe":["Envy","Suffering","Suffering"],"skill":336,"stats":["Damage Penetrates 15% Cold Resistance","Damage Penetrates 8% Lightning Resistance"],"stringId":"cold_penetration22"},"338":{"connections":[{"id":20140,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Invocated Limit","orbit":1,"orbitIndex":6,"recipe":["Isolation","Ire","Greed"],"skill":338,"stats":["Invocated skills have 30% increased Maximum Energy"],"stringId":"triggers19"},"354":{"connections":[{"id":48429,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":3,"orbitIndex":16,"skill":354,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades6"},"364":{"connections":[{"id":2847,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":4,"skill":364,"stats":["+3 to all Attributes"],"stringId":"attributes107"},"372":{"connections":[{"id":54340,"orbit":0}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Heatproof","orbit":7,"orbitIndex":6,"recipe":["Disgust","Disgust","Greed"],"skill":372,"stats":["10% increased Armour","+30% of Armour also applies to Fire Damage","30% reduced Magnitude of Ignite on you"],"stringId":"armour17"},"375":{"connections":[{"id":12276,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":17,"skill":375,"stats":["15% increased Damage with Maces"],"stringId":"mace10"},"378":{"ascendancyName":"Oracle","connections":[{"id":55135,"orbit":-6}],"group":35,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Critical Hit Chance","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":378,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyDruid1Small8"},"419":{"connections":[{"id":63400,"orbit":-7}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Non-Damaging Ailment Magnitude","orbit":2,"orbitIndex":12,"skill":419,"stats":["10% increased Magnitude of Non-Damaging Ailments you inflict"],"stringId":"monkchakra23"},"440":{"connections":[{"id":6133,"orbit":-5}],"group":111,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":440,"stats":["5% increased Block chance"],"stringId":"shield13"},"472":{"connections":[{"id":3744,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":472,"stats":["+8 to Dexterity"],"stringId":"attributes113"},"479":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[{"id":29126,"orbit":2}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Hidden Forms","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":479,"stats":["Gain 8% of Damage as Extra Damage of a random Element while Shapeshifted"],"stringId":"oracle_shapeshifting_path3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"483":{"connectionArt":"CharacterPlanned","connections":[{"id":12601,"orbit":2147483647},{"id":35745,"orbit":2147483647}],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":18,"skill":483,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"stringId":"oracle_endurance_charge3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"506":{"connections":[{"id":6416,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":14,"skill":506,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour9"},"511":{"connections":[{"id":49734,"orbit":0}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":7,"orbitIndex":8,"skill":511,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells7"},"516":{"connections":[{"id":47157,"orbit":4}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":16,"skill":516,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles32"},"517":{"connections":[{"id":39037,"orbit":6},{"id":61027,"orbit":9}],"group":855,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":0,"orbitIndex":0,"skill":517,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"energy_shield11"},"526":{"connections":[{"id":2645,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":4,"orbitIndex":4,"skill":526,"stats":["18% increased Stun Buildup with Maces"],"stringId":"mace5"},"528":{"ascendancyName":"Amazon","connections":[{"id":41008,"orbit":0}],"group":1589,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Accuracy","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":528,"stats":["12% increased Accuracy Rating"],"stringId":"AscendancyHuntress1Small2"},"535":{"connections":[{"id":34621,"orbit":0}],"group":1212,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":535,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals45"},"541":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Recharge","orbit":6,"orbitIndex":17,"skill":541,"stats":["15% increased Energy Shield Recharge Rate while Shapeshifted"],"stringId":"wyvern9"},"558":{"connections":[],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":4,"skill":558,"stats":["12% increased Fire Damage"],"stringId":"fire12"},"589":{"connections":[{"id":14509,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Rage on Melee Hit","orbit":7,"orbitIndex":5,"skill":589,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"glory23"},"630":{"connections":[{"id":13419,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":1,"orbitIndex":4,"skill":630,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals42"},"632":{"connections":[{"id":56366,"orbit":0}],"group":1508,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":0,"orbitIndex":0,"skill":632,"stats":["3% increased Attack Speed with Daggers"],"stringId":"dagger5"},"658":{"connections":[{"id":1861,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":19,"skill":658,"stats":["+6% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"armour_and_evasion55"},"664":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1584,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachFlameDoubles.dds","isMultipleChoiceOption":true,"name":"Choice of Power","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":664,"stats":["Remnants you create have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Purple"],"stringId":"AscendancyMonk3Notable6"},"675":{"connections":[{"id":13489,"orbit":-9}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Slow Effect on You","orbit":2,"orbitIndex":5,"skill":675,"stats":["10% increased Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"armour29"},"703":{"connections":[{"id":44917,"orbit":-3}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":1,"orbitIndex":2,"skill":703,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield4"},"712":{"connections":[{"id":24948,"orbit":0}],"group":1433,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds","isNotable":true,"name":"Bond of the Ape","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Isolation"],"skill":712,"stats":["12% increased Area of Effect","Companions have 30% increased Area of Effect"],"stringId":"companions66"},"722":{"connections":[{"id":3419,"orbit":0},{"id":15775,"orbit":0}],"group":1479,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":722,"stats":["+5 to any Attribute"],"stringId":"dexterity46"},"750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":6952,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Tribal Fury","orbit":2,"orbitIndex":22,"recipe":["Isolation","Ire","Isolation"],"skill":750,"stats":["Strikes deal Splash Damage"],"stringId":"area_attacks36"},"752":{"connections":[{"id":47420,"orbit":0}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Duration","orbit":2,"orbitIndex":9,"skill":752,"stats":["Minions deal 6% increased Damage","6% increased Minion Duration"],"stringId":"minion_reservation7_"},"761":{"connectionArt":"CharacterPlanned","connections":[{"id":22133,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":12,"skill":761,"stats":["Minions have 25% increased Cooldown Recovery Rate for Command Skills"],"stringId":"oracle_solo_commander1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"762":{"ascendancyName":"Tactician","connections":[{"id":1988,"orbit":0}],"group":413,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Minion Damage","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":762,"stats":["Minions deal 20% increased Damage"],"stringId":"AscendancyMercenary1Small9"},"765":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerCompanionDmgWeapon.dds","isNotable":true,"name":"The Catha's Balance","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":6,"orbitIndex":48,"skill":765,"stats":["Companions gain added Attack damage equal to 60% of your main hand Weapon's damage"],"stringId":"AscendancyHuntress2Notable4"},"770":{"ascendancyName":"Infernalist","connections":[{"id":10694,"orbit":-7}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Mana","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":6,"orbitIndex":7,"skill":770,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch1Small11"},"829":{"connectionArt":"CharacterPlanned","connections":[{"id":36025,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":25,"skill":829,"stats":["25% increased Minion Duration"],"stringId":"oracle_big_family4_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":857,"stats":[],"stringId":"mastery_life139"},"858":{"connections":[{"id":58387,"orbit":5}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":5,"orbitIndex":18,"skill":858,"stats":["7% increased Chaos Damage"],"stringId":"chaos13"},"869":{"connections":[{"id":18959,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield Delay","orbit":7,"orbitIndex":9,"skill":869,"stats":["12% increased Armour","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour34"},"872":{"connections":[{"id":36556,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Defences","orbit":2,"orbitIndex":17,"skill":872,"stats":["8% increased Armour, Evasion and Energy Shield while Channelling"],"stringId":"channelling17"},"904":{"connections":[{"id":28578,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Critical Chance","orbit":7,"orbitIndex":4,"skill":904,"stats":["8% increased Mana Regeneration Rate","8% increased Critical Hit Chance"],"stringId":"mana_regeneration4"},"917":{"connections":[{"id":65160,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":10,"skill":917,"stats":["12% increased Stun Threshold"],"stringId":"stun10"},"934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[{"id":12526,"orbit":-4}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Natural Immunity","orbit":4,"orbitIndex":63,"recipe":["Greed","Suffering","Paranoia"],"skill":934,"stats":["+4 to Ailment Threshold per Dexterity"],"stringId":"spell_suppression14"},"968":{"connections":[{"id":6752,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage and Area","orbit":3,"orbitIndex":2,"skill":968,"stats":["6% increased Fire Damage","5% increased Area of Effect"],"stringId":"fire7_"},"989":{"connections":[{"id":26416,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":989,"stats":["15% increased Life Recovery from Flasks"],"stringId":"life_flasks34"},"1019":{"connections":[{"id":45037,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1019,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion5"},"1020":{"connections":[{"id":54631,"orbit":0}],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":3,"skill":1020,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers7"},"1040":{"connections":[{"id":19936,"orbit":7}],"group":297,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":1040,"stats":["12% increased Fire Damage"],"stringId":"fire73"},"1073":{"connections":[{"id":261,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude and Poison Magnitude","orbit":2,"orbitIndex":11,"skill":1073,"stats":["6% increased Ignite Magnitude","6% increased Magnitude of Poison you inflict"],"stringId":"fire53_"},"1087":{"connections":[{"id":25934,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Shockwaves","orbit":3,"orbitIndex":7,"recipe":["Greed","Paranoia","Ire"],"skill":1087,"stats":["25% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"],"stringId":"two_handed16"},"1091":{"connections":[{"id":13333,"orbit":7},{"id":48699,"orbit":0}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Chill Effect on You","orbit":2,"orbitIndex":0,"skill":1091,"stats":["10% reduced Effect of Chill on you"],"stringId":"ground7"},"1104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":56876,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Lust for Power","orbit":0,"orbitIndex":0,"recipe":["Isolation","Guilt","Guilt"],"skill":1104,"stats":["10% chance when you gain a Power Charge to gain an additional Power Charge","+1 to Maximum Power Charges"],"stringId":"power_charges7"},"1130":{"connections":[{"id":29611,"orbit":0}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":0,"orbitIndex":0,"skill":1130,"stats":["10% increased Damage with Flails"],"stringId":"flail2"},"1140":{"connections":[{"id":15507,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":22,"skill":1140,"stats":["+5 to any Attribute"],"stringId":"dexterity25"},"1143":{"connections":[{"id":58170,"orbit":0},{"id":50084,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","isSwitchable":true,"name":"Spell Critical Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","id":57726,"name":"Life Regeneration","stats":["Regenerate 0.2% of maximum Life per second"]}},"orbit":2,"orbitIndex":5,"skill":1143,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals7"},"1144":{"connections":[{"id":42070,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":1144,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy51"},"1151":{"connections":[{"id":4113,"orbit":0}],"group":862,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":8,"skill":1151,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze7"},"1169":{"connections":[{"id":25031,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Urgent Call","orbit":7,"orbitIndex":16,"recipe":["Fear","Isolation","Suffering"],"skill":1169,"stats":["Recover 2% of maximum Life and Mana when you use a Warcry","24% increased Warcry Speed","18% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries34"},"1170":{"connections":[{"id":58295,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":22,"skill":1170,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks12"},"1200":{"connections":[{"id":53822,"orbit":-5},{"id":55190,"orbit":0},{"id":62313,"orbit":0},{"id":18353,"orbit":0}],"group":102,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":36,"skill":1200,"stats":["+5 to any Attribute"],"stringId":"attributes70"},"1205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":1205,"stats":[],"stringId":"mastery_poison198"},"1207":{"connections":[{"id":38323,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":69,"skill":1207,"stats":["+5 to any Attribute"],"stringId":"strength18"},"1214":{"connections":[{"id":53823,"orbit":-4}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block and Shield Defences","orbit":7,"orbitIndex":21,"skill":1214,"stats":["4% increased Block chance","15% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block4"},"1215":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":962,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":1,"orbitIndex":5,"skill":1215,"stats":[],"stringId":"mastery_energyshield106"},"1218":{"connections":[{"id":14945,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":18,"skill":1218,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence7"},"1220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":716,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":1220,"stats":[],"stringId":"mastery_minion_offence_6619_"},"1221":{"connections":[{"id":62237,"orbit":0},{"id":35743,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":1221,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion32"},"1286":{"connections":[{"id":17903,"orbit":-7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":12,"skill":1286,"stats":["16% increased Thorns damage"],"stringId":"getting_hit17"},"1347":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":50098,"orbit":7}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":6,"orbitIndex":12,"skill":1347,"stats":["4% increased Skill Speed"],"stringId":"AscendancyMonk3Small5"},"1352":{"connections":[{"id":53216,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Unbending","orbit":7,"orbitIndex":10,"recipe":["Fear","Despair","Paranoia"],"skill":1352,"stats":["3% increased maximum Life","10% increased Stun Threshold for each time you've been Hit by an Enemy Recently, up to 100%"],"stringId":"stun_threshold31"},"1416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1398,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1416,"stats":[],"stringId":"mastery_attack_6294"},"1420":{"connections":[],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Dizzying Sweep","orbit":7,"orbitIndex":20,"recipe":["Despair","Envy","Despair"],"skill":1420,"stats":["15% increased Attack Area Damage","10% increased Area of Effect for Attacks","5% chance to Daze on Hit"],"stringId":"area_attacks58"},"1433":{"connections":[{"id":31238,"orbit":0},{"id":48530,"orbit":0},{"id":95,"orbit":0}],"group":584,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":56,"skill":1433,"stats":["+5 to any Attribute"],"stringId":"intelligence49"},"1442":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53108,"orbit":0}],"group":550,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Attributes","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":1442,"stats":["3% increased Attributes"],"stringId":"AscendancyMercenary3Small6"},"1447":{"connections":[{"id":22393,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":14,"skill":1447,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence3"},"1448":{"connections":[],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds","isNotable":true,"name":"Bond of the Cat","orbit":2,"orbitIndex":8,"recipe":["Envy","Ire","Ire"],"skill":1448,"stats":["Companions have 20% increased Movement Speed","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"companions55"},"1459":{"connections":[{"id":47252,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":12,"skill":1459,"stats":["16% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration5"},"1468":{"connections":[],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":6,"skill":1468,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration23"},"1477":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":11037,"orbit":0}],"group":852,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":1477,"stats":[],"stringId":"mastery_projectile_6646"},"1499":{"connections":[{"id":33830,"orbit":-2}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":0,"skill":1499,"stats":["10% increased Life Regeneration rate"],"stringId":"monkchakra16"},"1502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","isNotable":true,"name":"Draiocht Cleansing","orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Suffering"],"skill":1502,"stats":["Channelling Skills deal 20% increased Damage","Remove a Curse after Channelling for 2 seconds"],"stringId":"channelling18"},"1506":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Remnant Attraction","orbit":2,"orbitIndex":20,"recipe":["Despair","Disgust","Isolation"],"skill":1506,"stats":["10% chance to create an additional Remnant","Remnants can be collected from 50% further away"],"stringId":"remnant14"},"1514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":29527,"orbit":0}],"group":1414,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":1514,"stats":[],"stringId":"mastery_attack_6303"},"1543":{"connections":[{"id":14096,"orbit":7},{"id":59376,"orbit":0}],"group":690,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":1,"orbitIndex":0,"skill":1543,"stats":["3% increased Cast Speed"],"stringId":"cast_speed24"},"1546":{"connections":[],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Spiral into Depression","orbit":2,"orbitIndex":20,"recipe":["Envy","Despair","Suffering"],"skill":1546,"stats":["3% increased Movement Speed","25% increased Armour","25% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour14"},"1579":{"ascendancyName":"Chronomancer","connections":[{"id":3605,"orbit":-9}],"group":429,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":1579,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancySorceress2Small5"},"1583":{"ascendancyName":"Pathfinder","connections":[{"id":14508,"orbit":5},{"id":9798,"orbit":0},{"id":49503,"orbit":-5},{"id":39292,"orbit":5},{"id":12183,"orbit":0},{"id":16,"orbit":-5}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Pathfinder","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":9,"orbitIndex":48,"skill":1583,"stats":[],"stringId":"AscendancyRanger3Start"},"1599":{"connections":[{"id":31286,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Critical Chance","orbit":2,"orbitIndex":18,"skill":1599,"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"stringId":"physical1"},"1603":{"connections":[{"id":32040,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Storm Driven","orbit":2,"orbitIndex":18,"recipe":["Ire","Ire","Isolation"],"skill":1603,"stats":["15% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery40"},"1628":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":2147483647},{"id":9554,"orbit":-7}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":1628,"stats":["17% increased Stun Threshold"],"stringId":"oracle_beast_corruption3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1631":{"connections":[{"id":29049,"orbit":3},{"id":14001,"orbit":-3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":4,"skill":1631,"stats":["10% increased Charm Effect Duration"],"stringId":"charms10"},"1680":{"connections":[],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Projectile Parry Range","orbit":2,"orbitIndex":2,"skill":1680,"stats":["20% increased Parry Range"],"stringId":"buckler18"},"1700":{"connections":[{"id":48699,"orbit":0}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":2,"orbitIndex":12,"skill":1700,"stats":["10% increased Cold Damage"],"stringId":"ground8"},"1723":{"connections":[{"id":53595,"orbit":0},{"id":2134,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":1723,"stats":["10% increased Poison Duration"],"stringId":"poison8"},"1739":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistMantraofIllusions.dds","isNotable":true,"name":"Hollow Form Technique","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":8,"orbitIndex":63,"skill":1739,"stats":["Grants Skill: Hollow Form"],"stringId":"AscendancyMonk1Notable7"},"1755":{"connections":[{"id":18845,"orbit":-4}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":31707,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":2,"orbitIndex":17,"skill":1755,"stats":["8% increased Spell Damage"],"stringId":"spell_criticals2__"},"1773":{"connections":[{"id":51213,"orbit":4}],"group":1154,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect and Duration","orbit":0,"orbitIndex":0,"skill":1773,"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments36"},"1778":{"connections":[{"id":30408,"orbit":0},{"id":17523,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":12,"skill":1778,"stats":["20% increased Hazard Duration"],"stringId":"hazards9"},"1801":{"connections":[{"id":60,"orbit":3}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":7,"orbitIndex":5,"skill":1801,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"blind1"},"1823":{"connections":[{"id":3471,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Illuminated Crown","orbit":4,"orbitIndex":60,"recipe":["Suffering","Paranoia","Suffering"],"skill":1823,"stats":["20% increased Light Radius","70% increased Energy Shield from Equipped Helmet"],"stringId":"energy_shield39"},"1825":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":177,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1825,"stats":[],"stringId":"mastery_caster_6360"},"1826":{"connections":[{"id":39037,"orbit":0}],"group":913,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":1826,"stats":["+5 to any Attribute"],"stringId":"intelligence18"},"1841":{"connections":[{"id":9405,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":1841,"stats":["15% increased Evasion Rating"],"stringId":"evasion21"},"1855":{"ascendancyName":"Shaman","connections":[{"id":16204,"orbit":2147483647}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Flask Recovery","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":6,"orbitIndex":54,"skill":1855,"stats":["12% increased Life and Mana Recovery from Flasks"],"stringId":"AscendancyDruid2Small7"},"1861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Knight of Tarcus","orbit":4,"orbitIndex":52,"recipe":["Disgust","Isolation","Fear"],"skill":1861,"stats":["+20% of Armour also applies to Elemental Damage","30% increased Presence Area of Effect","15% increased Glory generation"],"stringId":"armour_and_evasion52"},"1865":{"connections":[{"id":54934,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Fire Damage when consuming an Endurance Charge","orbit":2,"orbitIndex":12,"skill":1865,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges13"},"1869":{"connections":[{"id":27095,"orbit":-4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":1,"skill":1869,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze2"},"1878":{"connections":[{"id":14328,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Energy Shield and Armour applies to Elemental Damage Hits","orbit":7,"orbitIndex":23,"skill":1878,"stats":["12% increased maximum Energy Shield","+5% of Armour also applies to Elemental Damage"],"stringId":"energy_shield_and_armour31"},"1887":{"connectionArt":"CharacterPlanned","connections":[{"id":10713,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":2,"skill":1887,"stats":["30% increased Armour while stationary"],"stringId":"oracle_crab_claw3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"1913":{"connections":[{"id":38646,"orbit":0},{"id":36709,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":3,"skill":1913,"stats":["+20 to Armour"],"stringId":"armour7"},"1915":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Critical Chance","orbit":7,"orbitIndex":21,"skill":1915,"stats":["10% increased Critical Hit Chance against Humanoids"],"stringId":"mercenary4"},"1922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51184,"orbit":0}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":1922,"stats":[],"stringId":"mastery_caster_6126"},"1928":{"connections":[],"group":541,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":0,"orbitIndex":0,"skill":1928,"stats":["Minions have 5% increased Attack and Cast Speed"],"stringId":"minion_offence48"},"1953":{"connections":[{"id":23905,"orbit":0}],"group":1223,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":1953,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock19"},"1973":{"connections":[{"id":8607,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":8,"skill":1973,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"life_flasks41"},"1988":{"ascendancyName":"Tactician","connections":[],"group":443,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianDeathFromAboveCommand.dds","isNotable":true,"name":"Unleash Hell!","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":1988,"stats":["Grants Skill: Supporting Fire"],"stringId":"AscendancyMercenary1Notable9_"},"1994":{"ascendancyName":"Warbringer","connections":[{"id":47097,"orbit":0}],"group":42,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Warcry Speed","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":1994,"stats":["20% increased Warcry Speed"],"stringId":"AscendancyWarrior2Small5"},"1995":{"connections":[],"group":1180,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Ailment Chance","orbit":0,"orbitIndex":0,"skill":1995,"stats":["20% increased chance to inflict Ailments with Projectiles"],"stringId":"quivers1_"},"2021":{"connections":[{"id":25857,"orbit":2147483647}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Wellspring","orbit":4,"orbitIndex":68,"recipe":["Disgust","Greed","Guilt"],"skill":2021,"stats":["30% increased Mana Recovery from Flasks","8% increased Attack and Cast Speed during Effect of any Mana Flask"],"stringId":"mana_flasks11"},"2071":{"connections":[{"id":38420,"orbit":0}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":0,"skill":2071,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration13"},"2074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":446,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2074,"stats":[],"stringId":"mastery_armour_and_energy_shield_6273"},"2091":{"connections":[],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":4,"orbitIndex":18,"skill":2091,"stats":["8% chance to Poison on Hit"],"stringId":"poison21"},"2102":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":742,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":2102,"stats":[],"stringId":"mastery_energy_shield_6492"},"2113":{"connections":[{"id":326,"orbit":0},{"id":59694,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"Martial Artistry","orbit":3,"orbitIndex":13,"recipe":["Isolation","Ire","Fear"],"skill":2113,"stats":["25% increased Accuracy Rating with Quarterstaves","25% increased Critical Damage Bonus with Quarterstaves","+25 to Dexterity"],"stringId":"quarterstaff18"},"2119":{"connections":[{"id":53505,"orbit":0}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":0,"skill":2119,"stats":["10% increased amount of Life Leeched"],"stringId":"life_leech20"},"2128":{"connections":[{"id":65256,"orbit":0}],"group":1290,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":2128,"stats":["10% increased Hazard Area of Effect"],"stringId":"hazards17"},"2134":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":9703,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Toxic Tolerance","orbit":3,"orbitIndex":0,"recipe":["Suffering","Fear","Isolation"],"skill":2134,"stats":["Immune to Poison"],"stringId":"poison38"},"2138":{"connections":[{"id":32523,"orbit":0}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Spiral into Insanity","orbit":2,"orbitIndex":12,"recipe":["Greed","Isolation","Envy"],"skill":2138,"stats":["29% increased Chaos Damage","20% increased Armour, Evasion and Energy Shield"],"stringId":"chaos34__"},"2174":{"connections":[{"id":19249,"orbit":4}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":70,"skill":2174,"stats":["15% increased Totem Damage"],"stringId":"totems4_"},"2200":{"connections":[{"id":35689,"orbit":7}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":7,"orbitIndex":20,"skill":2200,"stats":["10% increased Damage"],"stringId":"azmerianimals28"},"2211":{"connections":[{"id":7473,"orbit":7}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":19,"skill":2211,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds8"},"2244":{"connections":[],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge on Critical Hit","orbit":4,"orbitIndex":51,"skill":2244,"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"stringId":"mana_regeneration29"},"2254":{"connections":[{"id":60685,"orbit":0},{"id":43736,"orbit":5},{"id":14666,"orbit":6}],"group":860,"icon":"Art/2DArt/SkillIcons/passives/deepwisdom.dds","isNotable":true,"name":"Pure Energy","orbit":0,"orbitIndex":0,"skill":2254,"stats":["30% increased maximum Energy Shield","+10 to Intelligence"],"stringId":"witch_sorceress_notable2"},"2334":{"connections":[{"id":65091,"orbit":6},{"id":3209,"orbit":-6}],"group":1445,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":2334,"stats":["+8 to Dexterity"],"stringId":"dexterity110"},"2335":{"connections":[{"id":18121,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Turn the Clock Forward","orbit":3,"orbitIndex":8,"recipe":["Despair","Fear","Guilt"],"skill":2335,"stats":["20% increased Spell Damage","15% increased Projectile Speed for Spell Skills"],"stringId":"projectile_spells9"},"2336":{"connections":[{"id":63402,"orbit":2}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Arcane Surge Effect","orbit":2,"orbitIndex":9,"skill":2336,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"wyvern15"},"2344":{"connections":[{"id":34317,"orbit":0}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Dimensional Weakspot","orbit":7,"orbitIndex":6,"recipe":["Greed","Suffering","Isolation"],"skill":2344,"stats":["Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted"],"stringId":"oracle12"},"2361":{"connections":[{"id":34316,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Stun and Knockback","orbit":5,"orbitIndex":4,"skill":2361,"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"stringId":"quarterstaff1"},"2394":{"connections":[],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","isNotable":true,"name":"Blade Flurry","orbit":3,"orbitIndex":9,"recipe":["Envy","Envy","Despair"],"skill":2394,"stats":["6% increased Attack Speed while Dual Wielding","15% increased Attack Critical Hit Chance while Dual Wielding"],"stringId":"dual_wielding8"},"2397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Last Stand","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Fear"],"skill":2397,"stats":["25% increased Attack Damage if you have been Heavy Stunned Recently","25% increased Attack Damage while you have no Life Flask uses left","25% increased Attack Damage while Surrounded","25% increased Attack Damage while on Low Life"],"stringId":"attack21"},"2408":{"connections":[{"id":35696,"orbit":0},{"id":35534,"orbit":0}],"group":1384,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2408,"stats":["+5 to any Attribute"],"stringId":"dexterity58"},"2446":{"connections":[{"id":37164,"orbit":0}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Elemental Damage","orbit":3,"orbitIndex":18,"skill":2446,"stats":["10% increased Elemental Damage"],"stringId":"monkchakra19"},"2455":{"connections":[],"group":801,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":11,"skill":2455,"stats":["8% increased Projectile Damage"],"stringId":"projectiles19"},"2461":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":44605,"orbit":0}],"group":847,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":2461,"stats":[],"stringId":"mastery_accuracy_6269"},"2486":{"connections":[{"id":63732,"orbit":3},{"id":19341,"orbit":4},{"id":58884,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Stars Aligned","orbit":7,"orbitIndex":16,"recipe":["Suffering","Envy","Isolation"],"skill":2486,"stats":["Damage with Hits is Lucky against Enemies that are on Low Life"],"stringId":"enemies_on_low_life10"},"2491":{"connections":[{"id":28175,"orbit":0}],"group":412,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":10,"skill":2491,"stats":[],"stringId":"jewel_slot1974"},"2500":{"connections":[{"id":6030,"orbit":7}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":10,"skill":2500,"stats":["8% chance to Poison on Hit"],"stringId":"poison12"},"2508":{"connections":[{"id":47168,"orbit":0},{"id":59425,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":18,"skill":2508,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup5"},"2511":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":574,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Sundering","orbit":3,"orbitIndex":20,"recipe":["Disgust","Paranoia","Ire"],"skill":2511,"stats":["25% increased Critical Damage Bonus for Attack Damage","+25% to Critical Damage Bonus against Stunned Enemies"],"stringId":"criticals51_"},"2516":{"ascendancyName":"Lich","connections":[],"group":1275,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichSpellsConsumePowerCharges.dds","isNotable":true,"isSwitchable":true,"name":"Price of Power","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichAbyssalApparition.dds","id":11705,"name":"Steward of Kulemak","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Damaging Spells consume a Power Charge if able to trigger Abyssal Apparition"]}},"orbit":0,"orbitIndex":0,"skill":2516,"stats":["Spells consume a Power Charge if able to deal 40% more Damage"],"stringId":"AscendancyWitch3Notable7"},"2559":{"connections":[{"id":62542,"orbit":7}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":22,"skill":2559,"stats":["10% increased Flask Charges gained"],"stringId":"flasks3"},"2560":{"connections":[{"id":20044,"orbit":0}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":1,"skill":2560,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect55"},"2575":{"connections":[{"id":65154,"orbit":0}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Alacrity","orbit":2,"orbitIndex":14,"recipe":["Suffering","Paranoia","Guilt"],"skill":2575,"stats":["30% increased Totem Placement speed","8% increased Attack and Cast Speed if you've summoned a Totem Recently"],"stringId":"totems28"},"2582":{"connections":[{"id":48116,"orbit":0},{"id":41861,"orbit":0},{"id":56847,"orbit":0}],"group":1497,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2582,"stats":["+5 to any Attribute"],"stringId":"dexterity51"},"2606":{"connections":[{"id":47284,"orbit":0},{"id":20388,"orbit":0},{"id":15194,"orbit":0},{"id":3414,"orbit":0}],"group":627,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":1,"orbitIndex":6,"skill":2606,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence24"},"2617":{"connections":[{"id":1200,"orbit":7}],"group":118,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":2617,"stats":["12% increased Fire Damage"],"stringId":"fire68"},"2645":{"connections":[{"id":14832,"orbit":0},{"id":52829,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Skullcrusher","orbit":4,"orbitIndex":69,"recipe":["Ire","Isolation","Ire"],"skill":2645,"stats":["20% more Damage against Heavy Stunned Enemies with Maces"],"stringId":"mace6_"},"2653":{"connections":[{"id":19203,"orbit":0},{"id":30896,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage and Speed","orbit":7,"orbitIndex":17,"skill":2653,"stats":["Channelling Skills deal 8% increased Damage","2% increased Skill Speed with Channelling Skills"],"stringId":"channelling1"},"2672":{"connections":[{"id":45569,"orbit":6}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":2,"skill":2672,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"criticals32_"},"2702":{"ascendancyName":"Amazon","connections":[{"id":3065,"orbit":7}],"group":1599,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Life Leech","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":2702,"stats":["12% increased amount of Life Leeched"],"stringId":"AscendancyHuntress1Small9"},"2732":{"connections":[{"id":16790,"orbit":-2}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":1,"orbitIndex":11,"skill":2732,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration45"},"2733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":306,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":2733,"stats":[],"stringId":"oracle_lightning_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"2745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds","isNotable":true,"name":"The Noble Wolf","orbit":1,"orbitIndex":3,"recipe":["Fear","Greed","Guilt"],"skill":2745,"stats":["25% increased Magnitude of Ailments you inflict against Marked Enemies","20% increased Critical Hit Chance against Marked Enemies","+10 to Dexterity"],"stringId":"azmerianimals48"},"2810":{"ascendancyName":"Disciple of Varashta","connections":[{"id":9843,"orbit":-3}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/ElementalDamageTakenFromMana.dds","isNotable":true,"name":"Varashta's Intuition","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":3,"orbitIndex":20,"skill":2810,"stats":["100% of Elemental Damage is taken from Mana before Life"],"stringId":"AscendancySorceress3Notable3"},"2814":{"connections":[{"id":41447,"orbit":0},{"id":19749,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Engineered Blaze","orbit":3,"orbitIndex":5,"recipe":["Ire","Despair","Isolation"],"skill":2814,"stats":["4% increased Area of Effect for Attacks per Enemy you've Ignited in the last 8 seconds, up to 40%"],"stringId":"fire61"},"2841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":978,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":2841,"stats":[],"stringId":"mastery_life143"},"2843":{"connections":[{"id":61396,"orbit":0},{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Tolerant Equipment","orbit":5,"orbitIndex":36,"recipe":["Guilt","Isolation","Fear"],"skill":2843,"stats":["15% increased Armour and Evasion Rating","Immune to Bleeding if Equipped Helmet has higher Armour than Evasion Rating","Immune to Poison if Equipped Helmet has higher Evasion Rating than Armour"],"stringId":"armour_and_evasion40"},"2847":{"connections":[{"id":45272,"orbit":0}],"group":820,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2847,"stats":["+5 to any Attribute"],"stringId":"strength81"},"2857":{"ascendancyName":"Stormweaver","connections":[{"id":7998,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ShockAddditionalTime.dds","isNotable":true,"name":"Strike Twice","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":6,"orbitIndex":66,"skill":2857,"stats":["Targets can be affected by two of your Shocks at the same time","25% less Magnitude of Shock you inflict"],"stringId":"AscendancySorceress1Notable5"},"2863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Perpetual Freeze","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Isolation"],"skill":2863,"stats":["20% increased Freeze Buildup","15% increased Chill and Freeze Duration on Enemies","15% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze18"},"2864":{"connections":[{"id":54818,"orbit":0},{"id":21468,"orbit":0},{"id":33369,"orbit":0},{"id":59480,"orbit":0},{"id":63360,"orbit":0}],"group":688,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":2864,"stats":["+5 to any Attribute"],"stringId":"attributes72"},"2877":{"ascendancyName":"Lich","connections":[],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichImprovedUnholyMight.dds","isNotable":true,"isSwitchable":true,"name":"Blackened Heart","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneOffering.dds","id":36863,"name":"Unwilling Offering","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Your Offerings can target Enemies in Culling range","Your Offerings affect you instead of your Minions","Offerings created by Culling Enemies have 1% increased Effect per Power of Culled Enemy"]}},"orbit":9,"orbitIndex":104,"skill":2877,"stats":["4% increased Magnitude of Unholy Might Buffs you grant per 100 maximum Mana"],"stringId":"AscendancyWitch3Notable4"},"2888":{"connections":[{"id":8827,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":15,"skill":2888,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech23"},"2936":{"connections":[{"id":13407,"orbit":-3}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":7,"orbitIndex":4,"skill":2936,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals57_"},"2946":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":253,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Resistance Mastery","orbit":1,"orbitIndex":1,"skill":2946,"stats":[],"stringId":"mastery_fire_resistance_6526"},"2955":{"connections":[{"id":28800,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":2,"orbitIndex":0,"skill":2955,"stats":["10% increased Projectile Damage"],"stringId":"projectiles37"},"2964":{"connections":[{"id":18374,"orbit":-7}],"group":523,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Leech","orbit":2,"orbitIndex":15,"skill":2964,"stats":["8% increased amount of Life Leeched","12% increased Thorns damage"],"stringId":"getting_hit7"},"2978":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":937,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":2978,"stats":[],"stringId":"mastery_trap_6758"},"2995":{"ascendancyName":"Lich","connections":[{"id":2516,"orbit":4}],"group":1256,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Energy Shield if Consumed Power Charge","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":12474,"name":"Energy Shield if Consumed Power Charge","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["30% increased maximum Energy Shield if you've consumed a Power Charge Recently"]}},"orbit":0,"orbitIndex":0,"skill":2995,"stats":["30% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"AscendancyWitch3Small8"},"2999":{"connections":[],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Final Barrage","orbit":6,"orbitIndex":22,"recipe":["Isolation","Despair","Disgust"],"skill":2999,"stats":["20% increased Cast Speed when on Low Life","10% reduced Cast Speed when on Full Life"],"stringId":"cast_speed30"},"3025":{"connections":[{"id":38732,"orbit":0},{"id":36782,"orbit":0},{"id":25594,"orbit":0}],"group":863,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3025,"stats":["+5 to any Attribute"],"stringId":"intelligence43"},"3027":{"connections":[{"id":54228,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":22,"skill":3027,"stats":["10% increased Physical Damage"],"stringId":"physical28"},"3041":{"connections":[{"id":59795,"orbit":-4},{"id":858,"orbit":0},{"id":19240,"orbit":6}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":10,"skill":3041,"stats":["+5 to any Attribute"],"stringId":"attributes2"},"3042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":51871,"orbit":0}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":19,"skill":3042,"stats":[],"stringId":"mastery_life133"},"3051":{"connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":0,"skill":3051,"stats":["Offerings have 30% increased Maximum Life"],"stringId":"corpses15"},"3065":{"ascendancyName":"Amazon","connections":[],"group":1601,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonIncreasedLifeRecoveryRatePerMissingLife.dds","isNotable":true,"name":"Mystic Harvest","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":3065,"stats":["Life Leech recovers based on your Elemental damage as well as Physical damage"],"stringId":"AscendancyHuntress1Notable9"},"3084":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":30996,"orbit":2147483647}],"group":530,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":3084,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"AscendancyMercenary3Small7_"},"3091":{"connections":[{"id":8782,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":1,"orbitIndex":7,"skill":3091,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion13"},"3109":{"connections":[{"id":29514,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":6,"skill":3109,"stats":["10% increased Grenade Area of Effect"],"stringId":"grenades3"},"3128":{"connections":[{"id":19722,"orbit":0}],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cast Speed with Cold Skills","orbit":7,"orbitIndex":14,"skill":3128,"stats":["3% increased Cast Speed with Cold Skills"],"stringId":"cold1"},"3131":{"connections":[{"id":2394,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Speed","orbit":2,"orbitIndex":9,"skill":3131,"stats":["3% increased Attack Speed while Dual Wielding"],"stringId":"dual_wielding9"},"3165":{"ascendancyName":"Blood Mage","connections":[{"id":56162,"orbit":-4}],"group":1064,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":3165,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch2Small7"},"3170":{"connections":[{"id":65161,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Deflection","orbit":2,"orbitIndex":20,"skill":3170,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"azmerianimals41"},"3188":{"connections":[{"id":38670,"orbit":0},{"id":46051,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Revenge","orbit":3,"orbitIndex":18,"recipe":["Ire","Disgust","Isolation"],"skill":3188,"stats":["Gain Physical Thorns damage equal to 10% of Item Armour on Equipped Body Armour"],"stringId":"getting_hit9"},"3191":{"connections":[{"id":9863,"orbit":4}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":12,"skill":3191,"stats":["+5% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"armour_and_evasion49_"},"3203":{"connections":[{"id":30562,"orbit":-4},{"id":28464,"orbit":4}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":7,"orbitIndex":14,"skill":3203,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield19"},"3209":{"connections":[{"id":59720,"orbit":-6},{"id":65091,"orbit":4}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":16,"skill":3209,"stats":["15% increased Evasion Rating"],"stringId":"evasion26"},"3215":{"connections":[{"id":44359,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Melding","orbit":7,"orbitIndex":9,"recipe":["Guilt","Envy","Suffering"],"skill":3215,"stats":["40% increased maximum Energy Shield","10% reduced maximum Mana"],"stringId":"energy_shield35"},"3218":{"connections":[{"id":48171,"orbit":0}],"group":259,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":17,"skill":3218,"stats":["10% increased Elemental Damage"],"stringId":"elemental5"},"3223":{"ascendancyName":"Ritualist","connections":[{"id":7068,"orbit":-5},{"id":34785,"orbit":9}],"group":1605,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Attributes","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":3223,"stats":["3% increased Attributes"],"stringId":"AscendancyHuntress3Small2"},"3234":{"connections":[{"id":4447,"orbit":0},{"id":31745,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":8,"skill":3234,"stats":["15% increased Pin duration"],"stringId":"pin3"},"3242":{"connections":[{"id":59636,"orbit":-4}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":3242,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration14"},"3245":{"connections":[{"id":7395,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Block","orbit":2,"orbitIndex":7,"skill":3245,"stats":["4% increased Block chance","10% increased Thorns damage"],"stringId":"getting_hit5"},"3251":{"connections":[{"id":21984,"orbit":0},{"id":33292,"orbit":2147483647}],"group":1169,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3251,"stats":["+5 to any Attribute"],"stringId":"attributes1"},"3281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connectionArt":"CharacterPlanned","connections":[{"id":35720,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","isNotable":true,"name":"Powerful Casting","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":3281,"stats":["2% increased Spell Damage per 10 Strength"],"stringId":"oracle_strength_spell4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3282":{"connections":[{"id":52860,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":15,"skill":3282,"stats":["20% increased Ballista Immobilisation buildup"],"stringId":"ballista1"},"3332":{"connections":[],"group":653,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":3332,"stats":["Minions have +20% to Cold Resistance","Minions have +3% to Maximum Cold Resistances"],"stringId":"minion_defence34"},"3336":{"connections":[{"id":30615,"orbit":0}],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Critical Damage when consuming a Power Charge","orbit":2,"orbitIndex":19,"skill":3336,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"stringId":"power_charges4"},"3339":{"connections":[{"id":45585,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":19,"skill":3339,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded13"},"3348":{"connections":[{"id":50767,"orbit":0}],"group":107,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Spirit of the Wolf","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Suffering"],"skill":3348,"stats":["20% increased Critical Hit Chance while Shapeshifted","8% increased Skill Speed while Shapeshifted"],"stringId":"wolf11"},"3355":{"connections":[{"id":25211,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You and Debuff Expiry Rate","orbit":3,"orbitIndex":0,"skill":3355,"stats":["4% reduced Slowing Potency of Debuffs on You","Debuffs on you expire 3% faster"],"stringId":"slowed_enemies24"},"3363":{"connections":[{"id":38433,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":11,"skill":3363,"stats":["Minions have 10% increased maximum Life"],"stringId":"companions43"},"3365":{"connections":[{"id":59289,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":17,"skill":3365,"stats":["15% increased Immobilisation buildup"],"stringId":"immobilisation3"},"3367":{"aliasPassiveSocket":"voices_jewel_slot5","connections":[],"group":698,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":3367,"stats":[],"stringId":"voices_jewel_slot5"},"3414":{"connections":[{"id":14575,"orbit":0}],"group":642,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":3414,"stats":["Minions have +20% to Lightning Resistance"],"stringId":"minion_defence37"},"3419":{"connections":[{"id":20429,"orbit":0},{"id":30973,"orbit":2}],"group":1517,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Damage","orbit":6,"orbitIndex":59,"skill":3419,"stats":["10% increased Damage with Daggers"],"stringId":"dagger4"},"3431":{"connections":[{"id":43082,"orbit":0}],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":6,"skill":3431,"stats":["3% increased Skill Speed"],"stringId":"movement_speed4"},"3438":{"connections":[{"id":18856,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":3,"skill":3438,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers21"},"3443":{"connections":[{"id":14548,"orbit":-4},{"id":63545,"orbit":-3},{"id":55180,"orbit":7}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":12,"skill":3443,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence25"},"3446":{"connections":[{"id":61938,"orbit":0},{"id":58088,"orbit":0},{"id":41147,"orbit":0}],"group":244,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3446,"stats":["+5 to any Attribute"],"stringId":"strength70"},"3458":{"connections":[{"id":45609,"orbit":-4}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":23,"skill":3458,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals91"},"3463":{"connections":[{"id":4328,"orbit":0},{"id":26885,"orbit":0},{"id":28021,"orbit":0}],"group":1258,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":3463,"stats":["+5 to any Attribute"],"stringId":"attributes76"},"3471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":706,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":3471,"stats":[],"stringId":"mastery_energyshield104"},"3472":{"connections":[{"id":56640,"orbit":-2}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":2,"orbitIndex":14,"skill":3472,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals13"},"3492":{"connections":[{"id":60313,"orbit":0},{"id":19112,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Void","orbit":3,"orbitIndex":12,"recipe":["Isolation","Ire","Disgust"],"skill":3492,"stats":["29% increased Chaos Damage","Enemies you Curse have -3% to Chaos Resistance"],"stringId":"chaos36"},"3516":{"connections":[{"id":62039,"orbit":0},{"id":23227,"orbit":0}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":0,"skill":3516,"stats":["10% increased Melee Damage"],"stringId":"melee43"},"3543":{"connections":[{"id":31825,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":23,"skill":3543,"stats":["12% increased Attack Cold Damage"],"stringId":"cold44"},"3544":{"connectionArt":"CharacterPlanned","connections":[{"id":19953,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":8,"skill":3544,"stats":["15% increased Lightning Damage"],"stringId":"oracle_rust_king5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3567":{"connections":[{"id":53188,"orbit":0},{"id":10159,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Raw Mana","orbit":3,"orbitIndex":16,"recipe":["Suffering","Ire","Isolation"],"skill":3567,"stats":["8% increased maximum Mana","10% increased Mana Cost of Skills"],"stringId":"mana38"},"3601":{"connections":[{"id":47191,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":62,"skill":3601,"stats":["12% increased Fire Damage"],"stringId":"fire2"},"3605":{"ascendancyName":"Chronomancer","connections":[],"group":392,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsReloadCooldownsSkill.dds","isNotable":true,"name":"Unbound Encore","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":3605,"stats":["Grants Skill: Time Snap"],"stringId":"AscendancySorceress2Notable6"},"3624":{"connections":[{"id":18470,"orbit":0},{"id":10927,"orbit":0},{"id":16484,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":5,"skill":3624,"stats":["15% increased Pin Buildup"],"stringId":"pin4"},"3628":{"connections":[{"id":64474,"orbit":0},{"id":3251,"orbit":0}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":5,"skill":3628,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery26"},"3630":{"connections":[{"id":62624,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield Delay","orbit":3,"orbitIndex":18,"skill":3630,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield21_"},"3640":{"connections":[{"id":37780,"orbit":2147483647},{"id":17724,"orbit":2147483647},{"id":14267,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage and Combo","orbit":3,"orbitIndex":7,"skill":3640,"stats":["5% increased Attack Damage","5% Chance to build an additional Combo on Hit"],"stringId":"unarmed1"},"3652":{"connections":[{"id":56714,"orbit":3}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed and Physical Damage","orbit":2,"orbitIndex":7,"skill":3652,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"stringId":"projectiles47"},"3660":{"connections":[{"id":25619,"orbit":-7},{"id":57196,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":18,"skill":3660,"stats":["8% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack_speed44"},"3663":{"connections":[],"group":330,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Kaom's Blessing","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Fear","Isolation"],"skill":3663,"stats":["The next Fire Spell you cast yourself after using a Warcry is Ancestrally Boosted"],"stringId":"DeliriumAnoint_KaomsBlessing"},"3665":{"connections":[{"id":32185,"orbit":-7}],"group":1048,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Attack Damage and Companion Damage as Cold","orbit":0,"orbitIndex":0,"skill":3665,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Cold Damage"],"stringId":"companions64"},"3681":{"connectionArt":"CharacterPlanned","connections":[{"id":57386,"orbit":-8}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Elemental Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":54,"skill":3681,"stats":["17% increased Elemental Ailment Threshold"],"stringId":"oracle_beast_corruption5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3685":{"connections":[{"id":32151,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":3685,"stats":["+3 to all Attributes"],"stringId":"all_attributes11"},"3688":{"connections":[{"id":47614,"orbit":-7},{"id":32509,"orbit":0}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Dynamism","orbit":7,"orbitIndex":4,"recipe":["Isolation","Greed","Ire"],"skill":3688,"stats":["40% increased Damage if you've Triggered a Skill Recently","Meta Skills gain 15% increased Energy"],"stringId":"triggers18"},"3698":{"connections":[{"id":33137,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","isNotable":true,"name":"Spike Pit","orbit":2,"orbitIndex":11,"recipe":["Isolation","Isolation","Greed"],"skill":3698,"stats":["Enemies in Jagged Ground you create take 10% increased Damage"],"stringId":"jagged_ground26"},"3700":{"connections":[{"id":6842,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":6,"skill":3700,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise6"},"3704":{"ascendancyName":"Witchhunter","connections":[{"id":32559,"orbit":0}],"group":292,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDrainMonsterFocus.dds","isNotable":true,"name":"Witchbane","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":3704,"stats":["Enemies have Maximum Concentration equal to 30% of their Maximum Life","Break enemy Concentration on Hit equal to 100% of Damage Dealt","Enemies regain 10% of Concentration every second if they haven't lost Concentration in the past 5 seconds"],"stringId":"AscendancyMercenary2Notable3_"},"3717":{"connections":[{"id":19998,"orbit":0},{"id":35653,"orbit":0}],"group":902,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":3717,"stats":["12% increased Damage with Crossbows"],"stringId":"crossbow1"},"3723":{"connections":[{"id":16413,"orbit":0},{"id":17092,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack and Minion Damage","orbit":2,"orbitIndex":22,"skill":3723,"stats":["8% increased Attack Damage","Minions deal 8% increased Damage"],"stringId":"minion_attack1"},"3744":{"connections":[{"id":5332,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":10,"skill":3744,"stats":["+8 to Dexterity"],"stringId":"attributes114"},"3762":{"ascendancyName":"Titan","connections":[],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsFistOfWar.dds","isNotable":true,"name":"Ancestral Empowerment","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":9,"orbitIndex":125,"skill":3762,"stats":["Every second Slam Skill you use yourself is Ancestrally Boosted"],"stringId":"AscendancyWarrior1Notable2"},"3775":{"connections":[{"id":45244,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":12,"skill":3775,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks27_"},"3781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaUnravelling.dds","isNotable":true,"name":"Unravelling","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":136,"skill":3781,"stats":["Grants Unravelling"],"stringId":"AscendancyMonk3Notable2"},"3823":{"connections":[{"id":5726,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"isSwitchable":true,"name":"Elemental Force","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":17324,"name":"Power of the Dead","stats":["Minions deal 20% increased Damage","Minions have 4% increased Attack and Cast Speed"]}},"orbit":1,"orbitIndex":0,"skill":3823,"stats":["+3% to all Elemental Resistances","20% increased Elemental Damage"],"stringId":"cold34"},"3843":{"connections":[{"id":65265,"orbit":0}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":11,"skill":3843,"stats":["Parry has 25% increased Stun Buildup"],"stringId":"deflect5"},"3866":{"connections":[{"id":32258,"orbit":0},{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":5,"skill":3866,"stats":["Minions have 12% increased maximum Life"],"stringId":"minion_defence10"},"3893":{"connections":[{"id":28038,"orbit":-2}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":0,"skill":3893,"stats":["15% increased Evasion Rating"],"stringId":"deflect27"},"3894":{"connections":[{"id":13307,"orbit":0},{"id":857,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Eldritch Will","orbit":4,"orbitIndex":30,"recipe":["Isolation","Guilt","Isolation"],"skill":3894,"stats":["3% increased maximum Life, Mana and Energy Shield","Gain additional Ailment Threshold equal to 15% of maximum Energy Shield","Gain additional Stun Threshold equal to 15% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield22"},"3896":{"connectionArt":"CharacterPlanned","connections":[{"id":56320,"orbit":0}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Vale Dweller","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":19,"skill":3896,"stats":["50% increased Armour while Bleeding","50% reduced Magnitude of Bleeding on You"],"stringId":"oracle_iron_blood4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"3918":{"connections":[{"id":59695,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":3918,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana3"},"3921":{"connections":[{"id":38398,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Fate Finding","orbit":7,"orbitIndex":10,"recipe":["Fear","Despair","Greed"],"skill":3921,"stats":["20% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds17"},"3936":{"connections":[{"id":13397,"orbit":0}],"group":723,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":3936,"stats":["10% increased Melee Damage"],"stringId":"melee17"},"3949":{"connections":[{"id":27296,"orbit":0},{"id":15247,"orbit":2}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Power Counted","orbit":2,"orbitIndex":10,"skill":3949,"stats":["Empowered Attacks deal 8% increased Damage","5% increased total Power counted by Warcries"],"stringId":"warcries38"},"3985":{"connections":[{"id":48660,"orbit":0},{"id":64140,"orbit":3}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Forces of Nature","orbit":2,"orbitIndex":15,"recipe":["Suffering","Isolation","Ire"],"skill":3985,"stats":["Attack Damage Penetrates 15% of Enemy Elemental Resistances"],"stringId":"elemental_attacks10"},"3987":{"ascendancyName":"Deadeye","connections":[{"id":30,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":3987,"stats":["4% increased Skill Speed"],"stringId":"AscendancyRanger1Small3"},"3988":{"connections":[{"id":51832,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":13,"skill":3988,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries9"},"3994":{"connections":[{"id":34908,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":23,"skill":3994,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect49"},"3995":{"connections":[{"id":12311,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":13,"skill":3995,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow11"},"3999":{"connections":[{"id":37665,"orbit":4},{"id":57863,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":15,"skill":3999,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks10"},"4015":{"connections":[{"id":47429,"orbit":3},{"id":59466,"orbit":-3}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":4,"orbitIndex":6,"skill":4015,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries5"},"4017":{"connections":[{"id":10079,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4017,"stats":["10% increased Mana Regeneration Rate"],"stringId":"energy_shield_recovery10"},"4031":{"connections":[{"id":50403,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Icebreaker","orbit":3,"orbitIndex":15,"recipe":["Ire","Paranoia","Fear"],"skill":4031,"stats":["Gain 50% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"freeze_and_chill_mitigation12"},"4046":{"connections":[{"id":8875,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":2,"orbitIndex":8,"skill":4046,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation6_"},"4059":{"connections":[{"id":10382,"orbit":0},{"id":9510,"orbit":0},{"id":2446,"orbit":0},{"id":18744,"orbit":7},{"id":42339,"orbit":-7}],"group":1170,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4059,"stats":["+5 to any Attribute"],"stringId":"attributes23"},"4061":{"connections":[{"id":27491,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":36,"skill":4061,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield43"},"4083":{"connections":[{"id":33815,"orbit":0},{"id":43677,"orbit":0}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":11,"skill":4083,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison14"},"4086":{"ascendancyName":"Tactician","connections":[],"group":482,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotemAura.dds","isNotable":true,"name":"Strategic Embankments","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":4086,"stats":["Totems you place grant Embankment Auras"],"stringId":"AscendancyMercenary1Notable10_"},"4091":{"connections":[{"id":44316,"orbit":2147483647}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Left Ventricle","orbit":7,"orbitIndex":20,"recipe":["Fear","Envy","Suffering"],"skill":4091,"stats":["20% increased speed of Recoup Effects"],"stringId":"life_recoup34"},"4113":{"connections":[{"id":4627,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":4,"skill":4113,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze5"},"4128":{"connections":[{"id":54283,"orbit":3},{"id":54811,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":18,"skill":4128,"stats":["15% increased Armour"],"stringId":"armour18"},"4139":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":148,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":4139,"stats":[],"stringId":"mastery_life132"},"4140":{"connections":[{"id":59093,"orbit":0},{"id":57273,"orbit":0},{"id":296,"orbit":0}],"group":234,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4140,"stats":["+5 to any Attribute"],"stringId":"attributes3"},"4157":{"connections":[{"id":49220,"orbit":-6}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":18,"skill":4157,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals11"},"4197":{"ascendancyName":"Oracle","connections":[],"group":36,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleRipFromTime.dds","isNotable":true,"name":"Converging Paths","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":4197,"stats":["Grants Skill: Moment of Vulnerability"],"stringId":"AscendancyDruid1Notable4"},"4203":{"connections":[{"id":30555,"orbit":4},{"id":42736,"orbit":-4},{"id":59603,"orbit":-4},{"id":49046,"orbit":0},{"id":42076,"orbit":3}],"group":943,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4203,"stats":["+5 to any Attribute"],"stringId":"intelligence81"},"4238":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Versatile Arms","orbit":0,"orbitIndex":0,"recipe":["Ire","Isolation","Envy"],"skill":4238,"stats":["6% increased Attack Speed with One Handed Melee Weapons","15% increased Accuracy Rating with One Handed Melee Weapons","+10 to Strength and Dexterity"],"stringId":"one_handed10"},"4245":{"ascendancyName":"Tactician","connections":[{"id":54838,"orbit":0}],"group":360,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Pin Buildup","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":4245,"stats":["20% increased Pin Buildup"],"stringId":"AscendancyMercenary1Small4"},"4271":{"connections":[{"id":62887,"orbit":0},{"id":33225,"orbit":-3},{"id":61768,"orbit":-7},{"id":63926,"orbit":-2}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":8,"skill":4271,"stats":["Minions have +8% to all Elemental Resistances"],"stringId":"minion_defence30"},"4295":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":34248,"orbit":-3}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Adverse Growth","orbit":0,"orbitIndex":0,"recipe":["Ire","Paranoia","Disgust"],"skill":4295,"stats":["20% reduced Life Regeneration rate","20% of Damage taken Recouped as Mana"],"stringId":"mana39"},"4313":{"connections":[{"id":28992,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":55896,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":7,"orbitIndex":6,"skill":4313,"stats":["8% increased Projectile Damage"],"stringId":"projectiles14"},"4328":{"connections":[{"id":21208,"orbit":0},{"id":44628,"orbit":0}],"group":1257,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4328,"stats":["+5 to any Attribute"],"stringId":"intelligence64"},"4331":{"connections":[{"id":33590,"orbit":0}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Guided Hand","orbit":3,"orbitIndex":19,"recipe":["Fear","Envy","Envy"],"skill":4331,"stats":["The next Attack you use within 4 seconds after Heavy Stunning a Rare or Unique Enemy is Ancestrally Boosted","Ancestrally Boosted Attacks deal 30% increased Damage"],"stringId":"melee65"},"4345":{"connections":[{"id":45885,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Speed","orbit":3,"orbitIndex":9,"skill":4345,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon19"},"4346":{"connections":[{"id":4519,"orbit":0},{"id":20677,"orbit":0}],"group":1171,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":4346,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals13"},"4364":{"connections":[{"id":23736,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Reduced Movement Penalty and Attack Damage while Moving","orbit":4,"orbitIndex":42,"skill":4364,"stats":["8% increased Attack Damage while moving","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"slow_mitigation11"},"4367":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeatherHigherCritDmg.dds","isNotable":true,"name":"The Mhacha's Gift","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":5,"orbitIndex":54,"skill":4367,"stats":["Dodging can expend up to 2 Owl Feathers, granting Primal Bounty 100% more","Empowerment effect per additional Feather expended","Gain Owl Feathers 50% faster"],"stringId":"AscendancyHuntress2Notable6"},"4377":{"connections":[{"id":50273,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Accuracy","orbit":2,"orbitIndex":15,"skill":4377,"stats":["10% increased Accuracy Rating while Dual Wielding"],"stringId":"dual_wielding3"},"4378":{"connections":[{"id":6330,"orbit":0},{"id":59503,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":9,"skill":4378,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy31"},"4407":{"connections":[],"group":611,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Physical Damage Reduction","orbit":0,"orbitIndex":0,"skill":4407,"stats":["Minions have 12% additional Physical Damage Reduction","Minions have 25% increased Evasion Rating"],"stringId":"minion_defence40_"},"4423":{"connections":[{"id":54058,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","isNotable":true,"name":"Coated Knife","orbit":2,"orbitIndex":7,"skill":4423,"stats":["Critical Hits with Daggers have a 25% chance to Poison the Enemy"],"stringId":"dagger17"},"4442":{"connections":[{"id":62034,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Armour Applies to Lightning Damage Hits","orbit":3,"orbitIndex":10,"skill":4442,"stats":["+15% of Armour also applies to Lightning Damage"],"stringId":"maximum_resistances10"},"4447":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Pin their Motivation","orbit":7,"orbitIndex":12,"recipe":["Greed","Despair","Despair"],"skill":4447,"stats":["20% increased Pin duration","Pinned Enemies cannot deal Critical Hits"],"stringId":"pin8"},"4456":{"connections":[{"id":57710,"orbit":0},{"id":4776,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4456,"stats":["+5 to any Attribute"],"stringId":"intelligence88"},"4467":{"connections":[{"id":42347,"orbit":-2}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Damage vs Blinded","orbit":7,"orbitIndex":4,"skill":4467,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"monkchakra8"},"4492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":833,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Attributes Mastery","orbit":0,"orbitIndex":0,"skill":4492,"stats":[],"stringId":"mastery_attributes255"},"4519":{"connections":[{"id":13724,"orbit":0}],"group":1158,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Damage on Critical","orbit":0,"orbitIndex":0,"skill":4519,"stats":["10% increased Damage if you've dealt a Critical Hit Recently"],"stringId":"criticals18"},"4527":{"connections":[{"id":54701,"orbit":0}],"group":246,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":4527,"stats":["+5 to any Attribute"],"stringId":"attributes51"},"4534":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Piercing Shot","orbit":3,"orbitIndex":13,"recipe":["Disgust","Guilt","Disgust"],"skill":4534,"stats":["50% chance to Pierce an Enemy"],"stringId":"ranged34_"},"4536":{"connections":[{"id":37514,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":1,"skill":4536,"stats":["3% increased Attack Speed with Quarterstaves"],"stringId":"quarterstaff7"},"4544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","isNotable":true,"name":"The Ancient Serpent","orbit":7,"orbitIndex":8,"recipe":["Greed","Guilt","Despair"],"skill":4544,"stats":["40% reduced Poison Duration on you","Life Flasks gain 0.1 charges per Second","+10 to Intelligence"],"stringId":"azmerianimals66"},"4547":{"connections":[{"id":2946,"orbit":0}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Unnatural Resilience","orbit":0,"orbitIndex":0,"recipe":["Isolation","Isolation","Isolation"],"skill":4547,"stats":["+3% to all Elemental Resistances","+2% to Maximum Fire Resistance if you have at least 5 Red Support Gems Socketed"],"stringId":"maximum_resistances20"},"4552":{"connections":[{"id":50817,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":15,"skill":4552,"stats":["10% increased Mana Regeneration Rate"],"stringId":"monkchakra1"},"4577":{"connections":[{"id":3999,"orbit":4}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":8,"skill":4577,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks17"},"4579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Unbothering Cold","orbit":2,"orbitIndex":4,"recipe":["Fear","Isolation","Paranoia"],"skill":4579,"stats":["+10% to Cold Resistance","+2% to Maximum Cold Resistance if you have at least 5 Blue Support Gems Socketed"],"stringId":"cold26"},"4621":{"connectionArt":"CharacterPlanned","connections":[{"id":57202,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun and Elemental Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":30,"skill":4621,"stats":["11% increased Stun Threshold","11% increased Elemental Ailment Threshold"],"stringId":"oracle_beast_corruption1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4623":{"connections":[{"id":48524,"orbit":4}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Spell Costs","orbit":2,"orbitIndex":4,"skill":4623,"stats":["15% of Spell Mana Cost Converted to Life Cost"],"stringId":"life_costs5"},"4624":{"connections":[{"id":49550,"orbit":3}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":4624,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage9"},"4627":{"connections":[{"id":44179,"orbit":0},{"id":55572,"orbit":0}],"group":862,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Climate Change","orbit":7,"orbitIndex":0,"recipe":["Greed","Isolation","Despair"],"skill":4627,"stats":["20% increased Freeze Buildup","Gain 25% of Cold Damage as Extra Fire Damage against Frozen Enemies"],"stringId":"cold36"},"4661":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Inspiring Leader","orbit":3,"orbitIndex":4,"recipe":["Paranoia","Greed","Greed"],"skill":4661,"stats":["Banners also grant +25% to all Elemental Resistances affected targets"],"stringId":"banners10"},"4663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":411,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":0,"orbitIndex":0,"skill":4663,"stats":[],"stringId":"oracle_solo_commander_mastery_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4664":{"connections":[{"id":43938,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":42,"skill":4664,"stats":["6% increased Trap Throwing Speed"],"stringId":"trap5"},"4665":{"connections":[{"id":1913,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":0,"skill":4665,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration19"},"4673":{"connections":[{"id":10047,"orbit":0},{"id":51812,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Hulking Smash","orbit":2,"orbitIndex":16,"recipe":["Disgust","Guilt","Guilt"],"skill":4673,"stats":["30% increased Stun Buildup","+15 to Strength"],"stringId":"stun13"},"4681":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":26228,"orbit":0}],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":4681,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"stringId":"oracle_frenzy_charge1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4709":{"connections":[],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Near Sighted","orbit":2,"orbitIndex":19,"recipe":["Ire","Envy","Paranoia"],"skill":4709,"stats":["30% increased Critical Hit Chance for Attacks","30% increased penalty to Accuracy Rating at range"],"stringId":"accuracy28"},"4716":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Afterimage","orbit":3,"orbitIndex":18,"recipe":["Guilt","Greed","Disgust"],"skill":4716,"stats":["60% increased Evasion Rating if you have Hit an Enemy Recently","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion35"},"4725":{"connections":[{"id":4140,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":4,"orbitIndex":63,"skill":4725,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels5"},"4739":{"connections":[{"id":18845,"orbit":0}],"group":836,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":17306,"name":"Spell and Minion Damage","stats":["10% increased Spell Damage","Minions deal 10% increased Damage"]}},"orbit":3,"orbitIndex":22,"skill":4739,"stats":["10% increased Spell Damage"],"stringId":"spells18"},"4748":{"connections":[{"id":2254,"orbit":6}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":48235,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":3,"orbitIndex":6,"skill":4748,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery24"},"4776":{"connections":[{"id":14363,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":4776,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration8"},"4806":{"connections":[{"id":32183,"orbit":-4}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":4806,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration8"},"4810":{"connections":[{"id":48805,"orbit":7},{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Sanguine Tolerance","orbit":1,"orbitIndex":6,"recipe":["Isolation","Disgust","Greed"],"skill":4810,"stats":["Immune to Corrupted Blood","40% reduced Duration of Bleeding on You"],"stringId":"physical_witch13"},"4828":{"connections":[{"id":19044,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":4828,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana30"},"4833":{"connections":[{"id":33852,"orbit":0}],"group":439,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":4833,"stats":["12% increased Cold Damage"],"stringId":"cold55"},"4844":{"connections":[{"id":33053,"orbit":0}],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":1,"skill":4844,"stats":["10% increased Projectile Damage"],"stringId":"ranged2"},"4847":{"connections":[{"id":6294,"orbit":5}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":5,"orbitIndex":66,"skill":4847,"stats":["3% increased Cast Speed"],"stringId":"cast_speed28__"},"4850":{"connections":[{"id":35503,"orbit":0}],"group":1007,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect and Mana Regeneration","orbit":0,"orbitIndex":0,"skill":4850,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"stringId":"lightning44"},"4873":{"connectionArt":"CharacterPlanned","connections":[{"id":12683,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":0,"skill":4873,"stats":["Meta Skills gain 20% increased Energy"],"stringId":"oracle_energy_gain2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"4882":{"connections":[{"id":38172,"orbit":0},{"id":51921,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":3,"skill":4882,"stats":["15% increased Totem Damage"],"stringId":"totems1"},"4891":{"ascendancyName":"Ritualist","connections":[],"group":1616,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneMaxCharm.dds","isNotable":true,"name":"Intricate Sigils","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":4891,"stats":["+1 Charm Slot","20% more Charm Charges gained"],"stringId":"AscendancyHuntress3Notable3_"},"4921":{"connections":[{"id":13524,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":11,"skill":4921,"stats":["20% increased Presence Area of Effect"],"stringId":"glory8_"},"4925":{"connections":[{"id":19779,"orbit":7}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":4925,"stats":["7% increased Chaos Damage"],"stringId":"chaos9"},"4931":{"connections":[{"id":21404,"orbit":0},{"id":27307,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Dependable Ward","orbit":2,"orbitIndex":0,"recipe":["Ire","Fear","Envy"],"skill":4931,"stats":["+8% to Chaos Resistance","12% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery18"},"4948":{"connections":[],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":6,"skill":4948,"stats":["Break 20% increased Armour"],"stringId":"armour_break14"},"4956":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":606,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":4956,"stats":[],"stringId":"mastery_recovery_6674"},"4959":{"connections":[{"id":12166,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Heavy Frost","orbit":7,"orbitIndex":2,"recipe":["Despair","Fear","Paranoia"],"skill":4959,"stats":["20% increased Freeze Buildup","Hits ignore non-negative Elemental Resistances of Frozen Enemies"],"stringId":"cold33"},"4970":{"connections":[{"id":23195,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","name":"Life and Mana Regeneration Rate","orbit":2,"orbitIndex":7,"skill":4970,"stats":["10% increased Life Regeneration rate","10% increased Mana Regeneration Rate"],"stringId":"companions47"},"4985":{"connections":[{"id":58855,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Flip the Script","orbit":7,"orbitIndex":8,"recipe":["Ire","Disgust","Ire"],"skill":4985,"stats":["Recover 50% of maximum Life when you Heavy Stun a Rare or Unique Enemy"],"stringId":"stun18"},"5009":{"connections":[{"id":12169,"orbit":0}],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Seeing Stars","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Paranoia"],"skill":5009,"stats":["10% chance to Daze on Hit","25% increased Daze Duration"],"stringId":"daze_1"},"5048":{"connections":[{"id":261,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":15,"skill":5048,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison40"},"5049":{"connections":[{"id":49231,"orbit":0},{"id":42177,"orbit":3}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":7,"orbitIndex":18,"skill":5049,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed22"},"5066":{"connections":[{"id":6714,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Curse Effect on you","orbit":2,"orbitIndex":8,"skill":5066,"stats":["10% reduced effect of Curses on you"],"stringId":"mercenary6"},"5077":{"connections":[{"id":33400,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":4,"skill":5077,"stats":["15% increased Parry Hit Area of Effect"],"stringId":"deflect19"},"5084":{"connections":[{"id":35324,"orbit":2}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":22,"skill":5084,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite16"},"5088":{"connections":[{"id":49537,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental","orbit":3,"orbitIndex":18,"skill":5088,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental10"},"5098":{"connections":[{"id":16385,"orbit":-9},{"id":41651,"orbit":2147483647}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":2,"orbitIndex":10,"skill":5098,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners21"},"5108":{"connections":[],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Ailment Chance","orbit":2,"orbitIndex":21,"skill":5108,"stats":["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"],"stringId":"one_handed25_"},"5163":{"connections":[{"id":26726,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback and Stun Buildup","orbit":2,"orbitIndex":15,"skill":5163,"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"stringId":"knockback1"},"5186":{"connections":[{"id":6800,"orbit":3}],"group":1369,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":5186,"stats":["11% increased Chaos Damage"],"stringId":"chaos25"},"5188":{"connections":[{"id":27671,"orbit":0},{"id":38668,"orbit":0},{"id":24165,"orbit":0}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion and Energy Shield Delay","orbit":7,"orbitIndex":3,"skill":5188,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"unarmed9"},"5191":{"connections":[{"id":54198,"orbit":0}],"group":1249,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolfNotable.dds","isNotable":true,"name":"Bond of the Wolf","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Paranoia","Envy"],"skill":5191,"stats":["6% increased Attack Speed","Companions have 50% chance to gain Onslaught on Kill"],"stringId":"companions54"},"5227":{"connections":[{"id":51708,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Escape Strategy","orbit":3,"orbitIndex":20,"recipe":["Despair","Paranoia","Despair"],"skill":5227,"stats":["100% increased Evasion Rating if you have been Hit Recently","30% reduced Evasion Rating if you haven't been Hit Recently"],"stringId":"evasion6"},"5257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":16367,"orbit":2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Echoing Frost","orbit":7,"orbitIndex":20,"recipe":["Suffering","Guilt","Greed"],"skill":5257,"stats":["30% increased Elemental Damage if you've Chilled an Enemy Recently"],"stringId":"cold37"},"5284":{"connections":[{"id":32278,"orbit":0}],"group":542,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Shredding Force","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Greed"],"skill":5284,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"stringId":"physical34"},"5295":{"connections":[{"id":5961,"orbit":0}],"group":998,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":5295,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning26_"},"5305":{"connections":[{"id":3431,"orbit":0},{"id":24287,"orbit":0}],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Skill Speed","orbit":1,"orbitIndex":2,"skill":5305,"stats":["3% increased Skill Speed"],"stringId":"movement_speed5"},"5314":{"connections":[{"id":29009,"orbit":0}],"group":812,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":36,"skill":5314,"stats":["+5 to any Attribute"],"stringId":"intelligence57"},"5324":{"connections":[{"id":54437,"orbit":2147483647},{"id":2397,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage if Stunned Recently","orbit":7,"orbitIndex":16,"skill":5324,"stats":["20% increased Attack Damage if you have been Heavy Stunned Recently"],"stringId":"attack39"},"5332":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":871,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","isNotable":true,"name":"Crystallised Immunities","orbit":2,"orbitIndex":8,"recipe":["Isolation","Isolation","Suffering"],"skill":5332,"stats":["Immune to Chill if a majority of your Socketed Support Gems are Blue","Immune to Ignite if a majority of your Socketed Support Gems are Red","Immune to Shock if a majority of your Socketed Support Gems are Green"],"stringId":"attributes115"},"5335":{"connections":[{"id":52060,"orbit":0}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Shimmering Mirage","orbit":7,"orbitIndex":7,"recipe":["Envy","Despair","Fear"],"skill":5335,"stats":["Gain additional Ailment Threshold equal to 30% of maximum Energy Shield","10% reduced Duration of Ailments on You"],"stringId":"stun_threshold_from_energy_shield21"},"5348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5348,"stats":[],"stringId":"mastery_elemental98"},"5386":{"ascendancyName":"Smith of Kitava","connections":[{"id":22541,"orbit":0}],"group":6,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Damage","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":5386,"stats":["20% increased Fire Damage"],"stringId":"AscendancyWarrior3Small1"},"5390":{"connections":[{"id":16142,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":14,"skill":5390,"stats":["15% increased Freeze Buildup"],"stringId":"cold47"},"5398":{"connections":[{"id":51820,"orbit":-6}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast Speed","orbit":4,"orbitIndex":34,"skill":5398,"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"stringId":"totems31"},"5407":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":56910,"orbit":0}],"group":796,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":5407,"stats":[],"stringId":"mastery_attack2"},"5410":{"connections":[{"id":33590,"orbit":0}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Channelled Heritage","orbit":3,"orbitIndex":15,"recipe":["Envy","Envy","Fear"],"skill":5410,"stats":["30% increased Area of Effect of Ancestrally Boosted Attacks"],"stringId":"melee64"},"5501":{"connections":[{"id":48821,"orbit":0}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/Annihilation.dds","isNotable":true,"name":"Critical Overload","orbit":0,"orbitIndex":0,"skill":5501,"stats":["15% increased Critical Hit Chance for Spells","15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals14"},"5544":{"connections":[{"id":43711,"orbit":3}],"group":331,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":10,"skill":5544,"stats":["30% increased Thorns Critical Damage Bonus"],"stringId":"getting_hit22"},"5563":{"ascendancyName":"Amazon","connections":[{"id":47312,"orbit":-7}],"group":1606,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Flask Recovery","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":5563,"stats":["15% increased Life and Mana Recovery from Flasks"],"stringId":"AscendancyHuntress1Small7"},"5564":{"connections":[{"id":48833,"orbit":0},{"id":63585,"orbit":0}],"group":1092,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":5564,"stats":["15% increased Electrocute Buildup"],"stringId":"lightning15"},"5571":{"ascendancyName":"Oracle","connections":[{"id":47190,"orbit":8}],"group":11,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleDiffChoices.dds","isNotable":true,"name":"The Unseen Path","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":5571,"stats":["Walk the Paths Not Taken"],"stringId":"AscendancyDruid1Notable2"},"5580":{"connections":[{"id":42710,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Watchtowers","orbit":0,"orbitIndex":0,"recipe":["Disgust","Suffering","Suffering"],"skill":5580,"stats":["Recoup 5% of damage taken by your Totems as Life","Each Totem applies 2% increased Damage taken to Enemies in their Presence"],"stringId":"totems9"},"5594":{"connections":[{"id":50107,"orbit":0},{"id":8785,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Decrepifying Curse","orbit":2,"orbitIndex":12,"recipe":["Isolation","Envy","Despair"],"skill":5594,"stats":["20% increased duration of Ailments you inflict against Cursed Enemies"],"stringId":"curses25"},"5642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":57405,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Behemoth","orbit":2,"orbitIndex":8,"recipe":["Fear","Isolation","Greed"],"skill":5642,"stats":["3% increased maximum Life","8% increased Area of Effect for Attacks","5% chance for Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"slam_area5"},"5663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Endurance","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Envy"],"skill":5663,"stats":["+2 to Maximum Endurance Charges"],"stringId":"endurance_charges7"},"5681":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[],"group":481,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":5681,"stats":[],"stringId":"mastery_fortify_6546_"},"5686":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Chillproof","orbit":2,"orbitIndex":14,"recipe":["Paranoia","Disgust","Disgust"],"skill":5686,"stats":["10% increased Armour","30% reduced Effect of Chill on you","30% increased Freeze Threshold","+30% of Armour also applies to Cold Damage"],"stringId":"armour41"},"5692":{"connections":[{"id":41154,"orbit":0},{"id":35708,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":8,"skill":5692,"stats":["12% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze15"},"5695":{"connections":[{"id":32309,"orbit":7},{"id":50104,"orbit":5}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":20,"skill":5695,"stats":["15% increased Archon Buff duration"],"stringId":"archon2_"},"5702":{"connections":[{"id":13411,"orbit":-5}],"group":1114,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":5702,"stats":["+5 to any Attribute"],"stringId":"dexterity4_"},"5703":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":16367,"orbit":2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Echoing Thunder","orbit":7,"orbitIndex":4,"recipe":["Despair","Suffering","Ire"],"skill":5703,"stats":["30% increased Elemental Damage if you've Shocked an Enemy Recently"],"stringId":"lightning40"},"5704":{"connections":[{"id":62166,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Speed","orbit":2,"orbitIndex":8,"skill":5704,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"accuracy38"},"5710":{"connections":[{"id":6839,"orbit":-3},{"id":38323,"orbit":0},{"id":14923,"orbit":0},{"id":6529,"orbit":-4}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/strongarm.dds","isNotable":true,"name":"Brutal","orbit":4,"orbitIndex":51,"skill":5710,"stats":["10% increased Stun Buildup","16% increased Melee Damage","+10 to Strength"],"stringId":"marauder_brute_notable1"},"5726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":777,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":5726,"stats":[],"stringId":"mastery_elemental94"},"5728":{"connections":[{"id":17349,"orbit":-3},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Ancient Aegis","orbit":7,"orbitIndex":4,"recipe":["Despair","Paranoia","Envy"],"skill":5728,"stats":["60% increased Armour from Equipped Body Armour","60% increased Energy Shield from Equipped Body Armour"],"stringId":"energy_shield_and_armour11"},"5733":{"ascendancyName":"Spirit Walker","connections":[{"id":56489,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Spirit","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":9,"orbitIndex":25,"skill":5733,"stats":["+10 to Spirit"],"stringId":"AscendancyHuntress2Small8"},"5740":{"connections":[{"id":40687,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":2,"orbitIndex":6,"skill":5740,"stats":["20% increased Presence Area of Effect"],"stringId":"glory20"},"5766":{"connections":[{"id":51416,"orbit":-4},{"id":16705,"orbit":4}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":6,"orbitIndex":60,"skill":5766,"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"stringId":"spells16"},"5777":{"connections":[{"id":58651,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"isSwitchable":true,"name":"Deadly Swarm","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":54594,"name":"Natural Essence","stats":["16% increased Armour","16% increased maximum Energy Shield","20% increased Elemental Ailment Threshold"]}},"orbit":4,"orbitIndex":4,"skill":5777,"stats":["Minions deal 15% increased Damage","Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence13"},"5797":{"connections":[{"id":59538,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Freeze Buildup and Cold Damage","orbit":2,"orbitIndex":2,"skill":5797,"stats":["8% increased Cold Damage","8% increased Freeze Buildup"],"stringId":"daze_15"},"5800":{"connections":[{"id":43149,"orbit":0},{"id":22975,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":7,"orbitIndex":0,"skill":5800,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy41"},"5802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","isNotable":true,"name":"Stand and Deliver","orbit":0,"orbitIndex":0,"recipe":["Disgust","Greed","Isolation"],"skill":5802,"stats":["Projectiles have 40% increased Critical Damage Bonus against Enemies within 2m","Projectiles deal 25% increased Damage with Hits against Enemies within 2m"],"stringId":"projectiles29"},"5817":{"ascendancyName":"Deadeye","connections":[],"group":1557,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeLingeringMirage.dds","isNotable":true,"name":"Mirage Deadeye","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":5817,"stats":["Grants Skill: Mirage Deadeye"],"stringId":"AscendancyRanger1Notable4"},"5826":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1109,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":22,"skill":5826,"stats":[],"stringId":"mastery_projectile204"},"5852":{"ascendancyName":"Smith of Kitava","connections":[{"id":20895,"orbit":0},{"id":47236,"orbit":0},{"id":5386,"orbit":0},{"id":14960,"orbit":0},{"id":9988,"orbit":0}],"group":41,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Smith of Kitava","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":9,"orbitIndex":96,"skill":5852,"stats":[],"stringId":"AscendancyWarrior3Start"},"5862":{"connections":[{"id":22697,"orbit":-2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":7,"orbitIndex":14,"skill":5862,"stats":["+5% to Lightning Resistance"],"stringId":"shaman6__"},"5920":{"connections":[{"id":52574,"orbit":-3},{"id":51921,"orbit":5}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":2,"orbitIndex":16,"skill":5920,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks20"},"5936":{"connections":[{"id":65248,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":5936,"stats":["10% increased Elemental Damage"],"stringId":"elemental53"},"5961":{"connections":[{"id":54675,"orbit":0},{"id":11315,"orbit":0}],"group":985,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":5961,"stats":["10% increased Lightning Damage"],"stringId":"lightning25"},"5988":{"connections":[{"id":38459,"orbit":7}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Damage vs Blinded","orbit":2,"orbitIndex":8,"skill":5988,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"blind7"},"6006":{"connections":[{"id":38105,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":62,"skill":6006,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield9"},"6008":{"connections":[{"id":58096,"orbit":2}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":19,"skill":6008,"stats":["10% increased Spell Damage"],"stringId":"spells4"},"6010":{"connections":[{"id":13367,"orbit":0},{"id":38969,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":6010,"stats":["12% increased Accuracy Rating"],"stringId":"accuracy4"},"6015":{"connections":[{"id":35426,"orbit":6}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":15,"skill":6015,"stats":["+5 to any Attribute"],"stringId":"strength16"},"6030":{"connections":[],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":5,"skill":6030,"stats":["8% chance to Poison on Hit"],"stringId":"poison11"},"6077":{"connections":[{"id":35645,"orbit":-2}],"group":559,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","orbit":0,"orbitIndex":0,"skill":6077,"stats":["Minions have 20% increased Cooldown Recovery Rate for Command Skills"],"stringId":"minion_offence45"},"6078":{"connections":[{"id":61119,"orbit":4}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":3,"orbitIndex":1,"skill":6078,"stats":["8% chance to Poison on Hit"],"stringId":"poison22"},"6079":{"connections":[{"id":10242,"orbit":0}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":6079,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup23"},"6088":{"connectionArt":"CharacterPlanned","connections":[{"id":54380,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"First Sting","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":6088,"stats":["30% chance to Poison on Hit against Enemies that are not Poisoned","80% increased Magnitude of Poison you inflict on targets that are not Poisoned"],"stringId":"oracle_poison5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6100":{"connectionArt":"CharacterPlanned","connections":[{"id":20963,"orbit":4}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":11,"skill":6100,"stats":["20% increased Critical Damage Bonus"],"stringId":"oracle_slow_crits3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6109":{"ascendancyName":"Amazon","connections":[{"id":63254,"orbit":0}],"group":1603,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Evasion","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":6109,"stats":["20% increased Evasion Rating"],"stringId":"AscendancyHuntress1Small8"},"6127":{"ascendancyName":"Warbringer","connections":[],"group":33,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEncasedInJade.dds","isNotable":true,"name":"Jade Heritage","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":6127,"stats":["Gain a stack of Jade every second","Grants Skill: Encase in Jade"],"stringId":"AscendancyWarrior2Notable3"},"6133":{"connections":[{"id":33402,"orbit":0},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Core of the Guardian","orbit":4,"orbitIndex":48,"recipe":["Paranoia","Greed","Fear"],"skill":6133,"stats":["20% reduced maximum Energy Shield","30% increased Block chance"],"stringId":"shield14_"},"6153":{"connections":[{"id":44952,"orbit":0},{"id":10362,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":14,"skill":6153,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration1"},"6161":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1173,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":0,"orbitIndex":0,"skill":6161,"stats":[],"stringId":"mastery_bleeding_6328_"},"6178":{"connections":[{"id":33415,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Power Shots","orbit":4,"orbitIndex":35,"recipe":["Paranoia","Isolation","Suffering"],"skill":6178,"stats":["15% reduced Attack Speed with Crossbows","80% increased Critical Damage Bonus with Crossbows"],"stringId":"crossbow8_"},"6222":{"connections":[{"id":57608,"orbit":0},{"id":65189,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Damage","orbit":7,"orbitIndex":11,"skill":6222,"stats":["10% increased Damage while Shapeshifted"],"stringId":"shapeshifting1"},"6229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":26490,"orbit":7}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Push the Advantage","orbit":7,"orbitIndex":5,"recipe":["Fear","Ire","Disgust"],"skill":6229,"stats":["40% increased Critical Damage Bonus with One Handed Melee Weapons"],"stringId":"one_handed15"},"6266":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":9,"skill":6266,"stats":["10% increased Damage against Demons"],"stringId":"mercenary1"},"6269":{"connections":[{"id":45990,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":2,"orbitIndex":1,"skill":6269,"stats":["3% increased Attack Speed with Axes"],"stringId":"axe7"},"6274":{"connections":[{"id":56567,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":17,"skill":6274,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy7"},"6287":{"connections":[{"id":364,"orbit":2147483647}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":6287,"stats":["+8 to Intelligence"],"stringId":"attributes104"},"6294":{"connections":[{"id":52429,"orbit":4}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":4,"orbitIndex":54,"skill":6294,"stats":["3% increased Cast Speed"],"stringId":"cast_speed27"},"6304":{"connections":[{"id":12125,"orbit":0}],"group":403,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Stand Ground","orbit":2,"orbitIndex":4,"recipe":["Greed","Paranoia","Guilt"],"skill":6304,"stats":["Regenerate 1% of maximum Life per second while affected by any Damaging Ailment","Regenerate 1% of maximum Life per second while stationary"],"stringId":"life_regeneration38"},"6330":{"connections":[],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Damage","orbit":7,"orbitIndex":5,"skill":6330,"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"stringId":"accuracy21"},"6338":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":2254,"orbit":0}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":6338,"stats":[],"stringId":"mastery_energyshield105"},"6355":{"connections":[{"id":14110,"orbit":-4},{"id":38124,"orbit":4}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":2,"skill":6355,"stats":["15% increased Totem Damage"],"stringId":"totems36"},"6356":{"connections":[{"id":27900,"orbit":0}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","orbit":7,"orbitIndex":21,"skill":6356,"stats":["4% increased Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical56"},"6416":{"connections":[{"id":51821,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":20,"skill":6416,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour4"},"6490":{"connections":[{"id":14082,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":6490,"stats":["10% increased Physical Damage"],"stringId":"physical23_"},"6502":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":184,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupStaff.dds","isOnlyImage":true,"name":"Flail Mastery","orbit":0,"orbitIndex":0,"skill":6502,"stats":[],"stringId":"mastery_flail_6533"},"6505":{"connections":[{"id":55060,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":3,"orbitIndex":4,"skill":6505,"stats":["15% chance to Pierce an Enemy"],"stringId":"ranged47_"},"6514":{"connections":[{"id":47173,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Cacophony","orbit":4,"orbitIndex":5,"recipe":["Isolation","Guilt","Fear"],"skill":6514,"stats":["40% increased Damage with Warcries","Warcry Skills have 25% increased Area of Effect"],"stringId":"warcries11"},"6529":{"connections":[{"id":32416,"orbit":-3}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":0,"skill":6529,"stats":["15% increased Armour"],"stringId":"armour5"},"6530":{"connections":[{"id":1448,"orbit":4},{"id":11825,"orbit":5}],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion and Companion Movement Speed","orbit":3,"orbitIndex":14,"skill":6530,"stats":["10% increased Evasion Rating","Companions have 8% increased Movement Speed"],"stringId":"companions56"},"6544":{"connections":[{"id":56061,"orbit":6},{"id":42604,"orbit":0}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Burning Strikes","orbit":4,"orbitIndex":53,"recipe":["Envy","Disgust","Isolation"],"skill":6544,"stats":["Gain 12% of Physical Damage as Extra Fire Damage"],"stringId":"fire38"},"6554":{"connections":[],"group":780,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":6554,"stats":["12% increased Cold Damage"],"stringId":"cold61"},"6570":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1305,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":6570,"stats":[],"stringId":"mastery_curse70"},"6588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":898,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":6588,"stats":[],"stringId":"mastery_caster43"},"6596":{"connections":[{"id":41171,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Speed","orbit":4,"orbitIndex":30,"skill":6596,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"stringId":"boss_slaying5"},"6623":{"connections":[{"id":12821,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Aura Effect","orbit":1,"orbitIndex":10,"skill":6623,"stats":["Banner Skills have 12% increased Aura Magnitudes"],"stringId":"banners8"},"6626":{"connections":[{"id":46475,"orbit":4}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":21,"skill":6626,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion10"},"6655":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":717,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Aggravation","orbit":2,"orbitIndex":14,"recipe":["Despair","Suffering","Envy"],"skill":6655,"stats":["10% chance to Aggravate Bleeding on targets you Hit with Attacks"],"stringId":"bleed13"},"6660":{"connections":[{"id":39050,"orbit":-7}],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":2,"orbitIndex":12,"skill":6660,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments2"},"6686":{"connections":[{"id":51184,"orbit":-4}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isSwitchable":true,"name":"Mana Regeneration","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":29472,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":2,"orbitIndex":1,"skill":6686,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana8"},"6689":{"connections":[{"id":51735,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":4,"orbitIndex":39,"skill":6689,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield4"},"6714":{"connections":[{"id":41646,"orbit":0}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Curse Effect on you and Life Regeneration Rate","orbit":2,"orbitIndex":12,"skill":6714,"stats":["5% increased Life Regeneration rate","5% reduced effect of Curses on you"],"stringId":"mercenary10"},"6715":{"connections":[{"id":116,"orbit":3},{"id":41372,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield and Mana Regeneration","orbit":7,"orbitIndex":17,"skill":6715,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"stringId":"energy_shield13"},"6735":{"connections":[{"id":41935,"orbit":4},{"id":43460,"orbit":-5}],"group":179,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Armour","orbit":0,"orbitIndex":0,"skill":6735,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"bear4"},"6744":{"connections":[{"id":49357,"orbit":0},{"id":483,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":6,"skill":6744,"stats":["+5 to any Attribute"],"stringId":"intelligence32"},"6748":{"connections":[{"id":48618,"orbit":7},{"id":62122,"orbit":3}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":7,"orbitIndex":8,"skill":6748,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"damage_from_mana2"},"6752":{"connections":[{"id":7378,"orbit":0},{"id":29148,"orbit":4}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":23,"skill":6752,"stats":["12% increased Fire Damage"],"stringId":"fire5"},"6772":{"connections":[{"id":60505,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":6,"skill":6772,"stats":["+5 to any Attribute"],"stringId":"dexterity18"},"6789":{"connections":[{"id":4313,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":22193,"name":"Attack Damage","stats":["8% increased Attack Damage"]}},"orbit":2,"orbitIndex":1,"skill":6789,"stats":["8% increased Projectile Damage"],"stringId":"projectiles8"},"6792":{"connections":[{"id":33245,"orbit":0},{"id":2408,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":6,"skill":6792,"stats":["10% increased Projectile Damage"],"stringId":"ranged10"},"6800":{"connections":[{"id":32438,"orbit":4}],"group":1355,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":6800,"stats":["11% increased Chaos Damage"],"stringId":"chaos26"},"6839":{"connections":[{"id":39581,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":14,"skill":6839,"stats":["15% increased Stun Buildup"],"stringId":"stun5"},"6842":{"connections":[{"id":18472,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":3,"orbitIndex":9,"skill":6842,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise3"},"6872":{"connections":[{"id":33939,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Armour Applies to Cold Damage Hits","orbit":4,"orbitIndex":4,"skill":6872,"stats":["+15% of Armour also applies to Cold Damage"],"stringId":"maximum_resistances7_"},"6874":{"connectionArt":"CharacterPlanned","connections":[{"id":34940,"orbit":-2}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Life Recoup","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":2,"skill":6874,"stats":["10% of Damage taken Recouped as Life while Channelling"],"stringId":"oracle_channelling4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"6891":{"connections":[{"id":56265,"orbit":0}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":22,"skill":6891,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals89"},"6898":{"connections":[{"id":17584,"orbit":-8},{"id":61067,"orbit":8},{"id":48305,"orbit":0},{"id":30704,"orbit":0},{"id":17517,"orbit":-8},{"id":28718,"orbit":0}],"group":630,"icon":"Art/2DArt/SkillIcons/passives/PressurePoints.dds","isNotable":true,"isSwitchable":true,"name":"Relentless Vindicator","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/stormborn.dds","id":7197,"name":"Guardian of the Wilds","stats":["10% increased Damage","Gain 5% of Damage as Extra Damage of a random Element","+5 to Strength and Intelligence"]}},"orbit":0,"orbitIndex":0,"skill":6898,"stats":["10% increased Damage","10% increased Critical Hit Chance","+5 to Strength and Intelligence"],"stringId":"templar_druid_notable1"},"6900":{"connections":[{"id":26479,"orbit":-6},{"id":45751,"orbit":0}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Maximum Block","orbit":5,"orbitIndex":0,"skill":6900,"stats":["+1% to maximum Block chance"],"stringId":"shield36"},"6912":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":1175,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":6912,"stats":[],"stringId":"mastery_twohand243"},"6923":{"connections":[{"id":1087,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":10,"skill":6923,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed13"},"6935":{"ascendancyName":"Witchhunter","connections":[],"group":321,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterStrongerSpellAegis.dds","isNotable":true,"name":"Ceremonial Ablution","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":6935,"stats":["Sorcery Ward's Barrier can also take Physical and Chaos Damage from Hits"],"stringId":"AscendancyMercenary2Notable6"},"6950":{"connections":[{"id":49804,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":2,"skill":6950,"stats":["10% increased Exposure Effect"],"stringId":"elemental59"},"6951":{"connections":[{"id":23608,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":4,"orbitIndex":54,"skill":6951,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison3"},"6952":{"connections":[],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":18,"skill":6952,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks35"},"6988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":2,"orbitIndex":10,"skill":6988,"stats":[],"stringId":"mastery_herald_6560"},"6999":{"connectionArt":"CharacterPlanned","connections":[{"id":15672,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":7,"skill":6999,"stats":["Totems gain +2% to all Maximum Elemental Resistances"],"stringId":"oracle_totems4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":7023,"stats":[],"stringId":"mastery_cold61"},"7049":{"connections":[{"id":22556,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":19,"skill":7049,"stats":["30% increased Armour while Surrounded"],"stringId":"being_surrounded1"},"7054":{"connections":[{"id":21142,"orbit":0},{"id":47009,"orbit":0},{"id":17088,"orbit":0}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":7,"orbitIndex":8,"skill":7054,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks44"},"7060":{"connections":[{"id":24339,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":20,"skill":7060,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks39"},"7062":{"connections":[{"id":16680,"orbit":0},{"id":61432,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Reusable Ammunition","orbit":4,"orbitIndex":19,"recipe":["Paranoia","Isolation","Despair"],"skill":7062,"stats":["Bolts fired by Crossbow Attacks have 30% chance to not","expend Ammunition if you've Reloaded Recently"],"stringId":"crossbow14"},"7066":{"connectionArt":"CharacterPlanned","connections":[{"id":23932,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":6,"skill":7066,"stats":["5% increased Attack Speed with Bows"],"stringId":"oracle_bow_movement6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7068":{"ascendancyName":"Ritualist","connections":[],"group":1600,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistIncreasedEffectOfJewellery.dds","isNotable":true,"name":"Mystic Attunement","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":7068,"stats":["25% increased bonuses gained from Equipped Rings and Amulets"],"stringId":"AscendancyHuntress3Notable1_"},"7104":{"connections":[{"id":54733,"orbit":-3},{"id":14258,"orbit":-3}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":19,"skill":7104,"stats":["15% increased Effect of Puppet Master"],"stringId":"Puppetmaster10"},"7120":{"ascendancyName":"Witchhunter","connections":[{"id":43131,"orbit":-8},{"id":20830,"orbit":0},{"id":61897,"orbit":8},{"id":51737,"orbit":0},{"id":25172,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Witchhunter","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":9,"orbitIndex":72,"skill":7120,"stats":[],"stringId":"AscendancyMercenary2Start"},"7128":{"connections":[],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Dangerous Blossom","orbit":6,"orbitIndex":63,"recipe":["Paranoia","Envy","Isolation"],"skill":7128,"stats":["Gain 10% of Damage as Extra Physical Damage"],"stringId":"physical68__"},"7163":{"connections":[{"id":45100,"orbit":3},{"id":23013,"orbit":0}],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Stimulants","orbit":5,"orbitIndex":45,"recipe":["Despair","Greed","Greed"],"skill":7163,"stats":["16% increased Attack Speed during any Flask Effect"],"stringId":"attack_speed31"},"7183":{"connections":[{"id":48589,"orbit":-6}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":5,"skill":7183,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks23_"},"7201":{"connections":[{"id":516,"orbit":3}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":21,"skill":7201,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles33"},"7204":{"connections":[{"id":53527,"orbit":0},{"id":4985,"orbit":0},{"id":64525,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":0,"orbitIndex":0,"skill":7204,"stats":["15% increased Stun Buildup"],"stringId":"stun6"},"7218":{"connections":[{"id":60203,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":22,"skill":7218,"stats":["+8 to Strength"],"stringId":"attributes109"},"7246":{"ascendancyName":"Stormweaver","connections":[{"id":39204,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Mana Regeneration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":54,"skill":7246,"stats":["12% increased Mana Regeneration Rate"],"stringId":"AscendancySorceress1Small2"},"7251":{"connections":[],"group":596,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":7251,"stats":["10% increased Attack Damage"],"stringId":"life_leech6"},"7258":{"connectionArt":"CharacterPlanned","connections":[{"id":11861,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":5,"skill":7258,"stats":["10% increased Spell Damage","+10 to Strength"],"stringId":"oracle_strength_spell2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7275":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Electrocuting Exposure","orbit":4,"orbitIndex":64,"recipe":["Fear","Fear","Ire"],"skill":7275,"stats":["Gain 25% of Physical Damage as Extra Lightning Damage against Electrocuted Enemies"],"stringId":"shock_mitigation12"},"7294":{"connections":[{"id":65498,"orbit":0},{"id":39307,"orbit":0},{"id":41017,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Physical Damage","orbit":2,"orbitIndex":16,"skill":7294,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"stringId":"physical47"},"7302":{"connections":[{"id":52615,"orbit":0},{"id":30077,"orbit":0}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Echoing Pulse","orbit":7,"orbitIndex":0,"recipe":["Fear","Envy","Ire"],"skill":7302,"stats":["Echoed Spells have 25% increased Area of Effect"],"stringId":"area_spells26"},"7333":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":761,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":7333,"stats":[],"stringId":"mastery_elemental_6471"},"7338":{"connections":[{"id":52060,"orbit":0}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Abasement","orbit":7,"orbitIndex":23,"recipe":["Paranoia","Despair","Fear"],"skill":7338,"stats":["20% increased Stun Recovery","Gain additional Stun Threshold equal to 30% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield19_"},"7341":{"connections":[{"id":33244,"orbit":0}],"group":367,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Ignore Pain","orbit":0,"orbitIndex":0,"recipe":["Despair","Fear","Suffering"],"skill":7341,"stats":["Gain 3 Rage when Hit by an Enemy","Every Rage also grants 2% increased Stun Threshold"],"stringId":"rage5"},"7344":{"connections":[{"id":58182,"orbit":0},{"id":26931,"orbit":0}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","isNotable":true,"name":"Life from Death","orbit":3,"orbitIndex":4,"skill":7344,"stats":["Recover 3% of maximum Life on Kill"],"stringId":"life_on_kill14"},"7353":{"connections":[{"id":9046,"orbit":3}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":7353,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals92"},"7378":{"connections":[{"id":65016,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":20,"skill":7378,"stats":["12% increased Fire Damage"],"stringId":"fire6"},"7390":{"connections":[{"id":17150,"orbit":7}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":4,"skill":7390,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion23"},"7392":{"connections":[{"id":10571,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":19,"skill":7392,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold4"},"7395":{"connections":[{"id":30007,"orbit":0},{"id":46051,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Retaliation","orbit":3,"orbitIndex":10,"recipe":["Ire","Fear","Suffering"],"skill":7395,"stats":["75% increased Thorns damage if you've Blocked Recently"],"stringId":"getting_hit10"},"7405":{"connections":[{"id":4850,"orbit":0}],"group":1035,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect and Mana Regeneration","orbit":0,"orbitIndex":0,"skill":7405,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"stringId":"lightning28"},"7412":{"connections":[{"id":45709,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":15,"skill":7412,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks7"},"7424":{"connections":[{"id":36994,"orbit":0},{"id":1823,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":0,"skill":7424,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield29"},"7449":{"connections":[{"id":53696,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Splinters","orbit":7,"orbitIndex":18,"recipe":["Envy","Paranoia","Despair"],"skill":7449,"stats":["30% increased Stun Buildup","Hits Break 50% increased Armour on targets with Ailments"],"stringId":"physical39"},"7465":{"connections":[{"id":17664,"orbit":0}],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":15,"skill":7465,"stats":["12% increased Critical Hit Chance against Enemies that have entered your Presence Recently"],"stringId":"criticals98"},"7473":{"connections":[{"id":64471,"orbit":-4}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":23,"skill":7473,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds6"},"7488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":596,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":7488,"stats":[],"stringId":"mastery_leech127"},"7526":{"connections":[{"id":17447,"orbit":0},{"id":22972,"orbit":0},{"id":43044,"orbit":0},{"id":24210,"orbit":0}],"group":1240,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":7526,"stats":["+5 to any Attribute"],"stringId":"dexterity63"},"7542":{"connections":[],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Encompassing Domain","orbit":2,"orbitIndex":4,"recipe":["Fear","Disgust","Envy"],"skill":7542,"stats":["10% increased Area Damage","12% increased Area of Effect if you have Stunned an Enemy Recently"],"stringId":"area_of_effect16"},"7553":{"connectionArt":"CharacterPlanned","connections":[{"id":43385,"orbit":-7},{"id":15842,"orbit":0}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Trusted Partner","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":48,"skill":7553,"stats":["Companions have 20% increased maximum Life","5% of Damage from Hits is taken from your Damageable Companion's Life before you"],"stringId":"oracle_big_family8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"7554":{"connections":[{"id":23039,"orbit":-7}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Energy Shield Delay and Armour Applies to Elemental Damage","orbit":3,"orbitIndex":13,"skill":7554,"stats":["+3% of Armour also applies to Elemental Damage","5% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour22"},"7576":{"connections":[{"id":33866,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":7576,"stats":["8% increased Attack Damage"],"stringId":"attack_damage1"},"7604":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Rapid Strike","orbit":3,"orbitIndex":8,"recipe":["Ire","Fear","Fear"],"skill":7604,"stats":["+30 to Accuracy Rating","8% increased Melee Attack Speed"],"stringId":"melee30_"},"7621":{"ascendancyName":"Invoker","connections":[{"id":55611,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerShockMagnitude.dds","isNotable":true,"name":"I am the Thunder...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":5,"orbitIndex":15,"skill":7621,"stats":["Gain 10% of Damage as Extra Lightning Damage","25% chance on Shocking Enemies to created Shocked Ground"],"stringId":"AscendancyMonk2Notable3"},"7628":{"connections":[{"id":41646,"orbit":0},{"id":55231,"orbit":0}],"group":710,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":7628,"stats":["+5 to any Attribute"],"stringId":"strength38"},"7642":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":493,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":8,"skill":7642,"stats":[],"stringId":"mastery_physical6168"},"7651":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":21788,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Pierce the Heart","orbit":6,"orbitIndex":21,"recipe":["Despair","Isolation","Paranoia"],"skill":7651,"stats":["Arrows Pierce an additional Target"],"stringId":"bow18"},"7668":{"connections":[{"id":62015,"orbit":0}],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Internal Bleeding","orbit":2,"orbitIndex":3,"recipe":["Guilt","Despair","Paranoia"],"skill":7668,"stats":["20% chance to Aggravate Bleeding on targets you Hit with Empowered Attacks","Empowered Attacks deal 30% increased Damage"],"stringId":"warcries14_"},"7716":{"connections":[],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":23,"skill":7716,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"stringId":"armour47"},"7720":{"connections":[{"id":32932,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Ignite","orbit":4,"orbitIndex":61,"skill":7720,"stats":["Gain 1 Rage when your Hit Ignites a target"],"stringId":"rage41"},"7721":{"connections":[{"id":54232,"orbit":0},{"id":61534,"orbit":3},{"id":18629,"orbit":-6},{"id":64683,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/Warrior.dds","isNotable":true,"name":"Relentless","orbit":4,"orbitIndex":45,"skill":7721,"stats":["15% increased Armour","Regenerate 0.5% of maximum Life per second","+10 to Strength"],"stringId":"marauder_brute_notable2"},"7741":{"connections":[{"id":42500,"orbit":0}],"group":844,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":5,"skill":7741,"stats":["+5 to any Attribute"],"stringId":"dexterity26"},"7777":{"connections":[{"id":26739,"orbit":7},{"id":42205,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Breaking Point","orbit":4,"orbitIndex":18,"recipe":["Fear","Paranoia","Fear"],"skill":7777,"stats":["10% increased Duration of Elemental Ailments on Enemies","30% increased Magnitude of Non-Damaging Ailments you inflict"],"stringId":"elemental37_"},"7782":{"connections":[{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Rupturing Pins","orbit":3,"orbitIndex":0,"recipe":["Greed","Suffering","Guilt"],"skill":7782,"stats":["40% increased Magnitude of Bleeding you inflict against Pinned Enemies"],"stringId":"physical_witch10"},"7788":{"connections":[{"id":57805,"orbit":5}],"group":830,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":4,"skill":7788,"stats":["8% increased Knockback Distance"],"stringId":"knockback6"},"7793":{"ascendancyName":"Infernalist","connections":[{"id":18348,"orbit":6}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":130,"skill":7793,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small4"},"7809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1416,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Wild Storm","orbit":0,"orbitIndex":0,"recipe":["Isolation","Fear","Isolation"],"skill":7809,"stats":["Gain 4% of Damage as Extra Cold Damage","Gain 4% of Damage as Extra Lightning Damage","+10 to Dexterity"],"stringId":"lightning33"},"7847":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStagNotable.dds","isNotable":true,"name":"The Fabled Stag","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Fear"],"skill":7847,"stats":["40% increased Endurance, Frenzy and Power Charge Duration","+10 to Dexterity","Skills have 10% chance to not remove Charges but still count as consuming them"],"stringId":"azmerianimals18"},"7878":{"connections":[{"id":53901,"orbit":7}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":16,"skill":7878,"stats":["5% increased Block chance"],"stringId":"shield17"},"7888":{"connections":[{"id":17101,"orbit":0},{"id":28963,"orbit":2}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Combo Gain","orbit":3,"orbitIndex":21,"skill":7888,"stats":["10% Chance to build an additional Combo on Hit"],"stringId":"unarmed2"},"7922":{"connections":[{"id":45962,"orbit":-6}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Flask Duration","orbit":2,"orbitIndex":17,"skill":7922,"stats":["10% increased Flask Effect Duration"],"stringId":"life_flasks22"},"7947":{"connections":[{"id":26061,"orbit":2}],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Energy Shield as Freeze Threshold","orbit":2,"orbitIndex":16,"skill":7947,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"cold24"},"7960":{"connections":[],"group":395,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":2,"skill":7960,"stats":[],"stringId":"jewel_slot1969"},"7971":{"connections":[{"id":1468,"orbit":-7}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":10,"skill":7971,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration24"},"7972":{"connections":[{"id":25229,"orbit":0},{"id":5663,"orbit":0}],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":4,"skill":7972,"stats":["20% increased Endurance Charge Duration"],"stringId":"endurance_charges2"},"7979":{"ascendancyName":"Amazon","connections":[{"id":19233,"orbit":0}],"group":1594,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonConsumeFrenzyChargeGainElementalInstillation.dds","isNotable":true,"name":"Elemental Surge","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":7979,"stats":["When you Consume a Charge, Trigger Elemental Surge to gain 3 Lightning Surges","Grants Skill: Elemental Surge"],"stringId":"AscendancyHuntress1Notable6"},"7998":{"ascendancyName":"Stormweaver","connections":[{"id":39640,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Shock Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":6,"orbitIndex":70,"skill":7998,"stats":["20% increased chance to Shock"],"stringId":"AscendancySorceress1Small6"},"8045":{"connections":[{"id":64927,"orbit":-6},{"id":52464,"orbit":5}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":7,"skill":8045,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech8"},"8092":{"connections":[{"id":44605,"orbit":6},{"id":59028,"orbit":0}],"group":838,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":11,"skill":8092,"stats":["10% increased Projectile Damage"],"stringId":"projectiles7"},"8107":{"connectionArt":"CharacterPlanned","connections":[{"id":18081,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":8107,"stats":["20% increased Glory generation"],"stringId":"oracle_glory_elemental4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8115":{"connections":[],"group":694,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":8,"skill":8115,"stats":["15% increased Pin Buildup"],"stringId":"armour_break30"},"8143":{"ascendancyName":"Invoker","connections":[{"id":16100,"orbit":4}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionEnergyShieldGrantsSpirit.dds","isNotable":true,"name":"Lead me through Grace...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":5,"skill":8143,"stats":["+1 to Spirit for every 8 Item Energy Shield on Equipped Body Armour","+1 to Spirit for every 20 Evasion Rating on Equipped Body Armour","Cannot gain Spirit from Equipment"],"stringId":"AscendancyMonk2Notable1_"},"8145":{"connections":[{"id":23331,"orbit":-6}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":9,"skill":8145,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"oracle1"},"8154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":3921,"orbit":0},{"id":38398,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryChannelling.dds","isOnlyImage":true,"name":"Herald Mastery","orbit":0,"orbitIndex":0,"skill":8154,"stats":[],"stringId":"mastery_herald_6556"},"8157":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":16,"skill":8157,"stats":["8% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds13"},"8171":{"connections":[{"id":45162,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":22,"skill":8171,"stats":["20% increased Presence Area of Effect"],"stringId":"glory13"},"8246":{"connections":[{"id":37548,"orbit":0},{"id":64462,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":11,"skill":8246,"stats":["10% increased Attack Damage"],"stringId":"attack8"},"8248":{"connectionArt":"CharacterPlanned","connections":[{"id":48079,"orbit":0}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":4,"skill":8248,"stats":["10% increased Bleeding Duration","20% chance for Attack Hits to apply Incision"],"stringId":"oracle_bleed1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8249":{"connections":[{"id":63525,"orbit":0},{"id":16816,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Critical Chance","orbit":7,"orbitIndex":8,"skill":8249,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"stringId":"accuracy34"},"8260":{"connections":[{"id":21453,"orbit":0}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":0,"skill":8260,"stats":["20% increased Armour Break Duration"],"stringId":"armour_break5"},"8272":{"ascendancyName":"Witchhunter","connections":[],"group":229,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterSpecPoints.dds","isNotable":true,"name":"Weapon Master","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":8272,"stats":["100 Passive Skill Points become Weapon Set Skill Points"],"stringId":"AscendancyMercenary2Notable8"},"8273":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":25565,"orbit":0}],"group":1439,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Endless Circuit","orbit":0,"orbitIndex":0,"recipe":["Isolation","Despair","Despair"],"skill":8273,"stats":["25% chance on Consuming a Shock on an Enemy to reapply it"],"stringId":"lightning38__"},"8302":{"connections":[{"id":4467,"orbit":-3}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Damage vs Blinded","orbit":2,"orbitIndex":0,"skill":8302,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"monkchakra7"},"8305":{"ascendancyName":"Disciple of Varashta","connections":[{"id":9843,"orbit":-8},{"id":56783,"orbit":-8},{"id":13289,"orbit":-9},{"id":32705,"orbit":0},{"id":34207,"orbit":9},{"id":30265,"orbit":8},{"id":35880,"orbit":8}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Disciple of Varashta","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":6,"orbitIndex":0,"skill":8305,"stats":[],"stringId":"AscendancySorceress3Start"},"8349":{"connections":[{"id":31644,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":19,"skill":8349,"stats":["+8 to Intelligence"],"stringId":"energy_shield26"},"8357":{"connections":[{"id":10742,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":3,"orbitIndex":6,"skill":8357,"stats":["Minions have 3% increased Attack and Cast Speed"],"stringId":"minion_offence17"},"8382":{"connections":[{"id":61863,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":9,"skill":8382,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold15"},"8397":{"connections":[{"id":41130,"orbit":0},{"id":1220,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Empowering Remains","orbit":7,"orbitIndex":0,"recipe":["Envy","Ire","Fear"],"skill":8397,"stats":["40% increased Spell Damage if one of your Minions has died Recently"],"stringId":"spells60"},"8406":{"connections":[{"id":48305,"orbit":-4},{"id":5692,"orbit":0}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":21,"skill":8406,"stats":["+5 to any Attribute"],"stringId":"strength12"},"8415":{"ascendancyName":"Blood Mage","connections":[{"id":62388,"orbit":0},{"id":3165,"orbit":-5},{"id":30071,"orbit":0},{"id":59342,"orbit":0},{"id":47442,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLeaveBloodOrbs.dds","isFreeAllocate":true,"isNotable":true,"name":"Sanguimancy","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":6,"orbitIndex":0,"skill":8415,"stats":["Skills gain a Base Life Cost equal to Base Mana Cost","Grants Skill: Life Remnants"],"stringId":"AscendancyWitch2Notable3"},"8421":{"connections":[{"id":35404,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":2,"orbitIndex":22,"skill":8421,"stats":["+5% to Cold Resistance"],"stringId":"shaman4"},"8423":{"connectionArt":"CharacterPlanned","connections":[{"id":60708,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":8423,"stats":["5% increased Attack Speed with Bows"],"stringId":"oracle_bow_movement8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8440":{"connections":[{"id":45013,"orbit":-7}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":1,"orbitIndex":4,"skill":8440,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life7"},"8456":{"connections":[{"id":38329,"orbit":2147483647}],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage and Freeze Buildup","orbit":7,"orbitIndex":4,"skill":8456,"stats":["8% increased Freeze Buildup","8% increased Attack Cold Damage"],"stringId":"cold41"},"8460":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":8460,"stats":[],"stringId":"mastery_warcry254"},"8483":{"connections":[{"id":6588,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Ruin","orbit":7,"orbitIndex":7,"recipe":["Greed","Despair","Suffering"],"skill":8483,"stats":["35% increased Spell Area Damage","Spell Skills have 10% reduced Area of Effect"],"stringId":"area_spells28"},"8493":{"connections":[{"id":64471,"orbit":0},{"id":52860,"orbit":0}],"group":650,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8493,"stats":["+5 to any Attribute"],"stringId":"attributes7"},"8509":{"connections":[{"id":59061,"orbit":9}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":10,"skill":8509,"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"stringId":"criticals33"},"8510":{"connections":[{"id":13030,"orbit":-3}],"group":1140,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":8510,"stats":["Damaging Ailments deal damage 5% faster"],"stringId":"ailments25"},"8522":{"connections":[{"id":26236,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":16,"skill":8522,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers12"},"8525":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":27,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus7.dds","isNotable":true,"name":"Leather Bindings","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":8525,"stats":["Body Armour grants regenerate 3% of maximum Life per second"],"stringId":"AscendancyWarrior3Notable6_7"},"8531":{"connections":[{"id":51534,"orbit":0},{"id":62661,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Leaping Ambush","orbit":3,"orbitIndex":11,"recipe":["Despair","Guilt","Guilt"],"skill":8531,"stats":["50% increased Critical Hit Chance against Enemies that are on Full Life"],"stringId":"criticals26"},"8535":{"connections":[],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Spiked Whip","orbit":2,"orbitIndex":10,"skill":8535,"stats":["25% increased Damage with Flails"],"stringId":"flail18"},"8540":{"connections":[{"id":45230,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":10,"skill":8540,"stats":["10% increased Area of Effect of Curses"],"stringId":"curses8"},"8553":{"connections":[{"id":13693,"orbit":7},{"id":37415,"orbit":-3}],"group":309,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":8553,"stats":["12% increased Cold Damage"],"stringId":"cold52"},"8554":{"connections":[{"id":47191,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Burning Nature","orbit":4,"orbitIndex":54,"recipe":["Greed","Isolation","Greed"],"skill":8554,"stats":["25% increased Fire Damage","15% increased Ignite Duration on Enemies"],"stringId":"fire30"},"8556":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8556,"stats":[],"stringId":"mastery_attack24"},"8560":{"connections":[{"id":31273,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":1,"orbitIndex":11,"skill":8560,"stats":["10% increased Melee Damage"],"stringId":"melee13"},"8569":{"connections":[{"id":47177,"orbit":0},{"id":55507,"orbit":9},{"id":46034,"orbit":0},{"id":8540,"orbit":0}],"group":987,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":6,"skill":8569,"stats":["+5 to any Attribute"],"stringId":"intelligence79"},"8573":{"connections":[{"id":11526,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":26,"skill":8573,"stats":["12% increased Damage with Bows"],"stringId":"bow6"},"8600":{"connections":[{"id":27439,"orbit":0},{"id":40596,"orbit":8},{"id":44406,"orbit":4},{"id":43778,"orbit":0},{"id":31650,"orbit":0}],"group":385,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8600,"stats":["+5 to any Attribute"],"stringId":"attributes82"},"8606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8606,"stats":[],"stringId":"mastery_attack_6296"},"8607":{"connections":[{"id":46665,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Lavianga's Brew","orbit":7,"orbitIndex":12,"recipe":["Fear","Isolation","Ire"],"skill":8607,"stats":["30% increased Mana Cost Efficiency of Attacks during any Mana Flask Effect"],"stringId":"life_flasks42"},"8611":{"ascendancyName":"Lich","connections":[{"id":59,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Curse Area","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":28740,"name":"Curse Area","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["15% increased Area of Effect of Curses"]}},"orbit":8,"orbitIndex":56,"skill":8611,"stats":["15% increased Area of Effect of Curses"],"stringId":"AscendancyWitch3Small1"},"8616":{"connections":[{"id":57710,"orbit":0},{"id":43576,"orbit":-4},{"id":36746,"orbit":4}],"group":814,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8616,"stats":["+5 to any Attribute"],"stringId":"intelligence6"},"8629":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":418,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":8629,"stats":[],"stringId":"mastery_attack20"},"8631":{"connections":[{"id":32660,"orbit":0},{"id":59256,"orbit":0},{"id":30979,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":2,"skill":8631,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals5_"},"8644":{"connections":[{"id":62496,"orbit":0},{"id":27417,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":51,"skill":8644,"stats":["10% increased Trap Damage"],"stringId":"trap1"},"8660":{"connections":[{"id":18846,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Reverberation","orbit":3,"orbitIndex":14,"recipe":["Paranoia","Guilt","Fear"],"skill":8660,"stats":["Spell Skills have 15% increased Area of Effect"],"stringId":"area_spells27"},"8693":{"connectionArt":"CharacterPlanned","connections":[{"id":35393,"orbit":0}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":7,"skill":8693,"stats":["30% increased Armour while Bleeding"],"stringId":"oracle_iron_blood1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8697":{"connections":[],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":8697,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks2"},"8723":{"connectionArt":"CharacterPlanned","connections":[{"id":3681,"orbit":-5},{"id":21374,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Flesh Withstands","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":6,"orbitIndex":56,"skill":8723,"stats":["30% increased Mana Regeneration Rate while Shocked","+500 to Armour while Frozen","21% increased Stun Threshold","21% increased Elemental Ailment Threshold","30% increased Life Regeneration rate while Ignited"],"stringId":"oracle_beast_corruption7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"8734":{"connections":[{"id":52743,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":14,"skill":8734,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"deflect48"},"8737":{"connections":[{"id":41511,"orbit":0},{"id":25927,"orbit":-7},{"id":6077,"orbit":-2},{"id":56284,"orbit":-2}],"group":561,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":0,"orbitIndex":0,"skill":8737,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence42"},"8782":{"connections":[{"id":13882,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Empowering Infusions","orbit":7,"orbitIndex":15,"recipe":["Suffering","Envy","Guilt"],"skill":8782,"stats":["35% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion4"},"8785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":1073,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":8785,"stats":[],"stringId":"mastery_curse_6434"},"8789":{"connections":[{"id":63182,"orbit":3}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage and Companion Life","orbit":2,"orbitIndex":12,"skill":8789,"stats":["Companions deal 12% increased Damage","Companions have 12% increased maximum Life"],"stringId":"duelist_minions3_"},"8791":{"connections":[{"id":32096,"orbit":0}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Sturdy Ally","orbit":3,"orbitIndex":7,"recipe":["Fear","Greed","Despair"],"skill":8791,"stats":["Companions gain your Strength","+15 to Strength"],"stringId":"duelist_minions11"},"8800":{"connections":[{"id":28982,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":15,"skill":8800,"stats":["15% increased Melee Damage with Hits at Close Range"],"stringId":"melee11"},"8810":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":33751,"orbit":2}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","isNotable":true,"name":"Multitasking","orbit":1,"orbitIndex":4,"recipe":["Paranoia","Disgust","Fear"],"skill":8810,"stats":["15% increased Skill Effect Duration","12% increased Cooldown Recovery Rate"],"stringId":"cooldowns15"},"8821":{"connections":[{"id":63863,"orbit":0}],"group":909,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":8821,"stats":["12% increased Lightning Damage"],"stringId":"lightning21"},"8827":{"connections":[{"id":16691,"orbit":0},{"id":28862,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Fast Metabolism","orbit":7,"orbitIndex":11,"recipe":["Suffering","Isolation","Suffering"],"skill":8827,"stats":["40% increased Damage while Leeching Life"],"stringId":"life_leech26"},"8831":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":14082,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Tempered Mind","orbit":0,"orbitIndex":0,"recipe":["Isolation","Despair","Paranoia"],"skill":8831,"stats":["15% increased effect of Fully Broken Armour","+10 to Strength","20% increased Physical Damage"],"stringId":"physical36"},"8850":{"connections":[],"group":116,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Critical Chance","orbit":0,"orbitIndex":0,"skill":8850,"stats":["10% increased Critical Hit Chance while Shapeshifted"],"stringId":"wolf10"},"8852":{"connections":[],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Slower Leech","orbit":2,"orbitIndex":17,"skill":8852,"stats":["12% increased amount of Life Leeched","Leech Life 5% slower"],"stringId":"life_leech9"},"8854":{"ascendancyName":"Infernalist","connections":[{"id":46644,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":54,"skill":8854,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small3"},"8867":{"ascendancyName":"Stormweaver","connections":[{"id":7246,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsArcaneSurge.dds","isNotable":true,"name":"Constant Gale","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":60,"skill":8867,"stats":["You have Arcane Surge"],"stringId":"AscendancySorceress1Notable1"},"8872":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDualWieldPattern","connections":[{"id":2394,"orbit":0},{"id":45488,"orbit":0}],"group":870,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupDualWield.dds","isOnlyImage":true,"name":"Dual Wielding Mastery","orbit":0,"orbitIndex":0,"skill":8872,"stats":[],"stringId":"mastery_dualwield85"},"8875":{"connections":[{"id":50687,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":1,"orbitIndex":8,"skill":8875,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation7"},"8881":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Unforgiving","orbit":4,"orbitIndex":54,"recipe":["Isolation","Greed","Greed"],"skill":8881,"stats":["+4 to Maximum Rage","Inherent loss of Rage is 20% slower"],"stringId":"rage14_"},"8896":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1423,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","isNotable":true,"name":"Agile Sprinter","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Ire"],"skill":8896,"stats":["100% increased Evasion Rating while Sprinting"],"stringId":"Sprint10"},"8904":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","isNotable":true,"name":"Death from Afar","orbit":0,"orbitIndex":0,"recipe":["Isolation","Fear","Guilt"],"skill":8904,"stats":["Projectiles have 25% increased Critical Hit Chance against Enemies further than 6m","Projectiles deal 25% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles30"},"8908":{"connections":[{"id":13711,"orbit":4}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":6,"skill":8908,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield20"},"8916":{"connections":[],"group":452,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Bashing Beast","orbit":1,"orbitIndex":8,"recipe":["Despair","Paranoia","Disgust"],"skill":8916,"stats":["Enemies you Heavy Stun while Shapeshifted are Intimidated for 6 seconds"],"stringId":"bear16"},"8938":{"connections":[{"id":33229,"orbit":-4}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":16,"skill":8938,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical_witch6"},"8957":{"connections":[{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Right Hand of Darkness","orbit":4,"orbitIndex":44,"recipe":["Envy","Isolation","Suffering"],"skill":8957,"stats":["Minions have 20% increased Area of Effect","Minions have 10% chance to inflict Withered on Hit","Spells Gain 5% of Damage as extra Chaos Damage"],"stringId":"minion_offence28"},"8975":{"connections":[{"id":61196,"orbit":4}],"group":1043,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":8975,"stats":["+5 to any Attribute"],"stringId":"intelligence9"},"8982":{"connections":[{"id":14952,"orbit":0},{"id":58926,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup and Skill Effect Duration","orbit":3,"orbitIndex":12,"skill":8982,"stats":["10% increased Freeze Buildup","6% increased Skill Effect Duration"],"stringId":"chill_and_freeze26"},"8983":{"connections":[],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":8983,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence9"},"9009":{"connections":[],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Return to Nature","orbit":5,"orbitIndex":1,"recipe":["Fear","Guilt","Ire"],"skill":9009,"stats":["Overgrown Plant Skills Break 50% increased Armour"],"stringId":"physical67"},"9018":{"connections":[{"id":35918,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Area and Presence","orbit":3,"orbitIndex":22,"skill":9018,"stats":["20% increased Presence Area of Effect","3% reduced Area of Effect"],"stringId":"auras36"},"9020":{"connections":[{"id":35118,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Giantslayer","orbit":1,"orbitIndex":11,"recipe":["Despair","Isolation","Despair"],"skill":9020,"stats":["25% increased Damage with Hits against Rare and Unique Enemies","20% increased Accuracy Rating against Rare or Unique Enemies","20% increased chance to inflict Ailments against Rare or Unique Enemies"],"stringId":"boss_slaying10"},"9037":{"connections":[{"id":32353,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Skill Speed","orbit":2,"orbitIndex":23,"skill":9037,"stats":["3% increased Skill Speed while Shapeshifted"],"stringId":"shapeshifting2"},"9040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":45751,"orbit":0}],"group":261,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":9040,"stats":[],"stringId":"mastery_shield_6694_"},"9046":{"connections":[{"id":56776,"orbit":5}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":8,"skill":9046,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals47"},"9050":{"connections":[{"id":24958,"orbit":-4},{"id":37691,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":6,"orbitIndex":36,"skill":9050,"stats":["3% increased Attack Speed"],"stringId":"attack25"},"9065":{"connections":[{"id":752,"orbit":5}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":4,"orbitIndex":23,"skill":9065,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation6"},"9069":{"connections":[{"id":42245,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":2,"orbitIndex":4,"skill":9069,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers25_"},"9083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":9083,"stats":[],"stringId":"mastery_minionoffence190"},"9085":{"connections":[],"flavourText":"Each nick and cut brings death one step closer.","group":1142,"icon":"Art/2DArt/SkillIcons/passives/CrimsonAssaultKeystone.dds","isKeystone":true,"name":"Crimson Assault","orbit":0,"orbitIndex":0,"skill":9085,"stats":["Bleeding you inflict is Aggravated","Base Bleeding Duration is 1 second","50% more Magnitude of Bleeding you inflict"],"stringId":"passive_keystone_crimson_dance_"},"9089":{"connections":[{"id":3994,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Evasion Rating","orbit":1,"orbitIndex":3,"skill":9089,"stats":["15% increased Evasion Rating"],"stringId":"deflect50_"},"9106":{"connections":[{"id":54937,"orbit":7}],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":2,"skill":9106,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage16"},"9112":{"connections":[{"id":44612,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":1,"orbitIndex":11,"skill":9112,"stats":["25% increased Elemental Ailment Threshold"],"stringId":"spell_suppression29"},"9141":{"connections":[{"id":13748,"orbit":-6},{"id":35760,"orbit":6},{"id":5703,"orbit":-2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":12,"skill":9141,"stats":["10% increased Elemental Damage"],"stringId":"elemental42"},"9151":{"connections":[{"id":42302,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Forking Projectiles","orbit":2,"orbitIndex":18,"skill":9151,"stats":["Projectiles have 25% chance for an additional Projectile when Forking"],"stringId":"ranged7"},"9163":{"connections":[],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":8,"skill":9163,"stats":["18% increased Armour"],"stringId":"armour27"},"9164":{"connections":[{"id":25513,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":5,"orbitIndex":45,"skill":9164,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed17"},"9185":{"connections":[{"id":60107,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":5,"skill":9185,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals21"},"9187":{"connections":[{"id":20015,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Escalation","orbit":2,"orbitIndex":8,"recipe":["Isolation","Greed","Guilt"],"skill":9187,"stats":["25% increased Warcry Speed","20% increased Damage for each different Warcry you've used Recently"],"stringId":"warcries53"},"9199":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Surpassing Projectile Chance","orbit":5,"orbitIndex":54,"skill":9199,"stats":["+8% Surpassing chance to fire an additional Projectile"],"stringId":"projectiles42"},"9212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":313,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Mastery","orbit":1,"orbitIndex":3,"skill":9212,"stats":[],"stringId":"oracle_forbidden_path_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9217":{"connections":[{"id":5108,"orbit":0},{"id":16538,"orbit":0},{"id":47733,"orbit":0}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":0,"orbitIndex":0,"skill":9217,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed22"},"9221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":278,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":9221,"stats":[],"stringId":"mastery_critical_269"},"9226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":554,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","isNotable":true,"name":"Mental Perseverance","orbit":1,"orbitIndex":0,"recipe":["Ire","Disgust","Greed"],"skill":9226,"stats":["10% of Damage is taken from Mana before Life","+15 to Intelligence"],"stringId":"damage_from_mana10"},"9227":{"connections":[{"id":36071,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Focused Thrust","orbit":2,"orbitIndex":4,"recipe":["Fear","Ire","Greed"],"skill":9227,"stats":["75% increased Melee Damage with Spears while Surrounded","40% increased Projectile Damage with Spears while there are no Enemies within 3m"],"stringId":"spear9"},"9240":{"connections":[{"id":21225,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":2,"orbitIndex":16,"skill":9240,"stats":["10% increased Damage with Spears"],"stringId":"spear5"},"9272":{"connections":[{"id":12906,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":1,"orbitIndex":0,"skill":9272,"stats":["10% increased Pin duration"],"stringId":"pin6"},"9275":{"connections":[{"id":5704,"orbit":0},{"id":63888,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Speed","orbit":2,"orbitIndex":16,"skill":9275,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"accuracy37"},"9290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":781,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Rusted Pins","orbit":4,"orbitIndex":57,"recipe":["Suffering","Guilt","Fear"],"skill":9290,"stats":["30% increased Pin Buildup","Bleeding you inflict on Pinned Enemies is Aggravated"],"stringId":"bleed32"},"9294":{"ascendancyName":"Amazon","connections":[{"id":528,"orbit":0}],"group":1593,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonExcessChancetoHitConvertedtoCritHitChance.dds","isNotable":true,"name":"Critical Strike","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":9294,"stats":["Chance to Hit with Attacks can exceed 100%","Gain additional Critical Hit Chance equal to 25% of excess chance to Hit with Attacks"],"stringId":"AscendancyHuntress1Notable1"},"9323":{"connections":[{"id":40395,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Craving Slaughter","orbit":2,"orbitIndex":23,"recipe":["Ire","Despair","Fear"],"skill":9323,"stats":["+15 maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds"],"stringId":"glory27_"},"9324":{"connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":21,"skill":9324,"stats":["8% increased Ignite Duration on Enemies"],"stringId":"ignite_mitigation11_"},"9328":{"connections":[{"id":34782,"orbit":0}],"group":149,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Spirit of the Bear","orbit":0,"orbitIndex":0,"recipe":["Greed","Envy","Despair"],"skill":9328,"stats":["50% increased Damage against Immobilised Enemies while Shapeshifted","25% increased Stun buildup while Shapeshifted"],"stringId":"bear10_"},"9352":{"connections":[{"id":32071,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":23,"skill":9352,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks1"},"9393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":1,"orbitIndex":8,"skill":9393,"stats":[],"stringId":"mastery_flask123"},"9405":{"connections":[{"id":59720,"orbit":6}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":9405,"stats":["15% increased Evasion Rating"],"stringId":"evasion28"},"9411":{"connections":[{"id":49466,"orbit":0},{"id":64434,"orbit":0}],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":15,"skill":9411,"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"stringId":"life_flasks14"},"9414":{"connectionArt":"CharacterPlanned","connections":[],"group":293,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":21,"skill":9414,"stats":["16% increased Elemental Damage"],"stringId":"oracle_glory_elemental2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9417":{"connections":[{"id":48121,"orbit":-6},{"id":13171,"orbit":5}],"group":491,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":9417,"stats":["16% increased Totem Life"],"stringId":"totems46"},"9421":{"connections":[{"id":60170,"orbit":0}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Snowpiercer","orbit":2,"orbitIndex":8,"recipe":["Isolation","Guilt","Disgust"],"skill":9421,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"stringId":"cold_penetration24"},"9441":{"connections":[{"id":5077,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":2,"orbitIndex":8,"skill":9441,"stats":["15% increased Parry Hit Area of Effect"],"stringId":"deflect18"},"9442":{"connections":[{"id":37260,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":18,"skill":9442,"stats":["16% increased Warcry Speed"],"stringId":"wolf12"},"9444":{"connections":[],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"One with the Storm","orbit":6,"orbitIndex":39,"recipe":["Isolation","Suffering","Disgust"],"skill":9444,"stats":["Quarterstaff Skills that consume Power Charges count as consuming an additional Power Charge"],"stringId":"quarterstaff14"},"9458":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":9458,"stats":[],"stringId":"mastery_mana168"},"9472":{"connections":[{"id":31991,"orbit":0},{"id":41062,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Catapult","orbit":0,"orbitIndex":0,"recipe":["Envy","Disgust","Guilt"],"skill":9472,"stats":["15% increased Projectile Speed","12% increased Area of Effect for Attacks"],"stringId":"ranged36"},"9485":{"connections":[{"id":60685,"orbit":0}],"group":879,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":9485,"stats":["+5 to any Attribute"],"stringId":"intelligence20"},"9510":{"connections":[{"id":16695,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Recoup","orbit":2,"orbitIndex":0,"skill":9510,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery37"},"9528":{"connections":[{"id":62200,"orbit":-4}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":15,"skill":9528,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries15"},"9532":{"connections":[{"id":59368,"orbit":2}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":22,"skill":9532,"stats":["+4 to Strength","+4 to Dexterity"],"stringId":"azmerianimals4"},"9535":{"connections":[{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","isNotable":true,"name":"Brinerot Ferocity","orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Fear"],"skill":9535,"stats":["4% increased Attack Speed","+8% to Lightning Resistance","+30% of Armour also applies to Lightning Damage"],"stringId":"armour_and_evasion41"},"9554":{"connectionArt":"CharacterPlanned","connections":[{"id":8723,"orbit":9}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":62,"skill":9554,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption13","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"9568":{"connections":[{"id":5580,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":1,"skill":9568,"stats":["16% increased Totem Life"],"stringId":"totems18"},"9572":{"connections":[{"id":12822,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage if Projectile Hit","orbit":2,"orbitIndex":14,"skill":9572,"stats":["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"],"stringId":"ranged20"},"9583":{"connections":[{"id":47316,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Physical Damage","orbit":7,"orbitIndex":0,"skill":9583,"stats":["1% increased maximum Life","8% increased amount of Life Leeched"],"stringId":"life_leech28_"},"9586":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1193,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":4,"orbitIndex":10,"skill":9586,"stats":[],"stringId":"mastery_criticals68"},"9638":{"connections":[{"id":39083,"orbit":-7}],"group":495,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":9638,"stats":["3% increased Skill Speed"],"stringId":"attack_speed54"},"9642":{"connections":[{"id":517,"orbit":6},{"id":14666,"orbit":-4}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Dampening Shield","orbit":7,"orbitIndex":21,"skill":9642,"stats":["28% increased maximum Energy Shield","Gain additional Ailment Threshold equal to 12% of maximum Energy Shield","Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"energy_shield37"},"9652":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Mending Deflection","orbit":2,"orbitIndex":18,"recipe":["Despair","Envy","Fear"],"skill":9652,"stats":["15% of Damage taken from Deflected Hits Recouped as Life","20% faster start of Energy Shield Recharge when not on Full Life"],"stringId":"deflect66"},"9663":{"connections":[{"id":19359,"orbit":-5}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Resistance","orbit":2,"orbitIndex":8,"skill":9663,"stats":["+5% to Chaos Resistance"],"stringId":"monkchaos5"},"9698":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":238,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":22,"skill":9698,"stats":[],"stringId":"mastery_critical_6414"},"9703":{"connections":[{"id":6030,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":9703,"stats":["10% increased Poison Duration"],"stringId":"poison6"},"9710":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1565,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionBleed.dds","isMultipleChoiceOption":true,"name":"Bleeding Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":9710,"stats":["Grants Skill: Bleeding Concoction"],"stringId":"AscendancyRanger3Notable7_5"},"9736":{"connections":[{"id":61318,"orbit":0},{"id":62235,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Insulated Treads","orbit":4,"orbitIndex":42,"recipe":["Ire","Ire","Ire"],"skill":9736,"stats":["25% increased Armour and Evasion Rating","Gain Ailment Threshold equal to the lowest of Evasion and Armour on your Boots"],"stringId":"armour_and_evasion14__"},"9737":{"connections":[{"id":36522,"orbit":0},{"id":24813,"orbit":4},{"id":59480,"orbit":0},{"id":15590,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":51,"skill":9737,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks11"},"9745":{"connections":[{"id":58513,"orbit":2147483647}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":12,"skill":9745,"stats":["2% increased Movement Speed"],"stringId":"azmerianimals11"},"9750":{"connections":[{"id":1169,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":12,"skill":9750,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries33"},"9762":{"connections":[{"id":45824,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":6,"orbitIndex":5,"skill":9762,"stats":["10% increased Damage with Swords"],"stringId":"sword2"},"9782":{"connections":[{"id":20677,"orbit":0}],"group":1211,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":9782,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals44"},"9796":{"connections":[{"id":62310,"orbit":-4}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":9796,"stats":["30% increased Flammability Magnitude"],"stringId":"fire15"},"9798":{"ascendancyName":"Pathfinder","connections":[{"id":24868,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":9,"orbitIndex":58,"skill":9798,"stats":["4% increased Skill Speed"],"stringId":"AscendancyRanger3Small4"},"9825":{"connections":[{"id":934,"orbit":-4},{"id":21755,"orbit":9}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":0,"skill":9825,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression8"},"9843":{"ascendancyName":"Disciple of Varashta","connections":[],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Mana","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":4,"orbitIndex":66,"skill":9843,"stats":["3% increased maximum Mana"],"stringId":"AscendancySorceress3Small5"},"9857":{"connections":[{"id":54990,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":2,"orbitIndex":8,"skill":9857,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed15"},"9863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"flavourText":"A throne is the most devious trap of them all","group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","isNotable":true,"name":"Knight of Izaro","orbit":4,"orbitIndex":42,"recipe":["Fear","Isolation","Disgust"],"skill":9863,"stats":["+12% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 10% of Evasion Rating","Banner Skills have 15% increased Aura Magnitudes","25% reduced Armour Break taken"],"stringId":"armour_and_evasion53"},"9884":{"connections":[{"id":38696,"orbit":-3}],"group":381,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":9884,"stats":["12% increased Fire Damage"],"stringId":"fire78_"},"9896":{"connections":[{"id":292,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Heartstopping Presence","orbit":3,"orbitIndex":4,"recipe":["Isolation","Ire","Suffering"],"skill":9896,"stats":["Enemies in your Presence have 75% reduced Life Regeneration rate"],"stringId":"life_recoup28"},"9908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":402,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Price of Freedom","orbit":2,"orbitIndex":8,"recipe":["Envy","Fear","Ire"],"skill":9908,"stats":["15% increased Cost Efficiency of Attacks","18% of Skill Mana Costs Converted to Life Costs"],"stringId":"reduced_attack_cost4"},"9918":{"connections":[{"id":16626,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":4,"skill":9918,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks9"},"9928":{"connections":[{"id":50403,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Embracing Frost","orbit":4,"orbitIndex":36,"recipe":["Fear","Fear","Guilt"],"skill":9928,"stats":["+1% to Maximum Cold Resistance","+10% to Cold Resistance"],"stringId":"freeze_and_chill_mitigation7"},"9941":{"connections":[{"id":38888,"orbit":0}],"group":932,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":15,"skill":9941,"stats":["8% increased Accuracy Rating with One Handed Melee Weapons","8% increased Accuracy Rating with Two Handed Melee Weapons"],"stringId":"melee22"},"9968":{"connections":[{"id":38678,"orbit":-6},{"id":28623,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Feel the Earth","orbit":4,"orbitIndex":69,"recipe":["Paranoia","Suffering","Disgust"],"skill":9968,"stats":["25% reduced Shock duration on you","40% increased Elemental Ailment Threshold"],"stringId":"spell_suppression25_"},"9988":{"ascendancyName":"Smith of Kitava","connections":[{"id":20195,"orbit":0},{"id":16276,"orbit":0},{"id":60913,"orbit":0},{"id":25438,"orbit":0},{"id":9997,"orbit":0},{"id":8525,"orbit":0},{"id":13772,"orbit":0},{"id":22908,"orbit":0},{"id":110,"orbit":0},{"id":49340,"orbit":0},{"id":61039,"orbit":0},{"id":64962,"orbit":0}],"group":47,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCanOnlyWearNormalRarityBodyArmour.dds","isFreeAllocate":true,"isNotable":true,"name":"Smith's Masterwork","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":9988,"stats":["Can only use a Normal Body Armour","+200 to Armour for each Connected Notable Passive Skill Allocated"],"stringId":"AscendancyWarrior3Notable6_0"},"9994":{"ascendancyName":"Invoker","connections":[{"id":23415,"orbit":0},{"id":44357,"orbit":0},{"id":13065,"orbit":0},{"id":27686,"orbit":0},{"id":25434,"orbit":2147483647},{"id":17268,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Invoker","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":9,"orbitIndex":24,"skill":9994,"stats":[],"stringId":"AscendancyMonk2Start"},"9997":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":32,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus9.dds","isNotable":true,"name":"Molten Symbol","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":9997,"stats":["Body Armour grants 25% of Physical Damage from Hits taken as Fire Damage"],"stringId":"AscendancyWarrior3Notable6_9"},"10011":{"connections":[],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Damage vs Blinded","orbit":3,"orbitIndex":13,"skill":10011,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"blind17"},"10029":{"connections":[{"id":19277,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Repulsion","orbit":2,"orbitIndex":4,"recipe":["Disgust","Paranoia","Despair"],"skill":10029,"stats":["Area Skills have 20% chance to Knock Enemies Back on Hit","20% increased Spell Area Damage"],"stringId":"area_spells25"},"10041":{"connections":[{"id":32799,"orbit":0}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Ailment Threshold and Companion Resistance","orbit":7,"orbitIndex":22,"skill":10041,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"stringId":"companions34"},"10047":{"connections":[{"id":62757,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":10,"skill":10047,"stats":["15% increased Stun Buildup"],"stringId":"stun2"},"10053":{"connections":[{"id":19470,"orbit":0},{"id":9458,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableCritStrikeRecharge.dds","isNotable":true,"name":"Combat Alchemy","orbit":2,"orbitIndex":20,"skill":10053,"stats":["10% chance for Flasks you use to not consume Charges","20% increased Life and Mana Recovery from Flasks"],"stringId":"flasks21"},"10055":{"connections":[{"id":30554,"orbit":0},{"id":41497,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":7,"orbitIndex":2,"skill":10055,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence4"},"10058":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":55149,"orbit":0},{"id":44373,"orbit":0}],"group":1350,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":10058,"stats":[],"stringId":"mastery_chaos_6363"},"10072":{"ascendancyName":"Warbringer","connections":[{"id":52068,"orbit":-7}],"group":59,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Block Chance","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":10072,"stats":["6% increased Block chance"],"stringId":"AscendancyWarrior2Small9"},"10079":{"connections":[{"id":5314,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":10079,"stats":["10% increased Mana Regeneration Rate"],"stringId":"energy_shield_recovery9_"},"10100":{"connections":[{"id":47263,"orbit":0},{"id":25300,"orbit":0}],"group":199,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":10100,"stats":["+5 to any Attribute"],"stringId":"attributes50"},"10131":{"connections":[{"id":3251,"orbit":0},{"id":44669,"orbit":0},{"id":14127,"orbit":0},{"id":55947,"orbit":0}],"group":1107,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":10131,"stats":["+5 to any Attribute"],"stringId":"intelligence60"},"10156":{"connections":[{"id":6744,"orbit":-6}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":38,"skill":10156,"stats":["+5 to any Attribute"],"stringId":"intelligence29"},"10159":{"connections":[{"id":31977,"orbit":4}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":42,"skill":10159,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana29"},"10162":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":10162,"stats":[],"stringId":"mastery_power_charge_6641"},"10169":{"connections":[],"group":434,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Unfettered","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Envy","Despair"],"skill":10169,"stats":["50% increased Armour while Bleeding","10% increased Movement Speed while Sprinting"],"stringId":"DeliriumAnoint_Unfettered"},"10192":{"connections":[{"id":3823,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":61436,"name":"Minion Damage","stats":["Minions deal 10% increased Damage"]}},"orbit":3,"orbitIndex":0,"skill":10192,"stats":["10% increased Elemental Damage"],"stringId":"sorcerer_start2"},"10242":{"connections":[{"id":38111,"orbit":0}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":10242,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup20"},"10245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":488,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":10245,"stats":[],"stringId":"mastery_attack25"},"10247":{"connections":[{"id":28370,"orbit":0}],"group":824,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":51,"skill":10247,"stats":["+5 to any Attribute"],"stringId":"strength35"},"10251":{"connections":[{"id":7204,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":16,"skill":10251,"stats":["15% increased Stun Buildup"],"stringId":"stun8_"},"10260":{"connections":[{"id":33730,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":10260,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling3"},"10265":{"connections":[{"id":36071,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Javelin","orbit":6,"orbitIndex":48,"recipe":["Greed","Despair","Disgust"],"skill":10265,"stats":["40% increased Critical Damage Bonus with Spears"],"stringId":"spear4"},"10267":{"connections":[{"id":8456,"orbit":2147483647}],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage and Freeze Buildup","orbit":7,"orbitIndex":22,"skill":10267,"stats":["8% increased Freeze Buildup","8% increased Attack Cold Damage"],"stringId":"cold42_"},"10271":{"connections":[{"id":58038,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":7,"skill":10271,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded6"},"10273":{"connections":[{"id":45272,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":2,"skill":10273,"stats":["+3 to all Attributes"],"stringId":"all_attributes12"},"10277":{"connections":[{"id":64064,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":7,"skill":10277,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy25"},"10286":{"connections":[{"id":38066,"orbit":-4}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Armour","orbit":7,"orbitIndex":8,"skill":10286,"stats":["10% increased Armour","Break 15% increased Armour"],"stringId":"armour_break6"},"10295":{"connections":[{"id":27733,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Overzealous","orbit":5,"orbitIndex":30,"recipe":["Fear","Despair","Isolation"],"skill":10295,"stats":["16% increased Cast Speed","15% increased Mana Cost of Skills"],"stringId":"cast_speed33"},"10305":{"connections":[{"id":45586,"orbit":0},{"id":61490,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Attack Damage with Ally","orbit":2,"orbitIndex":14,"skill":10305,"stats":["Allies in your Presence deal 8% increased Damage","8% increased Attack Damage while you have an Ally in your Presence"],"stringId":"auras20"},"10314":{"connections":[{"id":16256,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":30,"skill":10314,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration33__"},"10315":{"connections":[{"id":44699,"orbit":0},{"id":47443,"orbit":0},{"id":37971,"orbit":0}],"group":1546,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Easy Going","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Isolation"],"skill":10315,"stats":["25% increased Reservation Efficiency of Companion Skills"],"stringId":"companions1_"},"10320":{"connections":[{"id":14548,"orbit":3}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":18,"skill":10320,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence18"},"10362":{"connections":[{"id":10830,"orbit":0},{"id":9163,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":10362,"stats":["15% increased Armour"],"stringId":"armour23"},"10364":{"connections":[{"id":44683,"orbit":0},{"id":55342,"orbit":4},{"id":42857,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":4,"orbitIndex":48,"skill":10364,"stats":["4% increased Skill Speed"],"stringId":"attack_speed25"},"10371":{"ascendancyName":"Tactician","connections":[],"group":322,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianMultipleBanners.dds","isNotable":true,"name":"Whoever Pays Best","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":10371,"stats":["Banners gain 5 Glory per second","There is no Limit on the number of Banners you can place"],"stringId":"AscendancyMercenary1Notable3"},"10372":{"connections":[{"id":36191,"orbit":-3},{"id":55933,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":1,"orbitIndex":1,"skill":10372,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold1"},"10382":{"connections":[{"id":21984,"orbit":0},{"id":33979,"orbit":0}],"group":1202,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":10382,"stats":["+5 to any Attribute"],"stringId":"attributes24"},"10398":{"connections":[{"id":26682,"orbit":2147483647}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Sudden Escalation","orbit":0,"orbitIndex":0,"recipe":["Disgust","Paranoia","Fear"],"skill":10398,"stats":["16% increased Critical Hit Chance for Spells","8% increased Cast Speed if you've dealt a Critical Hit Recently"],"stringId":"spell_criticals11_"},"10423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":37905,"orbit":-7}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Exposed to the Inferno","orbit":1,"orbitIndex":0,"recipe":["Isolation","Envy","Disgust"],"skill":10423,"stats":["Damage Penetrates 18% Fire Resistance","15% increased Duration of Ailments against Enemies with Exposure"],"stringId":"fire_penetration22"},"10429":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":955,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":11,"skill":10429,"stats":[],"stringId":"mastery_trap236"},"10452":{"connections":[{"id":44213,"orbit":0},{"id":1878,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":2,"skill":10452,"stats":["10% increased Armour","10% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour30"},"10472":{"connections":[{"id":17687,"orbit":2},{"id":27422,"orbit":-2}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":0,"orbitIndex":0,"skill":10472,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks6"},"10474":{"connections":[{"id":64443,"orbit":0},{"id":53785,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":12,"skill":10474,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks7"},"10484":{"connections":[{"id":42660,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":14,"skill":10484,"stats":["+2 to Maximum Rage"],"stringId":"minion_attack4"},"10495":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":7,"orbitIndex":18,"skill":10495,"stats":[],"stringId":"mastery_mana164"},"10499":{"connections":[{"id":42583,"orbit":2147483647},{"id":51788,"orbit":8}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","isNotable":true,"name":"Necromantic Ward","orbit":2,"orbitIndex":0,"recipe":["Guilt","Envy","Fear"],"skill":10499,"stats":["20% increased Life Regeneration rate","30% reduced effect of Curses on you","30% increased damage against Undead Enemies"],"stringId":"mercenary9"},"10500":{"connections":[{"id":6900,"orbit":-6},{"id":9040,"orbit":0}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Dazing Blocks","orbit":4,"orbitIndex":12,"recipe":["Paranoia","Paranoia","Despair"],"skill":10500,"stats":["100% chance to Daze Enemies whose Hits you Block with a raised Shield"],"stringId":"shield34"},"10508":{"connections":[{"id":21684,"orbit":5}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Attack Speed","orbit":7,"orbitIndex":15,"skill":10508,"stats":["3% increased Attack Speed while holding a Shield"],"stringId":"shield27"},"10534":{"connections":[{"id":46205,"orbit":-7}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","orbit":2,"orbitIndex":2,"skill":10534,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems29"},"10552":{"connections":[{"id":703,"orbit":-3},{"id":18895,"orbit":3}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":7,"orbitIndex":8,"skill":10552,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield5"},"10561":{"ascendancyName":"Disciple of Varashta","connections":[{"id":32705,"orbit":9}],"flavourText":"\"My heart was fractured. I believed Kelari's words. I knew not his true nature... his ambition. I convinced Ruzhan there were cowards among his ranks. I failed you. And I accept my fate.\" \\n\\nNavira confessed her failure to Varashta.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnChiilldedGroundBurst.dds","isNotable":true,"name":"Navira's Fracturing","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":7,"orbitIndex":17,"skill":10561,"stats":["Grants Skill: Navira's Fracturing"],"stringId":"AscendancySorceress3Notable10_"},"10571":{"connections":[{"id":48240,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":17,"skill":10571,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold5"},"10576":{"connections":[{"id":58644,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":10576,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed45"},"10602":{"connections":[{"id":8629,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Reaving","orbit":4,"orbitIndex":9,"recipe":["Despair","Ire","Envy"],"skill":10602,"stats":["8% increased Attack Speed with One Handed Weapons","+15 to Dexterity"],"stringId":"attack_speed32_"},"10612":{"connections":[{"id":52003,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Embodiment of Frost","orbit":2,"orbitIndex":5,"recipe":["Paranoia","Isolation","Ire"],"skill":10612,"stats":["Immune to Freeze and Chill while affected by an Archon Buff"],"stringId":"cold22"},"10635":{"connections":[{"id":31724,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":6,"skill":10635,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour27"},"10636":{"connectionArt":"CharacterPlanned","connections":[{"id":38697,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":9,"skill":10636,"stats":["8% increased Block chance"],"stringId":"oracle_crab_claw6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10648":{"connections":[{"id":26400,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":54,"skill":10648,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles24"},"10671":{"connections":[{"id":5740,"orbit":0},{"id":23419,"orbit":0},{"id":51048,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":2,"orbitIndex":1,"skill":10671,"stats":["10% increased Attack Damage"],"stringId":"glory17_"},"10677":{"connections":[{"id":56638,"orbit":3}],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if not Stunned recently","orbit":2,"orbitIndex":20,"skill":10677,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun3"},"10681":{"connections":[{"id":27581,"orbit":5},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Defensive Stance","orbit":4,"orbitIndex":0,"recipe":["Disgust","Fear","Isolation"],"skill":10681,"stats":["+4% to maximum Block chance"],"stringId":"shield18_"},"10694":{"ascendancyName":"Infernalist","connections":[],"group":843,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistInfernalHeat.dds","isNotable":true,"name":"Seething Body","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":10694,"stats":["Gain Elemental Archon when you cast a Spell while on High Infernal Flame","Elemental Archon does not expire while on High Infernal Flame","Lose Elemental Archon on reaching maximum Infernal Flame"],"stringId":"AscendancyWitch1Notable11_"},"10713":{"connectionArt":"CharacterPlanned","connections":[{"id":16615,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":23,"skill":10713,"stats":["30% increased Armour while stationary"],"stringId":"oracle_crab_claw4__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"10727":{"connections":[{"id":1825,"orbit":0}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","isNotable":true,"name":"Emboldening Casts","orbit":3,"orbitIndex":11,"recipe":["Greed","Disgust","Disgust"],"skill":10727,"stats":["12% increased Attack Damage for each different Non-Instant Spell you've used in the past 8 seconds"],"stringId":"attacks_and_spells12"},"10729":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":10729,"stats":[],"stringId":"mastery_staff223"},"10731":{"ascendancyName":"Chronomancer","connections":[],"group":346,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGainMoreCastSpeed8Seconds.dds","isNotable":true,"name":"Quicksand Hourglass","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":10731,"stats":["Grants Sands of Time"],"stringId":"AscendancySorceress2Notable8"},"10738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":10738,"stats":[],"stringId":"mastery_mana6177"},"10742":{"connections":[{"id":41991,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":3,"orbitIndex":4,"skill":10742,"stats":["Minions have 3% increased Attack and Cast Speed"],"stringId":"minion_offence18"},"10772":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":2119,"orbit":0}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Bloodthirsty","orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Fear"],"skill":10772,"stats":["20% increased Damage while Leeching","10% increased Attack Speed while Leeching","30% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech15"},"10774":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":35863,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Unyielding","orbit":2,"orbitIndex":0,"recipe":["Disgust","Envy","Disgust"],"skill":10774,"stats":["15% increased Attack Speed if you've been Hit Recently","8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells11"},"10783":{"connections":[{"id":9762,"orbit":0},{"id":38564,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":2,"orbitIndex":16,"skill":10783,"stats":["10% increased Damage with Swords"],"stringId":"sword3"},"10824":{"connections":[{"id":49734,"orbit":-5}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":4,"orbitIndex":19,"skill":10824,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour45_"},"10830":{"connections":[{"id":59589,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":2,"skill":10830,"stats":["18% increased Armour"],"stringId":"armour25"},"10835":{"connections":[{"id":48026,"orbit":0},{"id":53367,"orbit":2147483647}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":3,"orbitIndex":16,"skill":10835,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners14"},"10841":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":7,"orbitIndex":15,"skill":10841,"stats":[],"stringId":"mastery_caster_6357"},"10873":{"connections":[{"id":32777,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Bestial Rage","orbit":3,"orbitIndex":12,"recipe":["Ire","Disgust","Fear"],"skill":10873,"stats":["Gain 1 Rage on Melee Hit","Every 10 Rage also grants 12% increased Physical Damage"],"stringId":"shapeshifting18"},"10881":{"connections":[{"id":36450,"orbit":3}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":0,"orbitIndex":0,"skill":10881,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus6"},"10909":{"connections":[{"id":16489,"orbit":9},{"id":33053,"orbit":3}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":8,"skill":10909,"stats":["+5 to any Attribute"],"stringId":"dexterity31"},"10927":{"connections":[{"id":9272,"orbit":0},{"id":42250,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Duration","orbit":3,"orbitIndex":3,"skill":10927,"stats":["10% increased Pin duration"],"stringId":"pin5"},"10944":{"connections":[],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":0,"skill":10944,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield23"},"10987":{"ascendancyName":"Chronomancer","connections":[],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistChanceSkillNoCooldownSkill.dds","isNotable":true,"name":"Now and Again","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":2,"orbitIndex":9,"skill":10987,"stats":["Cascadable Spells have 20% chance to Echo","Repeatable Spells have 20% chance to Repeat"],"stringId":"AscendancySorceress2Notable5"},"10998":{"connections":[{"id":21438,"orbit":0},{"id":62235,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Strong Chin","orbit":4,"orbitIndex":30,"recipe":["Paranoia","Ire","Guilt"],"skill":10998,"stats":["25% increased Armour and Evasion Rating","Gain Stun Threshold equal to the lowest of Evasion and Armour on your Helmet"],"stringId":"armour_and_evasion11"},"11014":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":342,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":11014,"stats":[],"stringId":"mastery_totem_6148"},"11015":{"connections":[{"id":45329,"orbit":0}],"group":1293,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":11015,"stats":["16% increased Hazard Damage"],"stringId":"hazards15"},"11027":{"connections":[{"id":59433,"orbit":0}],"group":233,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration and Armour","orbit":2,"orbitIndex":1,"skill":11027,"stats":["10% increased Endurance Charge Duration","10% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"power_endurance_charges5"},"11032":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":11032,"stats":[],"stringId":"mastery_energyshield101"},"11037":{"connections":[{"id":57039,"orbit":0}],"group":803,"icon":"Art/2DArt/SkillIcons/ExplosiveGrenade.dds","isNotable":true,"name":"Volatile Catalyst","orbit":3,"orbitIndex":6,"skill":11037,"stats":["8% increased Area of Effect","10% increased Cooldown Recovery Rate"],"stringId":"cooldowns20"},"11048":{"connections":[],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Duration","orbit":7,"orbitIndex":20,"skill":11048,"stats":["Minions deal 8% increased Damage","8% increased Minion Duration"],"stringId":"minion_reservation10"},"11066":{"connections":[{"id":26663,"orbit":2}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":19,"skill":11066,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns18"},"11087":{"connections":[{"id":42635,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":1,"skill":11087,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling6"},"11094":{"connections":[{"id":59303,"orbit":-6}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Effect","orbit":7,"orbitIndex":3,"skill":11094,"stats":["Charms applied to you have 10% increased Effect"],"stringId":"charms17_"},"11153":{"connections":[{"id":5049,"orbit":0}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Accuracy","orbit":7,"orbitIndex":12,"skill":11153,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"attack_speed24"},"11160":{"connectionArt":"CharacterPlanned","connections":[{"id":43721,"orbit":5},{"id":21374,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Relinquish Your Life","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":6,"orbitIndex":70,"skill":11160,"stats":["53% increased Life Cost of Skills","Gain 21% of Damage as Extra Chaos Damage"],"stringId":"oracle_beast_corruption14","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11178":{"connections":[{"id":24224,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","isNotable":true,"name":"Whirling Onslaught","orbit":3,"orbitIndex":19,"skill":11178,"stats":["50% chance to gain Onslaught on Killing Blow with Axes"],"stringId":"axe13"},"11184":{"aliasPassiveSocket":"DeliriumAnoint_ZarokhsGift_","connections":[],"group":637,"icon":"","isJewelSocket":true,"name":"Zarokh's Gift","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketcanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/deliriumpassiveskillscreenjewelsocketnormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Ferocity","Contempt"],"sinister":true,"skill":11184,"stats":["Sinister Jewel Socket"],"stringId":"DeliriumAnoint_ZarokhsGift_"},"11230":{"connections":[{"id":17672,"orbit":0}],"flavourText":"A properly disciplined mind gives rise to structured thought.","group":951,"icon":"Art/2DArt/SkillIcons/passives/SorceressInvocationSpellsKeystone.dds","isKeystone":true,"name":"Ritual Cadence","orbit":0,"orbitIndex":0,"skill":11230,"stats":["Invocation Skills instead Trigger Spells every 2 seconds","Invocation Skills cannot gain Energy while Triggering Spells","Invoked Spells consume 50% less Energy"],"stringId":"passive_keystone_auto_invocation"},"11248":{"connections":[{"id":35831,"orbit":0},{"id":21568,"orbit":0},{"id":46380,"orbit":0},{"id":48387,"orbit":0},{"id":22270,"orbit":0}],"group":323,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11248,"stats":["+5 to any Attribute"],"stringId":"intelligence75_"},"11252":{"connections":[{"id":39911,"orbit":0}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":23,"skill":11252,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks54"},"11257":{"connections":[{"id":10271,"orbit":0},{"id":54282,"orbit":4}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":11,"skill":11257,"stats":["30% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded5"},"11275":{"connections":[{"id":13893,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":12,"skill":11275,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration21"},"11284":{"connections":[{"id":31697,"orbit":0},{"id":30985,"orbit":0},{"id":50104,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":7,"orbitIndex":7,"skill":11284,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion10"},"11292":{"connections":[{"id":2575,"orbit":7},{"id":56757,"orbit":-7}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":0,"skill":11292,"stats":["20% increased Totem Placement speed"],"stringId":"totems42"},"11306":{"connections":[{"id":57880,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Rage on Hit","orbit":2,"orbitIndex":5,"skill":11306,"stats":["Gain 1 Rage on Melee Axe Hit"],"stringId":"axe5"},"11311":{"connections":[{"id":38057,"orbit":0}],"group":840,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":61,"skill":11311,"stats":["+10 to Armour","+8 to Evasion Rating"],"stringId":"armour_and_evasion1"},"11315":{"connections":[{"id":48846,"orbit":0}],"group":968,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":11315,"stats":["12% increased Lightning Damage"],"stringId":"lightning_penetration14"},"11329":{"connections":[{"id":54676,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":22,"skill":11329,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration32"},"11330":{"connections":[{"id":22185,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":6,"skill":11330,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies20"},"11335":{"ascendancyName":"Oracle","connections":[{"id":5571,"orbit":6}],"group":4,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Passive Point","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":11335,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyDruid1Small1"},"11337":{"connections":[{"id":23427,"orbit":5},{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":3,"orbitIndex":16,"skill":11337,"stats":["15% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze10"},"11366":{"connections":[{"id":34927,"orbit":0},{"id":558,"orbit":6}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Volcanic Skin","orbit":5,"orbitIndex":2,"recipe":["Suffering","Isolation","Paranoia"],"skill":11366,"stats":["Gain 8% of Damage as Extra Fire Damage","+20% to Fire Resistance"],"stringId":"fire37"},"11376":{"connections":[{"id":35492,"orbit":0}],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Necrotic Touch","orbit":1,"orbitIndex":10,"recipe":["Despair","Despair","Suffering"],"skill":11376,"stats":["Minions have 40% increased Critical Hit Chance"],"stringId":"minion_offence34"},"11392":{"connections":[{"id":38320,"orbit":0}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Molten Being","orbit":5,"orbitIndex":8,"recipe":["Guilt","Isolation","Disgust"],"skill":11392,"stats":["Gain 5% of Damage as Extra Fire Damage","5% of Physical Damage taken as Fire Damage"],"stringId":"ignite_mitigation8"},"11410":{"connections":[{"id":21755,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":6,"orbitIndex":48,"skill":11410,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life13"},"11428":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Exhaust All Power","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":7,"skill":11428,"stats":["Archon recovery period expires 30% slower","Archon Buffs also grant 50% increased Critical Damage Bonus","Archon Buffs also grant 30% increased Critical Hit Chance"],"stringId":"oracle_archon_crit4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11433":{"connections":[{"id":24630,"orbit":-6},{"id":44753,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":7,"orbitIndex":0,"skill":11433,"stats":["12% increased Fire Damage"],"stringId":"fire20"},"11463":{"connections":[],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":23,"skill":11463,"stats":["25% reduced Presence Area of Effect"],"stringId":"criticals99"},"11464":{"connectionArt":"CharacterPlanned","connections":[{"id":27405,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Movement Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":54,"skill":11464,"stats":["3% increased Movement Speed"],"stringId":"oracle_movement_cooldown1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11472":{"connections":[{"id":19880,"orbit":0},{"id":40270,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Evasion if Consumed Frenzy Charge","orbit":2,"orbitIndex":8,"skill":11472,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"stringId":"frenzy_charges1"},"11495":{"ascendancyName":"Martial Artist","connections":[{"id":34081,"orbit":9},{"id":36643,"orbit":8},{"id":53280,"orbit":5},{"id":20437,"orbit":5},{"id":52295,"orbit":5},{"id":37604,"orbit":-6}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Martial Artist","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":15,"skill":11495,"stats":[],"stringId":"AscendancyMonk1Start"},"11504":{"connections":[{"id":30839,"orbit":7},{"id":35696,"orbit":0}],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":2,"orbitIndex":19,"skill":11504,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed19"},"11505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":632,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":11505,"stats":[],"stringId":"mastery_fire116"},"11509":{"connections":[{"id":7465,"orbit":0}],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":15,"skill":11509,"stats":["12% increased Critical Hit Chance against Enemies that have entered your Presence Recently"],"stringId":"criticals96"},"11525":{"connections":[{"id":64724,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability and Ignite Magnitude","orbit":2,"orbitIndex":8,"skill":11525,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"stringId":"ignite2__"},"11526":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":38993,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Sniper","orbit":5,"orbitIndex":30,"recipe":["Isolation","Suffering","Despair"],"skill":11526,"stats":["Arrows gain Critical Hit Chance as they travel farther, up to","40% increased Critical Hit Chance after 7 metres"],"stringId":"bow14"},"11572":{"connections":[{"id":32923,"orbit":-7}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Arcane Surge Effect and Life Regeneration","orbit":7,"orbitIndex":19,"skill":11572,"stats":["5% increased Life Regeneration rate","10% increased effect of Arcane Surge on you"],"stringId":"life_recoup22"},"11578":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1087,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Spreading Shocks","orbit":0,"orbitIndex":0,"recipe":["Guilt","Disgust","Disgust"],"skill":11578,"stats":["Shocking Hits have a 50% chance to also Shock enemies in a 1.5 metre radius"],"stringId":"lightning37"},"11580":{"connectionArt":"CharacterPlanned","connections":[{"id":34769,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":13,"skill":11580,"stats":["25% increased Life Regeneration rate"],"stringId":"oracle_life_corruption5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11598":{"connections":[{"id":4536,"orbit":0},{"id":44516,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":0,"orbitIndex":0,"skill":11598,"stats":["3% increased Attack Speed with Quarterstaves"],"stringId":"quarterstaff8"},"11604":{"connections":[{"id":17088,"orbit":0},{"id":29408,"orbit":0},{"id":52765,"orbit":0}],"group":1167,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11604,"stats":["+5 to any Attribute"],"stringId":"attributes28"},"11641":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":45248,"orbit":0},{"id":55582,"orbit":0}],"group":441,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBarrier.dds","isNotable":true,"name":"Essence of Virtue","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":11641,"stats":["Grants Skill: Virtuous Barrier"],"stringId":"AscendancyMercenary3Notable1_"},"11656":{"connections":[{"id":53822,"orbit":0},{"id":9106,"orbit":-3}],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":8,"skill":11656,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage15"},"11666":{"connectionArt":"CharacterPlanned","connections":[{"id":60708,"orbit":2147483647}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Reduced Movement Penalty","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":17,"skill":11666,"stats":["6% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"oracle_bow_movement4_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11667":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Immobilisation Buildup","orbit":1,"orbitIndex":10,"skill":11667,"stats":["10% increased Immobilisation buildup against Constructs"],"stringId":"mercenary3"},"11672":{"connections":[{"id":47177,"orbit":0},{"id":48030,"orbit":0}],"group":929,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11672,"stats":["+5 to any Attribute"],"stringId":"intelligence84"},"11679":{"connections":[{"id":29148,"orbit":0},{"id":7424,"orbit":8},{"id":61042,"orbit":0}],"group":668,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11679,"stats":["+5 to any Attribute"],"stringId":"attributes78"},"11722":{"connections":[{"id":62431,"orbit":2}],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Seal Generation Frequency","orbit":2,"orbitIndex":16,"skill":11722,"stats":["Sealed Skills have 10% increased Seal gain frequency"],"stringId":"spells28"},"11736":{"connections":[{"id":62677,"orbit":0}],"group":909,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":11736,"stats":["12% increased Lightning Damage"],"stringId":"lightning17"},"11741":{"connections":[{"id":17282,"orbit":0},{"id":31159,"orbit":0}],"group":223,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":8,"skill":11741,"stats":["+5 to any Attribute"],"stringId":"intelligence74"},"11752":{"connections":[{"id":62455,"orbit":0},{"id":62258,"orbit":0},{"id":57616,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":2,"skill":11752,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners7"},"11764":{"connections":[{"id":38878,"orbit":7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":7,"orbitIndex":11,"skill":11764,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies1"},"11771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":52395,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":5,"orbitIndex":22,"skill":11771,"stats":["4% increased Skill Speed"],"stringId":"AscendancyMonk3Small6"},"11774":{"connections":[],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbitNotable.dds","isNotable":true,"name":"The Spring Hare","orbit":0,"orbitIndex":0,"recipe":["Disgust","Despair","Isolation"],"skill":11774,"stats":["20% chance for Damage of Enemies Hitting you to be Unlucky","20% chance for Damage with Hits to be Lucky"],"stringId":"azmerianimals12"},"11776":{"ascendancyName":"Ritualist","connections":[{"id":37046,"orbit":6}],"group":1623,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":11776,"stats":["15% increased Physical Damage"],"stringId":"AscendancyHuntress3Small6"},"11786":{"connections":[{"id":7716,"orbit":2147483647}],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":5,"skill":11786,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"stringId":"armour46"},"11788":{"connections":[{"id":14355,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":0,"skill":11788,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells12"},"11813":{"connections":[{"id":30456,"orbit":-4}],"group":1205,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":12,"skill":11813,"stats":["15% increased Evasion Rating"],"stringId":"evasion3"},"11825":{"connections":[{"id":42794,"orbit":4},{"id":54984,"orbit":0},{"id":47374,"orbit":0},{"id":10648,"orbit":0}],"group":1335,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":11825,"stats":["+5 to any Attribute"],"stringId":"dexterity12_"},"11826":{"connections":[{"id":17726,"orbit":0}],"group":967,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Heavy Ammunition","orbit":7,"orbitIndex":8,"recipe":["Guilt","Greed","Greed"],"skill":11826,"stats":["5% reduced Attack Speed","40% increased Projectile Damage","40% increased Projectile Stun Buildup"],"stringId":"ranged32"},"11836":{"connections":[{"id":32721,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Critical vs Blinded","orbit":2,"orbitIndex":7,"skill":11836,"stats":["12% increased Critical Hit Chance against Blinded Enemies"],"stringId":"blind14"},"11838":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":33112,"orbit":-4}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","isNotable":true,"name":"Dreamcatcher","orbit":7,"orbitIndex":6,"recipe":["Disgust","Suffering","Fear"],"skill":11838,"stats":["25% increased Spell Damage while on Full Energy Shield","75% increased Energy Shield from Equipped Focus"],"stringId":"focus10"},"11855":{"connections":[{"id":30829,"orbit":0}],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":11855,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy15"},"11861":{"connectionArt":"CharacterPlanned","connections":[{"id":59795,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":1,"skill":11861,"stats":["10% increased Spell Damage","+10 to Strength"],"stringId":"oracle_strength_spell3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"11871":{"connections":[{"id":47235,"orbit":0},{"id":53471,"orbit":0},{"id":24958,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":1,"skill":11871,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"blind18"},"11873":{"connections":[{"id":50150,"orbit":0},{"id":62677,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":9,"skill":11873,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning51"},"11882":{"connections":[{"id":63888,"orbit":-5}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":3,"skill":11882,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments42"},"11886":{"connections":[],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Mauling Stuns","orbit":7,"orbitIndex":23,"recipe":["Paranoia","Guilt","Suffering"],"skill":11886,"stats":["40% increased Stun Buildup against enemies within 2 metres","20% increased Melee Damage against Heavy Stunned enemies"],"stringId":"stun27"},"11916":{"connections":[],"group":839,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":3,"orbitIndex":16,"skill":11916,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration25"},"11938":{"connections":[{"id":39964,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":0,"orbitIndex":0,"skill":11938,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana10"},"11980":{"connections":[{"id":20504,"orbit":-5}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":71,"skill":11980,"stats":["5% increased Block chance"],"stringId":"block6"},"11984":{"connectionArt":"CharacterPlanned","connections":[{"id":42762,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":7,"skill":11984,"stats":["15% increased Physical Damage"],"stringId":"oracle_rust_king3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12000":{"ascendancyName":"Titan","connections":[],"group":78,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreMaxLife.dds","isNotable":true,"name":"Mysterious Lineage","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":12000,"stats":["15% more Maximum Life"],"stringId":"AscendancyWarrior1Notable7"},"12005":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":23,"skill":12005,"stats":[],"stringId":"mastery_shapeshifting_6687"},"12033":{"ascendancyName":"Deadeye","connections":[],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeGrantsTwoAdditionalProjectiles.dds","isNotable":true,"name":"Endless Munitions","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":2,"orbitIndex":8,"skill":12033,"stats":["Skills fire an additional Projectile"],"stringId":"AscendancyRanger1Notable1"},"12054":{"ascendancyName":"Tactician","connections":[{"id":37523,"orbit":0}],"group":432,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Totem Damage","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":12054,"stats":["20% increased Totem Damage"],"stringId":"AscendancyMercenary1Small8"},"12066":{"connections":[{"id":48734,"orbit":0}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":8,"skill":12066,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"azmerianimals58"},"12078":{"connections":[{"id":53771,"orbit":-6},{"id":41877,"orbit":-4}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":39,"skill":12078,"stats":["10% increased Projectile Damage"],"stringId":"projectiles13"},"12099":{"connections":[{"id":4833,"orbit":0}],"group":431,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":12099,"stats":["12% increased Cold Damage"],"stringId":"cold56"},"12116":{"connections":[{"id":42036,"orbit":0},{"id":52410,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area","orbit":4,"orbitIndex":22,"skill":12116,"stats":["20% increased Parry Hit Area of Effect"],"stringId":"buckler1"},"12120":{"connections":[{"id":51606,"orbit":-7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":18,"skill":12120,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"evasion19"},"12125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":403,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":12125,"stats":[],"stringId":"mastery_life137"},"12166":{"connections":[],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cast Speed with Cold Skills","orbit":7,"orbitIndex":22,"skill":12166,"stats":["3% increased Cast Speed with Cold Skills"],"stringId":"cold6"},"12169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":60138,"orbit":0}],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":2,"orbitIndex":13,"skill":12169,"stats":[],"stringId":"mastery_mine172"},"12174":{"connections":[{"id":18864,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":22,"skill":12174,"stats":["10% increased Magnitude of Ailments you inflict"],"stringId":"azmerianimals43"},"12183":{"ascendancyName":"Pathfinder","connections":[{"id":16433,"orbit":0}],"group":1575,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Passive Points","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":12183,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyRanger3Small8"},"12189":{"connections":[{"id":32859,"orbit":-4}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":17,"skill":12189,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical60"},"12208":{"connections":[{"id":32813,"orbit":-7}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":3,"skill":12208,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks18_"},"12232":{"connections":[{"id":872,"orbit":0},{"id":11087,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Damage and Defences","orbit":2,"orbitIndex":21,"skill":12232,"stats":["Channelling Skills deal 6% increased Damage","4% increased Armour, Evasion and Energy Shield while Channelling"],"stringId":"channelling10"},"12239":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":39881,"orbit":0},{"id":41811,"orbit":0}],"group":1394,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":12239,"stats":[],"stringId":"mastery_physical193_"},"12245":{"connections":[{"id":13610,"orbit":0},{"id":19749,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Arsonist","orbit":3,"orbitIndex":14,"recipe":["Isolation","Greed","Despair"],"skill":12245,"stats":["Ignites you inflict deal Damage 18% faster"],"stringId":"fire63_"},"12249":{"connections":[{"id":12761,"orbit":-3}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":20,"skill":12249,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield9_"},"12253":{"connections":[{"id":32183,"orbit":0},{"id":41017,"orbit":0},{"id":35696,"orbit":0},{"id":34497,"orbit":0},{"id":16401,"orbit":0},{"id":24656,"orbit":0}],"group":1382,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":12253,"stats":["+5 to any Attribute"],"stringId":"dexterity41"},"12255":{"connections":[{"id":989,"orbit":0},{"id":27740,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":12255,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks33"},"12276":{"connections":[{"id":13980,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Aftershock Chance","orbit":4,"orbitIndex":39,"skill":12276,"stats":["8% chance for Mace Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"mace11"},"12311":{"connections":[{"id":64119,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":7,"orbitIndex":16,"skill":12311,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow12"},"12322":{"connections":[{"id":53196,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask and Charm Charges Gained","orbit":7,"orbitIndex":8,"skill":12322,"stats":["8% increased Flask and Charm Charges gained"],"stringId":"flasks13"},"12324":{"connections":[{"id":24764,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Chance","orbit":1,"orbitIndex":7,"skill":12324,"stats":["5% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"stringId":"infusion6"},"12329":{"connections":[{"id":17523,"orbit":4}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":0,"skill":12329,"stats":["16% increased Hazard Damage"],"stringId":"hazards8"},"12337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":5295,"orbit":0}],"group":1033,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Flash Storm","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Ire","Isolation"],"skill":12337,"stats":["30% increased chance to Shock","Damage Penetrates 15% Lightning Resistance"],"stringId":"lightning35"},"12367":{"connections":[],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":0,"skill":12367,"stats":["7% increased Chaos Damage"],"stringId":"chaos3"},"12382":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":35849,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":11,"skill":12382,"stats":[],"stringId":"mastery_life128"},"12412":{"connections":[],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Temporal Mastery","orbit":1,"orbitIndex":0,"recipe":["Paranoia","Fear","Disgust"],"skill":12412,"stats":["16% increased Cooldown Recovery Rate"],"stringId":"slowed_enemies23_"},"12418":{"connections":[{"id":51832,"orbit":0},{"id":3988,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":21,"skill":12418,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries7_"},"12419":{"connections":[{"id":56063,"orbit":-1}],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage and Duration","orbit":2,"orbitIndex":4,"skill":12419,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"stringId":"chaos12"},"12430":{"connections":[{"id":17584,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isSwitchable":true,"name":"Melee Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","id":36764,"name":"Spell and Attack Damage","stats":["8% increased Spell Damage","8% increased Attack Damage"]}},"orbit":2,"orbitIndex":13,"skill":12430,"stats":["10% increased Melee Damage"],"stringId":"melee2"},"12451":{"connections":[{"id":24922,"orbit":-9}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":12,"skill":12451,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns16"},"12462":{"connections":[{"id":64299,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isSwitchable":true,"name":"Aura Effect","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":25740,"name":"Damage","stats":["8% increased Damage"]}},"orbit":3,"orbitIndex":20,"skill":12462,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras4"},"12465":{"connections":[{"id":30040,"orbit":0}],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":14,"skill":12465,"stats":["Break 20% increased Armour"],"stringId":"armour_break17"},"12471":{"connections":[{"id":19942,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":19,"skill":12471,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"accuracy52"},"12488":{"ascendancyName":"Stormweaver","connections":[{"id":49189,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Remnant Range","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":9,"orbitIndex":8,"skill":12488,"stats":["Remnants can be collected from 25% further away"],"stringId":"AscendancySorceress1Small9"},"12498":{"connections":[{"id":30341,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":12498,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers3"},"12526":{"connections":[{"id":54818,"orbit":-9}],"group":797,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":12526,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression9"},"12565":{"connections":[{"id":3245,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Block","orbit":3,"orbitIndex":5,"skill":12565,"stats":["4% increased Block chance","10% increased Thorns damage"],"stringId":"getting_hit4_"},"12601":{"connectionArt":"CharacterPlanned","connections":[{"id":50908,"orbit":0},{"id":35745,"orbit":2147483647}],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":2,"skill":12601,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"stringId":"oracle_endurance_charge2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12610":{"connectionArt":"CharacterPlanned","connections":[{"id":4873,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":20,"skill":12610,"stats":["Meta Skills gain 20% increased Energy"],"stringId":"oracle_energy_gain1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12611":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":32155,"orbit":3},{"id":44204,"orbit":3}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Harness the Elements","orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Isolation"],"skill":12611,"stats":["20% increased Damage for each type of Elemental Ailment on Enemy"],"stringId":"elemental32"},"12661":{"connections":[{"id":34984,"orbit":0}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Asceticism","orbit":7,"orbitIndex":16,"recipe":["Isolation","Ire","Guilt"],"skill":12661,"stats":["Stun Threshold is based on 30% of your Energy Shield instead of Life"],"stringId":"stun_threshold_from_energy_shield10"},"12683":{"connectionArt":"CharacterPlanned","connections":[{"id":33618,"orbit":0},{"id":61974,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Power of the Storm","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":12683,"stats":["50% increased Damage if you've Triggered a Skill Recently"],"stringId":"oracle_energy_gain3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Vale Shelter","orbit":0,"orbitIndex":0,"recipe":["Greed","Disgust","Despair"],"skill":12750,"stats":["Charms gain 0.15 charges per Second"],"stringId":"charms4"},"12751":{"connections":[],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Critical Chance","orbit":2,"orbitIndex":15,"skill":12751,"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"stringId":"one_handed14"},"12761":{"connections":[],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":4,"skill":12761,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield10"},"12777":{"connections":[{"id":28950,"orbit":-8}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":23,"skill":12777,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour3"},"12778":{"connections":[],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Spell Critical Chance","orbit":3,"orbitIndex":8,"skill":12778,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical_witch7"},"12786":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[{"id":5777,"orbit":0},{"id":18465,"orbit":0},{"id":64299,"orbit":0}],"group":586,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":12786,"stats":[],"stringId":"mastery_aura_6312"},"12795":{"ascendancyName":"Pathfinder","connections":[{"id":44871,"orbit":0},{"id":4739,"orbit":0}],"group":1578,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheSorceress.dds","isMultipleChoiceOption":true,"name":"Path of the Sorceress","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":12795,"stats":["Can Allocate Passive Skills from the Sorceress's starting point","Grants 4 Passive Skill Point"],"stringId":"AscendancyRanger3Notable8_1"},"12800":{"connections":[{"id":8896,"orbit":0}],"group":1412,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":12800,"stats":["25% increased Evasion Rating while Sprinting"],"stringId":"Sprint6"},"12817":{"connections":[{"id":22967,"orbit":-7}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Defences","orbit":7,"orbitIndex":4,"skill":12817,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"shield23"},"12821":{"connections":[],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":2,"skill":12821,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners17"},"12822":{"connections":[{"id":5826,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Adaptable Assault","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Envy"],"skill":12822,"stats":["+0.4 metres to Melee Strike Range if you've dealt a Projectile Attack Hit in the past eight seconds","Projectiles have 25% chance to Fork if you've dealt a Melee Hit in the past eight seconds"],"stringId":"ranged21"},"12851":{"connections":[{"id":32507,"orbit":0},{"id":32727,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":5,"skill":12851,"stats":["10% increased Physical Damage"],"stringId":"physical6"},"12876":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerGrantsMeditate.dds","isNotable":true,"name":"Faith is a Choice","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":6,"orbitIndex":7,"skill":12876,"stats":["Grants Skill: Meditate"],"stringId":"AscendancyMonk2Notable8"},"12882":{"ascendancyName":"Stormweaver","connections":[{"id":25618,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/GrantsElementalStorm.dds","isNotable":true,"name":"Tempest Caller","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":12,"skill":12882,"stats":["Trigger Elemental Storm on Critical Hit with Spells","Grants Skill: Elemental Storm"],"stringId":"AscendancySorceress1Notable3"},"12890":{"connections":[{"id":2091,"orbit":0},{"id":42118,"orbit":0}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":12890,"stats":["+5 to any Attribute"],"stringId":"dexterity57"},"12893":{"connections":[{"id":65167,"orbit":3}],"group":1415,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Area Damage and Companion Area of Effect","orbit":0,"orbitIndex":0,"skill":12893,"stats":["6% increased Area Damage","Companions have 10% increased Area of Effect"],"stringId":"companions60"},"12906":{"connections":[{"id":3234,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Sitting Duck","orbit":7,"orbitIndex":20,"recipe":["Despair","Despair","Guilt"],"skill":12906,"stats":["35% increased Critical Hit Chance against Immobilised enemies","Your Hits cannot be Evaded by Pinned Enemies"],"stringId":"pin9"},"12918":{"connections":[{"id":4017,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":12918,"stats":["10% increased Mana Regeneration Rate"],"stringId":"energy_shield_recovery11"},"12925":{"connections":[{"id":61196,"orbit":5}],"group":1018,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":2,"skill":12925,"stats":["15% increased chance to Shock"],"stringId":"lightning43"},"12940":{"connectionArt":"CharacterPlanned","connections":[{"id":20637,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","isNotable":true,"name":"Cower Before the First Ones","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":0,"skill":12940,"stats":["30% increased Fire Damage","30% increased Cold Damage","30% increased Lightning Damage","30% increased Chaos Damage","30% increased Physical Damage"],"stringId":"oracle_hierarchy7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"12964":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Lone Warrior","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Disgust"],"skill":12964,"stats":["Aura Skills have 14% increased Magnitudes","Your Aura Buffs do not affect Allies"],"stringId":"auras30"},"12992":{"connections":[{"id":16485,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":22,"skill":12992,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"oracle5"},"12998":{"connections":[{"id":30463,"orbit":-6},{"id":28623,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Warm the Heart","orbit":4,"orbitIndex":21,"recipe":["Ire","Suffering","Fear"],"skill":12998,"stats":["25% reduced Freeze Duration on you","60% increased Freeze Threshold"],"stringId":"spell_suppression24"},"13030":{"connections":[{"id":55,"orbit":-3}],"group":1130,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Faster Ailments","orbit":0,"orbitIndex":0,"skill":13030,"stats":["Damaging Ailments deal damage 5% faster"],"stringId":"ailments22"},"13065":{"ascendancyName":"Invoker","connections":[{"id":63236,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Triggered Spell Damage","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":14,"skill":13065,"stats":["Triggered Spells deal 16% increased Spell Damage"],"stringId":"AscendancyMonk2Small10_"},"13075":{"connections":[{"id":50392,"orbit":0}],"group":232,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":0,"orbitIndex":0,"skill":13075,"stats":["+12 to Strength"],"stringId":"strength109"},"13081":{"connections":[{"id":14254,"orbit":-5}],"group":801,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":17,"skill":13081,"stats":["10% increased Projectile Damage"],"stringId":"projectiles21_"},"13108":{"connectionArt":"CharacterPlanned","connections":[],"group":202,"icon":"Art/2DArt/SkillIcons/passives/minionattackspeed.dds","name":"Ally Attack and Cast Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":67,"skill":13108,"stats":["3% reduced Skill Speed","Allies in your Presence have 6% increased Attack Speed","Allies in your Presence have 6% increased Cast Speed"],"stringId":"oracle_self_sacrificing3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13123":{"connections":[{"id":62723,"orbit":4}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":10,"skill":13123,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster7__"},"13157":{"connections":[{"id":30392,"orbit":3}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":1,"skill":13157,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks26"},"13171":{"connections":[{"id":24438,"orbit":5}],"group":494,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Physical Damage Reduction","orbit":0,"orbitIndex":0,"skill":13171,"stats":["Totems have 12% additional Physical Damage Reduction"],"stringId":"totems54_"},"13174":{"ascendancyName":"Infernalist","connections":[{"id":770,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/Fireblood.dds","isNotable":true,"name":"Pyromantic Pact","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":6,"orbitIndex":3,"skill":13174,"stats":["Maximum Mana is replaced by twice as much Maximum Infernal Flame","Gain Infernal Flame instead of spending Mana for Skill costs","Take maximum Life and Energy Shield as Fire Damage when Infernal Flame reaches maximum","Lose all Infernal Flame on reaching maximum Infernal Flame","25% of Infernal Flame lost per second if none was gained in the past 2 seconds"],"stringId":"AscendancyWitch1Notable7"},"13228":{"connectionArt":"CharacterPlanned","connections":[{"id":43486,"orbit":2147483647}],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":19,"skill":13228,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"stringId":"oracle_power_charge3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":623,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Radial Force","orbit":0,"orbitIndex":0,"skill":13233,"stats":["10% increased Area of Effect","12% increased Immobilisation buildup"],"stringId":"area_of_effect23"},"13241":{"connections":[{"id":51921,"orbit":0},{"id":55746,"orbit":0},{"id":39732,"orbit":0}],"group":677,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":13241,"stats":["+5 to any Attribute"],"stringId":"strength41"},"13279":{"connections":[{"id":2864,"orbit":0},{"id":61657,"orbit":0}],"group":646,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":13279,"stats":["+5 to any Attribute"],"stringId":"strength78_"},"13289":{"ascendancyName":"Disciple of Varashta","connections":[],"flavourText":"\"And you... there was no excuse for your actions. You defiled them! You have tainted the very sands with the blood of your own! Yet the war rages on. You have achieved nothing. You must pay.\" \\n\\nVarashta condemned Kelari to the ritual of the {barya}, sentenced to serve as a Djinn.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonSandDjinn.dds","isNotable":true,"name":"Barya of Kelari","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":15,"skill":13289,"stats":["Grants Skill: Kelari, the Tainted Sands"],"stringId":"AscendancySorceress3Notable8"},"13293":{"connections":[{"id":30457,"orbit":4}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":18,"skill":13293,"stats":["20% increased Armour if you haven't been Hit Recently"],"stringId":"armour2__"},"13294":{"connections":[{"id":20718,"orbit":2}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":1,"orbitIndex":7,"skill":13294,"stats":["10% increased Skill Effect Duration"],"stringId":"slowed_enemies8"},"13307":{"connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":25,"skill":13307,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield16"},"13326":{"connections":[{"id":2617,"orbit":-3}],"group":103,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":13326,"stats":["12% increased Fire Damage"],"stringId":"fire69"},"13333":{"connections":[{"id":1700,"orbit":7}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":1,"orbitIndex":9,"skill":13333,"stats":["10% increased Cold Damage"],"stringId":"ground6"},"13341":{"connections":[{"id":63255,"orbit":0},{"id":56841,"orbit":0},{"id":18451,"orbit":0}],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":13341,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges10"},"13352":{"connections":[{"id":59180,"orbit":2147483647},{"id":38010,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":19,"skill":13352,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory2"},"13356":{"connections":[{"id":6229,"orbit":7}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":2,"orbitIndex":0,"skill":13356,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed16__"},"13359":{"connections":[{"id":31943,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":15,"skill":13359,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold14"},"13367":{"connections":[{"id":38969,"orbit":0},{"id":21713,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":14,"skill":13367,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy1"},"13379":{"connections":[{"id":27761,"orbit":0}],"group":1118,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":0,"orbitIndex":0,"skill":13379,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"deflect15"},"13387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":689,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":5,"orbitIndex":0,"skill":13387,"stats":[],"stringId":"mastery_elemental95"},"13397":{"connections":[{"id":1207,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":6,"skill":13397,"stats":["+5 to any Attribute"],"stringId":"strength3"},"13407":{"connections":[{"id":23040,"orbit":-3},{"id":51583,"orbit":0}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Heartbreaking","orbit":2,"orbitIndex":9,"recipe":["Isolation","Paranoia","Fear"],"skill":13407,"stats":["25% increased Critical Damage Bonus","+10 to Strength"],"stringId":"criticals54_"},"13411":{"connections":[{"id":34136,"orbit":7}],"group":1076,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":42,"skill":13411,"stats":["+5 to any Attribute"],"stringId":"dexterity3"},"13419":{"connections":[{"id":14958,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":13419,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals43_"},"13425":{"connections":[{"id":315,"orbit":0}],"group":754,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Duration","orbit":0,"orbitIndex":0,"skill":13425,"stats":["10% increased Bleeding Duration"],"stringId":"bleed28"},"13457":{"connections":[{"id":3630,"orbit":5},{"id":52445,"orbit":0}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Shadow Dancing","orbit":4,"orbitIndex":60,"recipe":["Despair","Guilt","Despair"],"skill":13457,"stats":["40% increased Evasion Rating if you have been Hit Recently","40% faster start of Energy Shield Recharge if you've been Stunned Recently"],"stringId":"evasion_and_energy_shield13"},"13468":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Give Up Your Essence","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":22,"skill":13468,"stats":["Allies in your Presence Regenerate 2% of your Maximum Life per second","30% increased Life Cost of Skills"],"stringId":"oracle_life_corruption4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13474":{"connections":[{"id":16084,"orbit":0}],"group":420,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":0,"orbitIndex":0,"skill":13474,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed17"},"13482":{"connections":[{"id":30136,"orbit":0},{"id":15892,"orbit":0}],"group":207,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Punctured Lung","orbit":0,"orbitIndex":0,"recipe":["Fear","Guilt","Greed"],"skill":13482,"stats":["Enemies you Fully Armour Break cannot Regenerate Life","Enemies you Fully Armour Break are Maimed"],"stringId":"armour_break39"},"13489":{"connections":[{"id":47517,"orbit":0}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Unbreakable","orbit":3,"orbitIndex":5,"recipe":["Ire","Isolation","Fear"],"skill":13489,"stats":["15% increased Armour","50% reduced Armour Break taken","10% reduced Slowing Potency of Debuffs on You"],"stringId":"armour30"},"13500":{"connections":[{"id":41044,"orbit":-3},{"id":44733,"orbit":0}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":3,"orbitIndex":2,"skill":13500,"stats":["3% of Damage taken Recouped as Mana"],"stringId":"mana_regeneration35"},"13505":{"connections":[{"id":4956,"orbit":0}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Resilient Soul","orbit":0,"orbitIndex":0,"skill":13505,"stats":["20% increased Life Regeneration rate","5% of Damage taken Recouped as Life"],"stringId":"life_regeneration15_"},"13515":{"connections":[{"id":14601,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/stormborn.dds","isNotable":true,"name":"Stormwalker","orbit":7,"orbitIndex":12,"recipe":["Suffering","Greed","Fear"],"skill":13515,"stats":["Gain 15% of Damage as Extra Lightning Damage while on Shocked Ground","40% reduced effect of Shock on you"],"stringId":"ground15"},"13524":{"connections":[{"id":54923,"orbit":0},{"id":259,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Everlasting Glory","orbit":4,"orbitIndex":27,"recipe":["Disgust","Ire","Suffering"],"skill":13524,"stats":["Skills have a 15% chance to not consume Glory"],"stringId":"glory7"},"13537":{"connections":[{"id":49455,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":10,"skill":13537,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield24"},"13542":{"connections":[{"id":27492,"orbit":2147483647}],"group":873,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Loose Flesh","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Greed"],"skill":13542,"stats":["20% of Elemental Damage taken Recouped as Life"],"stringId":"life_recoup13"},"13562":{"connections":[{"id":23650,"orbit":3}],"group":617,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration on Low Life","orbit":7,"orbitIndex":18,"skill":13562,"stats":["15% increased Life Regeneration Rate while on Low Life"],"stringId":"life_regeneration7"},"13576":{"connections":[{"id":17024,"orbit":0}],"group":1030,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":13576,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning9"},"13610":{"connections":[{"id":41447,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Faster Ignites and Flammability Magnitude","orbit":3,"orbitIndex":11,"skill":13610,"stats":["15% increased Flammability Magnitude","Ignites you inflict deal Damage 4% faster"],"stringId":"fire60_"},"13619":{"connections":[{"id":12208,"orbit":0},{"id":59600,"orbit":0}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":0,"skill":13619,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks19"},"13624":{"connections":[{"id":28258,"orbit":-2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Duration","orbit":2,"orbitIndex":23,"skill":13624,"stats":["Mark Skills have 25% increased Skill Effect Duration"],"stringId":"marks15"},"13634":{"connections":[],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":18,"skill":13634,"stats":["Offering Skills have 30% increased Duration"],"stringId":"corpses4_"},"13673":{"ascendancyName":"Stormweaver","connections":[{"id":61985,"orbit":-8}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Chill Duration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":1,"skill":13673,"stats":["25% increased Chill Duration on Enemies"],"stringId":"AscendancySorceress1Small7"},"13691":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connectionArt":"CharacterPlanned","connections":[],"group":114,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":13691,"stats":[],"stringId":"oracle_totems_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13693":{"connections":[],"group":298,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Rhythm of Ice","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Guilt"],"skill":13693,"stats":["20% increased Cold Damage","6% increased Cast Speed per Spell Echoed Recently, up to 30%"],"stringId":"cold58"},"13701":{"connections":[{"id":17871,"orbit":0},{"id":59538,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze and Chill Resistance","orbit":2,"orbitIndex":2,"skill":13701,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"stringId":"freeze_and_chill_mitigation4"},"13708":{"connections":[],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Curved Weapon","orbit":4,"orbitIndex":40,"recipe":["Greed","Fear","Greed"],"skill":13708,"stats":["15% increased Accuracy Rating","+10 to Dexterity"],"stringId":"two_handed15"},"13711":{"connections":[{"id":30562,"orbit":4}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":22,"skill":13711,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield18"},"13715":{"ascendancyName":"Titan","connections":[{"id":59372,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Stun Buildup","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":5,"orbitIndex":44,"skill":13715,"stats":["18% increased Stun Buildup"],"stringId":"AscendancyWarrior1Small3"},"13724":{"connections":[{"id":20236,"orbit":0},{"id":33823,"orbit":0}],"group":1188,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Deadly Force","orbit":4,"orbitIndex":54,"recipe":["Disgust","Suffering","Envy"],"skill":13724,"stats":["15% increased Damage if you've dealt a Critical Hit in the past 8 seconds","15% increased Critical Hit Chance"],"stringId":"criticals50"},"13738":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1013,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Lightning Quick","orbit":0,"orbitIndex":0,"recipe":["Fear","Fear","Isolation"],"skill":13738,"stats":["14% increased Lightning Damage","8% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning39"},"13748":{"connections":[{"id":38338,"orbit":-6},{"id":41029,"orbit":9}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":0,"skill":13748,"stats":["10% increased Elemental Damage"],"stringId":"elemental43"},"13769":{"connections":[{"id":2254,"orbit":-4}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":8,"skill":13769,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration21"},"13772":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":39,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus8.dds","isNotable":true,"name":"Flowing Metal","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":13772,"stats":["Body Armour grants +50% of Armour also applies to Elemental Damage"],"stringId":"AscendancyWarrior3Notable6_8"},"13777":{"connections":[{"id":38532,"orbit":0}],"group":220,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration and Energy Shield","orbit":2,"orbitIndex":15,"skill":13777,"stats":["10% increased Power Charge Duration","10% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_endurance_charges2"},"13783":{"connections":[{"id":28992,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","isSwitchable":true,"name":"Ailment Chance","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","id":53191,"name":"Accuracy","stats":["8% increased Accuracy Rating"]}},"orbit":7,"orbitIndex":19,"skill":13783,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments8"},"13799":{"connections":[{"id":36576,"orbit":-3}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Slow Effect","orbit":2,"orbitIndex":20,"skill":13799,"stats":["8% increased Attack Damage","Debuffs you inflict have 4% increased Slow Magnitude"],"stringId":"attack3"},"13823":{"connections":[{"id":63861,"orbit":0},{"id":32054,"orbit":0}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Controlling Magic","orbit":3,"orbitIndex":13,"recipe":["Envy","Fear","Isolation"],"skill":13823,"stats":["25% increased Critical Hit Chance for Spells","Hits have 25% reduced Critical Hit Chance against you"],"stringId":"spell_criticals15"},"13828":{"connections":[{"id":1140,"orbit":0}],"group":919,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":13828,"stats":["+16 to Evasion Rating"],"stringId":"evasion11"},"13839":{"connections":[{"id":65287,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":6,"skill":13839,"stats":["15% increased Totem Damage"],"stringId":"totems40"},"13844":{"connections":[],"group":1024,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Growing Peril","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Suffering","Despair"],"skill":13844,"stats":["1% increased Chaos Damage over Time per Volatility"],"stringId":"DeliriumAnoint_GrowingPeril"},"13845":{"connections":[{"id":28408,"orbit":-7}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":13845,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage26"},"13855":{"connections":[{"id":50626,"orbit":0},{"id":64370,"orbit":0}],"group":736,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":0,"orbitIndex":0,"skill":13855,"stats":["+10 to Armour","+5 to maximum Energy Shield"],"stringId":"placeholder1"},"13856":{"connections":[{"id":18496,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":9,"skill":13856,"stats":["12% increased Magnitude of Ailments you inflict"],"stringId":"slow_attacks6_"},"13862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":13862,"stats":[],"stringId":"mastery_mana162"},"13882":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":760,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":13882,"stats":[],"stringId":"mastery_infusion296"},"13893":{"connections":[{"id":42390,"orbit":-5}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration and Stun Buildup","orbit":7,"orbitIndex":5,"skill":13893,"stats":["10% increased Stun Buildup","Damage Penetrates 5% Fire Resistance"],"stringId":"fire_penetration20"},"13895":{"connections":[{"id":36071,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Precise Point","orbit":5,"orbitIndex":10,"recipe":["Guilt","Envy","Despair"],"skill":13895,"stats":["25% increased Damage with Spears","25% increased Accuracy Rating with Spears"],"stringId":"spear13"},"13909":{"connections":[{"id":31037,"orbit":0},{"id":62679,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":18,"skill":13909,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant1"},"13937":{"connections":[{"id":17791,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":7,"orbitIndex":7,"skill":13937,"stats":["14% increased Damage with Maces"],"stringId":"mace13"},"13942":{"connections":[{"id":65023,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":13942,"stats":["15% increased Armour"],"stringId":"armour28_"},"13950":{"connectionArt":"CharacterPlanned","connections":[{"id":11666,"orbit":2147483647}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Reduced Movement Penalty","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":5,"skill":13950,"stats":["6% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"oracle_bow_movement5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"13980":{"connections":[{"id":14832,"orbit":0},{"id":14693,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Split the Earth","orbit":4,"orbitIndex":33,"recipe":["Isolation","Paranoia","Disgust"],"skill":13980,"stats":["10% chance for Mace Slam Skills you use yourself to cause an additional Aftershock","Strike Skills you use yourself with Maces have 10% chance to deal Splash Damage"],"stringId":"mace15"},"13987":{"connections":[{"id":7604,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":2,"orbitIndex":8,"skill":13987,"stats":["3% increased Melee Attack Speed"],"stringId":"melee16"},"14001":{"connections":[{"id":56893,"orbit":-3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":2,"orbitIndex":22,"skill":14001,"stats":["6% reduced Charm Charges used"],"stringId":"charms11"},"14026":{"connections":[],"group":156,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage against Immobilised","orbit":0,"orbitIndex":0,"skill":14026,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"stringId":"bear12"},"14033":{"connections":[{"id":34553,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","orbit":2,"orbitIndex":16,"skill":14033,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"stringId":"spells55"},"14045":{"connections":[{"id":33848,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":48,"skill":14045,"stats":["10% increased Projectile Damage"],"stringId":"ranged12"},"14048":{"connections":[{"id":34717,"orbit":7}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration while not on Low Mana","orbit":4,"orbitIndex":54,"skill":14048,"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"stringId":"mana35"},"14082":{"connections":[{"id":43964,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":7,"orbitIndex":8,"skill":14082,"stats":["10% increased Physical Damage"],"stringId":"physical25"},"14091":{"connections":[{"id":28860,"orbit":0},{"id":36449,"orbit":0},{"id":23993,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Physical Damage","orbit":1,"orbitIndex":0,"skill":14091,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"stringId":"armour_break28"},"14096":{"connections":[{"id":44293,"orbit":7}],"group":690,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":14096,"stats":["3% increased Cast Speed"],"stringId":"cast_speed29"},"14110":{"connections":[{"id":22484,"orbit":-4},{"id":35974,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":22,"skill":14110,"stats":["15% increased Totem Damage"],"stringId":"totems37"},"14113":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":10029,"orbit":0},{"id":8660,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":14113,"stats":[],"stringId":"mastery_caster42"},"14122":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":798,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":14122,"stats":[],"stringId":"mastery_caster41"},"14127":{"connections":[],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":13,"skill":14127,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration7"},"14131":{"ascendancyName":"Disciple of Varashta","connections":[{"id":34207,"orbit":0}],"flavourText":"\"Yes... they fell by my blade and fire lashed them for their betrayal! No {dekhara} is exempt from fighting back the Winter before us, lest they too know the Doom of the Desert!\" \\n\\nRuzhan fumed at Varashta, in pure defiance.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnEmberSlash.dds","isNotable":true,"name":"Ruzhan's Fury","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":53,"skill":14131,"stats":["Grants Skill: Ruzhan's Fury"],"stringId":"AscendancySorceress3Notable18"},"14176":{"connections":[{"id":18004,"orbit":0}],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":2,"orbitIndex":16,"skill":14176,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage12"},"14205":{"connections":[{"id":25753,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Ignite","orbit":1,"orbitIndex":1,"skill":14205,"stats":["Gain 1 Rage when your Hit Ignites a target"],"stringId":"rage42"},"14211":{"connections":[{"id":44540,"orbit":0}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","isNotable":true,"name":"Shredding Contraptions","orbit":1,"orbitIndex":10,"recipe":["Despair","Despair","Envy"],"skill":14211,"stats":["Enemies affected by your Hazards Recently have 25% reduced Armour","Enemies affected by your Hazards Recently have 25% reduced Evasion Rating"],"stringId":"hazards2"},"14226":{"connections":[],"flavourText":"You circle the black scorpion with enmity, daring it time and again.","group":1447,"icon":"Art/2DArt/SkillIcons/passives/DancewithDeathKeystone.dds","isKeystone":true,"name":"Dance with Death","orbit":0,"orbitIndex":0,"skill":14226,"stats":["25% more Skill Speed while Off Hand is empty and you have","a One-Handed Martial Weapon equipped in your Main Hand"],"stringId":"passive_keystone_dance_with_death"},"14231":{"connections":[{"id":40453,"orbit":-7}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":13,"skill":14231,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers1"},"14254":{"connections":[{"id":97,"orbit":0}],"group":826,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":4,"skill":14254,"stats":["3% increased Attack Speed"],"stringId":"attack_speed14"},"14258":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":13123,"orbit":-7}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds","isNotable":true,"name":"Puppet Master chance","orbit":2,"orbitIndex":3,"recipe":["Paranoia","Ire","Suffering"],"skill":14258,"stats":["35% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster9"},"14262":{"connections":[{"id":32763,"orbit":0},{"id":21945,"orbit":0}],"group":1490,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14262,"stats":["+5 to any Attribute"],"stringId":"attributes27"},"14265":{"connections":[],"group":428,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Pyromancer","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Guilt"],"skill":14265,"stats":["20% increased Fire Damage","10% increased Cast Speed while Ignited","5% reduced Movement Speed Penalty from using Fire Skills while moving"],"stringId":"fire85"},"14267":{"connections":[{"id":32763,"orbit":0},{"id":28976,"orbit":0},{"id":38212,"orbit":0},{"id":1499,"orbit":0}],"group":1512,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14267,"stats":["+5 to any Attribute"],"stringId":"dexterity48"},"14272":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":2,"orbitIndex":7,"skill":14272,"stats":[],"stringId":"mastery_spell_suppression_6709"},"14294":{"connections":[{"id":43818,"orbit":0}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Sacrificial Blood","orbit":2,"orbitIndex":14,"recipe":["Envy","Greed","Suffering"],"skill":14294,"stats":["15% increased Life Cost of Skills","40% increased Spell Damage with Spells that cost Life"],"stringId":"life_costs10"},"14310":{"connections":[{"id":32340,"orbit":-7}],"group":1244,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":14310,"stats":["12% increased Cold Damage"],"stringId":"cold63"},"14324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":1468,"orbit":-2}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Arcane Blossom","orbit":7,"orbitIndex":3,"recipe":["Envy","Despair","Despair"],"skill":14324,"stats":["15% increased Mana Recovery rate"],"stringId":"mana_regeneration19"},"14328":{"connections":[{"id":18959,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Energy Shield and Armour applies to Elemental Damage Hits","orbit":7,"orbitIndex":19,"skill":14328,"stats":["12% increased maximum Energy Shield","+5% of Armour also applies to Elemental Damage"],"stringId":"energy_shield_and_armour33"},"14340":{"connections":[{"id":26786,"orbit":0},{"id":26319,"orbit":0}],"group":944,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14340,"stats":["+5 to any Attribute"],"stringId":"dexterity70"},"14342":{"connections":[{"id":49256,"orbit":4}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":16,"skill":14342,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour5"},"14343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[],"group":1126,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Deterioration","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Paranoia","Isolation"],"skill":14343,"stats":["Damaging Ailments Cannot Be inflicted on you while you already have one","20% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments17"},"14355":{"connections":[{"id":8483,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":7,"orbitIndex":3,"skill":14355,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells13_"},"14363":{"connections":[{"id":61338,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":3,"orbitIndex":2,"skill":14363,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration10"},"14383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46601,"orbit":0}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Suffusion","orbit":0,"orbitIndex":0,"recipe":["Fear","Despair","Guilt"],"skill":14383,"stats":["30% increased amount of Mana Leeched","Unaffected by Chill while Leeching Mana"],"stringId":"mana_leech17"},"14394":{"connections":[{"id":35743,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":16,"skill":14394,"stats":["+2% to Lightning Resistance","8% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion31"},"14418":{"connections":[{"id":16602,"orbit":2147483647}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":6,"skill":14418,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals9"},"14428":{"connections":[{"id":6287,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":14428,"stats":["+8 to Intelligence"],"stringId":"attributes102"},"14429":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":416,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSkillsAdditionalSupport.dds","isNotable":true,"name":"Advanced Thaumaturgy","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":14429,"stats":["Gem Quality grants Socketed Skills an additional effect"],"stringId":"AscendancyMercenary3Notable4"},"14432":{"connectionArt":"CharacterPlanned","connections":[],"group":122,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Lunar Boon","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":14432,"stats":["40% increased Mana Regeneration Rate while Shapeshifted"],"stringId":"oracle_wolf_addon2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14439":{"connections":[{"id":5728,"orbit":3}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":8,"skill":14439,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour7"},"14446":{"connections":[{"id":61403,"orbit":0},{"id":22713,"orbit":0},{"id":58022,"orbit":9},{"id":45702,"orbit":0}],"group":1334,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14446,"stats":["+5 to any Attribute"],"stringId":"intelligence68"},"14459":{"connections":[{"id":5544,"orbit":3}],"group":331,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorn Critical Damage","orbit":2,"orbitIndex":2,"skill":14459,"stats":["30% increased Thorns Critical Damage Bonus"],"stringId":"getting_hit23"},"14505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":504,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":14505,"stats":[],"stringId":"mastery_minionoffence192"},"14508":{"ascendancyName":"Pathfinder","connections":[{"id":29074,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Poison Effect","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":8,"orbitIndex":29,"skill":14508,"stats":["12% increased Magnitude of Poison you inflict"],"stringId":"AscendancyRanger3Small1"},"14509":{"connections":[{"id":9323,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Rage on Melee Hit","orbit":3,"orbitIndex":1,"skill":14509,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"glory22"},"14511":{"connections":[{"id":18207,"orbit":-3},{"id":53719,"orbit":0}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee and Stun","orbit":4,"orbitIndex":15,"skill":14511,"stats":["10% increased Stun Buildup","10% increased Melee Damage"],"stringId":"melee57"},"14515":{"connections":[{"id":43778,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Jagged Ground Effect","orbit":3,"orbitIndex":8,"skill":14515,"stats":["15% increased Magnitude of Jagged Ground you create"],"stringId":"jagged_ground4"},"14539":{"connections":[{"id":44776,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Deflection and Evasion","orbit":7,"orbitIndex":4,"skill":14539,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"evasion27"},"14540":{"connections":[{"id":31903,"orbit":0}],"flavourText":"Stand your ground, child, keep your senses.\\nThe pain is fleeting, but victory is forever.","group":489,"icon":"Art/2DArt/SkillIcons/passives/KeystoneUnwaveringStance.dds","isKeystone":true,"name":"Unwavering Stance","orbit":0,"orbitIndex":0,"skill":14540,"stats":["Cannot be Light Stunned","Cannot Dodge Roll or Sprint"],"stringId":"passive_keystone_unwavering_stance_"},"14548":{"connections":[{"id":59541,"orbit":7}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":0,"skill":14548,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence13"},"14572":{"connections":[{"id":49657,"orbit":-6},{"id":11037,"orbit":0}],"group":803,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":8,"skill":14572,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns2"},"14575":{"connections":[],"group":634,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":14575,"stats":["Minions have +20% to Lightning Resistance","Minions have +3% to Maximum Lightning Resistances"],"stringId":"minion_defence39"},"14598":{"connections":[{"id":4345,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Speed","orbit":3,"orbitIndex":12,"skill":14598,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon20_"},"14601":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":730,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":0,"skill":14601,"stats":[],"stringId":"mastery_elemental_6470"},"14602":{"connections":[{"id":42737,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Specialised Shots","orbit":7,"orbitIndex":3,"recipe":["Guilt","Guilt","Suffering"],"skill":14602,"stats":["15% increased Bolt Speed","20% increased Damage with Crossbows"],"stringId":"crossbow29"},"14654":{"connections":[{"id":22616,"orbit":0},{"id":14459,"orbit":0},{"id":21017,"orbit":0},{"id":52807,"orbit":0},{"id":58295,"orbit":0},{"id":6222,"orbit":0}],"group":358,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14654,"stats":["+5 to any Attribute"],"stringId":"strength2"},"14655":{"connections":[{"id":372,"orbit":7}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Fire Damage","orbit":3,"orbitIndex":3,"skill":14655,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"stringId":"armour16"},"14658":{"connections":[{"id":12253,"orbit":0},{"id":22517,"orbit":0},{"id":52053,"orbit":0},{"id":1631,"orbit":0},{"id":57945,"orbit":0}],"group":1331,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":14658,"stats":["+5 to any Attribute"],"stringId":"dexterity42"},"14666":{"connections":[],"group":858,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":3,"orbitIndex":18,"skill":14666,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"energy_shield10_"},"14686":{"connections":[{"id":48552,"orbit":0},{"id":53795,"orbit":-3}],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":7,"orbitIndex":17,"skill":14686,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster1"},"14693":{"connections":[{"id":13937,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage","orbit":4,"orbitIndex":27,"skill":14693,"stats":["14% increased Damage with Maces"],"stringId":"mace12"},"14712":{"connections":[{"id":3866,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":2,"skill":14712,"stats":["Minions have 12% increased maximum Life"],"stringId":"minion_defence8"},"14724":{"connections":[{"id":62185,"orbit":0}],"group":1351,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":14724,"stats":["20% increased Shock Duration"],"stringId":"shock17"},"14725":{"connections":[{"id":49220,"orbit":-5},{"id":34233,"orbit":0}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":18,"skill":14725,"stats":["3% increased Skill Speed"],"stringId":"attack_speed46"},"14739":{"connections":[{"id":49235,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":3,"skill":14739,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery31"},"14761":{"connections":[{"id":45215,"orbit":0},{"id":57775,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Warlord Leader","orbit":2,"orbitIndex":6,"recipe":["Fear","Fear","Paranoia"],"skill":14761,"stats":["Allies in your Presence deal 40% increased Damage","40% increased Presence Area of Effect"],"stringId":"auras23"},"14769":{"connections":[{"id":40471,"orbit":-2}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":20,"skill":14769,"stats":["+8 to Dexterity"],"stringId":"azmerianimals17"},"14777":{"connections":[{"id":59466,"orbit":5},{"id":20015,"orbit":0}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Bravado","orbit":2,"orbitIndex":20,"recipe":["Suffering","Guilt","Despair"],"skill":14777,"stats":["Empowered Attacks have 50% increased Stun Buildup","100% increased Stun Threshold during Empowered Attacks"],"stringId":"warcries16"},"14832":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":136,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":14832,"stats":[],"stringId":"mastery_mace153"},"14882":{"connections":[{"id":5048,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":18,"skill":14882,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison39_"},"14890":{"connections":[{"id":21080,"orbit":-4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude and Duration","orbit":2,"orbitIndex":13,"skill":14890,"stats":["10% increased Chill Duration on Enemies","10% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze9_"},"14923":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":666,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":14923,"stats":[],"stringId":"mastery_attack_6297"},"14926":{"connections":[{"id":50609,"orbit":0},{"id":56910,"orbit":-6}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":3,"orbitIndex":20,"skill":14926,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration24"},"14934":{"connections":[{"id":32523,"orbit":0}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Spiral into Mania","orbit":2,"orbitIndex":4,"recipe":["Ire","Envy","Suffering"],"skill":14934,"stats":["10% increased Cast Speed","+13% to Chaos Resistance"],"stringId":"cast_speed34"},"14945":{"connections":[{"id":34552,"orbit":0},{"id":1447,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Growing Swarm","orbit":3,"orbitIndex":16,"recipe":["Guilt","Paranoia","Fear"],"skill":14945,"stats":["Minions have 20% increased Area of Effect","Minions have 20% increased Cooldown Recovery Rate"],"stringId":"minion_offence40"},"14952":{"connections":[{"id":21985,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":8,"skill":14952,"stats":["10% increased Skill Effect Duration"],"stringId":"chill_and_freeze29"},"14958":{"connections":[{"id":17548,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":1,"orbitIndex":10,"skill":14958,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals41"},"14960":{"ascendancyName":"Smith of Kitava","connections":[{"id":57959,"orbit":0}],"group":10,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Resistance","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":14960,"stats":["+8% to Fire Resistance"],"stringId":"AscendancyWarrior3Small4"},"14980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":293,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":14980,"stats":[],"stringId":"oracle_glory_elemental_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"14996":{"connections":[{"id":41620,"orbit":-7}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Stun Buildup","orbit":7,"orbitIndex":2,"skill":14996,"stats":["20% increased Stun buildup if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting31"},"14997":{"connections":[{"id":47856,"orbit":0},{"id":28370,"orbit":0}],"group":789,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":0,"orbitIndex":0,"skill":14997,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed7"},"15030":{"connections":[{"id":45693,"orbit":0},{"id":21324,"orbit":0}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Consistent Intake","orbit":7,"orbitIndex":5,"recipe":["Guilt","Greed","Ire"],"skill":15030,"stats":["15% increased Parried Debuff Magnitude","Cannot be Critically Hit while Parrying"],"stringId":"deflect11"},"15044":{"ascendancyName":"Tactician","connections":[{"id":32560,"orbit":0},{"id":42845,"orbit":0}],"group":326,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianLessSpiritCostBuff.dds","isNotable":true,"name":"A Solid Plan","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":15044,"stats":["Persistent Buffs have 50% less Reservation"],"stringId":"AscendancyMercenary1Notable1"},"15083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":883,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Power Conduction","orbit":0,"orbitIndex":0,"recipe":["Guilt","Suffering","Suffering"],"skill":15083,"stats":["25% increased Shock Duration","25% increased Magnitude of Shock you inflict"],"stringId":"lightning32"},"15114":{"connections":[{"id":6356,"orbit":5},{"id":71,"orbit":-5},{"id":7642,"orbit":0}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Boundless Growth","orbit":0,"orbitIndex":0,"recipe":["Fear","Paranoia","Greed"],"skill":15114,"stats":["Plants have a 20% chance to immediately Overgrow"],"stringId":"physical62"},"15141":{"connectionArt":"CharacterPlanned","connections":[],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Impale Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":63,"skill":15141,"stats":["30% chance to Impale on Spell Hit"],"stringId":"oracle_duration_physical7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15180":{"connections":[{"id":61444,"orbit":-2}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Hinder","orbit":2,"orbitIndex":3,"skill":15180,"stats":["10% chance to Hinder Enemies on Hit with Spells"],"stringId":"spells8"},"15182":{"connections":[{"id":54818,"orbit":0}],"group":771,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15182,"stats":["+5 to any Attribute"],"stringId":"attributes45"},"15194":{"connections":[{"id":25303,"orbit":0}],"group":615,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":15194,"stats":["Minions have +20% to Fire Resistance"],"stringId":"minion_defence38"},"15207":{"connections":[{"id":6330,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Damage","orbit":7,"orbitIndex":0,"skill":15207,"stats":["8% increased Attack Damage","8% increased Accuracy Rating"],"stringId":"accuracy22"},"15247":{"connections":[{"id":46683,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":7,"skill":15247,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries48"},"15270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":15270,"stats":[],"stringId":"mastery_attack279"},"15275":{"ascendancyName":"Oracle","connections":[{"id":52374,"orbit":-6}],"group":7,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Totem Cast and Attack Speed","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":15275,"stats":["Spells Cast by Totems have 5% increased Cast Speed","Attacks used by Totems have 5% increased Attack Speed"],"stringId":"AscendancyDruid1Small6"},"15301":{"connections":[{"id":4709,"orbit":0},{"id":64064,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":15301,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy23"},"15304":{"connections":[{"id":16466,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":14,"skill":15304,"stats":["3% increased Cast Speed"],"stringId":"cast_speed18"},"15343":{"connections":[{"id":58692,"orbit":5}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":5,"orbitIndex":12,"skill":15343,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield33"},"15356":{"connections":[{"id":18815,"orbit":0}],"group":1443,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":15356,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration5"},"15358":{"connections":[{"id":10320,"orbit":7},{"id":44255,"orbit":-7}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Minion Revive Speed","orbit":3,"orbitIndex":15,"skill":15358,"stats":["Minions have 10% increased maximum Life","Minions Revive 8% faster"],"stringId":"minion_defence20"},"15374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":48035,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Hale Heart","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Greed"],"skill":15374,"stats":["15% increased Life Recovery rate"],"stringId":"life_regeneration27_"},"15408":{"connections":[{"id":2254,"orbit":4},{"id":6338,"orbit":0}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":23,"skill":15408,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield27"},"15424":{"connections":[{"id":58157,"orbit":0},{"id":35151,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":15424,"stats":["15% increased Stun Threshold"],"stringId":"monkchakra25"},"15427":{"connections":[{"id":57379,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":6,"skill":15427,"stats":["12% increased Melee Damage"],"stringId":"melee12"},"15443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Endured Suffering","orbit":0,"orbitIndex":0,"recipe":["Greed","Guilt","Fear"],"skill":15443,"stats":["10% of Physical Damage taken Recouped as Life","20% increased Physical Damage"],"stringId":"physical50"},"15494":{"connections":[{"id":1865,"orbit":0},{"id":43584,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Fire Damage when consuming an Endurance Charge","orbit":2,"orbitIndex":20,"skill":15494,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges15"},"15507":{"connections":[{"id":48401,"orbit":0}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":10,"skill":15507,"stats":["+5 to any Attribute"],"stringId":"dexterity24_"},"15522":{"connections":[{"id":17348,"orbit":6},{"id":24630,"orbit":-6}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":3,"orbitIndex":21,"skill":15522,"stats":["12% increased Ignite Magnitude"],"stringId":"fire21_"},"15580":{"connectionArt":"CharacterPlanned","connections":[{"id":61977,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":48,"skill":15580,"stats":["15% increased Damage","Minions deal 15% increased Damage"],"stringId":"oracle_damage_and_minions3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15590":{"connections":[{"id":26356,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Detonator Area","orbit":7,"orbitIndex":17,"skill":15590,"stats":["Detonator skills have 8% increased Area of Effect"],"stringId":"area_attacks42"},"15606":{"connections":[{"id":41821,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Thrill of the Fight","orbit":4,"orbitIndex":30,"recipe":["Despair","Envy","Suffering"],"skill":15606,"stats":["Consuming Glory grants you 3% increased Attack damage per Glory consumed for 6 seconds, up to 60%"],"stringId":"glory16"},"15617":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Heavy Drinker","orbit":0,"orbitIndex":0,"recipe":["Envy","Envy","Envy"],"skill":15617,"stats":["20% increased Life Recovery from Flasks","Life Flasks applied to you grant Guard for 4 seconds equal to 8% of the Life Recovery per Second they apply"],"stringId":"life_flasks32"},"15618":{"connections":[{"id":57710,"orbit":0}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":0,"skill":15618,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals4"},"15625":{"connections":[{"id":65161,"orbit":0},{"id":24287,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":12,"skill":15625,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals38"},"15628":{"connections":[{"id":36880,"orbit":3}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Effect","orbit":5,"orbitIndex":59,"skill":15628,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration27"},"15644":{"connections":[{"id":41538,"orbit":6},{"id":44612,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Shedding Skin","orbit":3,"orbitIndex":10,"recipe":["Envy","Ire","Paranoia"],"skill":15644,"stats":["40% increased Elemental Ailment Threshold","10% reduced Duration of Ailments on You"],"stringId":"spell_suppression32"},"15672":{"connectionArt":"CharacterPlanned","connections":[{"id":45400,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":5,"skill":15672,"stats":["Totems gain +2% to all Maximum Elemental Resistances"],"stringId":"oracle_totems3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15698":{"connections":[{"id":55260,"orbit":0},{"id":28982,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":3,"skill":15698,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze23"},"15775":{"connections":[{"id":30808,"orbit":0},{"id":11598,"orbit":0},{"id":29959,"orbit":0},{"id":15343,"orbit":-5}],"group":1494,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15775,"stats":["+5 to any Attribute"],"stringId":"dexterity47"},"15782":{"connections":[{"id":1433,"orbit":0},{"id":46628,"orbit":0},{"id":53675,"orbit":0}],"group":472,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15782,"stats":["+5 to any Attribute"],"stringId":"attributes53"},"15801":{"connections":[],"group":659,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":15801,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup37"},"15809":{"connections":[{"id":31175,"orbit":0},{"id":26945,"orbit":7},{"id":18485,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Chance","orbit":3,"orbitIndex":22,"skill":15809,"stats":["Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence30_"},"15814":{"connections":[{"id":12800,"orbit":0}],"group":1424,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion while Sprinting","orbit":0,"orbitIndex":0,"skill":15814,"stats":["25% increased Evasion Rating while Sprinting"],"stringId":"Sprint5"},"15825":{"connections":[{"id":26592,"orbit":-3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Bhatair's Storm","orbit":2,"orbitIndex":16,"recipe":["Guilt","Fear","Isolation"],"skill":15825,"stats":["+12% of Armour also applies to Elemental Damage","8% faster start of Energy Shield Recharge","Archon recovery period expires 10% faster","10% increased effect of Archon Buffs on you"],"stringId":"energy_shield_and_armour49_"},"15829":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[{"id":46146,"orbit":0}],"group":1128,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Siphon","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Envy","Guilt"],"skill":15829,"stats":["Recover 2% of maximum Mana on Kill","25% increased amount of Mana Leeched"],"stringId":"mana_leech18"},"15838":{"connections":[{"id":15969,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":2,"skill":15838,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments6"},"15839":{"connections":[{"id":60085,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Ailment Duration","orbit":1,"orbitIndex":5,"skill":15839,"stats":["10% increased Duration of Ailments on Beasts"],"stringId":"mercenary2"},"15842":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":89,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":3,"orbitIndex":10,"skill":15842,"stats":[],"stringId":"oracle_big_family_mastery1__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"15855":{"connections":[{"id":37963,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":41,"skill":15855,"stats":["10% increased Damage with Swords"],"stringId":"sword13"},"15876":{"connections":[{"id":7947,"orbit":2},{"id":46554,"orbit":0}],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Energy Shield as Freeze Threshold","orbit":2,"orbitIndex":10,"skill":15876,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"cold23"},"15885":{"connections":[{"id":12367,"orbit":3},{"id":22783,"orbit":0},{"id":11679,"orbit":0},{"id":42680,"orbit":0}],"group":720,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":15885,"stats":["+5 to any Attribute"],"stringId":"intelligence47"},"15892":{"connections":[],"group":193,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Damage vs Armour Broken Enemies","orbit":3,"orbitIndex":13,"skill":15892,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"stringId":"armour_break8"},"15899":{"connections":[{"id":21627,"orbit":9}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":6,"skill":15899,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed17"},"15913":{"connections":[{"id":32599,"orbit":2},{"id":61362,"orbit":-2},{"id":49734,"orbit":0}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect and Damage","orbit":2,"orbitIndex":16,"skill":15913,"stats":["4% increased Area of Effect","5% increased Area Damage"],"stringId":"area_of_effect15"},"15969":{"connections":[{"id":41129,"orbit":0},{"id":59376,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":3,"orbitIndex":0,"skill":15969,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments3"},"15975":{"connections":[{"id":48198,"orbit":5}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":13,"skill":15975,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield27"},"15984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":876,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":15984,"stats":[],"stringId":"mastery_lightning_6564"},"15986":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":6030,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Building Toxins","orbit":2,"orbitIndex":5,"recipe":["Greed","Isolation","Isolation"],"skill":15986,"stats":["25% reduced Poison Duration","Targets can be affected by +1 of your Poisons at the same time"],"stringId":"poison16"},"15991":{"connections":[{"id":15984,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Embodiment of Lightning","orbit":2,"orbitIndex":19,"recipe":["Isolation","Paranoia","Ire"],"skill":15991,"stats":["Immune to Shock while affected by an Archon Buff"],"stringId":"lightning57"},"16013":{"connections":[{"id":41811,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":7,"orbitIndex":6,"skill":16013,"stats":["5% chance to Daze on Hit"],"stringId":"physical3"},"16024":{"connections":[{"id":29288,"orbit":2}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Critical Damage","orbit":2,"orbitIndex":22,"skill":16024,"stats":["Invocation Spells have 20% increased Critical Damage Bonus"],"stringId":"triggers27"},"16051":{"connections":[],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Attack Speed","orbit":5,"orbitIndex":4,"skill":16051,"stats":["Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems51"},"16084":{"connections":[{"id":57552,"orbit":0}],"group":419,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":0,"orbitIndex":0,"skill":16084,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed18"},"16090":{"connections":[{"id":50302,"orbit":0}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","orbit":3,"orbitIndex":8,"skill":16090,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"stringId":"life_costs3"},"16100":{"ascendancyName":"Invoker","connections":[{"id":65173,"orbit":7}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Evasion","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":0,"skill":16100,"stats":["20% increased Evasion Rating"],"stringId":"AscendancyMonk2Small2"},"16111":{"connections":[{"id":46268,"orbit":9},{"id":2397,"orbit":0},{"id":54099,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage while Surrounded","orbit":7,"orbitIndex":4,"skill":16111,"stats":["20% increased Attack Damage while Surrounded"],"stringId":"attack38_"},"16114":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":473,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":16114,"stats":[],"stringId":"mastery_aura_6310"},"16121":{"connections":[{"id":56334,"orbit":7}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":16121,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"monkelemental1"},"16123":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":3,"orbitIndex":22,"skill":16123,"stats":[],"stringId":"mastery_criticals67"},"16140":{"connections":[{"id":16013,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":2,"orbitIndex":10,"skill":16140,"stats":["5% chance to Daze on Hit"],"stringId":"physical4"},"16142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Deep Freeze","orbit":3,"orbitIndex":10,"recipe":["Disgust","Isolation","Ire"],"skill":16142,"stats":["20% increased Freeze Buildup","Enemies Frozen by you have -8% to Cold Resistance"],"stringId":"cold48"},"16150":{"connections":[{"id":37971,"orbit":0}],"group":1542,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Inspiring Ally","orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Despair"],"skill":16150,"stats":["Increases and Reductions to Companion Damage also apply to you"],"stringId":"companions2"},"16168":{"connections":[{"id":54232,"orbit":-5},{"id":25374,"orbit":0},{"id":45916,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":16168,"stats":["+5 to any Attribute"],"stringId":"strength27"},"16204":{"ascendancyName":"Shaman","connections":[],"group":58,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanGainSpiritEmptyCharmSlot.dds","isNotable":true,"name":"Sacred Flow","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16204,"stats":["+40 to Spirit for each of your empty Charm slots"],"stringId":"AscendancyDruid2Notable7"},"16249":{"ascendancyName":"Tactician","connections":[],"group":307,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianAlliesGainAttack.dds","isNotable":true,"name":"Watch How I Do It","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16249,"stats":["Allies in your Presence gain added Attack Damage equal","to 25% of your main hand Weapon's damage"],"stringId":"AscendancyMercenary1Notable2"},"16256":{"connections":[{"id":53188,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Ether Flow","orbit":3,"orbitIndex":8,"recipe":["Envy","Greed","Envy"],"skill":16256,"stats":["25% reduced Mana Regeneration Rate while stationary","50% increased Mana Regeneration Rate while moving","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"mana_regeneration40"},"16276":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":57,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus2.dds","isNotable":true,"name":"Kitavan Imprint","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16276,"stats":["Body Armour grants 60% increased Glory generation"],"stringId":"AscendancyWarrior3Notable6_2"},"16311":{"connections":[{"id":32600,"orbit":0},{"id":14654,"orbit":0}],"group":403,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":20,"skill":16311,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration23"},"16329":{"connections":[{"id":39607,"orbit":-2}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Used","orbit":2,"orbitIndex":2,"skill":16329,"stats":["5% reduced Flask Charges used"],"stringId":"flasks5"},"16332":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":-7},{"id":11160,"orbit":-9}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":64,"skill":16332,"stats":["17% increased Stun Threshold"],"stringId":"oracle_beast_corruption2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16347":{"connections":[{"id":52373,"orbit":0}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":2,"skill":16347,"stats":["+2 to Maximum Rage"],"stringId":"rage2"},"16367":{"connections":[],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":16367,"stats":["10% increased Elemental Damage"],"stringId":"elemental46"},"16385":{"connections":[{"id":53320,"orbit":2147483647}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":14,"skill":16385,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners19"},"16401":{"connections":[{"id":44490,"orbit":0}],"group":1401,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage and Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":16401,"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"stringId":"lightning47"},"16413":{"connections":[{"id":42660,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack and Minion Damage","orbit":2,"orbitIndex":4,"skill":16413,"stats":["8% increased Attack Damage","Minions deal 8% increased Damage"],"stringId":"minion_attack2"},"16433":{"ascendancyName":"Pathfinder","connections":[{"id":12795,"orbit":0},{"id":57253,"orbit":0},{"id":36676,"orbit":0}],"group":1574,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMultichoicePath.dds","isMultipleChoice":true,"isNotable":true,"name":"Path Seeker","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":16433,"stats":[],"stringId":"AscendancyRanger3Notable8_Choice_"},"16460":{"connections":[{"id":28992,"orbit":0},{"id":6772,"orbit":0}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":18,"skill":16460,"stats":["+5 to any Attribute"],"stringId":"dexterity15"},"16466":{"connections":[{"id":40196,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Mental Alacrity","orbit":2,"orbitIndex":0,"recipe":["Fear","Envy","Paranoia"],"skill":16466,"stats":["5% increased Cast Speed","15% increased Mana Regeneration Rate","+10 to Intelligence"],"stringId":"cast_speed38"},"16484":{"connections":[{"id":25100,"orbit":0},{"id":18923,"orbit":0}],"group":1078,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":0,"skill":16484,"stats":["+5 to any Attribute"],"stringId":"strength87"},"16485":{"connections":[{"id":2344,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":2,"skill":16485,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"oracle6"},"16489":{"connections":[{"id":28556,"orbit":6},{"id":49799,"orbit":7}],"group":926,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":16489,"stats":["+5 to any Attribute"],"stringId":"dexterity33"},"16499":{"connections":[{"id":36814,"orbit":0}],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Lingering Whispers","orbit":7,"orbitIndex":12,"recipe":["Isolation","Despair","Envy"],"skill":16499,"stats":["40% increased Curse Duration","10% increased Curse Magnitudes"],"stringId":"curses18"},"16506":{"connections":[{"id":35417,"orbit":-2}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Elemental Ailment Chance","orbit":7,"orbitIndex":10,"skill":16506,"stats":["20% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting30"},"16538":{"connections":[{"id":44330,"orbit":0}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":2,"orbitIndex":2,"skill":16538,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed21"},"16568":{"connections":[{"id":60992,"orbit":-2}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":3,"orbitIndex":2,"skill":16568,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions24"},"16596":{"connections":[{"id":38535,"orbit":7},{"id":5088,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Speed with Elemental Skills","orbit":3,"orbitIndex":20,"skill":16596,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental6"},"16602":{"connections":[{"id":29285,"orbit":2},{"id":30657,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion","orbit":7,"orbitIndex":23,"skill":16602,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals8"},"16615":{"connectionArt":"CharacterPlanned","connections":[{"id":18713,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Unmoving Craiceann","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":16615,"stats":["30% increased Armour while stationary","30% increased Life Regeneration Rate while stationary"],"stringId":"oracle_crab_claw5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"16618":{"connections":[{"id":24511,"orbit":0},{"id":4492,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","isNotable":true,"name":"Jack of all Trades","orbit":5,"orbitIndex":24,"recipe":["Greed","Fear","Envy"],"skill":16618,"stats":["2% increased Damage per 5 of your lowest Attribute"],"stringId":"all_attributes10"},"16620":{"connections":[{"id":21161,"orbit":4}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Movement Penalty with Raised Shield","orbit":3,"orbitIndex":10,"skill":16620,"stats":["10% reduced Movement Speed Penalty while Actively Blocking"],"stringId":"shield30"},"16626":{"connections":[{"id":53089,"orbit":0},{"id":62023,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Impact Area","orbit":2,"orbitIndex":20,"recipe":["Paranoia","Envy","Disgust"],"skill":16626,"stats":["12% increased Area of Effect if you have Stunned an Enemy Recently","12% increased Area of Effect for Attacks"],"stringId":"area_attacks27"},"16647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":575,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":16647,"stats":[],"stringId":"mastery_mana6192"},"16680":{"connections":[{"id":48137,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":15,"skill":16680,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow15_"},"16691":{"connections":[{"id":21716,"orbit":-5}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech Speed","orbit":7,"orbitIndex":6,"skill":16691,"stats":["Leech Life 15% faster"],"stringId":"life_leech27"},"16695":{"connections":[{"id":61926,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Recoup","orbit":2,"orbitIndex":6,"skill":16695,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery38"},"16705":{"connections":[{"id":25851,"orbit":4},{"id":34621,"orbit":0},{"id":61834,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":66,"skill":16705,"stats":["+5 to any Attribute"],"stringId":"intelligence66"},"16721":{"connections":[{"id":32239,"orbit":4},{"id":34187,"orbit":6},{"id":18270,"orbit":6}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":0,"orbitIndex":0,"skill":16721,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical66"},"16725":{"connections":[{"id":27373,"orbit":6},{"id":36629,"orbit":-6},{"id":54811,"orbit":0},{"id":36163,"orbit":0}],"group":510,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":16725,"stats":["+5 to any Attribute"],"stringId":"strength21"},"16744":{"connections":[{"id":24009,"orbit":-5},{"id":24748,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":12,"skill":16744,"stats":["15% increased Evasion Rating"],"stringId":"evasion25"},"16784":{"connections":[{"id":31650,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":68,"skill":16784,"stats":["16% increased Totem Life"],"stringId":"totems12_"},"16786":{"connections":[{"id":20467,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":14,"skill":16786,"stats":["15% increased Immobilisation buildup"],"stringId":"slaying6"},"16790":{"connections":[{"id":27234,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Efficient Casting","orbit":7,"orbitIndex":0,"recipe":["Greed","Paranoia","Envy"],"skill":16790,"stats":["15% increased Mana Regeneration Rate","20% increased Mana Cost Efficiency"],"stringId":"mana_regeneration50_"},"16816":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Pinpoint Shot","orbit":0,"orbitIndex":0,"recipe":["Isolation","Envy","Envy"],"skill":16816,"stats":["Attacks gain increased Accuracy Rating equal to their Critical Hit Chance"],"stringId":"accuracy35"},"16861":{"connections":[{"id":27303,"orbit":-5}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":22,"skill":16861,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals70"},"16871":{"connections":[{"id":9532,"orbit":2}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Strength and Dexterity","orbit":7,"orbitIndex":18,"skill":16871,"stats":["+4 to Strength","+4 to Dexterity"],"stringId":"azmerianimals5"},"16938":{"connections":[{"id":8789,"orbit":3}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":7,"orbitIndex":18,"skill":16938,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"duelist_minions4"},"16940":{"connections":[{"id":25446,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Arcane Nature","orbit":7,"orbitIndex":1,"recipe":["Guilt","Isolation","Ire"],"skill":16940,"stats":["12% increased Area of Effect while you have Arcane Surge","30% increased Spell Damage while you have Arcane Surge"],"stringId":"mana_regeneration44_"},"16947":{"connectionArt":"CharacterPlanned","connections":[{"id":18713,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Shelter from the Rain","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":54,"skill":16947,"stats":["20% faster start of Energy Shield Recharge","15% increased Block chance"],"stringId":"oracle_crab_claw9_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17024":{"connections":[{"id":37372,"orbit":0}],"group":1010,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":17024,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning16"},"17025":{"connections":[{"id":13515,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":18,"skill":17025,"stats":["10% increased Lightning Damage"],"stringId":"ground13"},"17026":{"connections":[{"id":23373,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":2,"orbitIndex":2,"skill":17026,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades25"},"17029":{"connections":[{"id":45992,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Blade Catcher","orbit":2,"orbitIndex":12,"recipe":["Fear","Envy","Guilt"],"skill":17029,"stats":["Defend with 200% of Armour against Critical Hits","+15 to Strength"],"stringId":"armour32"},"17044":{"connections":[],"group":802,"icon":"Art/2DArt/SkillIcons/passives/ColdLightningNode.dds","name":"Cold and Lightning Damage","orbit":0,"orbitIndex":0,"skill":17044,"stats":["10% increased Cold Damage","10% increased Lightning Damage"],"stringId":"elemental47"},"17045":{"connections":[{"id":55131,"orbit":6}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":4,"orbitIndex":42,"skill":17045,"stats":["2% increased Movement Speed"],"stringId":"slow_mitigation4_"},"17057":{"connections":[{"id":17025,"orbit":2}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":1,"orbitIndex":0,"skill":17057,"stats":["10% increased Lightning Damage"],"stringId":"ground11"},"17058":{"ascendancyName":"Ritualist","connections":[],"group":1610,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Resistances","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":17058,"stats":["-20% to all Elemental Resistances"],"stringId":"AscendancyHuntress3Small1_3"},"17059":{"connectionArt":"CharacterPlanned","connections":[{"id":6874,"orbit":-7}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":17059,"stats":["25% increased Stun Threshold while Channelling"],"stringId":"oracle_channelling3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17061":{"connections":[{"id":31773,"orbit":2}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":3,"orbitIndex":4,"skill":17061,"stats":["Archon recovery period expires 10% faster"],"stringId":"archon6_"},"17077":{"connections":[{"id":51463,"orbit":0},{"id":36114,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Attack Damage while Moving","orbit":0,"orbitIndex":0,"skill":17077,"stats":["12% increased Attack Damage while moving"],"stringId":"slow_mitigation9"},"17088":{"connections":[{"id":51416,"orbit":4}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":17088,"stats":["+5 to any Attribute"],"stringId":"intelligence7"},"17092":{"connections":[{"id":10484,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":18,"skill":17092,"stats":["+2 to Maximum Rage"],"stringId":"minion_attack3"},"17101":{"connections":[{"id":25362,"orbit":-2}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":17,"skill":17101,"stats":["10% increased Attack Damage"],"stringId":"unarmed4_"},"17107":{"connections":[{"id":11788,"orbit":4}],"group":910,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area Damage","orbit":0,"orbitIndex":0,"skill":17107,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells7"},"17112":{"connections":[{"id":64900,"orbit":-7},{"id":4331,"orbit":2}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Attack Damage and Stun","orbit":2,"orbitIndex":19,"skill":17112,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"stringId":"melee63"},"17118":{"connections":[{"id":38814,"orbit":0},{"id":20049,"orbit":0},{"id":8789,"orbit":4}],"group":1055,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":17118,"stats":["+5 to any Attribute"],"stringId":"attributes47"},"17138":{"connections":[{"id":51903,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":0,"orbitIndex":0,"skill":17138,"stats":["10% increased Melee Damage"],"stringId":"melee45_"},"17146":{"connections":[{"id":3843,"orbit":4}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":17,"skill":17146,"stats":["20% increased Parry Damage"],"stringId":"deflect2_"},"17150":{"connections":[{"id":53647,"orbit":7},{"id":19750,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"General's Bindings","orbit":3,"orbitIndex":8,"recipe":["Paranoia","Fear","Envy"],"skill":17150,"stats":["Gain 8% of Evasion Rating as extra Armour"],"stringId":"armour37"},"17215":{"connections":[{"id":4552,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration and Attack Speed","orbit":7,"orbitIndex":19,"skill":17215,"stats":["2% increased Attack Speed","5% increased Mana Regeneration Rate"],"stringId":"monkchakra2_"},"17229":{"connections":[{"id":34493,"orbit":0},{"id":47242,"orbit":0},{"id":29985,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","isNotable":true,"name":"Silent Guardian","orbit":3,"orbitIndex":9,"recipe":["Fear","Greed","Disgust"],"skill":17229,"stats":["Minions have +20% to all Elemental Resistances","20% increased Elemental Ailment Threshold"],"stringId":"sentinels9"},"17248":{"connections":[{"id":53960,"orbit":-5}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":0,"skill":17248,"stats":["+5 to any Attribute"],"stringId":"intelligence4"},"17254":{"connections":[{"id":14272,"orbit":0},{"id":26596,"orbit":0}],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Spell Haste","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Isolation"],"skill":17254,"stats":["15% increased Evasion Rating","8% increased Cast Speed"],"stringId":"cast_speed35"},"17260":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Piercing Claw","orbit":3,"orbitIndex":2,"recipe":["Greed","Ire","Despair"],"skill":17260,"stats":["Damage Penetrates 15% of Enemy Elemental Resistances while Shapeshifted"],"stringId":"shapeshifting11"},"17268":{"ascendancyName":"Invoker","connections":[{"id":7621,"orbit":3}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Shock Effect","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":6,"orbitIndex":13,"skill":17268,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"AscendancyMonk2Small3"},"17282":{"connections":[{"id":47252,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":20,"skill":17282,"stats":["16% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration7_"},"17283":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":17283,"stats":[],"stringId":"mastery_evasion_and_energy_shield_6496"},"17294":{"connections":[{"id":19330,"orbit":-5},{"id":27501,"orbit":4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":17294,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration33"},"17303":{"connections":[{"id":17026,"orbit":0},{"id":27992,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Utility Ordnance","orbit":7,"orbitIndex":6,"recipe":["Disgust","Despair","Envy"],"skill":17303,"stats":["40% increased Cooldown Recovery Rate for Grenade Skills","80% reduced Grenade Damage"],"stringId":"grenades27"},"17316":{"connections":[{"id":40244,"orbit":-4},{"id":62986,"orbit":5}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":4,"orbitIndex":51,"skill":17316,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed3"},"17330":{"connections":[{"id":61927,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","isNotable":true,"name":"Perforation","orbit":2,"orbitIndex":23,"recipe":["Greed","Greed","Suffering"],"skill":17330,"stats":["20% chance for Bleeding to be Aggravated when Inflicted against Enemies on Jagged Ground","40% increased Jagged Ground Duration"],"stringId":"jagged_ground25"},"17340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62051,"orbit":-4}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","isNotable":true,"name":"Adrenaline Rush","orbit":4,"orbitIndex":9,"recipe":["Disgust","Ire","Fear"],"skill":17340,"stats":["4% increased Movement Speed if you've Killed Recently","8% increased Attack Speed if you've killed Recently"],"stringId":"movement_speed11"},"17348":{"connections":[{"id":11275,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":17,"skill":17348,"stats":["12% increased Ignite Magnitude"],"stringId":"fire17"},"17349":{"connections":[{"id":23940,"orbit":-3},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":0,"skill":17349,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour10"},"17356":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCarrySoectralBell.dds","isNotable":true,"name":"Hollow Resonance Technique","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":8,"orbitIndex":58,"skill":17356,"stats":["Grants Skill: Hollow Resonance"],"stringId":"AscendancyMonk1Notable4"},"17366":{"connections":[{"id":29361,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":10,"skill":17366,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield2"},"17367":{"connections":[{"id":53941,"orbit":-6},{"id":12761,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":4,"skill":17367,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield16"},"17372":{"connections":[{"id":35985,"orbit":0},{"id":19074,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Reaching Strike","orbit":3,"orbitIndex":4,"recipe":["Isolation","Paranoia","Guilt"],"skill":17372,"stats":["25% increased Melee Damage","+0.2 metres to Melee Strike Range"],"stringId":"melee38"},"17378":{"connections":[{"id":40894,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":22,"skill":17378,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence5"},"17380":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":41972,"orbit":0},{"id":23427,"orbit":0},{"id":47270,"orbit":0},{"id":19955,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":6,"skill":17380,"stats":[],"stringId":"mastery_cold58"},"17394":{"connections":[{"id":45530,"orbit":-3}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":0,"skill":17394,"stats":["Minions cause 15% increased Stun Buildup"],"stringId":"minion_offence23"},"17411":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":527,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":17411,"stats":[],"stringId":"mastery_dualwield89"},"17417":{"connections":[{"id":3652,"orbit":3},{"id":27999,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed and Physical Damage","orbit":3,"orbitIndex":4,"skill":17417,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"stringId":"projectiles45"},"17420":{"connections":[{"id":18717,"orbit":0},{"id":25565,"orbit":0},{"id":15356,"orbit":0}],"group":1448,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":17420,"stats":["12% increased Lightning Damage"],"stringId":"lightning4"},"17447":{"connections":[{"id":24843,"orbit":-7},{"id":29320,"orbit":7}],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":2,"orbitIndex":14,"skill":17447,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"buckler19"},"17468":{"connections":[],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":17468,"stats":["+5 to any Attribute"],"stringId":"strength57"},"17501":{"connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":2,"orbitIndex":7,"skill":17501,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation5"},"17505":{"connections":[{"id":52106,"orbit":0},{"id":28774,"orbit":0},{"id":23382,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":30,"skill":17505,"stats":["3% increased Cast Speed"],"stringId":"cast_speed2"},"17517":{"connections":[{"id":13233,"orbit":-4},{"id":17655,"orbit":9}],"group":623,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":12,"skill":17517,"stats":["5% increased Area of Effect"],"stringId":"area_of_effect1"},"17523":{"connections":[{"id":42032,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":17523,"stats":["16% increased Hazard Damage"],"stringId":"hazards12"},"17532":{"connections":[{"id":61934,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":20,"skill":17532,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold23"},"17548":{"connections":[{"id":630,"orbit":0},{"id":31039,"orbit":0}],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Moment of Truth","orbit":7,"orbitIndex":2,"recipe":["Ire","Suffering","Disgust"],"skill":17548,"stats":["25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently","15% increased Critical Hit Chance"],"stringId":"criticals38_"},"17553":{"connections":[],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Pierce","orbit":7,"orbitIndex":5,"skill":17553,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"stringId":"ranged28"},"17584":{"connections":[],"group":680,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isSwitchable":true,"name":"Attack Area","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","id":53526,"name":"Spell and Attack Damage","stats":["8% increased Spell Damage","8% increased Attack Damage"]}},"orbit":2,"orbitIndex":17,"skill":17584,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks4"},"17587":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connectionArt":"CharacterPlanned","connections":[],"group":176,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":9,"skill":17587,"stats":[],"stringId":"oracle_slow_crit_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17589":{"connections":[{"id":36085,"orbit":0},{"id":64462,"orbit":7}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":23,"skill":17589,"stats":["10% increased Attack Damage"],"stringId":"attack17"},"17600":{"connections":[{"id":18519,"orbit":3},{"id":32096,"orbit":0},{"id":10041,"orbit":-2}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Thirsting Ally","orbit":3,"orbitIndex":19,"recipe":["Ire","Greed","Suffering"],"skill":17600,"stats":["Leeching Life from your Hits causes your Companion to also Leech the same amount of Life"],"stringId":"duelist_minions10"},"17602":{"connections":[{"id":59799,"orbit":4},{"id":59798,"orbit":-4}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":7,"orbitIndex":15,"skill":17602,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield13"},"17625":{"connections":[{"id":10873,"orbit":-5}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":9,"skill":17625,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"shapeshifting14"},"17646":{"ascendancyName":"Witchhunter","connections":[],"group":256,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterRemovePercentageFullLifeEnemies.dds","isNotable":true,"name":"Judge, Jury, and Executioner","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":17646,"stats":["Decimating Strike"],"stringId":"AscendancyMercenary2Notable2"},"17655":{"connections":[],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isSwitchable":true,"name":"Aura Effect","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":14942,"name":"Damage","stats":["8% increased Damage"]}},"orbit":2,"orbitIndex":8,"skill":17655,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras1"},"17664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":11463,"orbit":0},{"id":33348,"orbit":0}],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Decisive Retreat","orbit":0,"orbitIndex":0,"recipe":["Envy","Envy","Ire"],"skill":17664,"stats":["50% increased Critical Damage Bonus against Enemies that have exited your Presence Recently"],"stringId":"criticals97"},"17668":{"connections":[{"id":17215,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Mana Regeneration and Attack Speed","orbit":2,"orbitIndex":22,"skill":17668,"stats":["2% increased Attack Speed","5% increased Mana Regeneration Rate"],"stringId":"monkchakra3"},"17672":{"connections":[{"id":38732,"orbit":0},{"id":64427,"orbit":0}],"group":950,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":17672,"stats":["+5 to any Attribute"],"stringId":"attributes77_"},"17686":{"connections":[{"id":53996,"orbit":0},{"id":43575,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":19,"skill":17686,"stats":["10% increased Melee Damage"],"stringId":"melee23_"},"17687":{"connections":[{"id":2021,"orbit":-5}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges","orbit":7,"orbitIndex":0,"skill":17687,"stats":["15% increased Mana Flask Charges gained"],"stringId":"mana_flasks2"},"17696":{"connections":[],"group":741,"icon":"Art/2DArt/SkillIcons/passives/SkillGemSlotsNode.dds","isNotable":true,"name":"Augmented Flesh","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Suffering","Suffering"],"skill":17696,"stats":["Grants 2 additional Skill Slots"],"stringId":"DeliriumAnoint_AugmentedFlesh"},"17702":{"connections":[{"id":46882,"orbit":0},{"id":27262,"orbit":-3},{"id":20467,"orbit":2147483647}],"group":1178,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":17702,"stats":["+5 to any Attribute"],"stringId":"dexterity75"},"17706":{"connections":[{"id":46972,"orbit":-2}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":2,"orbitIndex":20,"skill":17706,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"energy_shield_recovery36"},"17711":{"connections":[{"id":46989,"orbit":3}],"group":888,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":0,"orbitIndex":0,"skill":17711,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells8_"},"17724":{"connections":[{"id":17101,"orbit":-4}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Attack Damage","orbit":3,"orbitIndex":13,"skill":17724,"stats":["10% increased Attack Damage"],"stringId":"unarmed3"},"17725":{"connections":[{"id":9221,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Bonded Precision","orbit":7,"orbitIndex":10,"recipe":["Disgust","Envy","Suffering"],"skill":17725,"stats":["Allies in your Presence have 25% increased Critical Hit Chance","25% increased Critical Hit Chance"],"stringId":"criticals101"},"17726":{"connections":[{"id":33053,"orbit":7}],"group":967,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Stun Buildup","orbit":7,"orbitIndex":5,"skill":17726,"stats":["15% increased Stun Buildup"],"stringId":"ranged3"},"17729":{"connectionArt":"CharacterPlanned","connections":[{"id":56466,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":5,"skill":17729,"stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"stringId":"oracle_spell_poison3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":508,"icon":"Art/2DArt/SkillIcons/passives/MasteryTotem.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":17745,"stats":[],"stringId":"mastery_totem_6149"},"17750":{"connections":[{"id":658,"orbit":4}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":7,"orbitIndex":22,"skill":17750,"stats":["+6% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"armour_and_evasion48"},"17754":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalFamiliar.dds","isNotable":true,"name":"Loyal Hellhound","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":7,"skill":17754,"stats":["Grants Skill: Summon Infernal Hound"],"stringId":"AscendancyWitch1Notable10"},"17762":{"connections":[{"id":2964,"orbit":-7},{"id":28476,"orbit":0}],"group":523,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Vengeance","orbit":2,"orbitIndex":23,"recipe":["Guilt","Fear","Envy"],"skill":17762,"stats":["10% of Thorns Damage Leeched as Life"],"stringId":"getting_hit12"},"17788":{"ascendancyName":"Lich","connections":[],"containJewelSocket":true,"group":1215,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isNotable":true,"isSwitchable":true,"name":"Crystalline Phylactery","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketcanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/lichpassiveskillscreenjewelsocketnormal.dds"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketcanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysslichpassiveskillscreenjewelsocketnormal.dds"}}},"orbit":6,"orbitIndex":0,"skill":17788,"stats":["Can Socket a non-Unique Basic Jewel into the Phylactery","100% increased Effect of bonuses gained from Socketed Jewel","50% more Mana Cost of Skills if you have no Energy Shield"],"stringId":"AscendancyWitch3Notable1"},"17791":{"connections":[{"id":526,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Stun Buildup","orbit":7,"orbitIndex":3,"skill":17791,"stats":["18% increased Stun Buildup with Maces"],"stringId":"mace3"},"17792":{"connections":[{"id":48734,"orbit":3}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Presence Area","orbit":2,"orbitIndex":9,"skill":17792,"stats":["20% increased Presence Area of Effect"],"stringId":"azmerianimals56"},"17796":{"connections":[{"id":12412,"orbit":2147483647}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Cooldown Recovery Rate","orbit":2,"orbitIndex":12,"skill":17796,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"slowed_enemies22"},"17825":{"connections":[{"id":45585,"orbit":-7},{"id":46931,"orbit":-7},{"id":5681,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Tactical Retreat","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Disgust","Despair"],"skill":17825,"stats":["+0.5 metres to Dodge Roll distance while Surrounded","10% increased Movement Speed while Surrounded"],"stringId":"being_surrounded21"},"17854":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":55275,"orbit":7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Escape Velocity","orbit":4,"orbitIndex":0,"recipe":["Greed","Disgust","Suffering"],"skill":17854,"stats":["3% increased Movement Speed","30% increased Evasion Rating"],"stringId":"evasion31"},"17867":{"connections":[{"id":37092,"orbit":0}],"group":695,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Exposure Effect and Slow Effect","orbit":7,"orbitIndex":10,"skill":17867,"stats":["Debuffs you inflict have 7% increased Slow Magnitude","7% increased Exposure Effect"],"stringId":"slowed_enemies28"},"17871":{"connections":[{"id":32672,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze and Chill Resistance","orbit":2,"orbitIndex":12,"skill":17871,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"stringId":"freeze_and_chill_mitigation2"},"17882":{"connections":[{"id":33596,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Volatile Grenades","orbit":7,"orbitIndex":0,"recipe":["Paranoia","Ire","Despair"],"skill":17882,"stats":["25% reduced Grenade Detonation Time"],"stringId":"grenades18"},"17885":{"connections":[{"id":11392,"orbit":-7}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude on You","orbit":3,"orbitIndex":2,"skill":17885,"stats":["15% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation7"},"17894":{"connectionArt":"CharacterPlanned","connections":[{"id":58058,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Her Final Bite","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":42,"skill":17894,"stats":["20% increased Physical Damage with Bows","Bow Attacks have Culling Strike"],"stringId":"oracle_bow_movement9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"17903":{"connections":[{"id":40117,"orbit":-7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":8,"skill":17903,"stats":["16% increased Thorns damage"],"stringId":"getting_hit19_"},"17906":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":17906,"stats":[],"stringId":"mastery_trap237"},"17923":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":18826,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Volatility","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":16,"skill":17923,"stats":["10% chance to gain Volatility on Kill"],"stringId":"AscendancyMonk3Small1"},"17924":{"connections":[{"id":51867,"orbit":-7}],"group":408,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":3,"orbitIndex":20,"skill":17924,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life2"},"17955":{"connections":[{"id":51708,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Careful Consideration","orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Greed"],"skill":17955,"stats":["30% reduced Evasion Rating if you have been Hit Recently","100% increased Evasion Rating if you haven't been Hit Recently"],"stringId":"evasion7_"},"17973":{"connections":[{"id":4748,"orbit":4},{"id":22691,"orbit":-6}],"group":858,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"isSwitchable":true,"name":"Rapid Recharge","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":48926,"name":"Living Death","stats":["Minions have 15% increased maximum Life","Minions Revive 15% faster"]}},"orbit":7,"orbitIndex":3,"skill":17973,"stats":["12% increased Energy Shield Recharge Rate","12% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery14"},"17994":{"connections":[{"id":22565,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":5,"skill":17994,"stats":["10% increased Armour","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"deflect32"},"17999":{"connections":[{"id":51561,"orbit":0},{"id":42026,"orbit":0},{"id":63979,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown and Speed","orbit":7,"orbitIndex":4,"skill":17999,"stats":["8% increased Warcry Speed","6% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries29"},"18004":{"connections":[{"id":8881,"orbit":0}],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":3,"orbitIndex":19,"skill":18004,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage13"},"18049":{"connections":[{"id":5802,"orbit":0}],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":22,"skill":18049,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"],"stringId":"projectiles27"},"18073":{"connections":[{"id":49952,"orbit":7},{"id":63114,"orbit":4}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":2,"skill":18073,"stats":["12% increased Attack Damage"],"stringId":"slow_attacks2_"},"18081":{"connectionArt":"CharacterPlanned","connections":[{"id":52993,"orbit":0},{"id":14980,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Call Upon the Deep","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":7,"skill":18081,"stats":["Damage Penetrates 20% Elemental Resistances for each time you've used a Skill that Requires Glory in the past 6 seconds"],"stringId":"oracle_glory_elemental5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18086":{"connections":[{"id":62844,"orbit":0},{"id":7333,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Breath of Ice","orbit":4,"orbitIndex":54,"recipe":["Suffering","Disgust","Suffering"],"skill":18086,"stats":["Damage Penetrates 15% Cold Resistance","+10 to Intelligence"],"stringId":"cold_penetration25"},"18101":{"connections":[{"id":61615,"orbit":3},{"id":59413,"orbit":-3}],"group":657,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":18101,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup30"},"18115":{"connections":[{"id":48856,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":7,"skill":18115,"stats":["12% increased Grenade Damage"],"stringId":"grenades16"},"18121":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":18121,"stats":[],"stringId":"mastery_caster_6354__"},"18146":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":57819,"orbit":2147483647}],"group":515,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18146,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"AscendancyMercenary3Small3"},"18157":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":29447,"orbit":-8}],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Tempered Defences","orbit":2,"orbitIndex":17,"recipe":["Fear","Guilt","Envy"],"skill":18157,"stats":["25% increased Armour","+15% of Armour also applies to Elemental Damage"],"stringId":"armour49"},"18158":{"ascendancyName":"Infernalist","connections":[],"group":766,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/FuryManifest.dds","isNotable":true,"name":"Bringer of Flame","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":18158,"stats":["All Damage from you and Allies in your Presence","contributes to Flammability and Ignite Magnitudes"],"stringId":"AscendancyWitch1Notable8"},"18160":{"connections":[{"id":26945,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Chance","orbit":7,"orbitIndex":14,"skill":18160,"stats":["Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence29"},"18167":{"connections":[{"id":49150,"orbit":-2}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Critical Hits","orbit":2,"orbitIndex":10,"skill":18167,"stats":["Invocated Spells have 12% increased Critical Hit Chance"],"stringId":"triggers29"},"18186":{"connections":[{"id":13942,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":18186,"stats":["15% increased Armour"],"stringId":"armour9"},"18207":{"connections":[{"id":53261,"orbit":-3}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Area and Damage","orbit":3,"orbitIndex":8,"skill":18207,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"stringId":"melee62"},"18245":{"connections":[{"id":30554,"orbit":0},{"id":21164,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Physical Damage Reduction","orbit":7,"orbitIndex":16,"skill":18245,"stats":["Minions have 8% increased maximum Life","Minions have 8% additional Physical Damage Reduction"],"stringId":"minion_defence3"},"18270":{"connections":[{"id":45874,"orbit":3}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":55,"skill":18270,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical69"},"18280":{"ascendancyName":"Ritualist","connections":[],"group":1608,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistDrainManaActivateCharms.dds","isNotable":true,"name":"Mind Phylacteries","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":18280,"stats":["Can instead consume 25% of maximum Mana to trigger Charms with insufficient charges"],"stringId":"AscendancyHuntress3Notable4"},"18308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Bleeding Out","orbit":4,"orbitIndex":48,"recipe":["Despair","Suffering","Fear"],"skill":18308,"stats":["+250 to Accuracy against Bleeding Enemies","Bleeding you inflict deals Damage 10% faster"],"stringId":"bleed18"},"18314":{"connections":[{"id":60239,"orbit":-4},{"id":58593,"orbit":-6}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":13,"skill":18314,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield36"},"18348":{"ascendancyName":"Infernalist","connections":[{"id":19482,"orbit":5},{"id":8854,"orbit":0},{"id":46016,"orbit":8}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/MoltenFury.dds","isNotable":true,"name":"Altered Flesh","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":60,"skill":18348,"stats":["20% of Physical Damage taken as Chaos Damage","20% of Lightning Damage taken as Fire Damage","20% of Cold Damage taken as Fire Damage"],"stringId":"AscendancyWitch1Notable4"},"18353":{"connectionArt":"CharacterPlanned","connections":[{"id":20496,"orbit":0},{"id":3544,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Physical and Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":20,"skill":18353,"stats":["12% increased Lightning Damage","12% increased Physical Damage"],"stringId":"oracle_rust_king1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18374":{"connections":[],"group":523,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns and Leech","orbit":2,"orbitIndex":7,"skill":18374,"stats":["8% increased amount of Life Leeched","12% increased Thorns damage"],"stringId":"getting_hit8_"},"18397":{"connections":[{"id":55063,"orbit":0},{"id":4139,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Savoured Blood","orbit":3,"orbitIndex":5,"recipe":["Despair","Ire","Ire"],"skill":18397,"stats":["35% increased amount of Life Leeched","Leech Life 20% slower"],"stringId":"life_leech17"},"18407":{"connections":[],"group":764,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":18407,"stats":["+5 to any Attribute"],"stringId":"intelligence12"},"18419":{"connections":[{"id":11014,"orbit":0},{"id":16784,"orbit":0},{"id":23667,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Mending","orbit":7,"orbitIndex":18,"recipe":["Envy","Fear","Paranoia"],"skill":18419,"stats":["Regenerate 1% of maximum Life per second while you have a Totem","Totems Regenerate 3% of maximum Life per second"],"stringId":"totems34"},"18441":{"connectionArt":"CharacterPlanned","connections":[{"id":34181,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":18441,"stats":["+3 to Maximum Rage"],"stringId":"oracle_rage1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18448":{"connections":[{"id":30141,"orbit":0},{"id":6872,"orbit":0},{"id":30457,"orbit":0},{"id":59039,"orbit":0}],"group":164,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":18448,"stats":["+5 to any Attribute"],"stringId":"attributes16"},"18451":{"connections":[],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":12,"skill":18451,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges5"},"18465":{"connections":[{"id":39540,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"isSwitchable":true,"name":"Cruel Fate","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds","id":50882,"name":"Primal Spirit","stats":["10% increased Critical Hit Chance while Shapeshifted","8% increased Skill Speed while Shapeshifted"]}},"orbit":4,"orbitIndex":44,"skill":18465,"stats":["20% increased Critical Damage Bonus","20% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"stringId":"criticals25_"},"18470":{"connections":[{"id":4447,"orbit":0}],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":1,"orbitIndex":4,"skill":18470,"stats":["15% increased Pin Buildup"],"stringId":"pin7"},"18472":{"connections":[{"id":46533,"orbit":0}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":12,"skill":18472,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise4"},"18485":{"connections":[{"id":20119,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Unstable Bond","orbit":3,"orbitIndex":0,"recipe":["Envy","Guilt","Despair"],"skill":18485,"stats":["Gain 3 Volatility when an Allied Persistent Reviving Minion is Killed"],"stringId":"volatility1"},"18489":{"connections":[{"id":13356,"orbit":7},{"id":12751,"orbit":-7},{"id":37258,"orbit":0}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":7,"orbitIndex":19,"skill":18489,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed4"},"18496":{"connections":[{"id":50616,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Lasting Trauma","orbit":7,"orbitIndex":12,"recipe":["Suffering","Paranoia","Envy"],"skill":18496,"stats":["5% reduced Attack Speed","30% increased Magnitude of Ailments you inflict","20% increased Duration of Damaging Ailments on Enemies"],"stringId":"slow_attacks11"},"18505":{"connections":[{"id":45090,"orbit":0},{"id":50616,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Crushing Verdict","orbit":7,"orbitIndex":16,"recipe":["Envy","Suffering","Ire"],"skill":18505,"stats":["5% reduced Attack Speed","30% increased Stun Buildup","50% increased Attack Damage"],"stringId":"slow_attacks10"},"18519":{"connections":[{"id":30910,"orbit":-7}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Life Leech and Companion Damage","orbit":7,"orbitIndex":16,"skill":18519,"stats":["8% increased amount of Life Leeched","Companions deal 12% increased Damage"],"stringId":"duelist_minions2"},"18548":{"connections":[{"id":28992,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":8,"skill":18548,"stats":["3% increased Attack Speed"],"stringId":"attack_speed7"},"18568":{"connections":[{"id":46887,"orbit":-5}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech and Cold Resistance","orbit":2,"orbitIndex":1,"skill":18568,"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"stringId":"mana_leech3"},"18585":{"ascendancyName":"Warbringer","connections":[{"id":6127,"orbit":0}],"group":34,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18585,"stats":["20% increased Armour"],"stringId":"AscendancyWarrior2Small3"},"18593":{"connections":[{"id":47080,"orbit":0}],"group":113,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18593,"stats":["12% increased Lightning Damage"],"stringId":"lightning61"},"18624":{"connections":[{"id":39608,"orbit":-2},{"id":12329,"orbit":2}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":3,"orbitIndex":22,"skill":18624,"stats":["16% increased Hazard Damage"],"stringId":"hazards10"},"18629":{"connections":[{"id":64327,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":0,"skill":18629,"stats":["5% increased Block chance"],"stringId":"block7_"},"18651":{"connections":[{"id":11736,"orbit":0},{"id":63863,"orbit":0}],"group":896,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18651,"stats":["12% increased Lightning Damage"],"stringId":"lightning19"},"18678":{"ascendancyName":"Chronomancer","connections":[{"id":28153,"orbit":9}],"group":336,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Buff Expiry Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18678,"stats":["Buffs on you expire 10% slower"],"stringId":"AscendancySorceress2Small1"},"18684":{"connections":[],"flavourText":"\"In my dreams I see a great warrior, his skin scorched black, his fists aflame.\"","group":137,"icon":"Art/2DArt/SkillIcons/passives/KeystoneAvatarOfFire.dds","isKeystone":true,"name":"Avatar of Fire","orbit":0,"orbitIndex":0,"skill":18684,"stats":["75% of Damage Converted to Fire Damage","Deal no Non-Fire Damage"],"stringId":"passive_keystone_avatar_of_fire"},"18713":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connectionArt":"CharacterPlanned","connections":[],"group":91,"icon":"Art/2DArt/SkillIcons/passives/MasteryArmourandEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":18713,"stats":[],"stringId":"oracle_crab_claw_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"18717":{"connections":[{"id":60483,"orbit":0}],"group":1437,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":18717,"stats":["12% increased Lightning Damage"],"stringId":"lightning8"},"18737":{"connections":[{"id":17725,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":6,"skill":18737,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals95"},"18742":{"connections":[{"id":7721,"orbit":-6},{"id":62732,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":6,"skill":18742,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold7"},"18744":{"connections":[{"id":60324,"orbit":2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":10,"skill":18744,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant18"},"18746":{"connections":[],"group":138,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":18746,"stats":["5% increased Block chance"],"stringId":"shield6"},"18793":{"connections":[{"id":33639,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":7,"orbitIndex":22,"skill":18793,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"],"stringId":"infusion14"},"18801":{"connections":[{"id":11752,"orbit":2147483647},{"id":63360,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":7,"orbitIndex":10,"skill":18801,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners5"},"18815":{"connections":[{"id":40990,"orbit":0}],"group":1449,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":18815,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration6"},"18818":{"connections":[{"id":29517,"orbit":0},{"id":49461,"orbit":2},{"id":21314,"orbit":-2}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Speed","orbit":0,"orbitIndex":0,"skill":18818,"stats":["2% increased Attack Speed","5% increased Attack Damage"],"stringId":"attack51"},"18822":{"connections":[{"id":21567,"orbit":-3},{"id":47790,"orbit":3}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Damage","orbit":1,"orbitIndex":7,"skill":18822,"stats":["10% increased Damage"],"stringId":"shapeshifting17"},"18826":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":47344,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaManaLeechInstant.dds","isNotable":true,"name":"Inner Turmoil","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":8,"skill":18826,"stats":["Gain 1 Volatility on inflicting an Elemental Ailment","Take no Damage from Volatility"],"stringId":"AscendancyMonk3Notable1"},"18831":{"connections":[{"id":49545,"orbit":7}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":2,"orbitIndex":19,"skill":18831,"stats":["5% increased Block chance"],"stringId":"deflect7"},"18845":{"connections":[{"id":55807,"orbit":-5}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":27384,"name":"Spell and Minion Damage","stats":["10% increased Spell Damage","Minions deal 10% increased Damage"]}},"orbit":7,"orbitIndex":11,"skill":18845,"stats":["10% increased Spell Damage"],"stringId":"spells15"},"18846":{"connections":[],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":3,"orbitIndex":8,"skill":18846,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells3"},"18849":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanChill.dds","isNotable":true,"name":"Shaper of Winter","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":5,"orbitIndex":2,"skill":18849,"stats":["All Damage from Hits Contributes to Chill Magnitude"],"stringId":"AscendancySorceress1Notable8"},"18856":{"connections":[{"id":24491,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":3,"orbitIndex":0,"skill":18856,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers22"},"18864":{"connections":[{"id":2745,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Ailment Magnitude","orbit":2,"orbitIndex":2,"skill":18864,"stats":["10% increased Magnitude of Ailments you inflict"],"stringId":"azmerianimals44"},"18882":{"connections":[{"id":24045,"orbit":-2},{"id":26786,"orbit":0},{"id":30047,"orbit":0},{"id":29941,"orbit":0}],"group":996,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":6,"skill":18882,"stats":["+5 to any Attribute"],"stringId":"dexterity68"},"18895":{"connections":[{"id":12661,"orbit":3}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":1,"orbitIndex":6,"skill":18895,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield3"},"18897":{"connections":[{"id":53185,"orbit":5}],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Evasion Rating","orbit":2,"orbitIndex":4,"skill":18897,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals51"},"18910":{"connections":[{"id":10265,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Critical Chance","orbit":5,"orbitIndex":48,"skill":18910,"stats":["10% increased Critical Hit Chance with Spears"],"stringId":"spear2"},"18913":{"connections":[{"id":12419,"orbit":-2}],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage and Duration","orbit":7,"orbitIndex":22,"skill":18913,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"stringId":"chaos2"},"18923":{"connections":[{"id":61976,"orbit":0},{"id":17118,"orbit":0},{"id":39570,"orbit":0},{"id":9085,"orbit":0}],"group":1127,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":18923,"stats":["+5 to any Attribute"],"stringId":"dexterity64"},"18940":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1566,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionCold.dds","isMultipleChoiceOption":true,"name":"Shattering Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":18940,"stats":["Grants Skill: Shattering Concoction"],"stringId":"AscendancyRanger3Notable7_2"},"18959":{"connections":[{"id":55843,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Ruinic Helm","orbit":2,"orbitIndex":14,"recipe":["Paranoia","Isolation","Fear"],"skill":18959,"stats":["+1 to Maximum Energy Shield per 8 Item Armour on Equipped Helmet"],"stringId":"energy_shield_and_armour35"},"18969":{"connections":[],"group":1515,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":0,"orbitIndex":0,"skill":18969,"stats":["3% increased Attack Speed with Bows"],"stringId":"bow16"},"18970":{"connections":[{"id":17366,"orbit":-3},{"id":11938,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":16,"skill":18970,"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"stringId":"evasion_and_energy_shield3"},"18972":{"connectionArt":"CharacterPlanned","connections":[{"id":34782,"orbit":0}],"group":165,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Echoes of Ferocity","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":18972,"stats":["15% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"oracle_bear_addon2__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19001":{"connections":[{"id":16786,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Immobilisation Buildup","orbit":7,"orbitIndex":18,"skill":19001,"stats":["15% increased Immobilisation buildup"],"stringId":"slaying7"},"19003":{"connections":[{"id":12166,"orbit":0},{"id":3128,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":19003,"stats":["10% increased Cold Damage"],"stringId":"cold4_"},"19006":{"connections":[{"id":39461,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":18,"skill":19006,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation12"},"19011":{"connections":[{"id":45363,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":20,"skill":19011,"stats":["10% increased Melee Damage"],"stringId":"melee56"},"19027":{"connections":[{"id":21156,"orbit":-2},{"id":7847,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Charge Duration","orbit":7,"orbitIndex":12,"skill":19027,"stats":["15% increased Endurance, Frenzy and Power Charge Duration"],"stringId":"azmerianimals14"},"19044":{"connections":[{"id":53188,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Arcane Intensity","orbit":1,"orbitIndex":0,"recipe":["Disgust","Fear","Despair"],"skill":19044,"stats":["3% increased Spell Damage per 100 maximum Mana"],"stringId":"mana37"},"19074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":7,"orbitIndex":6,"skill":19074,"stats":[],"stringId":"mastery_attack_6301"},"19104":{"connections":[{"id":29582,"orbit":0}],"group":1025,"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","isNotable":true,"isSwitchable":true,"name":"Eagle Eye","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","id":39628,"name":"Reflex Action","stats":["30% increased Parry Damage","30% increased Evasion Rating while Parrying"]}},"orbit":0,"orbitIndex":0,"skill":19104,"stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"],"stringId":"accuracy18"},"19112":{"connections":[{"id":36358,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":19112,"stats":["7% increased Chaos Damage"],"stringId":"chaos18_"},"19122":{"connections":[{"id":28432,"orbit":0}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Armour if Consumed Endurance Charge","orbit":2,"orbitIndex":16,"skill":19122,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"endurance_charges11"},"19125":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Potent Incantation","orbit":1,"orbitIndex":8,"recipe":["Paranoia","Paranoia","Disgust"],"skill":19125,"stats":["30% increased Spell Damage","5% reduced Cast Speed"],"stringId":"spells33"},"19129":{"connections":[{"id":55066,"orbit":0},{"id":9290,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":21,"skill":19129,"stats":["15% increased Pin Buildup"],"stringId":"bleed47"},"19156":{"connections":[{"id":12249,"orbit":-7},{"id":17283,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Immaterial","orbit":2,"orbitIndex":12,"recipe":["Ire","Disgust","Envy"],"skill":19156,"stats":["50% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds","30% increased Evasion Rating while you have Energy Shield"],"stringId":"evasion_and_energy_shield14"},"19162":{"connectionArt":"CharacterPlanned","connections":[{"id":34143,"orbit":0},{"id":31554,"orbit":5},{"id":15141,"orbit":2147483647}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":60,"skill":19162,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19203":{"connections":[{"id":10260,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":21,"skill":19203,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling2"},"19223":{"connections":[{"id":21755,"orbit":0},{"id":53166,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":18,"skill":19223,"stats":["10% increased Attack Damage"],"stringId":"attack23_"},"19224":{"connections":[{"id":32555,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":4,"orbitIndex":66,"skill":19224,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion38"},"19233":{"ascendancyName":"Amazon","connections":[{"id":42441,"orbit":0}],"group":1590,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":19233,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyHuntress1Small6"},"19236":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Projectile Bulwark","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Despair"],"skill":19236,"stats":["30% increased Armour","Defend with 120% of Armour against Projectile Attacks"],"stringId":"armour31"},"19240":{"connections":[{"id":46358,"orbit":-6},{"id":4847,"orbit":5}],"group":676,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":19240,"stats":["+5 to any Attribute"],"stringId":"intelligence27"},"19249":{"connections":[{"id":33209,"orbit":4},{"id":40550,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Supportive Ancestors","orbit":6,"orbitIndex":0,"recipe":["Fear","Disgust","Isolation"],"skill":19249,"stats":["25% increased Damage while you have a Totem","Spells Cast by Totems have 3% increased Cast Speed per Summoned Totem","Attacks used by Totems have 3% increased Attack Speed per Summoned Totem"],"stringId":"totems7"},"19277":{"connections":[{"id":44783,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":12,"skill":19277,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells16"},"19288":{"connections":[],"flavourText":"Utter trust in your defence unleashes ultimate potential.","group":1000,"icon":"Art/2DArt/SkillIcons/passives/GlancingBlows.dds","isKeystone":true,"name":"Glancing Blows","orbit":0,"orbitIndex":0,"skill":19288,"stats":["Chance to Evade is Unlucky","Chance to Deflect is Lucky"],"stringId":"passive_keystone_glancing_blows_"},"19318":{"connections":[{"id":53795,"orbit":5}],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":13,"skill":19318,"stats":["20% increased Effect of Puppet Master"],"stringId":"Puppetmaster5"},"19330":{"connections":[],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":52,"skill":19330,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration35"},"19337":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Precision Salvo","orbit":0,"orbitIndex":0,"recipe":["Despair","Envy","Envy"],"skill":19337,"stats":["8% increased Projectile Speed","6% increased Attack Speed","12% increased Accuracy Rating"],"stringId":"accuracy40"},"19338":{"connections":[{"id":60,"orbit":0}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":0,"skill":19338,"stats":["+8 to Dexterity"],"stringId":"dexterity104_"},"19341":{"connections":[],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":7,"orbitIndex":10,"skill":19341,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life3"},"19342":{"connections":[{"id":17553,"orbit":-3},{"id":46296,"orbit":0},{"id":27493,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":8,"skill":19342,"stats":["10% increased Projectile Damage"],"stringId":"ranged41"},"19355":{"connections":[],"group":1040,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":4,"skill":19355,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield44"},"19359":{"connections":[{"id":35095,"orbit":4},{"id":52245,"orbit":0}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage and Resistance","orbit":3,"orbitIndex":2,"skill":19359,"stats":["5% increased Chaos Damage","+3% to Chaos Resistance"],"stringId":"monkchaos3"},"19370":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistSpectralBell.dds","isNotable":true,"name":"Hollow Focus Technique","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":5,"orbitIndex":71,"skill":19370,"stats":["Grants Skill: Hollow Focus"],"stringId":"AscendancyMonk1Notable3"},"19424":{"ascendancyName":"Titan","connections":[{"id":60634,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Strength","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":6,"orbitIndex":48,"skill":19424,"stats":["4% increased Strength"],"stringId":"AscendancyWarrior1Small5"},"19426":{"connections":[{"id":15443,"orbit":0}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":4,"skill":19426,"stats":["10% increased Physical Damage"],"stringId":"physical48"},"19442":{"connections":[{"id":25170,"orbit":-3},{"id":8606,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Prolonged Assault","orbit":2,"orbitIndex":8,"recipe":["Guilt","Despair","Suffering"],"skill":19442,"stats":["16% increased Attack Damage","16% increased Skill Effect Duration","Buffs on you expire 10% slower"],"stringId":"attack11"},"19461":{"connections":[{"id":64415,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Lightning and Cold Damage","orbit":3,"orbitIndex":16,"skill":19461,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"stringId":"daze_12"},"19470":{"connections":[],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Life and Mana Flask Recovery","orbit":3,"orbitIndex":17,"skill":19470,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks19_"},"19482":{"ascendancyName":"Infernalist","connections":[{"id":36564,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":109,"skill":19482,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small1"},"19542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":1448,"orbit":0}],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":19542,"stats":[],"stringId":"mastery_companion293"},"19546":{"connections":[{"id":5681,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Favourable Odds","orbit":2,"orbitIndex":4,"recipe":["Despair","Greed","Disgust"],"skill":19546,"stats":["30% increased Block chance while Surrounded","10% increased Deflection Rating while Surrounded","40% increased Ailment and Stun Threshold while Surrounded"],"stringId":"being_surrounded23"},"19563":{"connections":[{"id":47931,"orbit":0},{"id":58496,"orbit":-7},{"id":6735,"orbit":7}],"group":165,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":19563,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear1"},"19573":{"connections":[{"id":38479,"orbit":-5},{"id":19342,"orbit":-3}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Pierce","orbit":7,"orbitIndex":11,"skill":19573,"stats":["25% chance for Projectiles to Pierce Enemies within 3m distance of you"],"stringId":"ranged27"},"19644":{"connections":[{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Left Hand of Darkness","orbit":4,"orbitIndex":29,"recipe":["Isolation","Suffering","Envy"],"skill":19644,"stats":["Minions have 20% additional Physical Damage Reduction","Minions have +23% to Chaos Resistance","Attacks Gain 5% of Damage as extra Chaos Damage"],"stringId":"minion_defence16"},"19674":{"connections":[{"id":41493,"orbit":0}],"group":345,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":3,"orbitIndex":2,"skill":19674,"stats":["8% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"slams4"},"19715":{"connections":[{"id":34927,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Cremation","orbit":4,"orbitIndex":66,"recipe":["Isolation","Disgust","Isolation"],"skill":19715,"stats":["Damage Penetrates 18% Fire Resistance","Gain 6% of Elemental Damage as Extra Fire Damage"],"stringId":"fire_penetration24"},"19722":{"connections":[],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Thin Ice","orbit":7,"orbitIndex":10,"recipe":["Suffering","Ire","Greed"],"skill":19722,"stats":["20% increased Freeze Buildup","50% increased Damage with Hits against Frozen Enemies"],"stringId":"cold32"},"19749":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19749,"stats":[],"stringId":"mastery_fire120"},"19750":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":739,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":19750,"stats":[],"stringId":"mastery_evasion115"},"19751":{"connections":[{"id":35618,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Threshold","orbit":2,"orbitIndex":19,"skill":19751,"stats":["15% increased Freeze Threshold"],"stringId":"chill_and_freeze22"},"19767":{"connections":[{"id":35223,"orbit":0},{"id":13895,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":10,"skill":19767,"stats":["3% increased Attack Speed with Spears"],"stringId":"spear6"},"19779":{"connections":[{"id":63891,"orbit":2}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":2,"orbitIndex":22,"skill":19779,"stats":["7% increased Chaos Damage"],"stringId":"chaos10"},"19794":{"connections":[],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude on You","orbit":3,"orbitIndex":22,"skill":19794,"stats":["15% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation5"},"19796":{"connections":[{"id":18308,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Attack Damage vs Bleeding Enemies","orbit":7,"orbitIndex":16,"skill":19796,"stats":["16% increased Attack Damage against Bleeding Enemies"],"stringId":"bleed16"},"19802":{"connections":[{"id":64399,"orbit":2}],"group":574,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":2,"orbitIndex":8,"skill":19802,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals66"},"19808":{"connections":[],"group":1082,"icon":"Art/2DArt/SkillIcons/passives/SpellSupressionNotable1.dds","isSwitchable":true,"name":"Ailment Chance","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","id":28615,"name":"Accuracy","stats":["8% increased Accuracy Rating"]}},"orbit":0,"orbitIndex":0,"skill":19808,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments9_"},"19820":{"connections":[{"id":5686,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Cold Damage","orbit":2,"orbitIndex":20,"skill":19820,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"stringId":"armour40"},"19846":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":382,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":1,"orbitIndex":6,"skill":19846,"stats":[],"stringId":"mastery_fire6171"},"19873":{"connections":[{"id":13233,"orbit":4},{"id":17655,"orbit":-9}],"group":623,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":7,"orbitIndex":4,"skill":19873,"stats":["5% increased Area of Effect"],"stringId":"area_of_effect4"},"19880":{"connections":[{"id":59390,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Evasion if Consumed Frenzy Charge","orbit":2,"orbitIndex":0,"skill":19880,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"stringId":"frenzy_charges2"},"19936":{"connections":[{"id":290,"orbit":3}],"group":280,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":19936,"stats":["12% increased Fire Damage"],"stringId":"fire71"},"19942":{"connections":[{"id":1144,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Attack Elemental Damage","orbit":2,"orbitIndex":1,"skill":19942,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"accuracy53"},"19953":{"connectionArt":"CharacterPlanned","connections":[{"id":50142,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":19953,"stats":["15% increased Lightning Damage"],"stringId":"oracle_rust_king6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19955":{"connections":[],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Endless Blizzard","orbit":4,"orbitIndex":6,"recipe":["Isolation","Suffering","Fear"],"skill":19955,"stats":["+1 to Level of all Cold Skills"],"stringId":"cold38"},"19966":{"connectionArt":"CharacterPlanned","connections":[{"id":829,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":19,"skill":19966,"stats":["25% increased Minion Duration"],"stringId":"oracle_big_family5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"19998":{"connections":[{"id":44430,"orbit":0}],"group":928,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":19998,"stats":["12% increased Damage with Crossbows"],"stringId":"crossbow2"},"20008":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Unleash Fire","orbit":7,"orbitIndex":4,"recipe":["Disgust","Guilt","Greed"],"skill":20008,"stats":["30% increased Stun Buildup with Melee Damage","Projectiles deal 75% increased Damage against Heavy Stunned Enemies"],"stringId":"ranged25"},"20015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":426,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":20015,"stats":[],"stringId":"mastery_warcry_6793"},"20024":{"connections":[{"id":44223,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":22,"skill":20024,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals14"},"20032":{"connections":[{"id":28680,"orbit":0},{"id":56762,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Erraticism","orbit":2,"orbitIndex":0,"recipe":["Despair","Greed","Guilt"],"skill":20032,"stats":["16% increased Cast Speed if you've dealt a Critical Hit Recently","10% reduced Critical Hit Chance"],"stringId":"cast_speed37"},"20044":{"connections":[{"id":30736,"orbit":0}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":7,"skill":20044,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect56"},"20049":{"connections":[{"id":32818,"orbit":5}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":0,"skill":20049,"stats":["10% increased Charm Charges gained"],"stringId":"charms16"},"20091":{"connections":[{"id":46565,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":5,"orbitIndex":43,"skill":20091,"stats":["10% increased Damage with Swords"],"stringId":"sword5"},"20105":{"connections":[{"id":13895,"orbit":0}],"group":1481,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Accuracy","orbit":0,"orbitIndex":0,"skill":20105,"stats":["10% increased Accuracy Rating with Spears"],"stringId":"spear8"},"20115":{"connections":[{"id":49734,"orbit":0},{"id":24420,"orbit":0},{"id":63243,"orbit":0},{"id":30258,"orbit":0}],"group":247,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":20115,"stats":["+5 to any Attribute"],"stringId":"attributes80"},"20119":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":20119,"stats":[],"stringId":"mastery_minion_offence_6620_"},"20140":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":953,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":20140,"stats":[],"stringId":"mastery_caster_6362"},"20195":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":56,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus3.dds","isNotable":true,"name":"Spiked Plates","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":20195,"stats":["Body Armour grants 100% increased Thorns damage"],"stringId":"AscendancyWarrior3Notable6_3"},"20205":{"connections":[{"id":33059,"orbit":0}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if no recent Stun","orbit":2,"orbitIndex":4,"skill":20205,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun15"},"20236":{"connections":[{"id":4346,"orbit":0}],"group":1159,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack and Cast Speed on Critical","orbit":0,"orbitIndex":0,"skill":20236,"stats":["3% increased Attack Speed if you've dealt a Critical Hit Recently","3% increased Cast Speed if you've dealt a Critical Hit Recently"],"stringId":"criticals19"},"20251":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Splitting Ground","orbit":3,"orbitIndex":23,"recipe":["Suffering","Suffering","Isolation"],"skill":20251,"stats":["Skills which create Fissures have a 20% chance to create an additional Fissure"],"stringId":"area_attacks40_"},"20289":{"connections":[{"id":61896,"orbit":0},{"id":50767,"orbit":0}],"group":121,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Frozen Claw","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Ire"],"skill":20289,"stats":["Gain 8% of Damage as Extra Cold Damage while Shapeshifted"],"stringId":"wolf18"},"20303":{"connections":[{"id":9908,"orbit":0}],"group":402,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":16,"skill":20303,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration31"},"20350":{"connections":[{"id":4948,"orbit":0},{"id":47006,"orbit":0},{"id":28304,"orbit":0}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":10,"skill":20350,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"stringId":"armour_break11"},"20387":{"connections":[{"id":57810,"orbit":0}],"group":1002,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":20387,"stats":["15% increased chance to Shock"],"stringId":"shock11"},"20388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":627,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Regenerative Flesh","orbit":2,"orbitIndex":22,"recipe":["Greed","Disgust","Greed"],"skill":20388,"stats":["6% of Damage taken Recouped as Life","Minions Recoup 15% of Damage taken as Life"],"stringId":"minion_defence36_"},"20390":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":37619,"orbit":2147483647},{"id":13693,"orbit":2147483647}],"group":311,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":20390,"stats":[],"stringId":"mastery_elemental_6472"},"20391":{"connectionArt":"CharacterPlanned","connections":[{"id":16947,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":15,"skill":20391,"stats":["8% increased Block chance"],"stringId":"oracle_crab_claw8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20397":{"connections":[{"id":4577,"orbit":3},{"id":8556,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Authority","orbit":7,"orbitIndex":11,"recipe":["Greed","Envy","Suffering"],"skill":20397,"stats":["10% increased Cooldown Recovery Rate","15% increased Area of Effect for Attacks"],"stringId":"area_attacks30"},"20414":{"connections":[{"id":35043,"orbit":0},{"id":52410,"orbit":0},{"id":50146,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Reprisal","orbit":4,"orbitIndex":31,"recipe":["Ire","Despair","Despair"],"skill":20414,"stats":["25% increased Parried Debuff Magnitude"],"stringId":"buckler12"},"20416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Grit","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Envy"],"skill":20416,"stats":["10% chance when you gain an Endurance Charge to gain an additional Endurance Charge","+1 to Maximum Endurance Charges"],"stringId":"endurance_charges9"},"20429":{"connections":[{"id":28797,"orbit":0}],"group":1517,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":62,"skill":20429,"stats":["3% increased Attack Speed with Daggers"],"stringId":"dagger7"},"20437":{"ascendancyName":"Martial Artist","connections":[{"id":39552,"orbit":5}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Attributes","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":4,"orbitIndex":7,"skill":20437,"stats":["+5 to all Attributes"],"stringId":"AscendancyMonk1Small7"},"20467":{"connections":[{"id":58312,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":3,"orbitIndex":12,"skill":20467,"stats":["5% increased Culling Strike Threshold"],"stringId":"slaying1"},"20495":{"connections":[],"group":750,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Dark Entropy","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Isolation","Disgust"],"skill":20495,"stats":["Withered also causes enemies to deal 1% reduced Damage"],"stringId":"DeliriumAnoint_DarkEntropy"},"20496":{"connectionArt":"CharacterPlanned","connections":[{"id":11984,"orbit":2147483647}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":6,"skill":20496,"stats":["15% increased Physical Damage"],"stringId":"oracle_rust_king4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20499":{"connections":[{"id":34327,"orbit":0},{"id":2336,"orbit":-2}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Effect","orbit":7,"orbitIndex":13,"skill":20499,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration41"},"20504":{"connections":[{"id":62341,"orbit":-5}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":0,"orbitIndex":0,"skill":20504,"stats":["Recover 5 Life when you Block"],"stringId":"block10"},"20511":{"connections":[{"id":53804,"orbit":-7},{"id":49259,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","isNotable":true,"name":"Cremating Cries","orbit":3,"orbitIndex":14,"recipe":["Despair","Suffering","Paranoia"],"skill":20511,"stats":["Empowered Attacks Gain 15% of Physical Damage as Extra Fire damage"],"stringId":"warcries44"},"20547":{"connections":[{"id":33340,"orbit":0},{"id":34412,"orbit":-2}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":11,"skill":20547,"stats":["15% increased Stun Buildup"],"stringId":"stun23"},"20558":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":235,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","isNotable":true,"name":"Among the Hordes","orbit":2,"orbitIndex":20,"recipe":["Suffering","Greed","Suffering"],"skill":20558,"stats":["3% increased Movement Speed","15% increased Attack Damage","Minions have 10% increased Movement Speed"],"stringId":"minion_offence59"},"20582":{"connections":[{"id":55329,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":6,"orbitIndex":21,"skill":20582,"stats":["15% increased Parried Debuff Duration"],"stringId":"buckler3"},"20637":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connectionArt":"CharacterPlanned","connections":[],"group":566,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Damage Mastery","orbit":0,"orbitIndex":0,"skill":20637,"stats":[],"stringId":"oracle_hiearchy_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":51934,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":1,"orbitIndex":1,"skill":20641,"stats":[],"stringId":"mastery_caster_6353"},"20645":{"connections":[{"id":64284,"orbit":4}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":14,"skill":20645,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks25_"},"20649":{"connections":[{"id":62998,"orbit":0},{"id":2582,"orbit":0},{"id":65290,"orbit":0}],"group":1486,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":20649,"stats":["10% increased Lightning Damage"],"stringId":"shock_mitigation1__"},"20677":{"connections":[{"id":9586,"orbit":0},{"id":535,"orbit":0}],"group":1203,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"For the Jugular","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Guilt"],"skill":20677,"stats":["25% increased Critical Damage Bonus","+10 to Intelligence"],"stringId":"criticals29"},"20686":{"connections":[],"group":914,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isNotable":true,"name":"Paragon","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Isolation","Despair"],"skill":20686,"stats":["+5% to Quality of all Skills","+5 to all Attributes"],"stringId":"DeliriumAnoint_Paragon"},"20691":{"connections":[{"id":41739,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":8,"skill":20691,"stats":["15% increased Stun Buildup"],"stringId":"stun20"},"20701":{"ascendancyName":"Disciple of Varashta","connections":[{"id":35880,"orbit":3}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FocusStaff.dds","isNotable":true,"name":"Instruments of Power","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":3,"orbitIndex":4,"skill":20701,"stats":["You can equip a Focus while wielding a Staff","50% reduced bonuses gained from Equipped Focus"],"stringId":"AscendancySorceress3Notable5_"},"20718":{"connections":[{"id":30979,"orbit":-3}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Duration","orbit":7,"orbitIndex":12,"skill":20718,"stats":["10% increased Skill Effect Duration"],"stringId":"slowed_enemies6"},"20744":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":991,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":1,"orbitIndex":3,"skill":20744,"stats":[],"stringId":"mastery_projectile_6650"},"20772":{"ascendancyName":"Lich","connections":[{"id":2877,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Mana","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":15028,"name":"Minion Duration","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["15% increased Minion Duration"]}},"orbit":9,"orbitIndex":114,"skill":20772,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch3Small3"},"20779":{"connections":[{"id":43431,"orbit":9},{"id":50239,"orbit":5}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":3,"orbitIndex":0,"skill":20779,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion36_"},"20782":{"connections":[{"id":52191,"orbit":-3},{"id":42361,"orbit":0}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":8,"skill":20782,"stats":["7% increased Chaos Damage"],"stringId":"chaos5"},"20787":{"connections":[{"id":5390,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":21,"skill":20787,"stats":["15% increased Freeze Buildup"],"stringId":"cold46"},"20791":{"connections":[{"id":13777,"orbit":0},{"id":11741,"orbit":0}],"group":220,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration and Energy Shield","orbit":2,"orbitIndex":10,"skill":20791,"stats":["10% increased Power Charge Duration","10% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_endurance_charges1"},"20820":{"connections":[{"id":40166,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":20820,"stats":["3% increased Attack Speed"],"stringId":"attack_speed10"},"20830":{"ascendancyName":"Witchhunter","connections":[{"id":37078,"orbit":8}],"group":339,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":20830,"stats":["8% increased Area of Effect"],"stringId":"AscendancyMercenary2Small7"},"20831":{"connections":[{"id":29843,"orbit":0},{"id":44875,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/AspectOfTheLynx.dds","isNotable":true,"name":"Catlike Agility","orbit":2,"orbitIndex":14,"skill":20831,"stats":["25% increased Evasion Rating","40% increased Evasion Rating if you've Dodge Rolled Recently","3% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion39"},"20837":{"connections":[{"id":61104,"orbit":0}],"group":1088,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":0,"orbitIndex":0,"skill":20837,"stats":["8% increased Knockback Distance"],"stringId":"bleed46"},"20842":{"connections":[{"id":48026,"orbit":0},{"id":4661,"orbit":2147483647}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":3,"orbitIndex":12,"skill":20842,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners16"},"20848":{"connections":[{"id":16721,"orbit":2147483647}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":7,"orbitIndex":8,"skill":20848,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical64"},"20861":{"connections":[{"id":8522,"orbit":0},{"id":45350,"orbit":0},{"id":17672,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":12,"skill":20861,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers11"},"20895":{"ascendancyName":"Smith of Kitava","connections":[{"id":47184,"orbit":0}],"group":18,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Strength","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":20895,"stats":["5% increased Strength"],"stringId":"AscendancyWarrior3Small2"},"20909":{"connections":[{"id":44891,"orbit":2147483647}],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":1,"skill":20909,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration3"},"20916":{"connections":[{"id":59355,"orbit":0}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Blinding Strike","orbit":7,"orbitIndex":8,"recipe":["Envy","Fear","Envy"],"skill":20916,"stats":["24% increased Attack Damage","10% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack16"},"20963":{"connectionArt":"CharacterPlanned","connections":[{"id":17587,"orbit":0}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Calculated Hunter","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":18,"skill":20963,"stats":["5% reduced Skill Speed","50% increased Critical Hit Chance"],"stringId":"oracle_slow_crits4__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"20989":{"connections":[{"id":42984,"orbit":0},{"id":30141,"orbit":0}],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":3,"orbitIndex":9,"skill":20989,"stats":["6% increased Area of Effect"],"stringId":"area_attacks37"},"21017":{"connections":[{"id":26969,"orbit":-7},{"id":55789,"orbit":7}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":5,"orbitIndex":0,"skill":21017,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals68"},"21070":{"connections":[{"id":57388,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":7,"orbitIndex":20,"skill":21070,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals63"},"21077":{"connections":[{"id":354,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":3,"orbitIndex":12,"skill":21077,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades2"},"21080":{"connections":[{"id":1869,"orbit":-4}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":19,"skill":21080,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze1"},"21081":{"connections":[{"id":25745,"orbit":5}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":5,"orbitIndex":42,"skill":21081,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour20"},"21089":{"connections":[{"id":31848,"orbit":7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns Ignore Armour","orbit":7,"orbitIndex":20,"skill":21089,"stats":["Thorns Damage has 25% chance to ignore Enemy Armour"],"stringId":"getting_hit18"},"21096":{"connections":[{"id":56388,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":4,"orbitIndex":69,"skill":21096,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners25"},"21111":{"connections":[{"id":33099,"orbit":-5}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Activation Chance","orbit":7,"orbitIndex":11,"skill":21111,"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"stringId":"charms15"},"21112":{"connections":[{"id":31055,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":4,"orbitIndex":57,"skill":21112,"stats":["10% increased Damage with Bows"],"stringId":"bow5"},"21127":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":305,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":30,"skill":21127,"stats":[],"stringId":"mastery_totem_6748"},"21142":{"connections":[{"id":55829,"orbit":7}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":5,"skill":21142,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks51"},"21156":{"connections":[{"id":34623,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Charge Duration","orbit":7,"orbitIndex":8,"skill":21156,"stats":["15% increased Endurance, Frenzy and Power Charge Duration"],"stringId":"azmerianimals13"},"21161":{"connections":[{"id":10500,"orbit":5}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Movement Penalty with Raised Shield","orbit":3,"orbitIndex":7,"skill":21161,"stats":["10% reduced Movement Speed Penalty while Actively Blocking"],"stringId":"shield32"},"21164":{"connections":[{"id":62670,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Fleshcrafting","orbit":7,"orbitIndex":10,"recipe":["Isolation","Greed","Fear"],"skill":21164,"stats":["Minions gain 15% of their maximum Life as Extra maximum Energy Shield","4% of Maximum Life Converted to Energy Shield"],"stringId":"minion_defence22_"},"21184":{"connections":[{"id":20251,"orbit":0}],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":7,"orbitIndex":3,"skill":21184,"stats":["6% increased Area of Effect"],"stringId":"area_attacks39"},"21205":{"connections":[{"id":44176,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":60,"skill":21205,"stats":["+3 to all Attributes"],"stringId":"all_attributes3"},"21206":{"connections":[{"id":45899,"orbit":0},{"id":11505,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Explosive Impact","orbit":3,"orbitIndex":8,"recipe":["Greed","Disgust","Fear"],"skill":21206,"stats":["15% increased Area of Effect","Burning Enemies you kill have a 5% chance to Explode, dealing a","tenth of their maximum Life as Fire Damage"],"stringId":"fire36"},"21208":{"connections":[],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Activation Speed and Effect","orbit":7,"orbitIndex":14,"skill":21208,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"stringId":"curses4"},"21213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Cirel of Tarth's Light","orbit":7,"orbitIndex":10,"recipe":["Isolation","Ire","Paranoia"],"skill":21213,"stats":["+10% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","10% increased Light Radius","10% increased Accuracy Rating","10% increased Area of Effect"],"stringId":"energy_shield_and_armour56_"},"21218":{"connectionArt":"CharacterPlanned","connections":[{"id":7066,"orbit":0},{"id":13950,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":5,"skill":21218,"stats":["16% increased Damage with Bows"],"stringId":"oracle_bow_movement1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21225":{"connections":[{"id":38369,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":3,"orbitIndex":16,"skill":21225,"stats":["10% increased Damage with Spears"],"stringId":"spear3"},"21227":{"connections":[{"id":36290,"orbit":-2}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":4,"orbitIndex":39,"skill":21227,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery6"},"21245":{"connections":[],"group":548,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":21245,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical15"},"21251":{"connections":[],"group":506,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Replenishing Horde","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Isolation","Disgust"],"skill":21251,"stats":["25% Chance to revive a random Permanent Minion whenever you use a Command Skill","25% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"DeliriumAnoint_ReplenishingHorde"},"21274":{"connections":[{"id":39298,"orbit":0}],"group":904,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21274,"stats":["+5 to any Attribute"],"stringId":"attributes46"},"21279":{"connections":[{"id":35534,"orbit":-3}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect and Blind Effect","orbit":2,"orbitIndex":21,"skill":21279,"stats":["8% increased Effect of your Mark Skills","10% increased Blind Effect"],"stringId":"marks29"},"21280":{"connections":[{"id":28050,"orbit":0},{"id":61312,"orbit":0},{"id":40630,"orbit":0}],"group":1085,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21280,"stats":["+5 to any Attribute"],"stringId":"dexterity21"},"21284":{"ascendancyName":"Oracle","connections":[{"id":30904,"orbit":2147483647}],"group":8,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Life and Mana Regeneration Rate","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":21284,"stats":["8% increased Life Regeneration rate","8% increased Mana Regeneration Rate"],"stringId":"AscendancyDruid1Small3"},"21286":{"connections":[{"id":4128,"orbit":4},{"id":45992,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":14,"skill":21286,"stats":["15% increased Armour"],"stringId":"armour21_"},"21291":{"connections":[{"id":59785,"orbit":0},{"id":32836,"orbit":-7}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Slow Effect on You","orbit":2,"orbitIndex":17,"skill":21291,"stats":["10% increased Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"armour24_"},"21314":{"connections":[{"id":50912,"orbit":-4}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":17,"skill":21314,"stats":["10% increased Attack Damage"],"stringId":"attack50"},"21324":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":2,"orbitIndex":7,"skill":21324,"stats":[],"stringId":"mastery_block87"},"21327":{"connections":[{"id":56876,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Energy Shield if Consumed Power Charge","orbit":2,"orbitIndex":14,"skill":21327,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_charges11"},"21336":{"connections":[{"id":62984,"orbit":0}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":2,"orbitIndex":19,"skill":21336,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield26"},"21349":{"connections":[],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFoxNotable.dds","isNotable":true,"name":"The Quick Fox","orbit":2,"orbitIndex":4,"recipe":["Isolation","Despair","Suffering"],"skill":21349,"stats":["20% increased Deflection Rating while moving"],"stringId":"azmerianimals24_"},"21374":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":243,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":7,"orbitIndex":21,"skill":21374,"stats":[],"stringId":"oracle_beast_corruption_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21380":{"connections":[],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Preemptive Strike","orbit":7,"orbitIndex":9,"recipe":["Guilt","Disgust","Greed"],"skill":21380,"stats":["100% increased Critical Damage Bonus against Enemies that are on Full Life"],"stringId":"criticals39"},"21387":{"connections":[{"id":53719,"orbit":0},{"id":3988,"orbit":0}],"group":192,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21387,"stats":["+5 to any Attribute"],"stringId":"strength67"},"21390":{"connections":[{"id":7972,"orbit":0}],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":12,"skill":21390,"stats":["20% increased Endurance Charge Duration"],"stringId":"endurance_charges3"},"21404":{"connections":[{"id":42825,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":18,"skill":21404,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery33"},"21413":{"connections":[{"id":28408,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start ","orbit":7,"orbitIndex":19,"skill":21413,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage28"},"21438":{"connections":[{"id":1019,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":21438,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion7"},"21453":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":10286,"orbit":0}],"group":230,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Breakage","orbit":0,"orbitIndex":0,"recipe":["Fear","Envy","Greed"],"skill":21453,"stats":["Break 60% increased Armour","10% chance to Defend with 200% of Armour"],"stringId":"armour_break34"},"21468":{"connections":[{"id":39274,"orbit":6}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":3,"orbitIndex":12,"skill":21468,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech19"},"21495":{"connections":[],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":14,"skill":21495,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks12"},"21519":{"ascendancyName":"Spirit Walker","connections":[{"id":765,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Shared Companion Damage","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":6,"orbitIndex":41,"skill":21519,"stats":["Companions deal 10% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"AscendancyHuntress2Small4"},"21537":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Fervour","orbit":2,"orbitIndex":16,"recipe":["Fear","Guilt","Isolation"],"skill":21537,"stats":["+2 to Maximum Frenzy Charges"],"stringId":"frenzy_charges9"},"21540":{"connections":[{"id":27658,"orbit":-3}],"group":874,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":21540,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup3"},"21549":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":58,"skill":21549,"stats":["20% increased Physical Damage"],"stringId":"oracle_hierarchy2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21560":{"connections":[{"id":44405,"orbit":-2},{"id":46819,"orbit":2147483647}],"group":800,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":21560,"stats":["12% increased Lightning Damage"],"stringId":"lightning62"},"21567":{"connections":[{"id":59710,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Spell Damage","orbit":7,"orbitIndex":23,"skill":21567,"stats":["12% increased Spell Damage if you have Shapeshifted to Human form Recently"],"stringId":"shapeshifting16"},"21568":{"connections":[{"id":26196,"orbit":0},{"id":26300,"orbit":-5},{"id":41105,"orbit":0},{"id":1040,"orbit":-7}],"group":303,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21568,"stats":["+5 to any Attribute"],"stringId":"attributes52"},"21572":{"connections":[{"id":6660,"orbit":-7},{"id":7526,"orbit":0}],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":2,"orbitIndex":20,"skill":21572,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments1"},"21606":{"connections":[{"id":2606,"orbit":0},{"id":29148,"orbit":0}],"group":627,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":12,"skill":21606,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence32"},"21627":{"connections":[{"id":19796,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":2,"orbitIndex":12,"skill":21627,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed24"},"21670":{"connections":[{"id":29358,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":1,"orbitIndex":7,"skill":21670,"stats":["15% increased Stun Buildup"],"stringId":"stun7"},"21684":{"connections":[{"id":1214,"orbit":5}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block and Shield Defences","orbit":2,"orbitIndex":6,"skill":21684,"stats":["4% increased Block chance","15% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block3"},"21713":{"connections":[{"id":11604,"orbit":0},{"id":50588,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":20,"skill":21713,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy12"},"21716":{"connections":[{"id":9583,"orbit":-5}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":4,"orbitIndex":9,"skill":21716,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech25"},"21721":{"connections":[{"id":15899,"orbit":0},{"id":55066,"orbit":0},{"id":62194,"orbit":2147483647}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":3,"orbitIndex":4,"skill":21721,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed23"},"21746":{"connections":[{"id":46782,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":21746,"stats":["+5 to any Attribute"],"stringId":"dexterity11"},"21748":{"connections":[{"id":54725,"orbit":0},{"id":6570,"orbit":0}],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Impending Doom","orbit":7,"orbitIndex":6,"recipe":["Envy","Isolation","Ire"],"skill":21748,"stats":["40% faster Curse Activation","Your Curses have 20% increased Magnitudes if 50% of Curse Duration expired"],"stringId":"curses5"},"21755":{"connections":[{"id":54127,"orbit":0},{"id":48635,"orbit":0},{"id":61281,"orbit":0},{"id":52274,"orbit":0}],"group":829,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":21755,"stats":["+5 to any Attribute"],"stringId":"dexterity13"},"21779":{"connections":[{"id":57204,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":19,"skill":21779,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals20"},"21784":{"connections":[{"id":50118,"orbit":0},{"id":34443,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","isNotable":true,"name":"Pack Encouragement","orbit":7,"orbitIndex":11,"recipe":["Isolation","Disgust","Despair"],"skill":21784,"stats":["5% increased Attack Damage for each Minion in your Presence, up to a maximum of 80%"],"stringId":"companions35"},"21788":{"connections":[{"id":8573,"orbit":0},{"id":34612,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":21,"skill":21788,"stats":["12% increased Damage with Bows"],"stringId":"bow4"},"21792":{"connections":[{"id":29899,"orbit":2}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Life and Mana on Kill","orbit":1,"orbitIndex":0,"skill":21792,"stats":["Recover 1% of maximum Life on Kill","Recover 1% of maximum Mana on Kill"],"stringId":"slaying4"},"21801":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":1,"orbitIndex":10,"skill":21801,"stats":[],"stringId":"mastery_chaos47"},"21809":{"connectionArt":"CharacterPlanned","connections":[{"id":19162,"orbit":-6}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":54,"skill":21809,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"21861":{"connections":[{"id":65243,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":18,"skill":21861,"stats":["20% increased Presence Area of Effect"],"stringId":"auras12"},"21871":{"connections":[{"id":51847,"orbit":0},{"id":37872,"orbit":0},{"id":25213,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage with nearby Ally","orbit":7,"orbitIndex":8,"skill":21871,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"stringId":"attack30"},"21885":{"connections":[{"id":1352,"orbit":0}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":7,"orbitIndex":14,"skill":21885,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold27"},"21945":{"connections":[{"id":61718,"orbit":0},{"id":26572,"orbit":0},{"id":39128,"orbit":0},{"id":54545,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Damage and Criticals vs Dazed Enemies","orbit":0,"orbitIndex":0,"skill":21945,"stats":["5% chance to Daze on Hit"],"stringId":"daze_3"},"21982":{"connections":[{"id":47371,"orbit":0}],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Bleeding Chance","orbit":2,"orbitIndex":18,"skill":21982,"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"stringId":"warcries2"},"21984":{"connections":[{"id":61403,"orbit":0}],"group":1234,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":4,"skill":21984,"stats":[],"stringId":"jewel_slot1979"},"21985":{"connections":[{"id":48925,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Skill Effect Duration","orbit":7,"orbitIndex":4,"skill":21985,"stats":["10% increased Skill Effect Duration"],"stringId":"chill_and_freeze30"},"22045":{"connections":[{"id":13505,"orbit":3}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":14,"skill":22045,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration10"},"22049":{"connections":[{"id":60505,"orbit":0}],"group":1099,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","id":28255,"name":"Melee and Projectile Damage","stats":["10% increased Melee Damage","10% increased Projectile Damage"]}},"orbit":0,"orbitIndex":0,"skill":22049,"stats":["10% increased Projectile Damage"],"stringId":"ranged6"},"22057":{"connections":[{"id":30143,"orbit":2},{"id":36808,"orbit":4}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Defences","orbit":7,"orbitIndex":21,"skill":22057,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block20"},"22063":{"connections":[{"id":5797,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Freeze Buildup and Cold Damage","orbit":2,"orbitIndex":22,"skill":22063,"stats":["8% increased Cold Damage","8% increased Freeze Buildup"],"stringId":"daze_16"},"22115":{"connections":[{"id":61263,"orbit":0},{"id":59446,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Intelligence","orbit":1,"orbitIndex":10,"skill":22115,"stats":["+8 to Intelligence"],"stringId":"azmerianimals65"},"22133":{"connectionArt":"CharacterPlanned","connections":[{"id":39857,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":22133,"stats":["Minions have 25% increased Cooldown Recovery Rate for Command Skills"],"stringId":"oracle_solo_commander2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22141":{"connections":[{"id":54521,"orbit":0},{"id":51797,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":6,"skill":22141,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup8"},"22147":{"ascendancyName":"Chronomancer","connections":[{"id":18678,"orbit":0},{"id":50219,"orbit":0},{"id":1579,"orbit":0},{"id":27990,"orbit":-4},{"id":43128,"orbit":4},{"id":54194,"orbit":0}],"group":379,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Chronomancer","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":22147,"stats":[],"stringId":"AscendancySorceress2Start"},"22152":{"connections":[{"id":10382,"orbit":0},{"id":15304,"orbit":0}],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":10,"skill":22152,"stats":["3% increased Cast Speed"],"stringId":"cast_speed13"},"22185":{"connections":[{"id":17796,"orbit":5}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry Rate","orbit":3,"orbitIndex":9,"skill":22185,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies21"},"22188":{"connections":[{"id":38763,"orbit":-4},{"id":21274,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":0,"skill":22188,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds7"},"22208":{"connections":[{"id":15207,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Critical Chance","orbit":7,"orbitIndex":18,"skill":22208,"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"stringId":"accuracy11"},"22219":{"connections":[{"id":52351,"orbit":-7}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":16,"skill":22219,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers6"},"22221":{"connectionArt":"CharacterPlanned","connections":[{"id":57079,"orbit":-7}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":22221,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_big_family7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"22270":{"connections":[{"id":1144,"orbit":0},{"id":12471,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":13,"skill":22270,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy50"},"22271":{"connections":[{"id":15083,"orbit":0}],"group":887,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":22271,"stats":["15% increased chance to Shock"],"stringId":"lightning23_"},"22290":{"connections":[{"id":48821,"orbit":-6},{"id":36302,"orbit":0}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":3,"orbitIndex":12,"skill":22290,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals10"},"22314":{"connections":[{"id":51184,"orbit":0},{"id":51968,"orbit":5}],"group":775,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":53140,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":0,"orbitIndex":0,"skill":22314,"stats":["8% increased Elemental Damage"],"stringId":"elemental14"},"22329":{"connections":[{"id":58526,"orbit":-2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":11,"skill":22329,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect36"},"22331":{"connections":[{"id":8983,"orbit":0},{"id":40200,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Resistances","orbit":1,"orbitIndex":3,"skill":22331,"stats":["Minions have +8% to all Elemental Resistances"],"stringId":"minion_defence11__"},"22359":{"connections":[{"id":60692,"orbit":-2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":36,"skill":22359,"stats":["10% increased Elemental Damage"],"stringId":"elemental41_"},"22368":{"connections":[{"id":63182,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":4,"orbitIndex":5,"skill":22368,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions20"},"22393":{"connections":[{"id":28458,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":12,"skill":22393,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence5"},"22419":{"connections":[{"id":18407,"orbit":0},{"id":4739,"orbit":0}],"group":779,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":22419,"stats":["+5 to any Attribute"],"stringId":"intelligence11"},"22439":{"connections":[{"id":5936,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":22439,"stats":["10% increased Elemental Damage"],"stringId":"elemental21"},"22484":{"connections":[{"id":5398,"orbit":-4}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast Speed","orbit":7,"orbitIndex":18,"skill":22484,"stats":["Spells Cast by Totems have 4% increased Cast Speed"],"stringId":"totems32"},"22517":{"connections":[{"id":59644,"orbit":4},{"id":32896,"orbit":-4}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":0,"skill":22517,"stats":["8% chance to Poison on Hit"],"stringId":"poison33"},"22532":{"connections":[{"id":60488,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Fearful Paralysis","orbit":2,"orbitIndex":1,"recipe":["Disgust","Fear","Ire"],"skill":22532,"stats":["Enemies are Intimidated for 4 seconds when you Immobilise them"],"stringId":"immobilisation6"},"22533":{"connections":[{"id":26663,"orbit":-2},{"id":21274,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":23,"skill":22533,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns17"},"22538":{"connections":[{"id":64659,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":18,"skill":22538,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slowed_enemies17"},"22541":{"ascendancyName":"Smith of Kitava","connections":[],"group":5,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaTriggerFireSpellsMeleeWeapon.dds","isNotable":true,"name":"Heat of the Forge","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":22541,"stats":["Grants Skill: Fire Spell on Hit"],"stringId":"AscendancyWarrior3Notable1"},"22556":{"connections":[{"id":11257,"orbit":0},{"id":35028,"orbit":7}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Evasion while Surrounded","orbit":3,"orbitIndex":15,"skill":22556,"stats":["30% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded4"},"22558":{"connections":[{"id":55933,"orbit":0},{"id":20547,"orbit":0},{"id":62378,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":66,"skill":22558,"stats":["+5 to any Attribute"],"stringId":"strength9"},"22565":{"connections":[{"id":26648,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":1,"skill":22565,"stats":["10% increased Armour","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"deflect31"},"22616":{"connections":[{"id":51052,"orbit":0},{"id":17468,"orbit":0},{"id":48631,"orbit":0},{"id":19122,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":22616,"stats":["+5 to any Attribute"],"stringId":"strength11"},"22626":{"connections":[{"id":45227,"orbit":0},{"id":48717,"orbit":0}],"group":208,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Irreparable","orbit":7,"orbitIndex":4,"recipe":["Guilt","Despair","Disgust"],"skill":22626,"stats":["100% increased Armour Break Duration"],"stringId":"armour_break36"},"22661":{"ascendancyName":"Ritualist","connections":[{"id":30233,"orbit":8}],"group":1622,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":22661,"stats":["3% increased Movement Speed"],"stringId":"AscendancyHuntress3Small8"},"22682":{"connections":[],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":4,"skill":22682,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"spells21_"},"22691":{"connections":[{"id":39037,"orbit":-6},{"id":61027,"orbit":-9}],"group":867,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":19990,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":0,"orbitIndex":0,"skill":22691,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery29"},"22697":{"connections":[{"id":43250,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Lightning Resistance","orbit":2,"orbitIndex":10,"skill":22697,"stats":["+5% to Lightning Resistance"],"stringId":"shaman3"},"22710":{"connections":[{"id":45111,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":8,"skill":22710,"stats":["20% increased Curse Duration"],"stringId":"curses12"},"22713":{"connections":[{"id":19722,"orbit":0},{"id":4959,"orbit":0},{"id":19003,"orbit":0}],"group":1300,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":6,"skill":22713,"stats":["10% increased Cold Damage"],"stringId":"cold3"},"22726":{"connections":[],"group":1462,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"Storm's Rebuke","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Suffering","Suffering"],"skill":22726,"stats":["Fully Broken Armour you inflict also increases Cold and Lightning Damage Taken from Hits"],"stringId":"DeliriumAnoint_StormsRebuke_"},"22783":{"connections":[{"id":18160,"orbit":0},{"id":17501,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":10,"skill":22783,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation1"},"22784":{"connections":[{"id":17057,"orbit":7},{"id":13515,"orbit":0}],"group":730,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect on You","orbit":2,"orbitIndex":6,"skill":22784,"stats":["10% reduced effect of Shock on you"],"stringId":"ground12"},"22795":{"connections":[{"id":28992,"orbit":0},{"id":42781,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","id":29915,"name":"Melee and Projectile Damage","stats":["10% increased Melee Damage","10% increased Projectile Damage"]}},"orbit":7,"orbitIndex":21,"skill":22795,"stats":["10% increased Projectile Damage"],"stringId":"projectiles16"},"22811":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":3170,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCatNotable.dds","isNotable":true,"name":"The Wild Cat","orbit":2,"orbitIndex":0,"recipe":["Disgust","Fear","Guilt"],"skill":22811,"stats":["Gain Deflection Rating equal to 12% of Evasion Rating","40% increased Evasion Rating while moving","+10 to Dexterity"],"stringId":"azmerianimals42"},"22817":{"connections":[{"id":55724,"orbit":0},{"id":29065,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Inevitable Rupture","orbit":3,"orbitIndex":18,"recipe":["Greed","Ire","Paranoia"],"skill":22817,"stats":["10% chance for Attack Hits to apply ten Incision"],"stringId":"bleed31"},"22821":{"connections":[{"id":3823,"orbit":0},{"id":22314,"orbit":0}],"group":775,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":183,"name":"Minion Damage","stats":["Minions deal 10% increased Damage"]}},"orbit":7,"orbitIndex":0,"skill":22821,"stats":["10% increased Elemental Damage"],"stringId":"cold2"},"22851":{"connections":[{"id":50268,"orbit":2147483647}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Cold and Lightning Damage","orbit":2,"orbitIndex":0,"skill":22851,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"stringId":"monkchakra21"},"22864":{"connections":[{"id":57966,"orbit":0}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Tainted Strike","orbit":3,"orbitIndex":21,"recipe":["Ire","Despair","Greed"],"skill":22864,"stats":["20% increased Critical Hit Chance for Attacks","30% increased Magnitude of Non-Damaging Ailments you inflict with Critical Hits"],"stringId":"criticals79"},"22873":{"connections":[{"id":7777,"orbit":7},{"id":64318,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":4,"skill":22873,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"stringId":"elemental4"},"22908":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":24,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus6.dds","isNotable":true,"name":"Tribute to Utula","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":22908,"stats":["Body Armour grants 30% increased Spirit"],"stringId":"AscendancyWarrior3Notable6_6"},"22927":{"connections":[{"id":20582,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude and Duration","orbit":6,"orbitIndex":24,"skill":22927,"stats":["6% increased Parried Debuff Magnitude","8% increased Parried Debuff Duration"],"stringId":"buckler11"},"22928":{"connections":[{"id":27373,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":69,"skill":22928,"stats":["+5 to any Attribute"],"stringId":"strength20"},"22949":{"connections":[{"id":35171,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":3,"orbitIndex":20,"skill":22949,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells4_"},"22959":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[],"group":999,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":22959,"stats":[],"stringId":"mastery_curse75"},"22962":{"connections":[{"id":22817,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":7,"orbitIndex":14,"skill":22962,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed39"},"22967":{"connections":[{"id":49198,"orbit":-7},{"id":38921,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Vigilance","orbit":3,"orbitIndex":1,"recipe":["Guilt","Envy","Guilt"],"skill":22967,"stats":["12% increased Block chance","10 Life gained when you Block","+2% to maximum Block chance"],"stringId":"shield25"},"22972":{"connections":[{"id":43238,"orbit":0},{"id":50879,"orbit":0}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":8,"skill":22972,"stats":["16% increased Hazard Damage"],"stringId":"hazards6"},"22975":{"connections":[{"id":27439,"orbit":0},{"id":26725,"orbit":0},{"id":51702,"orbit":0}],"group":325,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":22975,"stats":["+5 to any Attribute"],"stringId":"attributes58"},"22976":{"connections":[{"id":42250,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":6,"orbitIndex":12,"skill":22976,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life14"},"23005":{"ascendancyName":"Warbringer","connections":[{"id":10072,"orbit":0}],"group":54,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBlockChance.dds","isNotable":true,"name":"Renly's Training","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":23005,"stats":["Gain 35% Base Chance to Block from Equipped Shield instead of the Shield's value"],"stringId":"AscendancyWarrior2Notable8"},"23013":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":42,"skill":23013,"stats":[],"stringId":"mastery_attack280"},"23036":{"connections":[{"id":3339,"orbit":0},{"id":59208,"orbit":2}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":15,"skill":23036,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded14"},"23039":{"connections":[{"id":64770,"orbit":-5}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Energy Shield Delay and Armour Applies to Elemental Damage","orbit":3,"orbitIndex":16,"skill":23039,"stats":["+3% of Armour also applies to Elemental Damage","5% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour23"},"23040":{"connections":[{"id":38493,"orbit":4}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":14,"skill":23040,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals58"},"23046":{"connections":[{"id":47976,"orbit":5}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":4,"orbitIndex":27,"skill":23046,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery8"},"23062":{"connections":[{"id":19122,"orbit":0}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Armour if Consumed Endurance Charge","orbit":2,"orbitIndex":0,"skill":23062,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"endurance_charges10"},"23078":{"connections":[{"id":47242,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","isNotable":true,"name":"Holy Protector","orbit":3,"orbitIndex":16,"recipe":["Disgust","Despair","Suffering"],"skill":23078,"stats":["Minions have 25% increased maximum Life","10% increased Block chance"],"stringId":"sentinels11"},"23091":{"connections":[{"id":45885,"orbit":0},{"id":39515,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":23091,"stats":["12% increased Fire Damage"],"stringId":"fire13"},"23105":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1496,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":23105,"stats":[],"stringId":"mastery_attack6"},"23153":{"connections":[{"id":23996,"orbit":0},{"id":39298,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":14,"skill":23153,"stats":["15% increased Ballista damage"],"stringId":"ballista10"},"23192":{"connections":[],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":42,"skill":23192,"stats":["5% increased Block chance"],"stringId":"block2"},"23195":{"connections":[{"id":55375,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","name":"Life and Mana Regeneration Rate","orbit":2,"orbitIndex":1,"skill":23195,"stats":["10% increased Life Regeneration rate","10% increased Mana Regeneration Rate"],"stringId":"companions48"},"23221":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Trick Shot","orbit":3,"orbitIndex":23,"recipe":["Suffering","Isolation","Guilt"],"skill":23221,"stats":["Projectiles have 15% chance to Chain an additional time from terrain"],"stringId":"ranged33"},"23227":{"connections":[],"group":643,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Initiative","orbit":4,"orbitIndex":0,"recipe":["Greed","Ire","Envy"],"skill":23227,"stats":["30% increased Melee Damage when on Full Life","16% increased Attack Speed if you haven't Attacked Recently"],"stringId":"melee40"},"23244":{"connections":[{"id":21792,"orbit":2},{"id":6912,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Bounty Hunter","orbit":7,"orbitIndex":3,"recipe":["Despair","Suffering","Guilt"],"skill":23244,"stats":["Recover 1% of maximum Life on Kill","Recover 1% of maximum Mana on Kill","25% increased Culling Strike Threshold"],"stringId":"slaying11"},"23253":{"connections":[{"id":15625,"orbit":0},{"id":22811,"orbit":0}],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion","orbit":2,"orbitIndex":6,"skill":23253,"stats":["15% increased Evasion Rating"],"stringId":"azmerianimals39"},"23259":{"connections":[{"id":22864,"orbit":0}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":21,"skill":23259,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals78"},"23265":{"ascendancyName":"Disciple of Varashta","connections":[{"id":13289,"orbit":8}],"flavourText":"\"Listen not to his simpering words. He means to languish before you to weaken your resolve! He is duplicitous. An assassin, thriving on deception and lies. His lust for power is what drove his choice!\" \\n\\nOutrage trembled in Ruzhan's voice at the sentencing.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnExplosiveTeleport.dds","isNotable":true,"name":"Kelari's Deception","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":9,"orbitIndex":38,"skill":23265,"stats":["Grants Skill: Kelari's Deception"],"stringId":"AscendancySorceress3Notable13"},"23305":{"connections":[{"id":21279,"orbit":-3},{"id":51602,"orbit":0}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":3,"skill":23305,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks28"},"23307":{"connections":[{"id":10100,"orbit":0},{"id":59945,"orbit":0},{"id":59886,"orbit":0}],"group":200,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":23307,"stats":["+5 to any Attribute"],"stringId":"strength59_"},"23331":{"connections":[{"id":2344,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":1,"orbitIndex":3,"skill":23331,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"oracle2"},"23343":{"connections":[{"id":58388,"orbit":3}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":21,"skill":23343,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks24"},"23352":{"ascendancyName":"Lich","connections":[{"id":8611,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds","isNotable":true,"isSwitchable":true,"name":"Rupture the Soul","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/LichCursedEnemiesExplodeChaos.dds","id":390,"name":"Rupture the Flesh","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Cursed Enemies Killed by you, or by Allies in your Presence, have a 33% chance to Explode, dealing a quarter of their maximum Life as Physical Damage"]}},"orbit":8,"orbitIndex":62,"skill":23352,"stats":["Cursed Enemies killed by you, or by Allies in your Presence, have a 33% chance to explode, dealing a quarter of their maximum Life as Chaos damage"],"stringId":"AscendancyWitch3Notable2"},"23360":{"connections":[{"id":53566,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Reduced Movement Penalty and Attack Damage while Moving","orbit":4,"orbitIndex":33,"skill":23360,"stats":["8% increased Attack Damage while moving","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"slow_mitigation13"},"23362":{"connections":[{"id":32672,"orbit":0},{"id":50403,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Slippery Ice","orbit":3,"orbitIndex":9,"recipe":["Despair","Disgust","Greed"],"skill":23362,"stats":["25% reduced Effect of Chill on you","Unaffected by Chill during Dodge Roll"],"stringId":"freeze_and_chill_mitigation10"},"23364":{"connections":[{"id":33781,"orbit":2},{"id":48614,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area and Presence","orbit":0,"orbitIndex":0,"skill":23364,"stats":["9% increased Presence Area of Effect","3% increased Area of Effect"],"stringId":"auras31"},"23373":{"connections":[{"id":23428,"orbit":0},{"id":8493,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":22,"skill":23373,"stats":["12% increased Grenade Damage"],"stringId":"grenades19"},"23374":{"connections":[{"id":2500,"orbit":0}],"group":1536,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":0,"orbitIndex":0,"skill":23374,"stats":["8% chance to Poison on Hit"],"stringId":"poison10"},"23382":{"connections":[{"id":59093,"orbit":0},{"id":7960,"orbit":0},{"id":9065,"orbit":0},{"id":54297,"orbit":0},{"id":8982,"orbit":0},{"id":9884,"orbit":4}],"group":344,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":23382,"stats":["+5 to any Attribute"],"stringId":"intelligence41__"},"23415":{"ascendancyName":"Invoker","connections":[{"id":8143,"orbit":9}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Evasion and Energy Shield","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":9,"orbitIndex":14,"skill":23415,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"stringId":"AscendancyMonk2Small1"},"23416":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageDamageLeechedLife.dds","isNotable":true,"name":"Vitality Siphon","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":6,"orbitIndex":64,"skill":23416,"stats":["20% of Spell Damage Leeched as Life"],"stringId":"AscendancyWitch2Notable6"},"23419":{"connections":[{"id":55930,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":20,"skill":23419,"stats":["15% increased Glory generation"],"stringId":"glory18"},"23427":{"connections":[{"id":62914,"orbit":5}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Chilled to the Bone","orbit":4,"orbitIndex":54,"recipe":["Suffering","Despair","Despair"],"skill":23427,"stats":["20% increased Chill Duration on Enemies","30% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze14"},"23428":{"connections":[{"id":47623,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":18,"skill":23428,"stats":["12% increased Grenade Damage"],"stringId":"grenades20"},"23436":{"connectionArt":"CharacterPlanned","connections":[{"id":29197,"orbit":-3}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":39,"skill":23436,"stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"stringId":"oracle_archon_crit2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23450":{"connections":[{"id":558,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":6,"skill":23450,"stats":["12% increased Fire Damage"],"stringId":"fire11_"},"23455":{"connections":[{"id":49740,"orbit":0},{"id":55847,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":23455,"stats":["10% increased Cold Damage"],"stringId":"cold_penetration13"},"23508":{"ascendancyName":"Deadeye","connections":[],"group":1560,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesHaveMoreEffect.dds","isNotable":true,"name":"Thrilling Chase","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":23508,"stats":["Benefits from consuming Frenzy Charges for your Skills have 50% chance to be doubled"],"stringId":"AscendancyRanger1Notable6"},"23547":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":23547,"stats":[],"stringId":"mastery_chaos48"},"23570":{"connections":[{"id":41031,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":18,"skill":23570,"stats":["+5 to any Attribute"],"stringId":"strength26"},"23587":{"ascendancyName":"Invoker","connections":[{"id":25434,"orbit":7},{"id":29133,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerChillChanceBasedOnDamage.dds","isNotable":true,"name":"I am the Blizzard...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":5,"orbitIndex":9,"skill":23587,"stats":["Gain 10% of Damage as Extra Cold Damage","On Freezing Enemies create Chilled Ground"],"stringId":"AscendancyMonk2Notable4"},"23608":{"connections":[{"id":61741,"orbit":2},{"id":24401,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":20,"skill":23608,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison19"},"23630":{"connections":[{"id":19794,"orbit":7},{"id":17885,"orbit":7},{"id":38320,"orbit":0}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Self Immolation","orbit":4,"orbitIndex":0,"recipe":["Suffering","Despair","Fear"],"skill":23630,"stats":["Ignites you cause are reflected back to you","40% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation13"},"23650":{"connections":[{"id":43895,"orbit":3}],"group":618,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration on Low Life","orbit":2,"orbitIndex":12,"skill":23650,"stats":["15% increased Life Regeneration Rate while on Low Life"],"stringId":"life_regeneration5"},"23667":{"connections":[{"id":25312,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":5,"orbitIndex":40,"skill":23667,"stats":["16% increased Totem Life"],"stringId":"totems45"},"23702":{"connections":[{"id":55802,"orbit":0},{"id":57196,"orbit":0},{"id":63445,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":10,"skill":23702,"stats":["3% increased Attack Speed"],"stringId":"attack_speed42"},"23708":{"connectionArt":"CharacterPlanned","connections":[{"id":3896,"orbit":2147483647}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":12,"skill":23708,"stats":["30% increased Armour while Bleeding"],"stringId":"oracle_iron_blood3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23710":{"ascendancyName":"Lich","connections":[{"id":58751,"orbit":0},{"id":2995,"orbit":5},{"id":51142,"orbit":-4},{"id":39241,"orbit":-6},{"id":33141,"orbit":5},{"id":62797,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"isSwitchable":true,"name":"Lich","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":9,"orbitIndex":0,"skill":23710,"stats":[],"stringId":"AscendancyWitch3Start_"},"23724":{"connections":[{"id":7275,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":7,"orbitIndex":22,"skill":23724,"stats":["10% increased Lightning Damage"],"stringId":"shock_mitigation11"},"23736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Spray and Pray","orbit":4,"orbitIndex":38,"recipe":["Fear","Greed","Suffering"],"skill":23736,"stats":["20% reduced Accuracy Rating while moving","50% increased Attack Damage while moving","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"slow_mitigation15"},"23738":{"connections":[{"id":34520,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Madness in the Bones","orbit":0,"orbitIndex":0,"recipe":["Ire","Paranoia","Suffering"],"skill":23738,"stats":["Gain 8% of Physical Damage as extra Chaos Damage"],"stringId":"physical33"},"23764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":997,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Alternating Current","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Suffering"],"skill":23764,"stats":["25% increased Mana Regeneration Rate if you have Shocked an Enemy Recently","20% increased Magnitude of Shock you inflict"],"stringId":"lightning45"},"23786":{"connections":[{"id":33391,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Critical Bleeding Effect","orbit":2,"orbitIndex":9,"skill":23786,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"stringId":"bleed3"},"23797":{"connections":[{"id":31370,"orbit":2147483647}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Lightning Damage","orbit":2,"orbitIndex":8,"skill":23797,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"stringId":"armour43"},"23822":{"connections":[{"id":9652,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":0,"skill":23822,"stats":["3% of Damage taken Recouped as Life"],"stringId":"deflect61"},"23825":{"connections":[{"id":24325,"orbit":7},{"id":11572,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate","orbit":7,"orbitIndex":15,"skill":23825,"stats":["10% increased Life Regeneration rate"],"stringId":"life_recoup10"},"23839":{"connections":[{"id":51006,"orbit":-2}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":2,"orbitIndex":2,"skill":23839,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"mana_flasks7"},"23861":{"connections":[],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage and Stun","orbit":7,"orbitIndex":8,"skill":23861,"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"stringId":"two_handed10"},"23879":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":374,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":23879,"stats":[],"stringId":"mastery_shapeshifting_6688"},"23880":{"ascendancyName":"Infernalist","connections":[{"id":13174,"orbit":3}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Mana","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":0,"skill":23880,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch1Small7"},"23888":{"connections":[{"id":7390,"orbit":7},{"id":54099,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":0,"skill":23888,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion21"},"23905":{"connections":[{"id":27875,"orbit":0}],"group":1255,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":23905,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock20"},"23907":{"connections":[{"id":17044,"orbit":2147483647},{"id":39476,"orbit":0},{"id":6554,"orbit":-2}],"group":792,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Ice Storm","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Disgust"],"skill":23907,"stats":["15% reduced Effect of Chill on you","Gain 6% of Cold damage as Extra Lightning damage","15% increased Magnitude of Chill you inflict"],"stringId":"cold68"},"23915":{"connections":[{"id":41529,"orbit":-1}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":23915,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals23"},"23930":{"connections":[{"id":46024,"orbit":0},{"id":58295,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":40,"skill":23930,"stats":["10% increased Elemental Damage"],"stringId":"elemental8_"},"23932":{"connectionArt":"CharacterPlanned","connections":[{"id":8423,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":69,"skill":23932,"stats":["5% increased Attack Speed with Bows"],"stringId":"oracle_bow_movement7_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"23939":{"connections":[{"id":857,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Glazed Flesh","orbit":7,"orbitIndex":12,"recipe":["Isolation","Fear","Fear"],"skill":23939,"stats":["3% of Damage Taken Recouped as Life, Mana and Energy Shield"],"stringId":"life_recoup18"},"23940":{"connections":[{"id":14342,"orbit":3},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Fortified Aegis","orbit":7,"orbitIndex":20,"recipe":["Isolation","Envy","Ire"],"skill":23940,"stats":["100% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"energy_shield_and_armour12"},"23960":{"aliasPassiveSocket":"voices_jewel_slot3__","connections":[],"group":701,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":23960,"stats":[],"stringId":"voices_jewel_slot3__"},"23961":{"connections":[{"id":8791,"orbit":-2}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Ailment Threshold and Companion Resistance","orbit":7,"orbitIndex":4,"skill":23961,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"stringId":"companions33"},"23993":{"connections":[{"id":42981,"orbit":0},{"id":52684,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":2,"orbitIndex":12,"skill":23993,"stats":["12% increased Physical Damage"],"stringId":"armour_break29"},"23996":{"connections":[{"id":63828,"orbit":0},{"id":57785,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":23996,"stats":["15% increased Ballista damage"],"stringId":"ballista9"},"24009":{"connections":[{"id":34433,"orbit":-4},{"id":21755,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":27,"skill":24009,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion19"},"24035":{"connections":[{"id":60741,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":18,"skill":24035,"stats":["10% increased Elemental Damage"],"stringId":"elemental60"},"24039":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToEnergyShield.dds","isNotable":true,"name":"Beidat's Hand","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":5,"orbitIndex":51,"skill":24039,"stats":["Reserves 25% of Life","+1 to Maximum Energy Shield per 8 Maximum Life"],"stringId":"AscendancyWitch1Notable2"},"24045":{"connections":[],"group":995,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":9,"skill":24045,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks3"},"24060":{"connections":[{"id":3091,"orbit":2147483647}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":1,"orbitIndex":2,"skill":24060,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion12"},"24062":{"connections":[{"id":54351,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","isNotable":true,"name":"Immortal Infamy","orbit":5,"orbitIndex":21,"recipe":["Envy","Suffering","Fear"],"skill":24062,"stats":["6% increased Life Recovery rate","Recover 2% of maximum Life on Kill","+10 to Intelligence"],"stringId":"life_on_kill13"},"24070":{"connections":[{"id":58397,"orbit":0}],"group":1403,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":0,"orbitIndex":0,"skill":24070,"stats":["+8 to Dexterity"],"stringId":"dexterity106"},"24087":{"connections":[{"id":13882,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Everlasting Infusions","orbit":3,"orbitIndex":18,"recipe":["Guilt","Suffering","Despair"],"skill":24087,"stats":["Skills have 10% chance to not remove Elemental Infusions but still count as consuming them"],"stringId":"infusion3"},"24120":{"connections":[{"id":10495,"orbit":0}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Mental Toughness","orbit":0,"orbitIndex":0,"recipe":["Envy","Fear","Greed"],"skill":24120,"stats":["18% increased Mana Regeneration Rate","25% increased Mana Cost Efficiency while on Low Mana"],"stringId":"mana20"},"24129":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":24129,"stats":[],"stringId":"mastery_critical_268"},"24135":{"ascendancyName":"Infernalist","connections":[{"id":34419,"orbit":0}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":6,"skill":24135,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyWitch1Small9"},"24150":{"connections":[{"id":44369,"orbit":-7}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":2,"orbitIndex":3,"skill":24150,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility5"},"24165":{"connections":[{"id":8908,"orbit":0},{"id":25557,"orbit":0},{"id":4328,"orbit":-6},{"id":6079,"orbit":0}],"group":1233,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24165,"stats":["+5 to any Attribute"],"stringId":"attributes56"},"24178":{"connections":[{"id":32655,"orbit":-9}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":2,"orbitIndex":15,"skill":24178,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions36"},"24210":{"connections":[{"id":26932,"orbit":-7}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":7,"orbitIndex":0,"skill":24210,"stats":["20% increased Frenzy Charge Duration"],"stringId":"azmerianimals26"},"24224":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAxePattern","connections":[],"group":186,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAxe.dds","isOnlyImage":true,"name":"Axe Mastery","orbit":0,"orbitIndex":0,"skill":24224,"stats":[],"stringId":"mastery_axe26"},"24226":{"ascendancyName":"Deadeye","connections":[],"group":1550,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMoreAccuracy.dds","isNotable":true,"name":"Bullseye","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":24226,"stats":["Apply 10 Critical Weakness to Enemies when Consuming a Mark on them"],"stringId":"AscendancyRanger1Notable8"},"24239":{"connections":[{"id":34136,"orbit":0}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":9,"skill":24239,"stats":["Gain 5 Life per enemy killed"],"stringId":"life_on_kill10"},"24240":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[{"id":11764,"orbit":-7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Time Manipulation","orbit":0,"orbitIndex":0,"recipe":["Fear","Despair","Envy"],"skill":24240,"stats":["Debuffs you inflict have 10% increased Slow Magnitude","Debuffs on you expire 20% faster"],"stringId":"slowed_enemies9"},"24256":{"connections":[{"id":63541,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":15,"skill":24256,"stats":["10% increased Evasion Rating","+5% of Armour also applies to Elemental Damage"],"stringId":"deflect33"},"24259":{"connections":[{"id":62609,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Attack Speed","orbit":5,"orbitIndex":32,"skill":24259,"stats":["Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems44"},"24269":{"connections":[{"id":1448,"orbit":-4},{"id":42118,"orbit":-5}],"group":1357,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Evasion and Companion Movement Speed","orbit":3,"orbitIndex":2,"skill":24269,"stats":["10% increased Evasion Rating","Companions have 8% increased Movement Speed"],"stringId":"companions57__"},"24287":{"connections":[{"id":34015,"orbit":0},{"id":14226,"orbit":0}],"group":1438,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24287,"stats":["+5 to any Attribute"],"stringId":"dexterity82_"},"24295":{"ascendancyName":"Deadeye","connections":[{"id":37336,"orbit":2147483647}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Frenzy Charge Duration","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":8,"orbitIndex":20,"skill":24295,"stats":["25% increased Frenzy Charge Duration"],"stringId":"AscendancyRanger1Small5"},"24325":{"connections":[{"id":40006,"orbit":7}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate and Presence","orbit":7,"orbitIndex":11,"skill":24325,"stats":["5% increased Life Regeneration rate","10% increased Presence Area of Effect"],"stringId":"life_recoup24"},"24338":{"connections":[{"id":48581,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":5,"orbitIndex":70,"skill":24338,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments5"},"24339":{"connections":[{"id":58295,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":0,"skill":24339,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks38"},"24368":{"connections":[{"id":37302,"orbit":0},{"id":40597,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":0,"skill":24368,"stats":["15% increased Ballista damage"],"stringId":"ballista5"},"24401":{"connections":[{"id":63759,"orbit":0}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":22,"skill":24401,"stats":["10% increased Poison Duration"],"stringId":"poison37"},"24420":{"connections":[{"id":33829,"orbit":0},{"id":9442,"orbit":-2}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":22,"skill":24420,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals93_"},"24430":{"connections":[{"id":3601,"orbit":0},{"id":38707,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":66,"skill":24430,"stats":["10% increased Elemental Damage"],"stringId":"elemental9"},"24438":{"connections":[{"id":46748,"orbit":0},{"id":17745,"orbit":0}],"group":519,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Hardened Wood","orbit":0,"orbitIndex":0,"recipe":["Despair","Greed","Despair"],"skill":24438,"stats":["Totems gain +20% to all Elemental Resistances","Totems have 20% additional Physical Damage Reduction"],"stringId":"totems20"},"24475":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":59759,"orbit":-9}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Resistance","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":8,"orbitIndex":8,"skill":24475,"stats":["+7% to Chaos Resistance"],"stringId":"AscendancyMonk3Small4_"},"24477":{"connections":[{"id":17532,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":2,"orbitIndex":16,"skill":24477,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold22"},"24481":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":24481,"stats":[],"stringId":"mastery_dagger80"},"24483":{"connections":[{"id":32660,"orbit":0},{"id":62661,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Direct Approach","orbit":3,"orbitIndex":17,"recipe":["Disgust","Paranoia","Paranoia"],"skill":24483,"stats":["35% increased Critical Hit Chance against Enemies that are affected","by no Elemental Ailments"],"stringId":"criticals27"},"24491":{"connections":[{"id":20140,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Invocated Echoes","orbit":4,"orbitIndex":0,"recipe":["Guilt","Greed","Isolation"],"skill":24491,"stats":["Invocated Spells have 40% chance to consume half as much Energy"],"stringId":"triggers20"},"24511":{"connections":[{"id":49696,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":6,"skill":24511,"stats":["+3 to all Attributes"],"stringId":"all_attributes15"},"24551":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":299,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":24551,"stats":[],"stringId":"mastery_mana_6596"},"24570":{"connections":[{"id":28441,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blinded Enemies Critical","orbit":2,"orbitIndex":19,"skill":24570,"stats":["Enemies Blinded by you have 15% reduced Critical Hit Chance"],"stringId":"blind13"},"24630":{"connections":[{"id":63608,"orbit":0}],"group":97,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Fulmination","orbit":0,"orbitIndex":0,"recipe":["Suffering","Suffering","Greed"],"skill":24630,"stats":["80% increased Flammability Magnitude","40% increased Damage with Hits against Ignited Enemies"],"stringId":"fire40"},"24646":{"connections":[{"id":61409,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":24646,"stats":["+12 to Strength"],"stringId":"strength103"},"24647":{"connections":[{"id":5702,"orbit":4},{"id":43691,"orbit":0},{"id":30634,"orbit":4}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":24647,"stats":["+5 to any Attribute"],"stringId":"dexterity5"},"24655":{"connections":[{"id":7333,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Breath of Fire","orbit":4,"orbitIndex":30,"recipe":["Fear","Ire","Isolation"],"skill":24655,"stats":["Damage Penetrates 15% Fire Resistance","+10 to Strength"],"stringId":"fire_penetration23_"},"24656":{"connections":[{"id":54152,"orbit":0},{"id":15814,"orbit":0}],"group":1410,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Evasion and Movement Speed while Sprinting","orbit":0,"orbitIndex":0,"skill":24656,"stats":["15% increased Evasion Rating while Sprinting","2% increased Movement Speed while Sprinting"],"stringId":"Sprint7"},"24696":{"ascendancyName":"Tactician","connections":[{"id":4086,"orbit":0}],"group":469,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Totem Damage","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":24696,"stats":["20% increased Totem Damage"],"stringId":"AscendancyMercenary1Small10"},"24721":{"connections":[],"group":1241,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Brain Freeze","orbit":0,"orbitIndex":0,"recipe":["Greed","Ire","Suffering"],"skill":24721,"stats":["20% increased Cold Damage","Enemies Frozen by you have -8% to Cold Resistance"],"stringId":"cold69_"},"24736":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":3191,"orbit":3}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Knight of Chitus","orbit":4,"orbitIndex":32,"recipe":["Isolation","Fear","Envy"],"skill":24736,"stats":["Gain Deflection Rating equal to 12% of Evasion Rating","15% increased Block chance","15% increased Parried Debuff Magnitude"],"stringId":"armour_and_evasion51"},"24748":{"connections":[{"id":4716,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":15,"skill":24748,"stats":["15% increased Evasion Rating"],"stringId":"evasion36"},"24753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":34747,"orbit":0},{"id":56567,"orbit":0},{"id":151,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Determined Precision","orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Envy"],"skill":24753,"stats":["30% increased Accuracy Rating at Close Range","+10 to Dexterity"],"stringId":"accuracy17"},"24764":{"connections":[{"id":65226,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Infusing Power","orbit":7,"orbitIndex":17,"recipe":["Fear","Paranoia","Suffering"],"skill":24764,"stats":["10% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"stringId":"infusion2"},"24766":{"connections":[{"id":11257,"orbit":-3},{"id":31566,"orbit":-7},{"id":51974,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Paranoia","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Suffering"],"skill":24766,"stats":["50% increased Surrounded Area of Effect"],"stringId":"being_surrounded22"},"24767":{"connections":[{"id":36474,"orbit":-3}],"group":354,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":2,"orbitIndex":8,"skill":24767,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus4"},"24786":{"connections":[{"id":24287,"orbit":0},{"id":30657,"orbit":0},{"id":4378,"orbit":0},{"id":21225,"orbit":0},{"id":58848,"orbit":0},{"id":12893,"orbit":0}],"group":1392,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24786,"stats":["+5 to any Attribute"],"stringId":"dexterity81"},"24801":{"connections":[{"id":40736,"orbit":7}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage and Presence Area","orbit":3,"orbitIndex":14,"skill":24801,"stats":["10% increased Presence Area of Effect","6% increased Attack Damage"],"stringId":"glory10"},"24807":{"ascendancyName":"Titan","connections":[],"group":69,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMoreBodyArmour.dds","isNotable":true,"name":"Stone Skin","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":24807,"stats":["50% more Armour from Equipped Body Armour"],"stringId":"AscendancyWarrior1Notable8"},"24812":{"connections":[{"id":64643,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":11,"skill":24812,"stats":["20% increased Power Charge Duration"],"stringId":"power_charges1"},"24813":{"connections":[{"id":20397,"orbit":3}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":14,"skill":24813,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks19"},"24825":{"connections":[{"id":16460,"orbit":-3},{"id":29479,"orbit":-3},{"id":60738,"orbit":-3}],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":10,"skill":24825,"stats":["+5 to any Attribute"],"stringId":"dexterity14"},"24843":{"connections":[{"id":1680,"orbit":-7},{"id":56860,"orbit":0}],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Evasion during Parry","orbit":7,"orbitIndex":20,"skill":24843,"stats":["25% increased Evasion Rating while Parrying"],"stringId":"buckler20"},"24855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":39347,"orbit":0},{"id":48014,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":4,"orbitIndex":58,"skill":24855,"stats":[],"stringId":"mastery_attack3"},"24868":{"ascendancyName":"Pathfinder","connections":[{"id":33736,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderCannotBeSlowed.dds","isNotable":true,"name":"Relentless Pursuit","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":9,"orbitIndex":72,"skill":24868,"stats":["Your speed is unaffected by Slows"],"stringId":"AscendancyRanger3Notable2"},"24871":{"connections":[{"id":10602,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"Attack Speed","orbit":4,"orbitIndex":4,"skill":24871,"stats":["3% increased Attack Speed with One Handed Weapons"],"stringId":"attack_speed6"},"24880":{"connections":[{"id":38501,"orbit":-7}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":5,"orbitIndex":36,"skill":24880,"stats":["3% increased Attack Speed"],"stringId":"attack_speed4"},"24883":{"connections":[{"id":44573,"orbit":1}],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Combo","orbit":2,"orbitIndex":10,"skill":24883,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"stringId":"area_attacks49"},"24889":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":7,"orbitIndex":2,"skill":24889,"stats":[],"stringId":"mastery_companion291"},"24922":{"connections":[{"id":18923,"orbit":0},{"id":64345,"orbit":0},{"id":17077,"orbit":0}],"group":1151,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":24922,"stats":["+5 to any Attribute"],"stringId":"attributes19"},"24929":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":202,"icon":"","isOnlyImage":true,"name":"Minion Mastery","orbit":2,"orbitIndex":19,"skill":24929,"stats":[],"stringId":"oracle_self_sacrificing_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"24948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1434,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":24948,"stats":[],"stringId":"mastery_companion297"},"24958":{"connections":[{"id":52464,"orbit":-4},{"id":41877,"orbit":6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":24958,"stats":["+5 to any Attribute"],"stringId":"dexterity44"},"24963":{"connections":[{"id":39298,"orbit":0},{"id":19224,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":4,"orbitIndex":63,"skill":24963,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion42_"},"24993":{"connectionArt":"CharacterPlanned","connections":[{"id":54297,"orbit":6}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":5,"skill":24993,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption11_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":569,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":25011,"stats":[],"stringId":"mastery_life141"},"25014":{"connections":[{"id":50228,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":6,"skill":25014,"stats":["16% increased Warcry Speed"],"stringId":"warcries40"},"25026":{"connections":[{"id":3567,"orbit":6}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":25026,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana31"},"25029":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Charms Mastery","orbit":5,"orbitIndex":51,"skill":25029,"stats":[],"stringId":"mastery_charms_1"},"25031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":25031,"stats":[],"stringId":"mastery_warcry250"},"25055":{"connections":[{"id":41580,"orbit":3}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Movement Speed","orbit":2,"orbitIndex":8,"skill":25055,"stats":["2% increased Movement Speed","8% increased Attack Damage"],"stringId":"attack2"},"25058":{"connectionArt":"CharacterPlanned","connections":[{"id":48828,"orbit":2147483647},{"id":4681,"orbit":2147483647}],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":12,"skill":25058,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"stringId":"oracle_frenzy_charge2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25070":{"connections":[{"id":32903,"orbit":0},{"id":11252,"orbit":0},{"id":57821,"orbit":0}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":19,"skill":25070,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks53"},"25092":{"ascendancyName":"Oracle","connections":[{"id":34313,"orbit":-6}],"group":2,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Critical Damage Bonus on You","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":25092,"stats":["Hits against you have 12% reduced Critical Damage Bonus"],"stringId":"AscendancyDruid1Small7"},"25100":{"connections":[],"flavourText":"The fewer there are, the less you have to share.","group":1105,"icon":"Art/2DArt/SkillIcons/passives/OasisKeystone2.dds","isKeystone":true,"name":"Oasis","orbit":0,"orbitIndex":0,"skill":25100,"stats":["Cannot use Charms","30% more Recovery from Flasks"],"stringId":"passive_keystone_oasis"},"25101":{"connections":[{"id":22439,"orbit":5},{"id":52199,"orbit":0},{"id":44498,"orbit":-5}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":4,"skill":25101,"stats":["10% increased Exposure Effect"],"stringId":"elemental35"},"25162":{"connections":[{"id":59785,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":10,"skill":25162,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks34"},"25170":{"connections":[{"id":30820,"orbit":3}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Skill Duration","orbit":2,"orbitIndex":22,"skill":25170,"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"stringId":"attack10"},"25172":{"ascendancyName":"Witchhunter","connections":[{"id":3704,"orbit":0}],"group":289,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":25172,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancyMercenary2Small3"},"25211":{"connections":[{"id":11330,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Waning Hindrances","orbit":3,"orbitIndex":3,"recipe":["Greed","Suffering","Fear"],"skill":25211,"stats":["Debuffs on you expire 25% faster"],"stringId":"slowed_enemies19"},"25213":{"connections":[{"id":19223,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage with nearby Ally","orbit":7,"orbitIndex":12,"skill":25213,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"stringId":"attack26"},"25229":{"connections":[{"id":21390,"orbit":0}],"group":294,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration","orbit":2,"orbitIndex":20,"skill":25229,"stats":["20% increased Endurance Charge Duration"],"stringId":"endurance_charges1_"},"25239":{"ascendancyName":"Infernalist","connections":[{"id":63894,"orbit":-3}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon1.dds","isNotable":true,"name":"Demonic Possession","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":66,"skill":25239,"stats":["Grants Skill: Demon Form"],"stringId":"AscendancyWitch1Notable5"},"25281":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":10,"skill":25281,"stats":[],"stringId":"mastery_life140"},"25300":{"connections":[{"id":61796,"orbit":0}],"group":210,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":0,"orbitIndex":0,"skill":25300,"stats":["Break 20% increased Armour"],"stringId":"armour_break1"},"25303":{"connections":[],"group":602,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":25303,"stats":["Minions have +3% to Maximum Fire Resistances","Minions have +20% to Fire Resistance"],"stringId":"minion_defence41"},"25304":{"connections":[{"id":61056,"orbit":-2}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":5,"skill":25304,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers3"},"25312":{"connections":[{"id":24259,"orbit":0},{"id":64405,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":36,"skill":25312,"stats":["15% increased Totem Damage"],"stringId":"totems43"},"25315":{"connections":[{"id":19820,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Cold Damage","orbit":2,"orbitIndex":2,"skill":25315,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"stringId":"armour38"},"25337":{"connectionArt":"CharacterPlanned","connections":[{"id":34990,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":19,"skill":25337,"stats":["10% chance to Poison on Hit"],"stringId":"oracle_poison2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25361":{"connections":[],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Resolute Reach","orbit":2,"orbitIndex":10,"recipe":["Ire","Disgust","Despair"],"skill":25361,"stats":["18% increased Area of Effect for Attacks","20% reduced Critical Hit Chance"],"stringId":"area_attacks57_"},"25362":{"connections":[{"id":23105,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","isNotable":true,"name":"Chakra of Impact","orbit":2,"orbitIndex":13,"recipe":["Greed","Greed","Despair"],"skill":25362,"stats":["20% increased Attack Damage","Skills deal 8% increased Damage per Combo consumed, up to 40%"],"stringId":"unarmed5"},"25363":{"connections":[{"id":44098,"orbit":0},{"id":1823,"orbit":0},{"id":34531,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":7,"orbitIndex":20,"skill":25363,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield7"},"25374":{"connections":[{"id":45969,"orbit":6}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":25374,"stats":["+5 to any Attribute"],"stringId":"strength86"},"25429":{"connections":[{"id":38103,"orbit":-8},{"id":34084,"orbit":0}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Grounded in the Earth","orbit":2,"orbitIndex":8,"skill":25429,"stats":["16% increased Skill Effect Duration","16% increased Stun Threshold"],"stringId":"duration15"},"25434":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Chill Effect","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":6,"orbitIndex":11,"skill":25434,"stats":["15% increased Magnitude of Chill you inflict"],"stringId":"AscendancyMonk2Small4"},"25438":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":48,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus12.dds","isNotable":true,"name":"Heatproofing","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":25438,"stats":["Body Armour grants Unaffected by Damaging Ailments"],"stringId":"AscendancyWarrior3Notable6_12_"},"25446":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":427,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":25446,"stats":[],"stringId":"mastery_leech159"},"25458":{"connections":[{"id":37568,"orbit":3}],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","name":"Strength and Critical Damage Bonus on You","orbit":7,"orbitIndex":20,"skill":25458,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"stringId":"azmerianimals34"},"25482":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":61472,"orbit":0},{"id":51702,"orbit":0},{"id":60620,"orbit":0}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","isNotable":true,"name":"Beef","orbit":0,"orbitIndex":0,"recipe":["Fear","Disgust","Fear"],"skill":25482,"stats":["+25 to Strength"],"stringId":"strength102"},"25503":{"connections":[{"id":27068,"orbit":0},{"id":45632,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":25503,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana5"},"25513":{"connections":[],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Overwhelm","orbit":6,"orbitIndex":45,"recipe":["Despair","Fear","Envy"],"skill":25513,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"stringId":"two_handed18"},"25520":{"connections":[],"flavourText":"The notes may change, but the song remains the same.","group":1269,"icon":"Art/2DArt/SkillIcons/passives/ResonanceKeystone.dds","isKeystone":true,"name":"Resonance","orbit":0,"orbitIndex":0,"skill":25520,"stats":["Gain Power Charges instead of Frenzy Charges","Gain Frenzy Charges instead of Endurance Charges","Gain Endurance Charges instead of Power Charges"],"stringId":"passive_keystone_resonance"},"25528":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":3,"orbitIndex":15,"skill":25528,"stats":[],"stringId":"mastery_mana_6597"},"25557":{"connections":[{"id":29763,"orbit":0},{"id":4059,"orbit":0},{"id":26804,"orbit":0}],"group":1084,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":16,"skill":25557,"stats":["+5 to any Attribute"],"stringId":"intelligence62"},"25565":{"connections":[{"id":722,"orbit":0}],"group":1450,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":2,"orbitIndex":2,"skill":25565,"stats":["12% increased Lightning Damage"],"stringId":"lightning2"},"25570":{"connectionArt":"CharacterPlanned","connections":[{"id":44560,"orbit":0},{"id":21549,"orbit":0},{"id":37694,"orbit":0},{"id":64083,"orbit":0},{"id":27572,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":12,"skill":25570,"stats":["12% increased Damage"],"stringId":"oracle_hierarchy1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25586":{"connections":[{"id":38993,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Critical Damage","orbit":6,"orbitIndex":35,"skill":25586,"stats":["16% increased Critical Damage Bonus with Bows"],"stringId":"bow7"},"25591":{"connections":[{"id":25315,"orbit":0},{"id":4527,"orbit":0}],"group":212,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Cold Damage","orbit":2,"orbitIndex":8,"skill":25591,"stats":["10% increased Armour","+10% of Armour also applies to Cold Damage"],"stringId":"armour39"},"25594":{"connections":[{"id":34030,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":7,"orbitIndex":0,"skill":25594,"stats":["Offerings have 15% increased Maximum Life"],"stringId":"corpses3"},"25618":{"ascendancyName":"Stormweaver","connections":[{"id":38578,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":18,"skill":25618,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancySorceress1Small4"},"25619":{"connections":[{"id":43562,"orbit":3}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Sand in the Eyes","orbit":2,"orbitIndex":12,"recipe":["Despair","Despair","Despair"],"skill":25619,"stats":["10% increased Attack Speed","15% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack_speed35"},"25620":{"connections":[{"id":9083,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Meat Recycling","orbit":7,"orbitIndex":14,"recipe":["Paranoia","Despair","Guilt"],"skill":25620,"stats":["15% chance to not destroy Corpses when Consuming Corpses"],"stringId":"corpses10"},"25648":{"connections":[{"id":10824,"orbit":-4},{"id":58894,"orbit":5},{"id":45736,"orbit":-7}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":8,"skill":25648,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour46"},"25653":{"ascendancyName":"Disciple of Varashta","connections":[{"id":13289,"orbit":0}],"flavourText":"\"Knowing where and when to plunge your knife is more important than the sharpness of your blade. I will not forget my error... and I will be a living example of your wisdom, dear {Sekhema}.\" \\n\\nKelari accepted Varashta's sentence and committed himself to her.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnDaggerslamSkill.dds","isNotable":true,"name":"Kelari's Judgment","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":19,"skill":25653,"stats":["Grants Skill: Kelari's Judgment"],"stringId":"AscendancySorceress3Notable14"},"25678":{"connectionArt":"CharacterPlanned","connections":[{"id":49258,"orbit":2147483647}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":6,"skill":25678,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"25683":{"ascendancyName":"Disciple of Varashta","connections":[{"id":34207,"orbit":-8}],"flavourText":"\"I stand before you, as your humble servant. Though I was betrayed, I would do it all again, if it would have saved us. But I accept your sentence. I will atone. I pledge myself to you... forevermore.\" \\n\\nRuzhan accepted his fate at the {barya} ritual site.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnMeteoricSlam.dds","isNotable":true,"name":"Ruzhan's Reckoning","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":53,"skill":25683,"stats":["Grants Skill: Ruzhan's Reckoning"],"stringId":"AscendancySorceress3Notable17"},"25700":{"connections":[{"id":41096,"orbit":4}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Shock Chance","orbit":4,"orbitIndex":42,"skill":25700,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"stringId":"elemental25"},"25711":{"connections":[{"id":58038,"orbit":-7}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Thrill of Battle","orbit":2,"orbitIndex":5,"recipe":["Guilt","Suffering","Ire"],"skill":25711,"stats":["20% increased Attack Speed while Surrounded"],"stringId":"being_surrounded10"},"25729":{"connections":[{"id":33093,"orbit":0}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":12,"skill":25729,"stats":["3% increased Cast Speed"],"stringId":"cast_speed4"},"25745":{"connections":[{"id":31890,"orbit":4}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":4,"orbitIndex":30,"skill":25745,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour19"},"25753":{"connections":[{"id":63268,"orbit":0},{"id":25990,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Blazing Arms","orbit":7,"orbitIndex":6,"recipe":["Suffering","Envy","Despair"],"skill":25753,"stats":["16% increased Fire Damage","30% increased Flammability Magnitude","16% increased Attack Damage"],"stringId":"fire57"},"25763":{"connections":[{"id":61170,"orbit":7},{"id":62963,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":25763,"stats":["10% increased Fire Damage"],"stringId":"ground2"},"25779":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":41076,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Darkness","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":34,"skill":25779,"stats":["10% increased maximum Darkness"],"stringId":"AscendancyMonk3Small7_"},"25781":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamage.dds","isNotable":true,"name":"Sap of Nightmares","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":5,"orbitIndex":2,"skill":25781,"stats":["Leech recovers based on Chaos Damage as well as Physical Damage"],"stringId":"AscendancyMonk3Notable3_"},"25807":{"connections":[{"id":53683,"orbit":0}],"group":940,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":25807,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow24"},"25827":{"connections":[{"id":55241,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":8,"skill":25827,"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells4"},"25829":{"connections":[{"id":57791,"orbit":0}],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Spell Damage and Cast Speed","orbit":2,"orbitIndex":7,"skill":25829,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"stringId":"orb3"},"25851":{"connections":[{"id":52695,"orbit":-6},{"id":36270,"orbit":5}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":6,"orbitIndex":0,"skill":25851,"stats":["5% chance to Daze on Hit"],"stringId":"chaos4"},"25857":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":4,"orbitIndex":68,"skill":25857,"stats":[],"stringId":"mastery_flask_6540"},"25885":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":31116,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Damage as Chaos","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":8,"orbitIndex":18,"skill":25885,"stats":["Gain 4% of Damage as Extra Chaos Damage"],"stringId":"AscendancyMonk3Small8"},"25890":{"connections":[{"id":54378,"orbit":0}],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":18,"skill":25890,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges13"},"25893":{"connections":[{"id":51169,"orbit":-2}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":18,"skill":25893,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"mana24"},"25915":{"connections":[{"id":8916,"orbit":2}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":2,"skill":25915,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear15"},"25927":{"connections":[{"id":32847,"orbit":-2}],"group":565,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Damage","orbit":0,"orbitIndex":0,"skill":25927,"stats":["Minions deal 20% increased Damage with Command Skills"],"stringId":"minion_offence44_"},"25934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":424,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":7,"orbitIndex":12,"skill":25934,"stats":[],"stringId":"mastery_twohand244"},"25935":{"ascendancyName":"Warbringer","connections":[{"id":23005,"orbit":0}],"group":45,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Block Chance","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":25935,"stats":["6% increased Block chance"],"stringId":"AscendancyWarrior2Small8"},"25971":{"connections":[],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Tenfold Attacks","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Guilt"],"skill":25971,"stats":["4% increased Attack Speed","6% increased Attack Speed if you've been Hit Recently","+10 to Strength"],"stringId":"attack_speed30"},"25990":{"connections":[{"id":43461,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Attack Damage","orbit":4,"orbitIndex":23,"skill":25990,"stats":["8% increased Fire Damage","8% increased Attack Damage"],"stringId":"fire55"},"25992":{"connections":[],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Accuracy Rating","orbit":6,"orbitIndex":7,"skill":25992,"stats":["10% increased Accuracy Rating with Bows"],"stringId":"bow12"},"26034":{"connections":[{"id":45631,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":10,"skill":26034,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield5"},"26061":{"connections":[{"id":4579,"orbit":2}],"group":949,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Energy Shield as Freeze Threshold","orbit":2,"orbitIndex":22,"skill":26061,"stats":["Gain 15% of maximum Energy Shield as additional Freeze Threshold"],"stringId":"cold25"},"26063":{"ascendancyName":"Shaman","connections":[{"id":28745,"orbit":2147483647}],"group":73,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":26063,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyDruid2Small2"},"26068":{"connections":[{"id":37389,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":4,"skill":26068,"stats":["10% increased Attack Damage"],"stringId":"attack35"},"26070":{"connections":[{"id":35977,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Bolstering Yell","orbit":2,"orbitIndex":4,"recipe":["Suffering","Disgust","Paranoia"],"skill":26070,"stats":["Empowered Attacks deal 30% increased Damage","Warcry Skills have 30% increased Area of Effect"],"stringId":"warcries24"},"26085":{"ascendancyName":"Lich","connections":[{"id":20772,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichUnholyMight.dds","isNotable":true,"isSwitchable":true,"name":"Necromantic Conduit","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichBoneGraft.dds","id":41162,"name":"Umbral Well","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["Skeletal Minions you would create instead grant you Umbral Souls for each Minion you would have created"]}},"orbit":9,"orbitIndex":124,"skill":26085,"stats":["While you are not on Low Mana, you and Allies in your Presence have Unholy Might","Lose 5% of maximum Mana per Second"],"stringId":"AscendancyWitch3Notable3"},"26092":{"connections":[{"id":52392,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":14,"skill":26092,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed4"},"26104":{"connections":[{"id":43282,"orbit":5},{"id":55672,"orbit":4},{"id":32186,"orbit":0},{"id":27611,"orbit":0},{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Spirit of the Wyvern","orbit":4,"orbitIndex":51,"recipe":["Ire","Suffering","Greed"],"skill":26104,"stats":["20% increased Accuracy Rating while Shapeshifted","25% increased Elemental Damage while Shapeshifted"],"stringId":"wyvern5"},"26107":{"connections":[{"id":33713,"orbit":7},{"id":56023,"orbit":0}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Kite Runner","orbit":0,"orbitIndex":0,"recipe":["Ire","Isolation","Despair"],"skill":26107,"stats":["3% increased Movement Speed","15% increased Projectile Speed","15% increased Projectile Damage"],"stringId":"ranged30_"},"26135":{"connections":[{"id":2335,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage and Projectile Speed","orbit":3,"orbitIndex":11,"skill":26135,"stats":["8% increased Spell Damage","8% increased Projectile Speed for Spell Skills"],"stringId":"projectile_spells3"},"26148":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":327,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupAccuracy.dds","isOnlyImage":true,"name":"Accuracy Mastery","orbit":0,"orbitIndex":0,"skill":26148,"stats":[],"stringId":"mastery_accuracy2"},"26176":{"connections":[{"id":43650,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":2,"orbitIndex":8,"skill":26176,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals61"},"26178":{"aliasPassiveSocket":"voices_jewel_slot2","connections":[],"group":702,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":26178,"stats":[],"stringId":"voices_jewel_slot2"},"26194":{"connections":[{"id":37872,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":0,"skill":26194,"stats":["20% increased Presence Area of Effect"],"stringId":"auras2"},"26196":{"connections":[{"id":11741,"orbit":0},{"id":39710,"orbit":0}],"group":273,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26196,"stats":[],"stringId":"jewel_slot1977"},"26211":{"connections":[{"id":24883,"orbit":0}],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Combo","orbit":2,"orbitIndex":18,"skill":26211,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"stringId":"area_attacks46"},"26214":{"connections":[],"group":1060,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","isNotable":true,"name":"Dominion","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Suffering","Isolation"],"skill":26214,"stats":["50% reduced effect of Archon Buffs on you","Archon Buffs have no recovery period after you lose one"],"stringId":"DeliriumAnoint_Dominion"},"26228":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Prize of the Hunt","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":26228,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges","+1 to Maximum Frenzy Charges"],"stringId":"oracle_frenzy_charge4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26236":{"connections":[{"id":38069,"orbit":-2}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":20,"skill":26236,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers13"},"26268":{"connections":[{"id":22710,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":12,"skill":26268,"stats":["20% increased Curse Duration"],"stringId":"curses11"},"26282":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodPhysicalDamageExtraGore.dds","isNotable":true,"name":"Blood Barbs","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":5,"orbitIndex":66,"skill":26282,"stats":["Elemental Damage also Contributes to Bleeding Magnitude","Bleeding you inflict on Cursed targets is Aggravated"],"stringId":"AscendancyWitch2Notable4"},"26283":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1586,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageBlue.dds","isMultipleChoiceOption":true,"name":"Choice of Mana","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":26283,"stats":["Remnants you create have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Blue"],"stringId":"AscendancyMonk3Notable6_2"},"26291":{"connections":[{"id":48935,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electrifying Nature","orbit":4,"orbitIndex":28,"recipe":["Envy","Greed","Paranoia"],"skill":26291,"stats":["25% increased Lightning Damage","15% increased Shock Duration"],"stringId":"lightning30"},"26294":{"ascendancyName":"Spirit Walker","connections":[{"id":41401,"orbit":5}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":5,"orbitIndex":22,"skill":26294,"stats":["2% increased Movement Speed"],"stringId":"AscendancyHuntress2Small1"},"26300":{"connectionArt":"CharacterPlanned","connections":[{"id":23436,"orbit":-4}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":33,"skill":26300,"stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"stringId":"oracle_archon_crit3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"26308":{"connections":[{"id":27017,"orbit":-9}],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":10,"skill":26308,"stats":["20% increased Evasion Rating while moving"],"stringId":"azmerianimals22"},"26319":{"connections":[{"id":30990,"orbit":-7}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":0,"skill":26319,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals81_"},"26324":{"connections":[{"id":46023,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":0,"skill":26324,"stats":["15% increased Armour"],"stringId":"armour11"},"26331":{"connections":[{"id":3128,"orbit":0},{"id":12166,"orbit":0}],"group":1302,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Harsh Winter","orbit":7,"orbitIndex":18,"recipe":["Fear","Despair","Ire"],"skill":26331,"stats":["8% increased Cast Speed with Cold Skills","16% increased Skill Effect Duration"],"stringId":"cold35"},"26339":{"connections":[{"id":64405,"orbit":0},{"id":11014,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Artifice","orbit":1,"orbitIndex":0,"recipe":["Suffering","Suffering","Suffering"],"skill":26339,"stats":["Melee Attack Skills have +1 to maximum number of Summoned Totems","20% increased Totem Placement range"],"stringId":"totems14"},"26356":{"connections":[{"id":8556,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Primed to Explode","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Disgust"],"skill":26356,"stats":["Detonator skills have 40% increased Area of Effect","Detonator skills have 80% reduced damage"],"stringId":"area_attacks41"},"26363":{"connections":[{"id":49291,"orbit":0},{"id":52803,"orbit":0}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charge Generation","orbit":7,"orbitIndex":3,"skill":26363,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks11"},"26383":{"ascendancyName":"Blood Mage","connections":[{"id":48551,"orbit":8}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageHigherSpellBaseCritStrike.dds","isNotable":true,"name":"Sunder the Flesh","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":8,"orbitIndex":59,"skill":26383,"stats":["Base Critical Hit Chance for Spells is 15%"],"stringId":"AscendancyWitch2Notable2_"},"26400":{"connections":[{"id":8904,"orbit":0}],"group":1386,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":18,"skill":26400,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles25"},"26416":{"connections":[{"id":35792,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":16,"skill":26416,"stats":["15% increased Life Recovery from Flasks"],"stringId":"life_flasks35"},"26432":{"connections":[{"id":12890,"orbit":0},{"id":60735,"orbit":0}],"group":1322,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":26432,"stats":["+5 to any Attribute"],"stringId":"dexterity85_"},"26437":{"connections":[{"id":51129,"orbit":0}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":26437,"stats":["Break 20% increased Armour"],"stringId":"armour_break4"},"26447":{"connections":[{"id":12918,"orbit":0},{"id":49633,"orbit":0}],"group":854,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Refocus","orbit":2,"orbitIndex":0,"recipe":["Paranoia","Suffering","Ire"],"skill":26447,"stats":["20% increased Mana Regeneration Rate","20% increased Mana Regeneration Rate while stationary"],"stringId":"energy_shield_recovery17"},"26479":{"connections":[{"id":64324,"orbit":4},{"id":9040,"orbit":0}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Steadfast Resolve","orbit":4,"orbitIndex":60,"recipe":["Guilt","Isolation","Paranoia"],"skill":26479,"stats":["You cannot be Light Stunned if you've been Stunned Recently"],"stringId":"shield35"},"26490":{"connections":[{"id":12751,"orbit":0}],"group":528,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Critical Chance","orbit":2,"orbitIndex":9,"skill":26490,"stats":["10% increased Critical Hit Chance with One Handed Melee Weapons"],"stringId":"one_handed12"},"26518":{"connections":[],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Cold Nature","orbit":4,"orbitIndex":5,"recipe":["Envy","Fear","Guilt"],"skill":26518,"stats":["25% increased Cold Damage","15% increased Chill Duration on Enemies"],"stringId":"cold30"},"26520":{"connections":[{"id":14340,"orbit":0},{"id":37190,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":11,"skill":26520,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech4"},"26532":{"connections":[{"id":46023,"orbit":-3},{"id":41657,"orbit":3},{"id":36629,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":6,"skill":26532,"stats":["15% increased Armour"],"stringId":"armour19"},"26556":{"connections":[{"id":58692,"orbit":4},{"id":59657,"orbit":-2}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":3,"orbitIndex":19,"skill":26556,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield34"},"26563":{"connections":[{"id":12778,"orbit":-4},{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Bone Chains","orbit":4,"orbitIndex":12,"recipe":["Fear","Despair","Fear"],"skill":26563,"stats":["Physical Spell Critical Hits build Pin"],"stringId":"physical_witch12"},"26565":{"connections":[{"id":40024,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":2,"skill":26565,"stats":["10% increased Poison Duration"],"stringId":"poison36"},"26568":{"connections":[{"id":59367,"orbit":0},{"id":37258,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You and Attack Speed","orbit":2,"orbitIndex":12,"skill":26568,"stats":["2% increased Attack Speed","4% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells7"},"26572":{"connections":[{"id":47514,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Criticals vs Dazed Enemies","orbit":2,"orbitIndex":12,"skill":26572,"stats":["12% increased Critical Hit Chance against Dazed Enemies"],"stringId":"daze_7"},"26592":{"connections":[{"id":58894,"orbit":-3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":3,"orbitIndex":19,"skill":26592,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour51"},"26596":{"connections":[{"id":5766,"orbit":5},{"id":51416,"orbit":-5}],"group":1222,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":19,"skill":26596,"stats":["3% increased Cast Speed"],"stringId":"cast_speed8"},"26598":{"connections":[{"id":33366,"orbit":3},{"id":19880,"orbit":0},{"id":14658,"orbit":0},{"id":23915,"orbit":0},{"id":52501,"orbit":0}],"group":1251,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":26598,"stats":["+5 to any Attribute"],"stringId":"dexterity40"},"26614":{"connections":[{"id":44344,"orbit":0},{"id":46275,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":40,"skill":26614,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield17"},"26638":{"ascendancyName":"Chronomancer","connections":[],"group":371,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTemporalRiftSkill.dds","isNotable":true,"name":"Footprints in the Sand","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":26638,"stats":["Grants Skill: Temporal Rift"],"stringId":"AscendancySorceress2Notable1_"},"26648":{"connections":[{"id":24256,"orbit":0},{"id":52125,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":21,"skill":26648,"stats":["10% increased Armour","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"deflect30"},"26663":{"connections":[{"id":44765,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":0,"orbitIndex":0,"skill":26663,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns19"},"26682":{"connections":[{"id":3472,"orbit":-2},{"id":56640,"orbit":2}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":6,"skill":26682,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals8"},"26697":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySwordPattern","connections":[{"id":59263,"orbit":0},{"id":27290,"orbit":0},{"id":46565,"orbit":0}],"group":581,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupSword.dds","isOnlyImage":true,"name":"Sword Mastery","orbit":0,"orbitIndex":0,"skill":26697,"stats":[],"stringId":"mastery_sword225"},"26725":{"connections":[{"id":57703,"orbit":0}],"group":300,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":26725,"stats":[],"stringId":"jewel_slot1956"},"26726":{"connections":[{"id":48103,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback and Stun Buildup","orbit":2,"orbitIndex":0,"skill":26726,"stats":["10% increased Stun Buildup","10% increased Knockback Distance"],"stringId":"knockback3"},"26739":{"connections":[{"id":43893,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":26739,"stats":["10% increased Elemental Damage"],"stringId":"elemental13"},"26762":{"connections":[{"id":35380,"orbit":-2}],"group":1347,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":0,"orbitIndex":0,"skill":26762,"stats":["10% increased Withered Magnitude"],"stringId":"chaos29"},"26772":{"connections":[{"id":24240,"orbit":2},{"id":45774,"orbit":3}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect","orbit":7,"orbitIndex":22,"skill":26772,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"stringId":"slowed_enemies4"},"26786":{"connections":[{"id":64352,"orbit":0},{"id":48568,"orbit":0}],"group":996,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":26786,"stats":["+5 to any Attribute"],"stringId":"dexterity66"},"26798":{"connections":[{"id":9638,"orbit":-7}],"group":498,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Skill Speed","orbit":0,"orbitIndex":0,"skill":26798,"stats":["3% increased Skill Speed"],"stringId":"attack_speed53"},"26804":{"connections":[{"id":55405,"orbit":0},{"id":59909,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":7,"orbitIndex":2,"skill":26804,"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"stringId":"corpses5"},"26830":{"connections":[],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":5,"orbitIndex":42,"skill":26830,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break22"},"26863":{"connections":[{"id":25890,"orbit":0},{"id":58198,"orbit":0}],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":10,"skill":26863,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges14"},"26885":{"connections":[{"id":59775,"orbit":-4}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":60,"skill":26885,"stats":["7% increased Chaos Damage"],"stringId":"chaos24"},"26895":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":526,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":26895,"stats":[],"stringId":"mastery_duration_6464"},"26905":{"connections":[{"id":8821,"orbit":0}],"group":908,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":3,"orbitIndex":2,"skill":26905,"stats":["12% increased Lightning Damage"],"stringId":"lightning22"},"26926":{"connections":[{"id":39416,"orbit":0},{"id":45333,"orbit":-7}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds","isNotable":true,"name":"Archon of Undeath","orbit":3,"orbitIndex":21,"recipe":["Guilt","Suffering","Isolation"],"skill":26926,"stats":["15% chance to gain Archon of Undeath when you use a Command skill"],"stringId":"archon23"},"26931":{"connections":[{"id":48198,"orbit":5}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":10,"skill":26931,"stats":["Gain 3 Life per enemy killed"],"stringId":"life_on_kill2"},"26932":{"connections":[{"id":34543,"orbit":-2}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":6,"skill":26932,"stats":["20% increased Frenzy Charge Duration"],"stringId":"azmerianimals27"},"26945":{"connections":[],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Chance","orbit":2,"orbitIndex":17,"skill":26945,"stats":["Minions have 20% increased Critical Hit Chance"],"stringId":"minion_offence31"},"26952":{"connections":[{"id":59661,"orbit":0},{"id":31626,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":20,"skill":26952,"stats":["20% increased Flammability Magnitude"],"stringId":"fire62"},"26969":{"connections":[{"id":16861,"orbit":2}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":4,"orbitIndex":69,"skill":26969,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals69"},"27009":{"connections":[{"id":30459,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Lust for Sacrifice","orbit":7,"orbitIndex":6,"recipe":["Disgust","Suffering","Paranoia"],"skill":27009,"stats":["50% increased Minion Damage while you have at least two different active Offerings"],"stringId":"corpses17"},"27017":{"connections":[{"id":21349,"orbit":0}],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":22,"skill":27017,"stats":["20% increased Evasion Rating while moving"],"stringId":"azmerianimals23"},"27048":{"connections":[{"id":47375,"orbit":8}],"group":1524,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":0,"orbitIndex":0,"skill":27048,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions14"},"27068":{"connections":[{"id":35831,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":14,"skill":27068,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana6"},"27082":{"connections":[{"id":3446,"orbit":0},{"id":24646,"orbit":0}],"group":201,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27082,"stats":["+5 to any Attribute"],"stringId":"strength69"},"27095":{"connections":[{"id":14890,"orbit":-4},{"id":48658,"orbit":0}],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":7,"skill":27095,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze3"},"27096":{"connectionArt":"CharacterPlanned","connections":[{"id":33423,"orbit":2147483647},{"id":13691,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Rustle of the Leaves","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":16,"skill":27096,"stats":["40% increased Totem Placement speed","Spells Cast by Totems have 6% increased Cast Speed","Attacks used by Totems have 6% increased Attack Speed"],"stringId":"oracle_totems7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27108":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":47796,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Mass Hysteria","orbit":4,"orbitIndex":36,"recipe":["Disgust","Disgust","Envy"],"skill":27108,"stats":["Allies in your Presence have 6% increased Attack Speed","6% increased Attack Speed"],"stringId":"attack_speed33"},"27176":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"The Power Within","orbit":0,"orbitIndex":0,"recipe":["Envy","Paranoia","Suffering"],"skill":27176,"stats":["20% increased Critical Damage Bonus if you've gained a Power Charge Recently","+1 to Maximum Power Charges"],"stringId":"power_charges9"},"27186":{"connections":[{"id":62963,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Ignite Effect on You","orbit":2,"orbitIndex":0,"skill":27186,"stats":["10% reduced Magnitude of Ignite on you"],"stringId":"ground3"},"27216":{"connections":[{"id":30546,"orbit":-7}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Delay","orbit":7,"orbitIndex":4,"skill":27216,"stats":["10% faster start of Energy Shield Recharge while Shapeshifted"],"stringId":"wyvern13__"},"27234":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":942,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":27234,"stats":[],"stringId":"mastery_mana6174"},"27262":{"connections":[{"id":49110,"orbit":7}],"group":1161,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Effect","orbit":0,"orbitIndex":0,"skill":27262,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments15"},"27274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":1,"orbitIndex":2,"skill":27274,"stats":[],"stringId":"mastery_cold_6395"},"27290":{"connections":[{"id":38564,"orbit":0}],"group":558,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Heavy Blade","orbit":0,"orbitIndex":0,"skill":27290,"stats":["25% increased Damage with Swords"],"stringId":"sword6"},"27296":{"connections":[{"id":59777,"orbit":0},{"id":11275,"orbit":-9},{"id":18684,"orbit":0},{"id":21670,"orbit":0}],"group":146,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27296,"stats":["+5 to any Attribute"],"stringId":"strength64"},"27303":{"connections":[{"id":43142,"orbit":0}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Vulgar Methods","orbit":7,"orbitIndex":16,"recipe":["Ire","Guilt","Despair"],"skill":27303,"stats":["10% reduced maximum Mana","+10 to Strength","30% increased Critical Hit Chance"],"stringId":"criticals73"},"27307":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":517,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":27307,"stats":[],"stringId":"mastery_energyshield102_"},"27373":{"connections":[{"id":53405,"orbit":-6},{"id":51369,"orbit":-6}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":51,"skill":27373,"stats":["+5 to any Attribute"],"stringId":"strength19"},"27388":{"connections":[{"id":28578,"orbit":0},{"id":24551,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Aspiring Genius","orbit":7,"orbitIndex":23,"recipe":["Suffering","Greed","Greed"],"skill":27388,"stats":["20% increased Mana Regeneration Rate","10% chance to Gain Arcane Surge when you deal a Critical Hit"],"stringId":"mana_regeneration20"},"27405":{"connectionArt":"CharacterPlanned","connections":[{"id":30781,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":58,"skill":27405,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"oracle_movement_cooldown2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27417":{"connections":[{"id":64295,"orbit":0},{"id":37616,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Destructive Apparatus","orbit":6,"orbitIndex":54,"skill":27417,"stats":["25% increased Trap Damage"],"stringId":"trap18"},"27418":{"ascendancyName":"Titan","connections":[{"id":30115,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Strength","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":4,"orbitIndex":48,"skill":27418,"stats":["4% increased Strength"],"stringId":"AscendancyWarrior1Small6"},"27422":{"connections":[{"id":2021,"orbit":5}],"group":1463,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":7,"orbitIndex":21,"skill":27422,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks1"},"27434":{"connections":[{"id":15984,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Archon of the Storm","orbit":3,"orbitIndex":21,"recipe":["Fear","Isolation","Guilt"],"skill":27434,"stats":["Gain Elemental Archon after spending 100% of your Maximum Mana"],"stringId":"lightning54"},"27439":{"connections":[{"id":21982,"orbit":0}],"group":347,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27439,"stats":["+5 to any Attribute"],"stringId":"strength73"},"27491":{"connections":[{"id":3471,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Heavy Buffer","orbit":4,"orbitIndex":24,"recipe":["Greed","Paranoia","Isolation"],"skill":27491,"stats":["40% increased maximum Energy Shield","5% of Damage taken bypasses Energy Shield"],"stringId":"energy_shield38"},"27492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":865,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":27492,"stats":[],"stringId":"mastery_recovery_6677"},"27493":{"connections":[{"id":17118,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":24,"skill":27493,"stats":["10% increased Projectile Damage"],"stringId":"ranged42"},"27501":{"connections":[],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":4,"orbitIndex":44,"skill":27501,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration34"},"27513":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"Material Solidification","orbit":7,"orbitIndex":4,"recipe":["Envy","Envy","Isolation"],"skill":27513,"stats":["Gain 8% of Damage as Extra Physical Damage","15% increased effect of Fully Broken Armour"],"stringId":"physical40"},"27540":{"connections":[{"id":62973,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Power Counted","orbit":3,"orbitIndex":23,"skill":27540,"stats":["10% increased total Power counted by Warcries"],"stringId":"warcries22"},"27572":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":2147483647}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage.dds","name":"Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":14,"skill":27572,"stats":["20% increased Chaos Damage"],"stringId":"oracle_hierarchy6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"27581":{"connections":[{"id":50510,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":12,"skill":27581,"stats":["5% increased Block chance"],"stringId":"shield7"},"27611":{"connections":[{"id":30546,"orbit":7},{"id":28489,"orbit":8}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":7,"orbitIndex":18,"skill":27611,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"wyvern12__"},"27626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":15628,"orbit":0}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Touch the Arcane","orbit":5,"orbitIndex":54,"recipe":["Despair","Isolation","Suffering"],"skill":27626,"stats":["40% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration28_"},"27638":{"connections":[{"id":38010,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":3,"skill":27638,"stats":["15% increased Glory generation"],"stringId":"glory5"},"27658":{"connections":[{"id":13542,"orbit":-3}],"group":881,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":27658,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup4__"},"27662":{"connections":[],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":2,"orbitIndex":14,"skill":27662,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells7"},"27667":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCurseInfiniteDuration.dds","isNotable":true,"name":"Whispers of the Flesh","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":6,"orbitIndex":8,"skill":27667,"stats":["Targets Cursed by you have 100% reduced Life Regeneration Rate","Targets Cursed by you have at least 15% of Life Reserved"],"stringId":"AscendancyWitch2Notable5"},"27671":{"connections":[{"id":32681,"orbit":2147483647}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Energy Shield Delay","orbit":7,"orbitIndex":23,"skill":27671,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"unarmed7"},"27674":{"connections":[{"id":44082,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":10,"skill":27674,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery34"},"27686":{"ascendancyName":"Invoker","connections":[{"id":12876,"orbit":0}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Energy Shield Recharge Rate","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":10,"skill":27686,"stats":["20% increased Energy Shield Recharge Rate"],"stringId":"AscendancyMonk2Small9"},"27687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Greatest Defence","orbit":3,"orbitIndex":4,"recipe":["Suffering","Fear","Disgust"],"skill":27687,"stats":["4% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield"],"stringId":"shield9"},"27704":{"connections":[],"group":1446,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Grace of the Ancestors","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Envy","Fear"],"skill":27704,"stats":["10% increased Attack Speed","Every Rage also grants 1% increased Evasion Rating"],"stringId":"DeliriumAnoint_GraceOfTheAncestors"},"27705":{"connections":[{"id":48773,"orbit":0},{"id":2582,"orbit":0},{"id":65212,"orbit":0},{"id":39495,"orbit":0},{"id":3543,"orbit":0},{"id":20787,"orbit":0}],"group":1503,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":27705,"stats":["+5 to any Attribute"],"stringId":"attributes10"},"27726":{"connections":[{"id":7721,"orbit":-4}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":8,"skill":27726,"stats":["15% increased Armour"],"stringId":"armour14"},"27733":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":44005,"orbit":0},{"id":2999,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":4,"orbitIndex":30,"skill":27733,"stats":[],"stringId":"mastery_shield215"},"27740":{"connections":[{"id":35792,"orbit":0}],"group":296,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":2,"orbitIndex":6,"skill":27740,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"life_flasks36"},"27761":{"connections":[{"id":5826,"orbit":0}],"group":1109,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Counterstancing","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Fear"],"skill":27761,"stats":["Successfully Parrying a Melee Hit grants 40% increased Damage to your next Ranged Attack","Successfully Parrying a Projectile Hit grants 40% increased Damage to your next Melee Attack"],"stringId":"deflect12"},"27773":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividWisps.dds","isNotable":true,"name":"The Mórrigan's Guidance","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":3,"orbitIndex":16,"skill":27773,"stats":["Gain a Vivid Wisp when Vivid Stampede ends","Stags deal 20% more damage per leap","Stags have 20% more Shock Magnitude per leap"],"stringId":"AscendancyHuntress2Notable2"},"27779":{"connections":[],"group":841,"icon":"Art/2DArt/SkillIcons/passives/MinionAccuracyDamage.dds","isNotable":true,"name":"Lord of the Squall","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Isolation","Despair"],"skill":27779,"stats":["Grant Elemental Archon to your Minions for 5 seconds when they Revive"],"stringId":"DeliriumAnoint_LordOfTheSquall"},"27785":{"connections":[{"id":63863,"orbit":0}],"group":917,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":10,"skill":27785,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration12"},"27834":{"connections":[{"id":63659,"orbit":0},{"id":34449,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":41,"skill":27834,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap12"},"27853":{"connections":[{"id":52576,"orbit":0},{"id":3365,"orbit":0},{"id":58109,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised and Buildup","orbit":7,"orbitIndex":13,"skill":27853,"stats":["10% increased Damage against Immobilised Enemies","8% increased Immobilisation buildup"],"stringId":"immobilisation1"},"27859":{"connections":[{"id":38694,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":12,"skill":27859,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds3"},"27875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":32123,"orbit":0}],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"General Electric","orbit":0,"orbitIndex":0,"recipe":["Isolation","Suffering","Greed"],"skill":27875,"stats":["40% increased chance to Shock","5% increased Attack and Cast Speed with Lightning Skills"],"stringId":"shock12"},"27900":{"connections":[{"id":54640,"orbit":5}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","orbit":7,"orbitIndex":5,"skill":27900,"stats":["4% increased Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical55_"},"27910":{"connections":[{"id":64056,"orbit":0},{"id":53938,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":0,"skill":27910,"stats":["10% increased Attack Damage"],"stringId":"attack42"},"27950":{"connections":[{"id":26324,"orbit":0},{"id":52462,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Polished Iron","orbit":2,"orbitIndex":0,"recipe":["Paranoia","Guilt","Despair"],"skill":27950,"stats":["25% increased Armour","Gain additional Stun Threshold equal to 30% of Item Armour on Equipped Armour Items"],"stringId":"armour12"},"27980":{"connections":[{"id":270,"orbit":-2},{"id":28981,"orbit":2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":2,"orbitIndex":12,"skill":27980,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage36"},"27990":{"ascendancyName":"Chronomancer","connections":[{"id":49049,"orbit":-3}],"group":410,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Slow Effect","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":27990,"stats":["Debuffs you inflict have 6% increased Slow Magnitude"],"stringId":"AscendancySorceress2Small7"},"27992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":664,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":27992,"stats":[],"stringId":"mastery_crossbow_6420"},"27999":{"connections":[{"id":45777,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Physical Damage and Ailment Chance","orbit":1,"orbitIndex":2,"skill":27999,"stats":["8% increased chance to inflict Ailments","8% increased Physical Damage"],"stringId":"projectiles49"},"28002":{"connections":[{"id":32194,"orbit":0},{"id":20499,"orbit":0},{"id":42452,"orbit":0},{"id":2955,"orbit":0},{"id":2653,"orbit":0},{"id":49547,"orbit":0},{"id":18441,"orbit":0}],"group":444,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28002,"stats":["+5 to any Attribute"],"stringId":"attributes31"},"28021":{"connections":[{"id":9782,"orbit":0}],"group":1225,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":28021,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals9"},"28022":{"ascendancyName":"Shaman","connections":[{"id":62523,"orbit":8}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":8,"orbitIndex":33,"skill":28022,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyDruid2Small1"},"28038":{"connections":[{"id":56488,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":28038,"stats":["15% increased Evasion Rating"],"stringId":"deflect26"},"28044":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Coming Calamity","orbit":3,"orbitIndex":12,"recipe":["Disgust","Isolation","Suffering"],"skill":28044,"stats":["40% increased Cold Damage while affected by Herald of Ice","40% increased Fire Damage while affected by Herald of Ash","40% increased Lightning Damage while affected by Herald of Thunder"],"stringId":"heralds16_"},"28050":{"connections":[{"id":63888,"orbit":0},{"id":53539,"orbit":0}],"group":1090,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":24,"skill":28050,"stats":["+5 to any Attribute"],"stringId":"dexterity20"},"28061":{"connections":[{"id":35878,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":8,"skill":28061,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental54"},"28086":{"connections":[{"id":57088,"orbit":-6},{"id":144,"orbit":0}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":28086,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration6"},"28092":{"connections":[{"id":17061,"orbit":7}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Delay","orbit":7,"orbitIndex":8,"skill":28092,"stats":["Archon recovery period expires 10% faster"],"stringId":"archon5__"},"28101":{"connections":[{"id":57571,"orbit":0},{"id":43867,"orbit":-7}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":12,"skill":28101,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration5"},"28106":{"connections":[{"id":3775,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":8,"skill":28106,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks28"},"28142":{"connections":[{"id":17702,"orbit":0},{"id":44684,"orbit":0},{"id":46961,"orbit":0}],"group":1207,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Attack Speed and Companion Attack Speed","orbit":0,"orbitIndex":0,"skill":28142,"stats":["2% increased Attack Speed","Companions have 6% increased Attack Speed"],"stringId":"companions58"},"28153":{"ascendancyName":"Chronomancer","connections":[{"id":63002,"orbit":9}],"group":362,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistFasterRecoup.dds","isNotable":true,"name":"Phased Form","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":28153,"stats":["Take 30% less Damage","4 seconds after being Damaged by an Enemy Hit, take Damage equal to 30% of that Hit's Damage"],"stringId":"AscendancySorceress2Notable4"},"28175":{"connections":[{"id":64471,"orbit":0},{"id":21716,"orbit":0},{"id":48026,"orbit":0}],"group":507,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28175,"stats":["+5 to any Attribute"],"stringId":"strength85"},"28199":{"connections":[{"id":46431,"orbit":0}],"group":1312,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Immobilisation Buildup","orbit":0,"orbitIndex":0,"skill":28199,"stats":["20% increased Hazard Immobilisation buildup"],"stringId":"hazards21"},"28201":{"connectionArt":"CharacterPlanned","connections":[{"id":56174,"orbit":0},{"id":10636,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":21,"skill":28201,"stats":["5% increased Block chance","15% increased Armour while stationary"],"stringId":"oracle_crab_claw1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28214":{"connections":[{"id":1973,"orbit":0},{"id":58295,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flasks","orbit":2,"orbitIndex":4,"skill":28214,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"life_flasks40"},"28223":{"connectionArt":"CharacterPlanned","connections":[{"id":6100,"orbit":3}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":35,"skill":28223,"stats":["20% increased Critical Damage Bonus"],"stringId":"oracle_slow_crits2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28229":{"connections":[{"id":50485,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":0,"skill":28229,"stats":["10% increased Area of Effect of Curses"],"stringId":"curses7"},"28254":{"ascendancyName":"Spirit Walker","connectionArt":"CharacterPlanned","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerSacredWisp.dds","isFreeAllocate":true,"isNotable":true,"name":"Sacred Unity","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":3,"orbitIndex":5,"skill":28254,"stats":["Bear Spirit gains Embrace of the Wild","Vivid Stags leap towards enemies","Central Projectile of Owl Feather-Empowered Skills leaves a trail of Soaring Ground"],"stringId":"AscendancyHuntress2Notable9","unlockConstraint":{"nodes":[41401,62743,46070]}},"28258":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"id":36976,"orbit":0},{"id":59064,"orbit":0},{"id":36927,"orbit":2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":0,"orbitIndex":0,"skill":28258,"stats":["10% increased Effect of your Mark Skills"],"stringId":"marks5_"},"28267":{"connections":[{"id":2672,"orbit":0},{"id":35085,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Desensitisation","orbit":3,"orbitIndex":4,"recipe":["Envy","Suffering","Greed"],"skill":28267,"stats":["25% increased Critical Damage Bonus","Hits against you have 25% reduced Critical Damage Bonus"],"stringId":"criticals40"},"28268":{"connections":[{"id":36630,"orbit":0},{"id":20837,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":6,"skill":28268,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed38"},"28304":{"connections":[{"id":37258,"orbit":0},{"id":2491,"orbit":0}],"group":438,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28304,"stats":["+5 to any Attribute"],"stringId":"attributes17_"},"28329":{"connections":[{"id":36723,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNotable2.dds","isNotable":true,"name":"Pressure Points","orbit":3,"orbitIndex":21,"recipe":["Guilt","Despair","Ire"],"skill":28329,"stats":["35% increased Stun Buildup","35% increased Freeze Buildup"],"stringId":"poise39"},"28361":{"connections":[],"group":831,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":16,"skill":28361,"stats":["12% increased Stun Threshold"],"stringId":"weapon_swapping2"},"28370":{"connections":[{"id":7628,"orbit":0},{"id":11916,"orbit":-6},{"id":37450,"orbit":-6}],"group":824,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":39,"skill":28370,"stats":["+5 to any Attribute"],"stringId":"strength36"},"28371":{"connections":[{"id":60560,"orbit":-3}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage vs Full Life","orbit":7,"orbitIndex":16,"skill":28371,"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"stringId":"enemies_on_full_life4"},"28408":{"connections":[{"id":65042,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Invigorating Hate","orbit":3,"orbitIndex":22,"recipe":["Envy","Disgust","Despair"],"skill":28408,"stats":["Consume all Rage when Shapeshifting to Human form to recover 1% of maximum life per Rage Consumed"],"stringId":"rage27"},"28414":{"connections":[{"id":47853,"orbit":0}],"group":1477,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":28414,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions62__"},"28431":{"ascendancyName":"Lich","connections":[],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichLifeCannotChangeWhileES.dds","isNotable":true,"isSwitchable":true,"name":"Eternal Life","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":9,"orbitIndex":40,"skill":28431,"stats":["Your Life cannot change while you have Energy Shield"],"stringId":"AscendancyWitch3Notable6"},"28432":{"connections":[{"id":20416,"orbit":0},{"id":23062,"orbit":0}],"group":468,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Armour if Consumed Endurance Charge","orbit":2,"orbitIndex":8,"skill":28432,"stats":["20% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"endurance_charges12"},"28441":{"connections":[{"id":10011,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Frantic Swings","orbit":7,"orbitIndex":15,"recipe":["Disgust","Despair","Despair"],"skill":28441,"stats":["Enemies Blinded by you have 50% reduced Critical Hit Chance"],"stringId":"blind11"},"28446":{"connections":[{"id":12430,"orbit":0},{"id":50084,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isSwitchable":true,"name":"Attack Area","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","id":50612,"name":"Spell and Attack Damage","stats":["10% increased Spell Damage","10% increased Attack Damage"]}},"orbit":2,"orbitIndex":9,"skill":28446,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks5_"},"28458":{"connections":[{"id":38972,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":10,"skill":28458,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence6"},"28464":{"connections":[{"id":8908,"orbit":0}],"group":1164,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":0,"orbitIndex":0,"skill":28464,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield38_"},"28476":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":523,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":28476,"stats":[],"stringId":"mastery_thorns307"},"28482":{"connections":[{"id":19846,"orbit":0}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Total Incineration","orbit":7,"orbitIndex":1,"recipe":["Guilt","Isolation","Suffering"],"skill":28482,"stats":["10% increased Ignite Duration on Enemies","25% increased Damage with Hits against Ignited Enemies"],"stringId":"fire28_"},"28489":{"connectionArt":"CharacterPlanned","connections":[{"id":27216,"orbit":8},{"id":56890,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Skill Effect Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":69,"skill":28489,"stats":["Shapeshift Skills have 15% increased Skill Effect Duration"],"stringId":"oracle_wyvern_addon1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28492":{"connections":[{"id":54099,"orbit":0}],"flavourText":"Why should I dodge blows that I do not fear?","group":755,"icon":"Art/2DArt/SkillIcons/passives/KeystoneIronReflexes.dds","isKeystone":true,"name":"Iron Reflexes","orbit":0,"orbitIndex":0,"skill":28492,"stats":["Converts all Evasion Rating to Armour"],"stringId":"passive_keystone_iron_reflexes_"},"28510":{"connections":[{"id":45969,"orbit":-5},{"id":10247,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":56,"skill":28510,"stats":["+5 to any Attribute"],"stringId":"strength32"},"28516":{"connections":[{"id":7542,"orbit":2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":8,"skill":28516,"stats":["6% increased Area of Effect"],"stringId":"area_of_effect20"},"28542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":62785,"orbit":7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"The Molten One's Gift","orbit":1,"orbitIndex":5,"recipe":["Guilt","Suffering","Greed"],"skill":28542,"stats":["+10% to Fire Resistance","15% increased effect of Fully Broken Armour","Fully Broken Armour you inflict also increases Fire Damage Taken from Hits"],"stringId":"armour_break16_"},"28556":{"connections":[],"group":926,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":12,"skill":28556,"stats":["+5 to any Attribute"],"stringId":"strength43"},"28564":{"connections":[{"id":8460,"orbit":0}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":2,"orbitIndex":8,"skill":28564,"stats":["16% increased Warcry Speed"],"stringId":"warcries3"},"28573":{"connections":[],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":6,"skill":28573,"stats":["Minions Revive 5% faster"],"stringId":"minion_defence19"},"28578":{"connections":[],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Critical Chance","orbit":7,"orbitIndex":2,"skill":28578,"stats":["8% increased Mana Regeneration Rate","8% increased Critical Hit Chance"],"stringId":"mana_regeneration3"},"28589":{"connections":[{"id":30300,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour if Hit","orbit":3,"orbitIndex":23,"skill":28589,"stats":["20% increased Armour if you have been Hit Recently"],"stringId":"getting_hit1"},"28613":{"connections":[{"id":39598,"orbit":0},{"id":30553,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Roaring Cries","orbit":2,"orbitIndex":2,"recipe":["Suffering","Despair","Greed"],"skill":28613,"stats":["Warcries have a minimum of 10 Power"],"stringId":"warcries39"},"28623":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":28623,"stats":[],"stringId":"mastery_spell_suppression_6710_"},"28625":{"connections":[{"id":32135,"orbit":5},{"id":35848,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Recovery","orbit":7,"orbitIndex":0,"skill":28625,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks17"},"28638":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStaffPattern","connections":[{"id":37514,"orbit":0},{"id":2113,"orbit":0}],"group":1513,"icon":"Art/2DArt/SkillIcons/passives/StaffMasterySymbol.dds","isOnlyImage":true,"name":"Quarterstaff Mastery","orbit":0,"orbitIndex":0,"skill":28638,"stats":[],"stringId":"mastery_quarterstaff_6654_"},"28680":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":442,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":28680,"stats":[],"stringId":"mastery_caster45"},"28693":{"connections":[{"id":49280,"orbit":7}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":1,"skill":28693,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion8"},"28718":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":681,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":28718,"stats":[],"stringId":"mastery_elemental_6475"},"28745":{"ascendancyName":"Shaman","connections":[],"group":72,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanUnleashTheElements.dds","isNotable":true,"name":"Bringer of the Apocalypse","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":28745,"stats":["Grants Skill: Apocalypse"],"stringId":"AscendancyDruid2Notable2"},"28770":{"connectionArt":"CharacterPlanned","connections":[{"id":479,"orbit":-7}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":28770,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"oracle_shapeshifting_path2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"28774":{"connections":[{"id":2999,"orbit":0},{"id":10295,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":26,"skill":28774,"stats":["3% increased Cast Speed"],"stringId":"cast_speed1"},"28797":{"connections":[{"id":632,"orbit":0}],"group":1517,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Speed","orbit":6,"orbitIndex":65,"skill":28797,"stats":["3% increased Attack Speed with Daggers"],"stringId":"dagger6"},"28800":{"connections":[{"id":55308,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":28800,"stats":["10% increased Projectile Damage"],"stringId":"projectiles38_"},"28823":{"connections":[{"id":21111,"orbit":4},{"id":59303,"orbit":5}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Activation Chance","orbit":7,"orbitIndex":23,"skill":28823,"stats":["10% chance when a Charm is used to use another Charm without consuming Charges"],"stringId":"charms13"},"28835":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":56847,"orbit":0},{"id":60480,"orbit":0},{"id":8157,"orbit":0}],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":0,"orbitIndex":0,"skill":28835,"stats":["12% increased Damage while affected by a Herald"],"stringId":"heralds10"},"28839":{"connections":[],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":16,"skill":28839,"stats":["3% increased Cast Speed"],"stringId":"cast_speed14"},"28859":{"connections":[{"id":45382,"orbit":0}],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Ailment Chance and Elemental Damage","orbit":4,"orbitIndex":15,"skill":28859,"stats":["10% increased Elemental Damage","6% increased chance to inflict Ailments"],"stringId":"ailments47"},"28860":{"connections":[{"id":56104,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":18,"skill":28860,"stats":["Break 20% increased Armour"],"stringId":"armour_break26"},"28862":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":465,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":28862,"stats":[],"stringId":"mastery_leech23_"},"28863":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":877,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":28863,"stats":[],"stringId":"mastery_attack13"},"28892":{"connections":[{"id":13845,"orbit":7},{"id":65042,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Primal Rage","orbit":3,"orbitIndex":2,"recipe":["Suffering","Guilt","Paranoia"],"skill":28892,"stats":["+12 to maximum Rage while Shapeshifted"],"stringId":"rage25"},"28903":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":28903,"stats":[],"stringId":"mastery_poison199"},"28950":{"connections":[{"id":63469,"orbit":0},{"id":10156,"orbit":0},{"id":19873,"orbit":9},{"id":44948,"orbit":0},{"id":41838,"orbit":-8}],"group":672,"icon":"Art/2DArt/SkillIcons/passives/bodysoul.dds","isNotable":true,"isSwitchable":true,"name":"Devoted Protector","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":7130,"name":"Bastion of the Forest","stats":["15% increased Armour","+15% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","+5 to Strength and Intelligence"]}},"orbit":0,"orbitIndex":0,"skill":28950,"stats":["15% increased Armour","+15% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","+5 to Strength and Intelligence"],"stringId":"templar_druid_notable2"},"28963":{"connections":[{"id":23105,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","isNotable":true,"name":"Chakra of Rhythm","orbit":2,"orbitIndex":1,"recipe":["Guilt","Greed","Despair"],"skill":28963,"stats":["6% increased Attack Speed","20% Chance to build an additional Combo on Hit"],"stringId":"unarmed11"},"28975":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":26905,"orbit":0}],"group":909,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Pure Power","orbit":6,"orbitIndex":0,"recipe":["Suffering","Guilt","Suffering"],"skill":28975,"stats":["10% more Maximum Lightning Damage"],"stringId":"lightning29"},"28976":{"connections":[{"id":23374,"orbit":0},{"id":29458,"orbit":0}],"group":1530,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":0,"orbitIndex":0,"skill":28976,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison7"},"28981":{"connections":[{"id":34871,"orbit":-2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":2,"orbitIndex":18,"skill":28981,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage34"},"28982":{"connections":[{"id":31295,"orbit":0},{"id":55190,"orbit":0},{"id":32845,"orbit":0},{"id":45226,"orbit":0}],"group":105,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":28982,"stats":["+5 to any Attribute"],"stringId":"strength48"},"28992":{"connections":[{"id":62628,"orbit":0},{"id":43923,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/Hunter.dds","isNotable":true,"isSwitchable":true,"name":"Honed Instincts","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/LethalAssault.dds","id":32062,"name":"Primal Instinct","stats":["8% increased Attack Speed","6% increased Area of Effect","+10 to Dexterity"]}},"orbit":4,"orbitIndex":21,"skill":28992,"stats":["8% increased Projectile Speed","8% increased Attack Speed","+10 to Dexterity"],"stringId":"ranger_huntress_notable2"},"29009":{"connections":[{"id":59362,"orbit":0}],"group":811,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29009,"stats":["+5 to any Attribute"],"stringId":"intelligence56"},"29041":{"connections":[{"id":31388,"orbit":0},{"id":52298,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":12,"skill":29041,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells2"},"29049":{"connections":[{"id":56893,"orbit":3}],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Duration","orbit":2,"orbitIndex":10,"skill":29049,"stats":["10% increased Charm Effect Duration"],"stringId":"charms9"},"29065":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleeding Mastery","orbit":1,"orbitIndex":7,"skill":29065,"stats":[],"stringId":"mastery_bleeding_6327"},"29074":{"ascendancyName":"Pathfinder","connections":[],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderEnemiesMultiplePoisons.dds","isNotable":true,"name":"Overwhelming Toxicity","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":8,"orbitIndex":36,"skill":29074,"stats":["Double the number of your Poisons that targets can be affected by at the same time","50% less Poison Duration"],"stringId":"AscendancyRanger3Notable4"},"29098":{"connections":[{"id":43588,"orbit":0},{"id":10727,"orbit":-2}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":8,"skill":29098,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells10"},"29126":{"connectionArt":"CharacterPlanned","connections":[{"id":32353,"orbit":-7}],"group":356,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":14,"skill":29126,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"oracle_shapeshifting_path1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29133":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":2}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":4,"orbitIndex":9,"skill":29133,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyMonk2Small6"},"29148":{"connections":[{"id":34840,"orbit":0}],"group":621,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29148,"stats":["+5 to any Attribute"],"stringId":"intelligence48"},"29162":{"ascendancyName":"Tactician","connections":[{"id":15044,"orbit":0}],"group":349,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Spirit","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":29162,"stats":["8% increased Spirit"],"stringId":"AscendancyMercenary1Small1"},"29197":{"connectionArt":"CharacterPlanned","connections":[{"id":11428,"orbit":-7}],"group":254,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration and Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":15,"skill":29197,"stats":["15% increased Critical Damage Bonus","10% increased Archon Buff duration"],"stringId":"oracle_archon_crit1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29240":{"connections":[{"id":55668,"orbit":0},{"id":10881,"orbit":0},{"id":31977,"orbit":0},{"id":57513,"orbit":0}],"group":1074,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29240,"stats":["+5 to any Attribute"],"stringId":"attributes61"},"29246":{"connections":[{"id":22927,"orbit":0},{"id":35043,"orbit":0}],"group":1459,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":6,"orbitIndex":27,"skill":29246,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"buckler9"},"29270":{"connections":[{"id":7251,"orbit":-2}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":20,"skill":29270,"stats":["10% increased Attack Damage"],"stringId":"life_leech7"},"29285":{"connections":[{"id":9745,"orbit":2147483647},{"id":38463,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Movement Speed","orbit":7,"orbitIndex":19,"skill":29285,"stats":["2% increased Movement Speed"],"stringId":"azmerianimals10"},"29288":{"connections":[{"id":36759,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Deadly Invocations","orbit":3,"orbitIndex":1,"recipe":["Isolation","Ire","Envy"],"skill":29288,"stats":["Invocation Spells have 50% increased Critical Damage Bonus"],"stringId":"triggers30"},"29306":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":17668,"orbit":1}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","isNotable":true,"name":"Chakra of Thought","orbit":1,"orbitIndex":1,"recipe":["Fear","Disgust","Guilt"],"skill":29306,"stats":["8% of Damage is taken from Mana before Life","15% increased Attack Speed while not on Low Mana"],"stringId":"monkchakra6"},"29320":{"connections":[{"id":1680,"orbit":7},{"id":56860,"orbit":0}],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":7,"orbitIndex":8,"skill":29320,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"buckler17"},"29323":{"ascendancyName":"Titan","connections":[{"id":24807,"orbit":4}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Armour","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":6,"orbitIndex":53,"skill":29323,"stats":["20% increased Armour"],"stringId":"AscendancyWarrior1Small8"},"29328":{"connections":[{"id":43201,"orbit":0}],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":61,"skill":29328,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments1"},"29358":{"connections":[{"id":917,"orbit":-7}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":7,"skill":29358,"stats":["15% increased Stun Buildup"],"stringId":"stun9"},"29361":{"connections":[],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":7,"skill":29361,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield4"},"29369":{"connections":[{"id":11337,"orbit":5},{"id":41669,"orbit":-4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":4,"orbitIndex":42,"skill":29369,"stats":["15% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze11"},"29372":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[{"id":7720,"orbit":0},{"id":63268,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Sudden Infuriation","orbit":5,"orbitIndex":60,"recipe":["Fear","Suffering","Isolation"],"skill":29372,"stats":["4% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage"],"stringId":"rage19"},"29391":{"connections":[{"id":29009,"orbit":-3},{"id":5314,"orbit":3},{"id":50715,"orbit":3},{"id":61354,"orbit":0},{"id":29800,"orbit":-3}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infused Spell Damage","orbit":2,"orbitIndex":6,"skill":29391,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"infusion19_"},"29398":{"ascendancyName":"Stormweaver","connections":[{"id":18849,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Chill Duration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":6,"orbitIndex":2,"skill":29398,"stats":["25% increased Chill Duration on Enemies"],"stringId":"AscendancySorceress1Small8"},"29399":{"connections":[{"id":23888,"orbit":7},{"id":51446,"orbit":-7}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":20,"skill":29399,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion22"},"29402":{"connections":[{"id":4046,"orbit":0},{"id":54282,"orbit":0},{"id":38270,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":7,"orbitIndex":3,"skill":29402,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation5"},"29408":{"connections":[{"id":31888,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":8,"skill":29408,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration11"},"29432":{"connections":[{"id":4061,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":48,"skill":29432,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield42__"},"29447":{"connections":[{"id":11786,"orbit":2147483647}],"group":348,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":2,"orbitIndex":11,"skill":29447,"stats":["10% increased Armour","+5% of Armour also applies to Elemental Damage"],"stringId":"armour48"},"29458":{"connections":[],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":14,"skill":29458,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison2"},"29479":{"connections":[{"id":50469,"orbit":0}],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":18,"skill":29479,"stats":["+5 to any Attribute"],"stringId":"dexterity87"},"29502":{"connections":[{"id":36302,"orbit":4}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":29502,"stats":["3% increased Cast Speed"],"stringId":"cast_speed10"},"29514":{"connections":[{"id":39431,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Cluster Bombs","orbit":3,"orbitIndex":3,"recipe":["Suffering","Isolation","Disgust"],"skill":29514,"stats":["50% increased Grenade Detonation Time","Grenade Skills Fire an additional Projectile"],"stringId":"grenades11"},"29517":{"connections":[{"id":32701,"orbit":0},{"id":37695,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":24,"skill":29517,"stats":["+5 to any Attribute"],"stringId":"dexterity38"},"29527":{"connections":[{"id":61800,"orbit":0}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"First Approach","orbit":7,"orbitIndex":8,"recipe":["Paranoia","Ire","Fear"],"skill":29527,"stats":["40% increased Critical Hit Chance against Enemies that are on Full Life","Cannot be Blinded while on Full Life","80% increased Damage with Hits against Enemies that are on Full Life"],"stringId":"enemies_on_full_life9"},"29582":{"connections":[{"id":35987,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isSwitchable":true,"name":"Accuracy","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","id":5083,"name":"Stun Threshold during Parry","stats":["20% increased Stun Threshold while Parrying"]}},"orbit":2,"orbitIndex":14,"skill":29582,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy8"},"29611":{"connections":[{"id":41768,"orbit":0},{"id":61393,"orbit":0},{"id":28201,"orbit":0}],"group":140,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":29611,"stats":["+5 to any Attribute"],"stringId":"strength46"},"29652":{"connections":[{"id":15180,"orbit":0},{"id":6008,"orbit":0},{"id":32194,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":11,"skill":29652,"stats":["10% increased Spell Damage"],"stringId":"spells6"},"29663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connectionArt":"CharacterPlanned","connections":[],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Movement Mastery","orbit":2,"orbitIndex":6,"skill":29663,"stats":[],"stringId":"oracle_movement_cooldown_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29695":{"connections":[],"group":850,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","id":31204,"name":"Mana Regeneration","stats":["10% increased Mana Regeneration Rate"]}},"orbit":2,"orbitIndex":7,"skill":29695,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery19"},"29762":{"connections":[{"id":8460,"orbit":0},{"id":40328,"orbit":-2}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Guttural Roar","orbit":3,"orbitIndex":1,"recipe":["Paranoia","Ire","Disgust"],"skill":29762,"stats":["25% increased Warcry Speed","Warcries Debilitate Enemies","Warcry Skills have 25% increased Area of Effect"],"stringId":"warcries18"},"29763":{"connections":[{"id":39423,"orbit":0}],"group":1190,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":29763,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration1"},"29788":{"connections":[{"id":46060,"orbit":-2}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":4,"skill":29788,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech3"},"29800":{"connections":[{"id":50383,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Shocking Limit","orbit":7,"orbitIndex":15,"recipe":["Paranoia","Envy","Fear"],"skill":29800,"stats":["+1 to maximum Lightning Infusions"],"stringId":"infusion25"},"29843":{"connections":[{"id":35987,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion and Reduced Movement Penalty","orbit":7,"orbitIndex":19,"skill":29843,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion4"},"29871":{"ascendancyName":"Deadeye","connections":[{"id":24226,"orbit":0}],"group":1553,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Mark Effect","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":29871,"stats":["12% increased Effect of your Mark Skills"],"stringId":"AscendancyRanger1Small4"},"29881":{"connections":[{"id":25446,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Surging Beast","orbit":1,"orbitIndex":8,"recipe":["Disgust","Ire","Disgust"],"skill":29881,"stats":["Gain Arcane Surge when you Shapeshift to Human form after","being Shapeshifted for at least 8 seconds"],"stringId":"wyvern17"},"29899":{"connections":[{"id":19001,"orbit":0},{"id":6912,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Finish Them","orbit":7,"orbitIndex":21,"recipe":["Suffering","Despair","Guilt"],"skill":29899,"stats":["40% increased Culling Strike Threshold against Immobilised Enemies"],"stringId":"slaying12_"},"29914":{"connections":[{"id":46931,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour and Evasion while Surrounded","orbit":3,"orbitIndex":7,"skill":29914,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded19"},"29930":{"connections":[{"id":16938,"orbit":3},{"id":47088,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage and Companion Life","orbit":2,"orbitIndex":0,"skill":29930,"stats":["Companions deal 12% increased Damage","Companions have 12% increased maximum Life"],"stringId":"duelist_minions5_"},"29941":{"connections":[{"id":60829,"orbit":0},{"id":57517,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":3,"orbitIndex":17,"skill":29941,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed36"},"29959":{"connections":[{"id":6891,"orbit":3},{"id":60362,"orbit":-3}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":14,"skill":29959,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals87"},"29985":{"connectionArt":"CharacterPlanned","connections":[{"id":61113,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":14,"skill":29985,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_forbidden_path3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"29990":{"connections":[{"id":36217,"orbit":0},{"id":47477,"orbit":-9},{"id":30808,"orbit":0}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":7,"orbitIndex":8,"skill":29990,"stats":["5% chance to gain Volatility on Kill"],"stringId":"volatility13"},"29993":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":301,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":8,"skill":29993,"stats":[],"stringId":"mastery_duration91"},"30007":{"connections":[{"id":3188,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":1,"orbitIndex":7,"skill":30007,"stats":["16% increased Thorns damage"],"stringId":"getting_hit3_"},"30040":{"connections":[{"id":56016,"orbit":0}],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":7,"skill":30040,"stats":["Break 20% increased Armour"],"stringId":"armour_break18"},"30047":{"connections":[{"id":21280,"orbit":0},{"id":18451,"orbit":0},{"id":45650,"orbit":0}],"group":1061,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30047,"stats":["+5 to any Attribute"],"stringId":"dexterity67_"},"30061":{"connections":[{"id":31908,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":4,"skill":30061,"stats":["6% increased Curse Magnitudes"],"stringId":"curses23"},"30071":{"ascendancyName":"Blood Mage","connections":[{"id":27667,"orbit":-9}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Curse Effect","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":6,"orbitIndex":4,"skill":30071,"stats":["6% increased Curse Magnitudes"],"stringId":"AscendancyWitch2Small5"},"30077":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1409,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":30077,"stats":[],"stringId":"mastery_caster_6356"},"30082":{"connections":[{"id":43155,"orbit":0}],"group":971,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":0,"orbitIndex":0,"skill":30082,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow23"},"30100":{"ascendancyName":"Ritualist","connections":[{"id":38813,"orbit":6}],"group":1617,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30100,"stats":["3% increased Movement Speed"],"stringId":"AscendancyHuntress3Small7"},"30102":{"connections":[{"id":43944,"orbit":2147483647},{"id":53177,"orbit":0}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":2,"orbitIndex":23,"skill":30102,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility6"},"30115":{"ascendancyName":"Titan","connections":[],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSmallPassiveDoubled.dds","isNotable":true,"name":"Hulking Form","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":7,"orbitIndex":16,"skill":30115,"stats":["50% increased effect of Small Passive Skills"],"stringId":"AscendancyWarrior1Notable5"},"30117":{"ascendancyName":"Blood Mage","connections":[{"id":26383,"orbit":5},{"id":8415,"orbit":-5}],"group":939,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30117,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancyWitch2Small1"},"30123":{"connections":[{"id":6923,"orbit":0},{"id":26092,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":12,"skill":30123,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed3"},"30132":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":58416,"orbit":2147483647},{"id":49130,"orbit":2147483647}],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","isNotable":true,"name":"Wrapped Quiver","orbit":7,"orbitIndex":15,"recipe":["Greed","Suffering","Envy"],"skill":30132,"stats":["20% increased bonuses gained from Equipped Quiver"],"stringId":"quivers9"},"30136":{"connections":[{"id":22626,"orbit":0}],"group":208,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Damage vs Armour Broken Enemies","orbit":3,"orbitIndex":7,"skill":30136,"stats":["20% increased Damage against Enemies with Fully Broken Armour"],"stringId":"armour_break9"},"30141":{"connections":[{"id":55190,"orbit":0}],"group":129,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30141,"stats":["+5 to any Attribute"],"stringId":"attributes15"},"30143":{"connections":[{"id":34201,"orbit":9}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":0,"skill":30143,"stats":["5% increased Block chance"],"stringId":"block22"},"30151":{"ascendancyName":"Tactician","connections":[{"id":32637,"orbit":0}],"group":400,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30151,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary1Small6"},"30197":{"connections":[{"id":52415,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Attack Speed with Companion in Presence","orbit":2,"orbitIndex":2,"skill":30197,"stats":["4% increased Attack Speed while your Companion is in your Presence"],"stringId":"companions31_"},"30210":{"connections":[{"id":64650,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Evasion Rating","orbit":2,"orbitIndex":6,"skill":30210,"stats":["15% increased Evasion Rating"],"stringId":"stun_threshold18"},"30219":{"connections":[{"id":45177,"orbit":-2}],"group":619,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":1,"orbitIndex":10,"skill":30219,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy47"},"30233":{"ascendancyName":"Ritualist","connections":[{"id":30100,"orbit":6}],"group":1621,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpse.dds","isNotable":true,"name":"As the Whispers Demand","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30233,"stats":["Grants Skill: Ritual Sacrifice"],"stringId":"AscendancyHuntress3Notable7"},"30252":{"connections":[{"id":20049,"orbit":4},{"id":48135,"orbit":-4}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Effect","orbit":7,"orbitIndex":18,"skill":30252,"stats":["Charms applied to you have 10% increased Effect"],"stringId":"charms18"},"30258":{"connections":[{"id":40105,"orbit":0}],"group":235,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack Speed and Minion Attack Speed","orbit":2,"orbitIndex":9,"skill":30258,"stats":["3% increased Attack Speed","Minions have 3% increased Attack Speed"],"stringId":"minion_offence58"},"30265":{"ascendancyName":"Disciple of Varashta","connections":[],"group":610,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Energy Shield","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":30265,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancySorceress3Small1"},"30300":{"connections":[{"id":12565,"orbit":0},{"id":1200,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":2,"orbitIndex":2,"skill":30300,"stats":["16% increased Thorns damage"],"stringId":"getting_hit6"},"30334":{"connections":[{"id":9324,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":0,"skill":30334,"stats":["8% increased Ignite Duration on Enemies"],"stringId":"ignite_mitigation10"},"30341":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":1995,"orbit":0},{"id":37946,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","isNotable":true,"name":"Master Fletching","orbit":7,"orbitIndex":0,"recipe":["Fear","Despair","Disgust"],"skill":30341,"stats":["20% increased bonuses gained from Equipped Quiver"],"stringId":"quivers4"},"30346":{"connections":[{"id":44871,"orbit":0},{"id":29695,"orbit":-5},{"id":34006,"orbit":6}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":13,"skill":30346,"stats":["+10 to maximum Energy Shield"],"stringId":"energy_shield14"},"30371":{"connections":[{"id":27687,"orbit":-4}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":3,"orbitIndex":1,"skill":30371,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield3"},"30372":{"connections":[{"id":42065,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":23,"skill":30372,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration13"},"30390":{"connections":[{"id":33978,"orbit":3}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":30390,"stats":["5% increased Block chance"],"stringId":"block23"},"30392":{"connections":[{"id":28106,"orbit":0},{"id":41016,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Succour","orbit":2,"orbitIndex":3,"recipe":["Disgust","Despair","Guilt"],"skill":30392,"stats":["30% increased Life Regeneration rate during Effect of any Life Flask"],"stringId":"life_flasks25_"},"30393":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":58894,"orbit":0},{"id":15825,"orbit":0}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":30393,"stats":[],"stringId":"mastery_energyshield107"},"30395":{"connections":[{"id":9221,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Howling Beast","orbit":1,"orbitIndex":2,"recipe":["Fear","Paranoia","Envy"],"skill":30395,"stats":["Warcries inflict 3 Critical Weakness on Enemies"],"stringId":"wolf14"},"30408":{"connections":[{"id":17906,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","isNotable":true,"name":"Efficient Contraptions","orbit":7,"orbitIndex":16,"recipe":["Fear","Paranoia","Guilt"],"skill":30408,"stats":["Hazards have 15% chance to rearm after they are triggered"],"stringId":"hazards4"},"30456":{"connections":[{"id":38044,"orbit":-5}],"group":1220,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"High Alert","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Greed"],"skill":30456,"stats":["50% increased Evasion Rating when on Full Life","25% increased Stun Threshold while on Full Life"],"stringId":"evasion5"},"30457":{"connections":[{"id":54416,"orbit":4}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":12,"skill":30457,"stats":["15% increased Armour"],"stringId":"armour1"},"30459":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":3,"skill":30459,"stats":[],"stringId":"mastery_minion_offence_6616"},"30463":{"connections":[{"id":58971,"orbit":-7},{"id":9968,"orbit":-6}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":3,"skill":30463,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression26_"},"30523":{"connections":[{"id":35492,"orbit":0}],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Dead can Dance","orbit":5,"orbitIndex":61,"recipe":["Despair","Fear","Ire"],"skill":30523,"stats":["Minions have 25% increased maximum Life","Minions have 25% increased Evasion Rating"],"stringId":"minion_offence16"},"30539":{"connections":[{"id":25620,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":7,"orbitIndex":18,"skill":30539,"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"stringId":"corpses8"},"30546":{"connections":[{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Electrified Claw","orbit":7,"orbitIndex":23,"recipe":["Guilt","Fear","Suffering"],"skill":30546,"stats":["Gain 8% of Damage as Extra Lightning Damage while Shapeshifted"],"stringId":"wyvern14"},"30553":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":162,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":30553,"stats":[],"stringId":"mastery_warcry_6791"},"30554":{"connections":[{"id":29611,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":7,"orbitIndex":20,"skill":30554,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence2"},"30555":{"connections":[{"id":53960,"orbit":3}],"group":941,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30555,"stats":["+5 to any Attribute"],"stringId":"attributes40"},"30562":{"connections":[{"id":11032,"orbit":0}],"group":1155,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Inner Faith","orbit":2,"orbitIndex":18,"recipe":["Envy","Greed","Isolation"],"skill":30562,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","25% reduced effect of Curses on you"],"stringId":"evasion_and_energy_shield12_"},"30615":{"connections":[],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Critical Damage when consuming a Power Charge","orbit":2,"orbitIndex":13,"skill":30615,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"stringId":"power_charges6_"},"30634":{"connections":[],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":6,"skill":30634,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery5"},"30657":{"connections":[{"id":38463,"orbit":0},{"id":6842,"orbit":0},{"id":59064,"orbit":0},{"id":58848,"orbit":0},{"id":32891,"orbit":0}],"group":1348,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30657,"stats":["+5 to any Attribute"],"stringId":"attributes9"},"30662":{"connections":[{"id":26291,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":32,"skill":30662,"stats":["12% increased Lightning Damage"],"stringId":"lightning1_"},"30663":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":24721,"orbit":0}],"group":1243,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":30663,"stats":[],"stringId":"mastery_cold_6392"},"30695":{"connections":[{"id":13783,"orbit":0},{"id":19808,"orbit":0},{"id":56472,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/ClawsOfTheMagpie.dds","isNotable":true,"isSwitchable":true,"name":"Vile Wounds","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/eagleeye.dds","id":53849,"name":"Eagle Eye","stats":["+30 to Accuracy Rating","10% increased Accuracy Rating"]}},"orbit":2,"orbitIndex":14,"skill":30695,"stats":["33% increased Damage with Hits against Enemies affected by Ailments"],"stringId":"exploiting_elemental_ailments10"},"30701":{"connections":[],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":8,"skill":30701,"stats":["6% reduced Projectile Speed"],"stringId":"projectiles41"},"30704":{"connections":[{"id":22045,"orbit":0}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration and Damage","orbit":2,"orbitIndex":6,"skill":30704,"stats":["5% increased Damage","Regenerate 0.1% of maximum Life per second"],"stringId":"life_regeneration12"},"30720":{"connections":[{"id":20119,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","isNotable":true,"name":"Entropic Incarnation","orbit":2,"orbitIndex":2,"recipe":["Suffering","Suffering","Envy"],"skill":30720,"stats":["Minions have +13% to Chaos Resistance","Minions gain 10% of Physical Damage as Chaos Damage"],"stringId":"minion_reservation14"},"30736":{"connections":[{"id":52180,"orbit":-2}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":13,"skill":30736,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect57_"},"30748":{"connections":[{"id":21801,"orbit":0}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Controlled Chaos","orbit":7,"orbitIndex":0,"recipe":["Greed","Envy","Guilt"],"skill":30748,"stats":["Maximum Volatility is 30"],"stringId":"volatility2"},"30780":{"connections":[{"id":17112,"orbit":-2},{"id":5410,"orbit":-2}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Area and Damage","orbit":2,"orbitIndex":15,"skill":30780,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"stringId":"melee60"},"30781":{"connectionArt":"CharacterPlanned","connections":[{"id":63772,"orbit":2147483647}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Movement Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":18,"skill":30781,"stats":["3% increased Movement Speed"],"stringId":"oracle_movement_cooldown3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"30808":{"connections":[{"id":14267,"orbit":0},{"id":28101,"orbit":-4},{"id":28859,"orbit":0}],"group":1502,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30808,"stats":["+5 to any Attribute"],"stringId":"attributes11"},"30820":{"connections":[{"id":26786,"orbit":0}],"group":1075,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage and Skill Duration","orbit":7,"orbitIndex":16,"skill":30820,"stats":["8% increased Attack Damage","8% increased Skill Effect Duration"],"stringId":"attack7"},"30829":{"connections":[{"id":56999,"orbit":0}],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":0,"skill":30829,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy27"},"30834":{"connections":[{"id":50216,"orbit":0},{"id":57967,"orbit":0}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":2,"skill":30834,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana4"},"30839":{"connections":[{"id":35671,"orbit":-3}],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":3,"orbitIndex":17,"skill":30839,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed21_"},"30871":{"connections":[{"id":12208,"orbit":0}],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":9,"skill":30871,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks15"},"30896":{"connections":[{"id":49172,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":13,"skill":30896,"stats":["3% increased Skill Speed with Channelling Skills"],"stringId":"channelling4"},"30904":{"ascendancyName":"Oracle","connections":[],"group":22,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleLifeManaHits.dds","isNotable":true,"name":"Harmony Within","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30904,"stats":["Hit damage is taken from Mana before Life if your current Mana is higher than your current Life","15% less maximum Life","15% less maximum Mana"],"stringId":"AscendancyDruid1Notable3"},"30905":{"connections":[{"id":8697,"orbit":5},{"id":34201,"orbit":6}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":21,"skill":30905,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks3"},"30910":{"connections":[{"id":59647,"orbit":-7}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":2,"orbitIndex":13,"skill":30910,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"duelist_minions1"},"30959":{"connections":[{"id":31778,"orbit":2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":14,"skill":30959,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"oracle3"},"30973":{"connections":[{"id":49320,"orbit":0}],"group":1493,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Chance","orbit":6,"orbitIndex":34,"skill":30973,"stats":["10% increased Critical Hit Chance with Daggers"],"stringId":"dagger11"},"30979":{"connections":[{"id":46358,"orbit":0},{"id":44733,"orbit":0},{"id":12610,"orbit":0}],"group":609,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":30979,"stats":["+5 to any Attribute"],"stringId":"intelligence38"},"30985":{"connections":[{"id":12324,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Chance","orbit":2,"orbitIndex":10,"skill":30985,"stats":["5% chance when collecting an Elemental Infusion to gain an","additional Elemental Infusion of the same type"],"stringId":"infusion7"},"30990":{"connections":[{"id":58939,"orbit":0}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":16,"skill":30990,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals82"},"30996":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":53762,"orbit":0},{"id":18146,"orbit":0}],"group":543,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingSameSupportMultipleTimes.dds","isNotable":true,"name":"Gem Studded","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":30996,"stats":["For each colour of Socketed Support Gem that is most numerous, gain:","Red: Hits against you have no Critical Damage Bonus","Blue: Skills have 30% less cost","Green: 40% less Movement Speed Penalty from using Skills while Moving"],"stringId":"AscendancyMercenary3Notable3"},"31010":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Delay","orbit":4,"orbitIndex":23,"skill":31010,"stats":["10% faster start of Energy Shield Recharge while Shapeshifted"],"stringId":"wyvern11"},"31017":{"connections":[{"id":26339,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":31017,"stats":["15% increased Totem Damage"],"stringId":"totems53"},"31037":{"connections":[{"id":34866,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":22,"skill":31037,"stats":["Remnants you create have 10% increased effect"],"stringId":"remnant2"},"31039":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1097,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":31039,"stats":[],"stringId":"mastery_criticals65"},"31055":{"connections":[{"id":18969,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":2,"orbitIndex":19,"skill":31055,"stats":["3% increased Attack Speed with Bows"],"stringId":"bow15"},"31112":{"connections":[],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Strike","orbit":7,"orbitIndex":2,"skill":31112,"stats":["10% increased Ballista Critical Hit Chance"],"stringId":"ballista11"},"31116":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamagePerDarkness.dds","isNotable":true,"name":"Grasp of the Void","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":8,"orbitIndex":24,"skill":31116,"stats":["Grants Skill: Void Illusion"],"stringId":"AscendancyMonk3Notable8"},"31129":{"connections":[{"id":37971,"orbit":0}],"group":1545,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Lifelong Friend","orbit":0,"orbitIndex":0,"recipe":["Despair","Despair","Ire"],"skill":31129,"stats":["Minions Revive 35% faster if all your Minions are Companions"],"stringId":"companions7"},"31159":{"connections":[{"id":46017,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration while Stationary","orbit":7,"orbitIndex":20,"skill":31159,"stats":["15% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration13_"},"31172":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Falcon Technique","orbit":5,"orbitIndex":51,"recipe":["Suffering","Suffering","Despair"],"skill":31172,"stats":["1% increased Attack Speed per 25 Dexterity"],"stringId":"attack_speed34"},"31175":{"connections":[{"id":20119,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Grip of Evil","orbit":2,"orbitIndex":22,"recipe":["Isolation","Despair","Ire"],"skill":31175,"stats":["Minions have 40% increased Critical Damage Bonus"],"stringId":"minion_offence33_"},"31189":{"connections":[{"id":28863,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","isNotable":true,"name":"Unexpected Finesse","orbit":4,"orbitIndex":12,"recipe":["Despair","Greed","Isolation"],"skill":31189,"stats":["20% increased Attack Damage","30% increased Accuracy Rating while moving"],"stringId":"attack33_"},"31223":{"ascendancyName":"Blood Mage","connections":[],"group":1015,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageGainLifeEnergyShield.dds","isNotable":true,"name":"Crimson Power","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":31223,"stats":["Gain additional maximum Life equal to 100% of the Item Energy Shield on Equipped Body Armour"],"stringId":"AscendancyWitch2Notable8"},"31238":{"connections":[{"id":48552,"orbit":0},{"id":45918,"orbit":0},{"id":10452,"orbit":0}],"group":477,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":31238,"stats":["+5 to any Attribute"],"stringId":"attributes14"},"31273":{"connections":[{"id":17372,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":2,"orbitIndex":4,"skill":31273,"stats":["10% increased Melee Damage"],"stringId":"melee14_"},"31284":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[{"id":21380,"orbit":0}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":1,"orbitIndex":3,"skill":31284,"stats":[],"stringId":"mastery_critical_267"},"31286":{"connections":[{"id":16140,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical","orbit":3,"orbitIndex":14,"skill":31286,"stats":["10% increased Physical Damage"],"stringId":"physical5"},"31290":{"connections":[{"id":32474,"orbit":0},{"id":60332,"orbit":0},{"id":32764,"orbit":0},{"id":37609,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":22,"skill":31290,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour52"},"31292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMacePattern","connections":[],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMace.dds","isOnlyImage":true,"name":"Mace Mastery","orbit":0,"orbitIndex":0,"skill":31292,"stats":[],"stringId":"mastery_mace154"},"31295":{"connections":[{"id":9352,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":21,"skill":31295,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks2"},"31326":{"connections":[{"id":44092,"orbit":0},{"id":11505,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Slow Burn","orbit":2,"orbitIndex":18,"recipe":["Guilt","Suffering","Paranoia"],"skill":31326,"stats":["20% increased Ignite Magnitude","20% increased Ignite Duration on Enemies"],"stringId":"ignite6"},"31345":{"connections":[{"id":55400,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":11,"skill":31345,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration11"},"31364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Primal Protection","orbit":0,"orbitIndex":0,"recipe":["Guilt","Greed","Paranoia"],"skill":31364,"stats":["40% increased Charm Effect Duration","40% increased Charm Charges gained"],"stringId":"charms3"},"31366":{"connections":[{"id":57518,"orbit":4},{"id":3843,"orbit":-4}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Stun Buildup","orbit":2,"orbitIndex":5,"skill":31366,"stats":["Parry has 20% increased Stun Buildup"],"stringId":"deflect4"},"31370":{"connections":[{"id":32448,"orbit":2147483647}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Lightning Damage","orbit":2,"orbitIndex":20,"skill":31370,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"stringId":"armour44"},"31373":{"connections":[{"id":50561,"orbit":0},{"id":47173,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Vocal Empowerment","orbit":4,"orbitIndex":63,"recipe":["Isolation","Isolation","Despair"],"skill":31373,"stats":["Warcries Empower an additional Attack"],"stringId":"warcries12"},"31388":{"connections":[{"id":51394,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":7,"skill":31388,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells3"},"31409":{"connections":[{"id":50437,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":3,"skill":31409,"stats":["15% increased Evasion Rating"],"stringId":"evasion13"},"31419":{"connections":[{"id":35787,"orbit":3},{"id":53405,"orbit":4}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":9,"skill":31419,"stats":["10% increased Skill Effect Duration"],"stringId":"duration2"},"31433":{"connections":[{"id":21495,"orbit":-4},{"id":5348,"orbit":0}],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Catalysis","orbit":2,"orbitIndex":8,"recipe":["Isolation","Isolation","Paranoia"],"skill":31433,"stats":["20% increased Elemental Damage with Attacks","5% of Physical Damage from Hits taken as Damage of a Random Element"],"stringId":"elemental_attacks8"},"31449":{"connections":[{"id":9444,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Chance","orbit":5,"orbitIndex":40,"skill":31449,"stats":["10% increased Critical Hit Chance with Quarterstaves"],"stringId":"quarterstaff13"},"31517":{"connections":[{"id":11722,"orbit":0},{"id":46034,"orbit":0}],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Seal Generation Frequency","orbit":2,"orbitIndex":4,"skill":31517,"stats":["Sealed Skills have 10% increased Seal gain frequency"],"stringId":"spells27"},"31545":{"connections":[{"id":8171,"orbit":0},{"id":3446,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage and Presence Area","orbit":7,"orbitIndex":2,"skill":31545,"stats":["10% increased Presence Area of Effect","6% increased Attack Damage"],"stringId":"glory9"},"31554":{"connectionArt":"CharacterPlanned","connections":[{"id":49929,"orbit":0}],"group":147,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":6,"skill":31554,"stats":["15% increased Skill Effect Duration"],"stringId":"oracle_duration_physical8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31566":{"connections":[{"id":7049,"orbit":0},{"id":54818,"orbit":9}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour while Surrounded","orbit":3,"orbitIndex":23,"skill":31566,"stats":["30% increased Armour while Surrounded"],"stringId":"being_surrounded2"},"31609":{"connections":[{"id":36163,"orbit":-4}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Shield Defences","orbit":3,"orbitIndex":0,"skill":31609,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block24"},"31626":{"connections":[{"id":50516,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Flammability Magnitude","orbit":7,"orbitIndex":23,"skill":31626,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"stringId":"area_attacks62"},"31630":{"connections":[{"id":64474,"orbit":0}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":17,"skill":31630,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery28"},"31644":{"connections":[{"id":14739,"orbit":0},{"id":34058,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":23,"skill":31644,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery21"},"31647":{"connections":[{"id":23305,"orbit":0}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":3,"orbitIndex":12,"skill":31647,"stats":["+8 to Dexterity"],"stringId":"dexterity108"},"31650":{"connections":[{"id":16051,"orbit":0},{"id":31017,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":0,"skill":31650,"stats":["15% increased Totem Damage"],"stringId":"totems49"},"31673":{"connections":[{"id":48649,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Energy Shield Delay while Shapeshifted","orbit":2,"orbitIndex":14,"skill":31673,"stats":["10% faster start of Energy Shield Recharge while Shapeshifted"],"stringId":"shapeshifting36"},"31692":{"connections":[{"id":46197,"orbit":0}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":3,"skill":31692,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals83"},"31697":{"connections":[{"id":51303,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":4,"skill":31697,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion8"},"31724":{"connections":[{"id":2074,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Iron Slippers","orbit":2,"orbitIndex":0,"recipe":["Isolation","Envy","Guilt"],"skill":31724,"stats":["+2 to Armour per 1 Item Energy Shield on Equipped Boots","12% reduced Slowing Potency of Debuffs on You"],"stringId":"energy_shield_and_armour29_"},"31745":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1023,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Lockdown","orbit":4,"orbitIndex":48,"recipe":["Guilt","Despair","Despair"],"skill":31745,"stats":["40% increased Attack Damage against Maimed Enemies","Enemies are Maimed for 4 seconds after becoming Unpinned"],"stringId":"pin11"},"31746":{"connections":[{"id":32845,"orbit":4},{"id":41012,"orbit":-4}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Penetration","orbit":4,"orbitIndex":24,"skill":31746,"stats":["Damage Penetrates 8% Fire Resistance"],"stringId":"ignite_mitigation3"},"31757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connectionArt":"CharacterPlanned","connections":[],"group":147,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":6,"orbitIndex":9,"skill":31757,"stats":[],"stringId":"oracle_duration_physical_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"31763":{"connections":[{"id":43155,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Critical Chance","orbit":4,"orbitIndex":27,"skill":31763,"stats":["10% increased Critical Hit Chance with Crossbows"],"stringId":"crossbow6"},"31765":{"connections":[{"id":59538,"orbit":0},{"id":722,"orbit":0},{"id":41886,"orbit":0},{"id":61421,"orbit":0}],"group":1466,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":31765,"stats":["+5 to any Attribute"],"stringId":"dexterity7"},"31773":{"connections":[{"id":55011,"orbit":0}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Resurging Archon","orbit":7,"orbitIndex":1,"recipe":["Envy","Isolation","Disgust"],"skill":31773,"stats":["Archon recovery period expires 25% faster"],"stringId":"archon7"},"31778":{"connections":[{"id":2344,"orbit":-2}],"group":270,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":10,"skill":31778,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"oracle4"},"31779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":220,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Power Charge Mastery","orbit":0,"orbitIndex":0,"skill":31779,"stats":[],"stringId":"mastery_power_charge_6642_"},"31805":{"connections":[{"id":44461,"orbit":-3}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":15,"skill":31805,"stats":["10% increased Skill Effect Duration"],"stringId":"duration1_"},"31825":{"connections":[{"id":16142,"orbit":2147483647}],"group":1507,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Attack Cold Damage","orbit":7,"orbitIndex":6,"skill":31825,"stats":["12% increased Attack Cold Damage"],"stringId":"cold45"},"31826":{"connections":[{"id":24889,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Long Distance Relationship","orbit":3,"orbitIndex":21,"recipe":["Guilt","Envy","Paranoia"],"skill":31826,"stats":["30% increased Presence Area of Effect","Minions have 15% increased Area of Effect"],"stringId":"companions5"},"31848":{"connections":[{"id":40117,"orbit":7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns Ignore Armour","orbit":7,"orbitIndex":0,"skill":31848,"stats":["Thorns Damage has 25% chance to ignore Enemy Armour"],"stringId":"getting_hit16"},"31855":{"connections":[],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":7,"skill":31855,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks1"},"31888":{"connections":[{"id":34300,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":4,"skill":31888,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration8"},"31890":{"connections":[{"id":38827,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":3,"orbitIndex":5,"skill":31890,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour18"},"31898":{"connections":[{"id":3921,"orbit":0}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":7,"skill":31898,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds2"},"31903":{"connections":[{"id":37612,"orbit":0},{"id":56605,"orbit":0},{"id":38010,"orbit":0}],"group":529,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":31903,"stats":["+5 to any Attribute"],"stringId":"strength76"},"31908":{"connections":[{"id":5594,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":8,"skill":31908,"stats":["6% increased Curse Magnitudes"],"stringId":"curses24"},"31918":{"connections":[{"id":4534,"orbit":-3},{"id":60323,"orbit":-9}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":7,"orbitIndex":15,"skill":31918,"stats":["15% chance to Pierce an Enemy"],"stringId":"ranged9"},"31925":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":38596,"orbit":3}],"group":353,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","isNotable":true,"name":"Warding Fetish","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Envy"],"skill":31925,"stats":["30% increased Damage per Curse on you","30% reduced effect of Curses on you","60% increased Energy Shield from Equipped Focus"],"stringId":"focus5"},"31928":{"connections":[{"id":50574,"orbit":0},{"id":15443,"orbit":0}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Life Recoup","orbit":2,"orbitIndex":12,"skill":31928,"stats":["6% of Physical Damage taken Recouped as Life"],"stringId":"physical44"},"31943":{"connections":[{"id":8382,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":12,"skill":31943,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold27"},"31950":{"connections":[{"id":58329,"orbit":0},{"id":8569,"orbit":0},{"id":21080,"orbit":0},{"id":7405,"orbit":0}],"group":987,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":31950,"stats":["+5 to any Attribute"],"stringId":"intelligence78"},"31955":{"connections":[{"id":37641,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Voll's Protection","orbit":3,"orbitIndex":16,"recipe":["Isolation","Paranoia","Despair"],"skill":31955,"stats":["+15% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","10% increased Block chance","Gain 10 Energy Shield when you Block","Recover 10 Life when you Block"],"stringId":"energy_shield_and_armour44"},"31977":{"connections":[{"id":4828,"orbit":0},{"id":10314,"orbit":6}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":5,"orbitIndex":36,"skill":31977,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana34"},"31991":{"connections":[{"id":36070,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":7,"orbitIndex":15,"skill":31991,"stats":["6% increased Area of Effect for Attacks"],"stringId":"ranged14"},"32009":{"connections":[{"id":36814,"orbit":0}],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":32009,"stats":["20% increased Curse Duration"],"stringId":"curses16"},"32016":{"connections":[{"id":5766,"orbit":-6},{"id":49984,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":7,"orbitIndex":19,"skill":32016,"stats":["12% increased Spell Damage while wielding a Melee Weapon"],"stringId":"spells19"},"32040":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1184,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":32040,"stats":[],"stringId":"mastery_energy_shield_6484"},"32054":{"connections":[{"id":62153,"orbit":0}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":15,"skill":32054,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals18"},"32071":{"connections":[{"id":15427,"orbit":0},{"id":49111,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Primal Growth","orbit":3,"orbitIndex":2,"recipe":["Envy","Fear","Fear"],"skill":32071,"stats":["15% increased Area of Effect if you've Killed Recently","8% increased Area of Effect for Attacks"],"stringId":"area_attacks26"},"32078":{"connections":[{"id":16940,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Spell Damage","orbit":7,"orbitIndex":21,"skill":32078,"stats":["15% increased Spell Damage while you have Arcane Surge"],"stringId":"mana_regeneration43"},"32096":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":32096,"stats":[],"stringId":"mastery_companion290"},"32123":{"connections":[{"id":54678,"orbit":0}],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":4,"skill":32123,"stats":["15% increased chance to Shock"],"stringId":"shock9"},"32128":{"connections":[{"id":18101,"orbit":7},{"id":15801,"orbit":0}],"group":635,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Flow of Time","orbit":0,"orbitIndex":0,"recipe":["Disgust","Fear","Suffering"],"skill":32128,"stats":["Buffs on you expire 10% slower","20% increased speed of Recoup Effects"],"stringId":"life_recoup36"},"32135":{"connections":[{"id":12322,"orbit":5},{"id":16484,"orbit":-9}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":4,"orbitIndex":12,"skill":32135,"stats":["10% increased Flask Charges gained"],"stringId":"flasks15"},"32148":{"connections":[],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Rattling Ball","orbit":2,"orbitIndex":2,"skill":32148,"stats":["25% increased Damage with Flails"],"stringId":"flail15"},"32151":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","isNotable":true,"name":"Crystalline Resistance","orbit":4,"orbitIndex":60,"recipe":["Isolation","Fear","Despair"],"skill":32151,"stats":["+1% to all Maximum Elemental Resistances if you have at","least 5 Red, Green and Blue Support Gems Socketed"],"stringId":"attributes99"},"32155":{"connections":[{"id":25700,"orbit":4}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Shock Chance","orbit":7,"orbitIndex":16,"skill":32155,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"stringId":"elemental18"},"32183":{"connections":[{"id":28371,"orbit":4}],"group":1381,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":32183,"stats":["+5 to any Attribute"],"stringId":"attributes22_"},"32185":{"connections":[{"id":17118,"orbit":0}],"group":1058,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Attack Damage and Companion Damage as Cold","orbit":0,"orbitIndex":0,"skill":32185,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Cold Damage"],"stringId":"companions65"},"32186":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":4,"orbitIndex":43,"skill":32186,"stats":["10% increased Accuracy Rating while Shapeshifted"],"stringId":"wyvern8"},"32194":{"connections":[{"id":55933,"orbit":0},{"id":36478,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":60,"skill":32194,"stats":["+5 to any Attribute"],"stringId":"intelligence34"},"32233":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":864,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":21,"skill":32233,"stats":[],"stringId":"mastery_duration_6463"},"32239":{"connections":[{"id":9009,"orbit":-3}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":1,"skill":32239,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical65"},"32241":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":32241,"stats":[],"stringId":"mastery_life131"},"32258":{"connections":[{"id":19644,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":8,"skill":32258,"stats":["Minions have 12% increased maximum Life"],"stringId":"minion_defence17"},"32271":{"connections":[{"id":54311,"orbit":-2}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":15,"skill":32271,"stats":["30% increased Flammability Magnitude"],"stringId":"fire23"},"32274":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":947,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":32274,"stats":[],"stringId":"mastery_evasion_6502"},"32278":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":531,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":11,"skill":32278,"stats":[],"stringId":"mastery_minionoffence189"},"32301":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":50277,"orbit":0}],"group":1358,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Frazzled","orbit":0,"orbitIndex":0,"recipe":["Despair","Disgust","Paranoia"],"skill":32301,"stats":["15% increased Mana Regeneration Rate","30% increased Magnitude of Shock you inflict"],"stringId":"shock6"},"32309":{"connections":[{"id":59070,"orbit":2}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":16,"skill":32309,"stats":["15% increased Archon Buff duration"],"stringId":"archon3"},"32319":{"connections":[{"id":33542,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":7,"orbitIndex":20,"skill":32319,"stats":["+10% Surpassing chance to fire an additional Arrow"],"stringId":"bow21"},"32340":{"connections":[{"id":24721,"orbit":7}],"group":1260,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":32340,"stats":["12% increased Cold Damage"],"stringId":"cold64__"},"32349":{"connections":[{"id":3446,"orbit":0}],"flavourText":"The Titans did not vanish from this world. Their might lives on - in you.","group":218,"icon":"Art/2DArt/SkillIcons/passives/GiantBloodKeystone.dds","isKeystone":true,"name":"Giant's Blood","orbit":0,"orbitIndex":0,"skill":32349,"stats":["You can wield Two-Handed Axes, Maces and Swords in one hand","Triple Attribute requirements of Martial Weapons","Inherent Life granted by Strength is halved"],"stringId":"passive_keystone_giants_blood"},"32353":{"connections":[{"id":41180,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Swift Claw","orbit":3,"orbitIndex":23,"recipe":["Suffering","Fear","Despair"],"skill":32353,"stats":["10% increased Skill Speed while Shapeshifted"],"stringId":"shapeshifting5"},"32354":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":6626,"orbit":-2}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Defiance","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Ire"],"skill":32354,"stats":["20% increased Armour and Evasion Rating","80% increased Armour and Evasion Rating when on Low Life"],"stringId":"armour_and_evasion12"},"32364":{"connections":[{"id":32858,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":7,"skill":32364,"stats":["10% increased Ignite Magnitude"],"stringId":"fire52"},"32399":{"connections":[{"id":46857,"orbit":-7}],"group":1295,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":0,"orbitIndex":0,"skill":32399,"stats":["2% increased Attack Speed","5% increased Cost Efficiency"],"stringId":"attack_speed11"},"32404":{"connections":[{"id":15618,"orbit":6},{"id":5501,"orbit":0},{"id":22290,"orbit":-6}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":2,"orbitIndex":18,"skill":32404,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals9"},"32416":{"connections":[{"id":27726,"orbit":-3}],"group":625,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Sturdy Metal","orbit":2,"orbitIndex":16,"skill":32416,"stats":["80% increased Armour from Equipped Body Armour"],"stringId":"armour35"},"32427":{"connections":[{"id":4456,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":18,"skill":32427,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration5"},"32436":{"connections":[{"id":5332,"orbit":2147483647}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":2,"orbitIndex":14,"skill":32436,"stats":["+8 to Intelligence"],"stringId":"attributes111_"},"32438":{"connections":[{"id":55149,"orbit":4}],"group":1326,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":32438,"stats":["11% increased Chaos Damage"],"stringId":"chaos27"},"32442":{"connections":[{"id":2361,"orbit":0}],"group":1520,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Stun and Knockback","orbit":0,"orbitIndex":0,"skill":32442,"stats":["20% increased Knockback Distance","20% increased Stun Buildup with Quarterstaves"],"stringId":"quarterstaff3"},"32448":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Shockproof","orbit":2,"orbitIndex":2,"recipe":["Disgust","Greed","Disgust"],"skill":32448,"stats":["10% increased Armour","+30% of Armour also applies to Lightning Damage","30% reduced effect of Shock on you"],"stringId":"armour45_"},"32474":{"connections":[{"id":29611,"orbit":0},{"id":47931,"orbit":0},{"id":55888,"orbit":0},{"id":36025,"orbit":-9},{"id":61942,"orbit":0}],"group":153,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":32474,"stats":["+5 to any Attribute"],"stringId":"attributes4"},"32507":{"connections":[],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Cut to the Bone","orbit":0,"orbitIndex":0,"recipe":["Despair","Envy","Isolation"],"skill":32507,"stats":["Break Armour on Critical Hit with Spells equal to 10% of Physical Damage dealt","20% increased Magnitude of Impales inflicted with Spells","20% increased Physical Damage"],"stringId":"physical31"},"32509":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32509,"stats":[],"stringId":"mastery_staff220"},"32523":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":1546,"orbit":0}],"group":661,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":32523,"stats":[],"stringId":"mastery_caster_6358"},"32534":{"ascendancyName":"Titan","connections":[{"id":35453,"orbit":0},{"id":19424,"orbit":0},{"id":13715,"orbit":0},{"id":51690,"orbit":0},{"id":29323,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Titan","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":9,"orbitIndex":96,"skill":32534,"stats":[],"stringId":"AscendancyWarrior1Start"},"32543":{"connections":[],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Unhindered","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Paranoia"],"skill":32543,"stats":["20% reduced Slowing Potency of Debuffs on You","6% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"spell_suppression12"},"32545":{"connections":[{"id":61196,"orbit":4}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":2,"orbitIndex":2,"skill":32545,"stats":["3% increased Skill Speed"],"stringId":"attack_speed47"},"32549":{"connections":[{"id":29098,"orbit":-2},{"id":32474,"orbit":3}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":14,"skill":32549,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells11"},"32555":{"connections":[{"id":9535,"orbit":2147483647}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":22,"skill":32555,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion39"},"32559":{"ascendancyName":"Witchhunter","connections":[{"id":46535,"orbit":0}],"group":291,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32559,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancyMercenary2Small4"},"32560":{"ascendancyName":"Tactician","connections":[{"id":16249,"orbit":0}],"group":317,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Presence Area","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32560,"stats":["20% increased Presence Area of Effect"],"stringId":"AscendancyMercenary1Small3"},"32561":{"connections":[{"id":51825,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":3,"orbitIndex":15,"skill":32561,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed6"},"32564":{"connections":[{"id":37519,"orbit":0},{"id":39207,"orbit":0},{"id":2864,"orbit":0}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed and Slow Effect on You","orbit":0,"orbitIndex":0,"skill":32564,"stats":["1% increased Movement Speed","4% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation5"},"32597":{"connections":[{"id":12777,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":3,"skill":32597,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour2"},"32599":{"connections":[{"id":28516,"orbit":2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area of Effect","orbit":2,"orbitIndex":12,"skill":32599,"stats":["6% increased Area of Effect"],"stringId":"area_of_effect21"},"32600":{"connections":[{"id":6304,"orbit":0},{"id":20303,"orbit":-7}],"group":403,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":12,"skill":32600,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration26"},"32637":{"ascendancyName":"Tactician","connections":[],"group":399,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianEvasionArmourHigher.dds","isNotable":true,"name":"Stay Light, Use Cover","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":32637,"stats":["Defend with 200% of Armour","Enemies have an Accuracy Penalty against you based on Distance","Maximum Chance to Evade is 50%","Maximum Physical Damage Reduction is 50%"],"stringId":"AscendancyMercenary1Notable7"},"32655":{"connections":[{"id":33514,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Hunting Companion","orbit":7,"orbitIndex":18,"recipe":["Guilt","Envy","Ire"],"skill":32655,"stats":["20% increased Culling Strike Threshold","Culling Strike against Beasts while your Companion is in your Presence"],"stringId":"companions8"},"32660":{"connections":[],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":21,"skill":32660,"stats":["10% increased Critical Hit Chance if you have Killed Recently"],"stringId":"criticals4"},"32664":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","isNotable":true,"name":"Chakra of Breathing","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Guilt"],"skill":32664,"stats":["20% faster start of Energy Shield Recharge when not on Full Life","20% increased Evasion Rating while you have Energy Shield"],"stringId":"unarmed12"},"32672":{"connections":[{"id":4031,"orbit":0},{"id":9928,"orbit":0}],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze and Chill Resistance","orbit":3,"orbitIndex":12,"skill":32672,"stats":["5% reduced Effect of Chill on you","10% increased Freeze Threshold"],"stringId":"freeze_and_chill_mitigation1"},"32681":{"connections":[{"id":32664,"orbit":0},{"id":38668,"orbit":2147483647}],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion and Energy Shield Delay","orbit":7,"orbitIndex":15,"skill":32681,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"unarmed8"},"32683":{"connections":[{"id":53149,"orbit":0},{"id":54413,"orbit":0}],"group":1062,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Essence of the Mountain","orbit":4,"orbitIndex":30,"skill":32683,"stats":["Gain 5% of Damage as Extra Cold Damage","20% increased Freeze Buildup"],"stringId":"cold39__"},"32699":{"ascendancyName":"Infernalist","connections":[{"id":7793,"orbit":0},{"id":23880,"orbit":0},{"id":24135,"orbit":0},{"id":39470,"orbit":4},{"id":64379,"orbit":-9},{"id":63484,"orbit":-9}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Infernalist","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":32699,"stats":[],"stringId":"AscendancyWitch1Start__"},"32701":{"connections":[{"id":21746,"orbit":0},{"id":26598,"orbit":0},{"id":22115,"orbit":0},{"id":43877,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":18,"skill":32701,"stats":["+5 to any Attribute"],"stringId":"dexterity39"},"32705":{"ascendancyName":"Disciple of Varashta","connections":[],"flavourText":"\"You knew the twisted plan these fools devised. As Tale-woman, you are their compass in the sandstorm. Yet... you did not act. And now we mourn these honoured dead. You must pay.\"\\n \\nVarashta condemned Navira to the ritual of the {barya}, sentenced to serve as a Djinn.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonWaterDjinn.dds","isNotable":true,"name":"Barya of Navira","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":3,"orbitIndex":0,"skill":32705,"stats":["Grants Skill: Navira, the Last Mirage"],"stringId":"AscendancySorceress3Notable7"},"32721":{"connections":[{"id":10011,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Distracted Target","orbit":7,"orbitIndex":11,"recipe":["Despair","Disgust","Despair"],"skill":32721,"stats":["30% increased Critical Hit Chance against Blinded Enemies"],"stringId":"blind12"},"32727":{"connections":[],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Armour Break","orbit":2,"orbitIndex":23,"skill":32727,"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"stringId":"physical20"},"32745":{"connections":[{"id":50104,"orbit":0},{"id":61179,"orbit":0}],"group":518,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":0,"orbitIndex":0,"skill":32745,"stats":["10% increased Physical Damage"],"stringId":"physical14"},"32763":{"connections":[],"group":1522,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":6,"skill":32763,"stats":[],"stringId":"jewel_slot1976"},"32764":{"connections":[{"id":21213,"orbit":0},{"id":37609,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":16,"skill":32764,"stats":["+8% of Armour also applies to Elemental Damage"],"stringId":"energy_shield_and_armour55_"},"32768":{"connectionArt":"CharacterPlanned","connections":[{"id":8107,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":17,"skill":32768,"stats":["20% increased Glory generation"],"stringId":"oracle_glory_elemental3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"32771":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34817,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Darkness","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":55,"skill":32771,"stats":["10% increased maximum Darkness"],"stringId":"AscendancyMonk3Small9"},"32777":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":340,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":15,"skill":32777,"stats":[],"stringId":"mastery_shapeshifting_6683"},"32799":{"connections":[{"id":23961,"orbit":0},{"id":32096,"orbit":0}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Captivating Companionship","orbit":3,"orbitIndex":1,"recipe":["Isolation","Guilt","Greed"],"skill":32799,"stats":["5% of Damage from Hits is taken from your Damageable Companion's Life before you","20% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions4"},"32813":{"connections":[{"id":59600,"orbit":-7},{"id":35809,"orbit":0}],"group":1252,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":12,"skill":32813,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks16"},"32818":{"connections":[{"id":48135,"orbit":4}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":6,"skill":32818,"stats":["10% increased Charm Charges gained"],"stringId":"charms19"},"32836":{"connections":[{"id":675,"orbit":3}],"group":142,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Slow Effect on You","orbit":2,"orbitIndex":21,"skill":32836,"stats":["10% increased Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"armour26_"},"32845":{"connections":[{"id":64819,"orbit":4}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage","orbit":5,"orbitIndex":36,"skill":32845,"stats":["10% increased Fire Damage"],"stringId":"ignite_mitigation1"},"32847":{"connections":[],"group":546,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Damage","orbit":0,"orbitIndex":0,"skill":32847,"stats":["Minions deal 20% increased Damage with Command Skills"],"stringId":"minion_offence50"},"32856":{"ascendancyName":"Chronomancer","connections":[{"id":58747,"orbit":0},{"id":3605,"orbit":9}],"group":430,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32856,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancySorceress2Small6"},"32858":{"connections":[{"id":1073,"orbit":0},{"id":1205,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Dread Engineer's Concoction","orbit":3,"orbitIndex":9,"recipe":["Suffering","Greed","Guilt"],"skill":32858,"stats":["35% increased Magnitude of Ignite against Poisoned enemies"],"stringId":"fire54"},"32859":{"connections":[{"id":15114,"orbit":-4}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":3,"orbitIndex":9,"skill":32859,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical59"},"32885":{"connections":[{"id":6689,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":33,"skill":32885,"stats":["5% increased Block chance"],"stringId":"shield15"},"32891":{"connections":[{"id":331,"orbit":-2},{"id":22329,"orbit":-7}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection and Evasion","orbit":7,"orbitIndex":7,"skill":32891,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"deflect39"},"32896":{"connections":[],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":9,"skill":32896,"stats":["8% chance to Poison on Hit"],"stringId":"poison32"},"32903":{"connections":[{"id":25361,"orbit":0}],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":15,"skill":32903,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks55"},"32905":{"ascendancyName":"Oracle","connections":[],"group":23,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OraclePassiveTreeAllocation.dds","isNotable":true,"name":"Entwined Realities","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":6,"orbitIndex":20,"skill":32905,"stats":["Non-Keystone Passive Skills in Medium Radius of allocated Keystone Passive Skills can be allocated without being connected to your tree"],"stringId":"AscendancyDruid1Notable1"},"32923":{"connections":[{"id":58215,"orbit":4}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Arcane Surge Effect and Life Regeneration","orbit":7,"orbitIndex":0,"skill":32923,"stats":["5% increased Life Regeneration rate","10% increased effect of Arcane Surge on you"],"stringId":"life_recoup25"},"32932":{"connections":[{"id":14205,"orbit":0},{"id":63268,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Ichlotl's Inferno","orbit":7,"orbitIndex":21,"recipe":["Envy","Suffering","Paranoia"],"skill":32932,"stats":["Every Rage also grants 1% increased Fire Damage"],"stringId":"fire58"},"32943":{"connections":[{"id":16938,"orbit":0},{"id":29930,"orbit":0},{"id":16484,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":4,"orbitIndex":67,"skill":32943,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions19_"},"32951":{"connections":[{"id":39280,"orbit":0},{"id":41522,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Preservation","orbit":3,"orbitIndex":17,"recipe":["Disgust","Suffering","Ire"],"skill":32951,"stats":["25% increased Skill Effect Duration"],"stringId":"duration6"},"32952":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":386,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelStrSkillGems.dds","isMultipleChoiceOption":true,"name":"Bolstering Implants","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":32952,"stats":["+2 to Level of all Skills with a Strength requirement"],"stringId":"AscendancyMercenary3Notable2_1"},"32964":{"connections":[{"id":34617,"orbit":5}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":3,"skill":32964,"stats":["+6% of Armour also applies to Elemental Damage","3% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour39"},"32976":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":14428,"orbit":0},{"id":38776,"orbit":0},{"id":34202,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","isNotable":true,"name":"Gem Enthusiast","orbit":4,"orbitIndex":48,"recipe":["Isolation","Greed","Suffering"],"skill":32976,"stats":["5% increased Maximum Life if you have at least 10 Red Support Gems Socketed","5% increased Maximum Mana if you have at least 10 Blue Support Gems Socketed","5% increased Movement Speed if you have at least 10 Green Support Gems Socketed"],"stringId":"attributes100_"},"33037":{"connections":[{"id":47683,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Chaining Projectiles","orbit":3,"orbitIndex":2,"skill":33037,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"stringId":"ranged46"},"33045":{"connections":[{"id":62303,"orbit":-4}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Ailment Threshold and Slow Effect on You","orbit":4,"orbitIndex":65,"skill":33045,"stats":["10% increased Elemental Ailment Threshold","5% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation18"},"33053":{"connections":[],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":22,"skill":33053,"stats":["10% increased Projectile Damage"],"stringId":"ranged1"},"33059":{"connections":[{"id":2841,"orbit":0}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Back in Action","orbit":2,"orbitIndex":12,"recipe":["Ire","Guilt","Greed"],"skill":33059,"stats":["80% increased Stun Recovery"],"stringId":"stun_threshold_if_no_recent_stun12"},"33080":{"connections":[{"id":43254,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":18,"skill":33080,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"deflect20"},"33093":{"connections":[{"id":30077,"orbit":0}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Effervescent","orbit":7,"orbitIndex":6,"recipe":["Suffering","Isolation","Envy"],"skill":33093,"stats":["4% increased Cast Speed for each different Spell you've Cast in the last eight seconds"],"stringId":"cast_speed32"},"33099":{"connections":[{"id":25029,"orbit":0}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Hunter's Talisman","orbit":4,"orbitIndex":27,"recipe":["Paranoia","Paranoia","Paranoia"],"skill":33099,"stats":["+1 Charm Slot"],"stringId":"charms8"},"33112":{"connections":[{"id":10881,"orbit":-7}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":3,"orbitIndex":12,"skill":33112,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus7"},"33137":{"connections":[{"id":36894,"orbit":0},{"id":17330,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Damage","orbit":2,"orbitIndex":17,"skill":33137,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"jagged_ground6"},"33141":{"ascendancyName":"Lich","connections":[{"id":33570,"orbit":4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Life","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":30732,"name":"Life","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["3% increased maximum Life"]}},"orbit":9,"orbitIndex":9,"skill":33141,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch3Small6_"},"33180":{"connections":[{"id":46989,"orbit":0},{"id":60269,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":7,"orbitIndex":15,"skill":33180,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells11"},"33203":{"connectionArt":"CharacterPlanned","connections":[{"id":55033,"orbit":-8},{"id":38707,"orbit":6}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":27,"skill":33203,"stats":["25% increased Stun Threshold while Channelling"],"stringId":"oracle_channelling1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33209":{"connections":[],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","orbit":4,"orbitIndex":2,"skill":33209,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"totems30"},"33216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":759,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Deep Wounds","orbit":2,"orbitIndex":10,"recipe":["Disgust","Despair","Paranoia"],"skill":33216,"stats":["Attack Hits Aggravate any Bleeding on targets which is older than 4 seconds"],"stringId":"bleed5"},"33221":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":26331,"orbit":0},{"id":19722,"orbit":0},{"id":4959,"orbit":0}],"group":1301,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":33221,"stats":[],"stringId":"mastery_cold_6390"},"33225":{"connections":[],"group":963,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Minion Fire Resistance","orbit":0,"orbitIndex":0,"skill":33225,"stats":["Minions have +3% to Maximum Fire Resistances","Minions have +20% to Fire Resistance"],"stringId":"minion_defence14"},"33229":{"connections":[{"id":64996,"orbit":0},{"id":6161,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Haemorrhaging Cuts","orbit":4,"orbitIndex":60,"recipe":["Ire","Isolation","Paranoia"],"skill":33229,"stats":["Enemies you inflict Bleeding on cannot Regenerate Life"],"stringId":"physical_witch8"},"33240":{"connections":[{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Lord of Horrors","orbit":5,"orbitIndex":71,"recipe":["Isolation","Isolation","Ire"],"skill":33240,"stats":["12% increased Reservation Efficiency of Minion Skills"],"stringId":"minion_offence14"},"33242":{"connections":[{"id":15838,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Ailment Chance","orbit":5,"orbitIndex":2,"skill":33242,"stats":["10% increased chance to inflict Ailments"],"stringId":"exploiting_elemental_ailments7"},"33244":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":397,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":33244,"stats":[],"stringId":"mastery_rage_6667"},"33245":{"connections":[{"id":9151,"orbit":0},{"id":31918,"orbit":-7},{"id":45331,"orbit":7}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":1,"orbitIndex":3,"skill":33245,"stats":["10% increased Projectile Damage"],"stringId":"ranged5"},"33254":{"connections":[],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":1,"skill":33254,"stats":["10% increased Spell Damage"],"stringId":"spells3"},"33292":{"connections":[{"id":57928,"orbit":7}],"group":1176,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":33292,"stats":["12% increased Lightning Damage"],"stringId":"lightning67_"},"33340":{"connections":[{"id":51267,"orbit":0}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":15,"skill":33340,"stats":["15% increased Stun Buildup"],"stringId":"stun24_"},"33345":{"connections":[{"id":61923,"orbit":0},{"id":10131,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":14,"skill":33345,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration32"},"33348":{"connections":[],"group":1405,"icon":"Art/2DArt/SkillIcons/passives/auraareaofeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":7,"skill":33348,"stats":["25% increased Presence Area of Effect"],"stringId":"criticals100_"},"33366":{"connections":[{"id":10944,"orbit":-3}],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":14,"skill":33366,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield24"},"33369":{"connections":[],"flavourText":"My ancestral pact was sealed. Forevermore, I would gain sustenance\\nonly from the ravaged flesh of my enemies.","group":711,"icon":"Art/2DArt/SkillIcons/passives/vaalpact.dds","isKeystone":true,"name":"Vaal Pact","orbit":0,"orbitIndex":0,"skill":33369,"stats":["50% more amount of Life Leeched","Leech Life 67% less quickly","Cannot Recover Life other than from Leech","Life Leech effects are not removed when Unreserved Life is Filled"],"stringId":"passive_keystone_vaal_pact"},"33391":{"connections":[{"id":56330,"orbit":0},{"id":49661,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Critical Bleeding Effect","orbit":3,"orbitIndex":5,"skill":33391,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"stringId":"bleed7"},"33393":{"connections":[{"id":41747,"orbit":-3}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":5,"orbitIndex":15,"skill":33393,"stats":["10% increased Damage with Flails"],"stringId":"flail4"},"33397":{"connections":[{"id":39594,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":21,"skill":33397,"stats":["12% increased Fire Damage"],"stringId":"fire26"},"33400":{"connections":[],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Reverberating Parry","orbit":0,"orbitIndex":0,"recipe":["Guilt","Paranoia","Paranoia"],"skill":33400,"stats":["15% increased Parried Debuff Magnitude","20% increased Parry Hit Area of Effect"],"stringId":"deflect22"},"33402":{"connections":[{"id":58125,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":54,"skill":33402,"stats":["5% increased Block chance"],"stringId":"shield11"},"33404":{"connections":[{"id":57821,"orbit":0}],"flavourText":"Burn the spirit to vitalise the flesh.","group":1372,"icon":"Art/2DArt/SkillIcons/passives/EternalYouth.dds","isKeystone":true,"name":"Eternal Youth","orbit":0,"orbitIndex":0,"skill":33404,"stats":["Life Recharges instead of Energy Shield","50% less Life Recovery from Flasks"],"stringId":"passive_keystone_eternal_youth"},"33408":{"connections":[],"group":128,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Leech","orbit":0,"orbitIndex":0,"skill":33408,"stats":["10% increased amount of Life Leeched while Shapeshifted"],"stringId":"wolf9"},"33415":{"connections":[{"id":31763,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Critical Chance","orbit":4,"orbitIndex":31,"skill":33415,"stats":["10% increased Critical Hit Chance with Crossbows"],"stringId":"crossbow7"},"33423":{"connectionArt":"CharacterPlanned","connections":[{"id":65192,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":13,"skill":33423,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"oracle_totems2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"33445":{"connections":[{"id":30143,"orbit":-2}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":7,"orbitIndex":3,"skill":33445,"stats":["5% increased Block chance"],"stringId":"block21"},"33452":{"connections":[{"id":23192,"orbit":-6},{"id":52796,"orbit":9}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":5,"orbitIndex":54,"skill":33452,"stats":["5% increased Block chance"],"stringId":"block1"},"33463":{"connections":[{"id":41877,"orbit":6},{"id":31286,"orbit":0},{"id":45304,"orbit":0}],"group":1379,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":33463,"stats":["+5 to any Attribute"],"stringId":"attributes75"},"33514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":33514,"stats":[],"stringId":"mastery_companion292"},"33518":{"connections":[{"id":63579,"orbit":6}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Slow Effect on You","orbit":4,"orbitIndex":34,"skill":33518,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation2"},"33542":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Quick Fingers","orbit":0,"orbitIndex":0,"recipe":["Envy","Suffering","Envy"],"skill":33542,"stats":["+24% Surpassing chance to fire an additional Arrow"],"stringId":"bow23"},"33556":{"connections":[{"id":55473,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":2,"skill":33556,"stats":["8% increased Melee Damage"],"stringId":"melee25"},"33562":{"connections":[{"id":27216,"orbit":0},{"id":27611,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":33562,"stats":["12% increased Damage while Shapeshifted"],"stringId":"wyvern1"},"33570":{"ascendancyName":"Lich","connections":[{"id":36696,"orbit":5}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichManaRegenBasedOnMaxLife.dds","isNotable":true,"isSwitchable":true,"name":"Soulless Form","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":9,"orbitIndex":20,"skill":33570,"stats":["10% of Damage taken bypasses Energy Shield","No inherent Mana Regeneration","Regenerate Mana equal to 6% of maximum Life per second"],"stringId":"AscendancyWitch3Notable5"},"33585":{"connections":[{"id":24889,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Unspoken Bond","orbit":3,"orbitIndex":7,"recipe":["Greed","Despair","Envy"],"skill":33585,"stats":["Companions have +30% to Chaos Resistance","Companions have +30% to all Elemental Resistances"],"stringId":"companions6"},"33590":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":141,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33590,"stats":[],"stringId":"mastery_attack9"},"33596":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":33596,"stats":[],"stringId":"mastery_crossbow_6419"},"33601":{"connections":[{"id":35708,"orbit":-2},{"id":2863,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":20,"skill":33601,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze13"},"33604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":33604,"stats":[],"stringId":"mastery_attack277"},"33612":{"connections":[{"id":8983,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":1,"orbitIndex":8,"skill":33612,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence10_"},"33618":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[{"id":39990,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":2,"orbitIndex":10,"skill":33618,"stats":[],"stringId":"mastery_duration_6467"},"33639":{"connections":[{"id":24087,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Consumption Chance","orbit":7,"orbitIndex":20,"skill":33639,"stats":["Skills have 5% chance to not remove Elemental Infusions but still count as consuming them"],"stringId":"infusion15"},"33713":{"connections":[{"id":57462,"orbit":-2}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":2,"orbitIndex":17,"skill":33713,"stats":["8% increased Projectile Speed"],"stringId":"projectiles9_"},"33722":{"connections":[{"id":4140,"orbit":0},{"id":55048,"orbit":0},{"id":27980,"orbit":0},{"id":61811,"orbit":0}],"group":197,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":33722,"stats":["+5 to any Attribute"],"stringId":"intelligence72"},"33729":{"connections":[{"id":45712,"orbit":4}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Flammability Magnitude","orbit":4,"orbitIndex":66,"skill":33729,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"stringId":"elemental24"},"33730":{"connections":[{"id":60809,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","isNotable":true,"name":"Focused Channel","orbit":7,"orbitIndex":5,"recipe":["Despair","Despair","Fear"],"skill":33730,"stats":["Channelling Skills deal 25% increased Damage","50% increased Stun Threshold while Channelling"],"stringId":"channelling9"},"33736":{"ascendancyName":"Pathfinder","connections":[{"id":61991,"orbit":0}],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":9,"orbitIndex":86,"skill":33736,"stats":["4% increased Skill Speed"],"stringId":"AscendancyRanger3Small3"},"33751":{"connections":[{"id":12451,"orbit":7}],"group":1125,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":7,"orbitIndex":18,"skill":33751,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns14"},"33781":{"connections":[{"id":65493,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area and Presence","orbit":7,"orbitIndex":13,"skill":33781,"stats":["15% reduced Presence Area of Effect","6% increased Area of Effect"],"stringId":"auras32"},"33812":{"ascendancyName":"Warbringer","connections":[{"id":38769,"orbit":0},{"id":18585,"orbit":5},{"id":25935,"orbit":5},{"id":1994,"orbit":4},{"id":39365,"orbit":3}],"group":51,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Warbringer","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":6,"orbitIndex":48,"skill":33812,"stats":[],"stringId":"AscendancyWarrior2Start"},"33815":{"connections":[{"id":35644,"orbit":6}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":5,"skill":33815,"stats":["10% increased Poison Duration"],"stringId":"poison15"},"33823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1157,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":33823,"stats":[],"stringId":"mastery_criticals63"},"33824":{"ascendancyName":"Shaman","connections":[{"id":42253,"orbit":0}],"group":63,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Defences","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":33824,"stats":["10% increased Armour, Evasion and Energy Shield"],"stringId":"AscendancyDruid2Small8"},"33829":{"connections":[{"id":18737,"orbit":0}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":33829,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals94"},"33830":{"connections":[{"id":35031,"orbit":-2}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Regeneration","orbit":2,"orbitIndex":5,"skill":33830,"stats":["10% increased Life Regeneration rate"],"stringId":"monkchakra17_"},"33838":{"connections":[{"id":46182,"orbit":-4}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Duration","orbit":7,"orbitIndex":15,"skill":33838,"stats":["6% increased chance to inflict Ailments","6% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments44"},"33848":{"connections":[{"id":47677,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":4,"orbitIndex":51,"skill":33848,"stats":["8% increased Projectile Speed"],"stringId":"ranged13"},"33852":{"connections":[{"id":50177,"orbit":0}],"group":450,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Flurry","orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Ire"],"skill":33852,"stats":["20% increased Cold Damage","10% increased Cast Speed while Chilled","5% reduced Movement Speed Penalty from using Cold Skills while moving"],"stringId":"cold59"},"33866":{"connections":[{"id":49220,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":33866,"stats":["8% increased Attack Damage"],"stringId":"attack_damage3"},"33887":{"connections":[{"id":61432,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Full Salvo","orbit":4,"orbitIndex":7,"recipe":["Ire","Isolation","Greed"],"skill":33887,"stats":["25% increased Damage with Crossbows for each type of Ammunition fired in the past 10 seconds"],"stringId":"crossbow18"},"33922":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":6950,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Stripped Defences","orbit":2,"orbitIndex":6,"recipe":["Disgust","Isolation","Disgust"],"skill":33922,"stats":["Exposure you inflict lowers Resistances by an additional 5%"],"stringId":"elemental61_"},"33939":{"connections":[{"id":62034,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Armour Applies to Cold Damage Hits","orbit":3,"orbitIndex":2,"skill":33939,"stats":["+15% of Armour also applies to Cold Damage"],"stringId":"maximum_resistances6"},"33946":{"connections":[{"id":34074,"orbit":0},{"id":57227,"orbit":0}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":7,"orbitIndex":9,"skill":33946,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals75_"},"33964":{"connections":[{"id":64295,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":49,"skill":33964,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap10"},"33974":{"connections":[{"id":31189,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":4,"orbitIndex":18,"skill":33974,"stats":["8% increased Attack Damage","5% increased Accuracy Rating"],"stringId":"attack32_"},"33978":{"connections":[{"id":31609,"orbit":7},{"id":62581,"orbit":0}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Unstoppable Barrier","orbit":7,"orbitIndex":21,"recipe":["Fear","Paranoia","Ire"],"skill":33978,"stats":["10% increased Block chance","15% reduced Slowing Potency of Debuffs on You"],"stringId":"block12"},"33979":{"connections":[],"flavourText":"To me, brave companions! Feel my radiance flow through you!","group":1166,"icon":"Art/2DArt/SkillIcons/passives/KeystoneConduit.dds","isKeystone":true,"name":"Conduit","orbit":0,"orbitIndex":0,"skill":33979,"stats":["If you would gain a Charge, Allies in your Presence gain that Charge instead"],"stringId":"passive_keystone_conduit"},"34006":{"connections":[{"id":15408,"orbit":3}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":2,"orbitIndex":19,"skill":34006,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield21"},"34015":{"connections":[{"id":22927,"orbit":0},{"id":59083,"orbit":0},{"id":14882,"orbit":0},{"id":10472,"orbit":0}],"group":1468,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34015,"stats":["+5 to any Attribute"],"stringId":"dexterity55"},"34030":{"connections":[{"id":47441,"orbit":0},{"id":13634,"orbit":0},{"id":42614,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":0,"orbitIndex":0,"skill":34030,"stats":["Offerings have 15% increased Maximum Life"],"stringId":"corpses1"},"34058":{"connections":[{"id":59376,"orbit":-6},{"id":4456,"orbit":0}],"group":731,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34058,"stats":["+5 to any Attribute"],"stringId":"intelligence35_"},"34061":{"connections":[{"id":52442,"orbit":5},{"id":38057,"orbit":0}],"group":840,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":55,"skill":34061,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion3"},"34074":{"connections":[{"id":23259,"orbit":4}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":13,"skill":34074,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals76"},"34076":{"connections":[{"id":37244,"orbit":3}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Recovery","orbit":7,"orbitIndex":12,"skill":34076,"stats":["25% increased Block Recovery"],"stringId":"block19"},"34081":{"ascendancyName":"Martial Artist","connections":[{"id":19370,"orbit":9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":5,"orbitIndex":7,"skill":34081,"stats":["8% increased Area of Effect"],"stringId":"AscendancyMonk1Small4"},"34084":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":652,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":1,"orbitIndex":4,"skill":34084,"stats":[],"stringId":"mastery_duration_6465"},"34090":{"connections":[{"id":14655,"orbit":7},{"id":64870,"orbit":-7}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Fire Damage","orbit":7,"orbitIndex":0,"skill":34090,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"stringId":"armour15"},"34096":{"connections":[{"id":58096,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":3,"orbitIndex":23,"skill":34096,"stats":["12% increased Spell Damage"],"stringId":"spells9"},"34136":{"connections":[{"id":29479,"orbit":-5}],"group":1066,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":1,"skill":34136,"stats":["+5 to any Attribute"],"stringId":"dexterity8"},"34143":{"connectionArt":"CharacterPlanned","connections":[{"id":36408,"orbit":0}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":66,"skill":34143,"stats":["16% increased Physical Damage"],"stringId":"oracle_duration_physical5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34168":{"connections":[{"id":16123,"orbit":0},{"id":4157,"orbit":0},{"id":55088,"orbit":0}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/CriticalStrikesNotable.dds","isNotable":true,"name":"Crashing Wave","orbit":7,"orbitIndex":22,"skill":34168,"stats":["25% increased Damage if you've dealt a Critical Hit in the past 8 seconds"],"stringId":"criticals3"},"34181":{"connectionArt":"CharacterPlanned","connections":[{"id":45422,"orbit":0}],"group":448,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":6,"skill":34181,"stats":["+3 to Maximum Rage"],"stringId":"oracle_rage2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34187":{"connections":[{"id":7128,"orbit":-5}],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":4,"orbitIndex":60,"skill":34187,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical63"},"34199":{"connections":[],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Damage","orbit":4,"orbitIndex":55,"skill":34199,"stats":["Minions have 15% increased Critical Damage Bonus"],"stringId":"minion_offence36"},"34201":{"connections":[{"id":24922,"orbit":0},{"id":46882,"orbit":0},{"id":17316,"orbit":0}],"group":1186,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34201,"stats":["+5 to any Attribute"],"stringId":"attributes20-"},"34202":{"connections":[{"id":49285,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":3,"orbitIndex":18,"skill":34202,"stats":["+8 to Strength"],"stringId":"attributes101"},"34207":{"ascendancyName":"Disciple of Varashta","connections":[],"flavourText":"\"You have forsaken your duty to my {akhara}. Yes... we do not abide weakness. But we also do not abide madness in the fervour of battle! Your slain {dekhara} will have their justice. You must pay.\" \\n\\nVarashta condemned Ruzhan to the ritual of the {barya}, sentenced to serve as a Djinn.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SummonFireDjinn.dds","isNotable":true,"name":"Barya of Ruzhan","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":8,"orbitIndex":57,"skill":34207,"stats":["Grants Skill: Ruzhan, the Blazing Sword"],"stringId":"AscendancySorceress3Notable9"},"34210":{"connections":[{"id":54811,"orbit":0},{"id":64939,"orbit":0}],"group":423,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":0,"orbitIndex":0,"skill":34210,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed1"},"34233":{"connections":[{"id":16123,"orbit":0},{"id":32545,"orbit":0}],"group":1022,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","isNotable":true,"name":"Flow State","orbit":2,"orbitIndex":22,"skill":34233,"stats":["5% increased Skill Speed","15% increased Mana Regeneration Rate"],"stringId":"attack_speed37"},"34248":{"connections":[{"id":37327,"orbit":7}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":20,"skill":34248,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana27"},"34290":{"connections":[{"id":57832,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":4,"skill":34290,"stats":["10% increased Ignite Magnitude"],"stringId":"ignite14"},"34300":{"connections":[{"id":45481,"orbit":0},{"id":13862,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Conservative Casting","orbit":2,"orbitIndex":22,"recipe":["Disgust","Disgust","Ire"],"skill":34300,"stats":["20% increased Mana Regeneration Rate","15% increased Mana Cost Efficiency"],"stringId":"mana_regeneration17"},"34305":{"connections":[{"id":31545,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":6,"skill":34305,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory11"},"34308":{"connections":[{"id":37414,"orbit":0},{"id":10245,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds","isNotable":true,"name":"Personal Touch","orbit":3,"orbitIndex":19,"recipe":["Disgust","Despair","Ire"],"skill":34308,"stats":["20% increased Attack Damage","12% increased Immobilisation buildup"],"stringId":"melee32"},"34313":{"ascendancyName":"Oracle","connections":[{"id":378,"orbit":-8}],"group":12,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleEnemiesActionsUnlucky.dds","isNotable":true,"name":"The Lesser Harm","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":34313,"stats":["Enemy Critical Hit Chance against you is Unlucky","Damage of Enemies Hitting you is Unlucky"],"stringId":"AscendancyDruid1Notable7"},"34316":{"connections":[],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"One with the River","orbit":6,"orbitIndex":3,"recipe":["Guilt","Paranoia","Isolation"],"skill":34316,"stats":["10% chance to Daze on Hit","30% increased Armour, Evasion and Energy Shield while wielding a Quarterstaff","30% increased Freeze Buildup with Quarterstaves","30% increased Stun Buildup with Quarterstaves"],"stringId":"quarterstaff4"},"34317":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":270,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":34317,"stats":[],"stringId":"mastery_elemental99"},"34324":{"connections":[{"id":56838,"orbit":-5},{"id":52445,"orbit":0}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Spectral Ward","orbit":4,"orbitIndex":0,"recipe":["Envy","Fear","Suffering"],"skill":34324,"stats":["+1 to Maximum Energy Shield per 12 Item Evasion on Equipped Body Armour"],"stringId":"evasion_and_energy_shield11"},"34327":{"connections":[{"id":32078,"orbit":0}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Spell Damage","orbit":7,"orbitIndex":17,"skill":34327,"stats":["15% increased Spell Damage while you have Arcane Surge"],"stringId":"mana_regeneration42"},"34331":{"connections":[{"id":37619,"orbit":0},{"id":13693,"orbit":0}],"group":310,"icon":"Art/2DArt/SkillIcons/passives/ColdAndFireHybridNotable.dds","name":"Fire and Cold Damage","orbit":0,"orbitIndex":0,"skill":34331,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"stringId":"elemental19"},"34340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":17294,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Mass Rejuvenation","orbit":4,"orbitIndex":48,"recipe":["Ire","Paranoia","Greed"],"skill":34340,"stats":["Allies in your Presence Regenerate 1% of your Maximum Life per second","Regenerate 0.5% of maximum Life per second"],"stringId":"life_regeneration4_"},"34367":{"connections":[{"id":48774,"orbit":3}],"group":848,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":34367,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup2"},"34375":{"connections":[{"id":48745,"orbit":-2}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Defences","orbit":2,"orbitIndex":8,"skill":34375,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"shield26"},"34401":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":34401,"stats":[],"stringId":"mastery_blind_6334"},"34412":{"connections":[{"id":25915,"orbit":0}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":2,"orbitIndex":7,"skill":34412,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear14"},"34415":{"connections":[{"id":55422,"orbit":4}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":4,"orbitIndex":61,"skill":34415,"stats":["12% increased Physical Damage"],"stringId":"physical52"},"34419":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/ScorchTheEarth.dds","isNotable":true,"name":"Grinning Immolation","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":9,"orbitIndex":12,"skill":34419,"stats":["Become Ignited when you deal a Critical Hit, taking 15% of your maximum Life and Energy Shield as Fire Damage per second","50% more Critical Damage Bonus"],"stringId":"AscendancyWitch1Notable9"},"34425":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[{"id":47021,"orbit":2}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","isNotable":true,"name":"Precise Volatility","orbit":2,"orbitIndex":20,"recipe":["Envy","Despair","Greed"],"skill":34425,"stats":["Volatile Power also grants 1% increased Critical Hit chance per Volatility exploded"],"stringId":"volatility18"},"34433":{"connections":[{"id":32354,"orbit":7}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":9,"skill":34433,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion18"},"34443":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":213,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":34443,"stats":[],"stringId":"mastery_companion288"},"34449":{"connections":[{"id":37688,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":36,"skill":34449,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap9"},"34473":{"connections":[{"id":42361,"orbit":0}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Spaghettification","orbit":2,"orbitIndex":8,"recipe":["Isolation","Despair","Fear"],"skill":34473,"stats":["3% increased Movement Speed","29% increased Chaos Damage","+13 to all Attributes","-7% to Chaos Resistance","23% reduced Light Radius"],"stringId":"chaos32"},"34478":{"connections":[{"id":43064,"orbit":0},{"id":56701,"orbit":0}],"group":1451,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","isNotable":true,"name":"Bond of the Viper","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Disgust"],"skill":34478,"stats":["16% increased Skill Effect Duration","Companions have a 40% chance to Poison on Hit"],"stringId":"companions53"},"34487":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":556,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":34487,"stats":[],"stringId":"mastery_totem230"},"34490":{"connectionArt":"CharacterPlanned","connections":[{"id":18972,"orbit":0}],"group":165,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Aftershock Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":0,"skill":34490,"stats":["10% chance for Shapeshift Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"oracle_bear_addon1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34493":{"connections":[{"id":65328,"orbit":0},{"id":54964,"orbit":0},{"id":49593,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":9,"skill":34493,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels1"},"34497":{"connections":[],"flavourText":"Skip a beat, hold your breath. Too slow a poison, only death.","group":1370,"icon":"Art/2DArt/SkillIcons/passives/HeartstopperKeystone.dds","isKeystone":true,"name":"Heartstopper","orbit":0,"orbitIndex":0,"skill":34497,"stats":["Take 50% less Damage over Time if you've started taking Damage over Time in the past second","Take 50% more Damage over Time if you haven't started taking Damage over Time in the past second"],"stringId":"passive_keystone_heartstopper"},"34501":{"ascendancyName":"Witchhunter","connections":[{"id":6935,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":5,"orbitIndex":25,"skill":34501,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary2Small6"},"34520":{"connections":[{"id":55575,"orbit":0},{"id":14548,"orbit":4},{"id":63545,"orbit":-4}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":15,"skill":34520,"stats":["10% increased Physical Damage"],"stringId":"physical13"},"34531":{"connections":[{"id":3471,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Hallowed","orbit":7,"orbitIndex":4,"recipe":["Despair","Disgust","Disgust"],"skill":34531,"stats":["Gain additional Ailment Threshold equal to 20% of maximum Energy Shield","Gain additional Stun Threshold equal to 20% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield12"},"34541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":63762,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","isNotable":true,"name":"Energising Deflection","orbit":1,"orbitIndex":3,"recipe":["Paranoia","Greed","Suffering"],"skill":34541,"stats":["12% faster start of Energy Shield Recharge","6% increased Deflection Rating"],"stringId":"deflect46"},"34543":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBearNotable.dds","isNotable":true,"name":"The Frenzied Bear","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Fear"],"skill":34543,"stats":["30% increased Damage if you've consumed a Frenzy Charge Recently","10% increased Skill Speed if you've consumed a Frenzy Charge Recently","+10 to Strength"],"stringId":"azmerianimals30"},"34552":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":505,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":34552,"stats":[],"stringId":"mastery_minionoffence186"},"34553":{"connections":[{"id":1220,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Emboldening Lead","orbit":7,"orbitIndex":20,"recipe":["Ire","Envy","Fear"],"skill":34553,"stats":["Minions deal 30% increased Damage if you've Hit Recently"],"stringId":"spells59"},"34567":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaSpecialNode.dds","isNotable":true,"name":"Archon of Chayula","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":6,"orbitIndex":66,"skill":34567,"stats":["Grants Skill: Archon of Chayula"],"stringId":"AscendancyMonk3Notable10"},"34612":{"connections":[{"id":60764,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","orbit":5,"orbitIndex":16,"skill":34612,"stats":["12% increased Damage with Bows"],"stringId":"bow11"},"34617":{"connections":[],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Conall the Hunted","orbit":3,"orbitIndex":23,"recipe":["Despair","Envy","Paranoia"],"skill":34617,"stats":["+15% of Armour also applies to Elemental Damage","5% faster start of Energy Shield Recharge","Immune to Bleeding while Shapeshifted","Immune to Maim while Shapeshifted"],"stringId":"energy_shield_and_armour40"},"34621":{"connections":[{"id":38541,"orbit":0}],"group":1226,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":0,"orbitIndex":0,"skill":34621,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals10"},"34623":{"connections":[{"id":14769,"orbit":0},{"id":14262,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Charge Duration and Dexterity","orbit":2,"orbitIndex":2,"skill":34623,"stats":["10% increased Endurance, Frenzy and Power Charge Duration","+5 to Dexterity"],"stringId":"azmerianimals15"},"34626":{"connections":[{"id":61142,"orbit":0},{"id":4527,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Recover Life on consuming Endurance Charge","orbit":2,"orbitIndex":4,"skill":34626,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"stringId":"endurance_charges6"},"34671":{"connections":[{"id":24477,"orbit":0},{"id":48418,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":2,"orbitIndex":10,"skill":34671,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold14"},"34702":{"connections":[{"id":55664,"orbit":-4},{"id":63246,"orbit":-4},{"id":16568,"orbit":-7}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":5,"orbitIndex":6,"skill":34702,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions27"},"34717":{"connections":[{"id":24120,"orbit":4}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration while not on Low Mana","orbit":3,"orbitIndex":20,"skill":34717,"stats":["16% increased Mana Regeneration Rate while not on Low Mana"],"stringId":"mana36"},"34747":{"connections":[{"id":6274,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":23,"skill":34747,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy14"},"34769":{"connectionArt":"CharacterPlanned","connections":[{"id":52115,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":18,"skill":34769,"stats":["25% increased Life Regeneration rate"],"stringId":"oracle_life_corruption6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34782":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":165,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":7,"orbitIndex":0,"skill":34782,"stats":[],"stringId":"mastery_shapeshifting_6686"},"34785":{"ascendancyName":"Ritualist","connections":[{"id":58574,"orbit":-9},{"id":42017,"orbit":0},{"id":17058,"orbit":9}],"group":1607,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistPlusOneRingSlot.dds","isNotable":true,"name":"Unfurled Finger","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":34785,"stats":["+1 Ring Slot"],"stringId":"AscendancyHuntress3Notable2"},"34813":{"connections":[{"id":7218,"orbit":0},{"id":62505,"orbit":0},{"id":472,"orbit":0},{"id":2847,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":4,"orbitIndex":60,"skill":34813,"stats":["+3 to all Attributes"],"stringId":"attributes108"},"34817":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaDarknessProtectsLonger.dds","isNotable":true,"name":"Deepening Shadows","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":64,"skill":34817,"stats":["1% increased maximum Darkness per 1% Chaos Resistance"],"stringId":"AscendancyMonk3Notable9"},"34818":{"connections":[{"id":43250,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":1,"skill":34818,"stats":["+5% to Fire Resistance"],"stringId":"shaman2"},"34840":{"connections":[{"id":1433,"orbit":0},{"id":27674,"orbit":0},{"id":48618,"orbit":0}],"group":568,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":34840,"stats":["+5 to any Attribute"],"stringId":"attributes33"},"34845":{"connections":[{"id":60273,"orbit":0}],"group":1308,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Area","orbit":0,"orbitIndex":0,"skill":34845,"stats":["10% increased Hazard Area of Effect"],"stringId":"hazards19"},"34853":{"connections":[{"id":25458,"orbit":-2},{"id":43044,"orbit":0}],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","name":"Strength and Critical Damage Bonus on You","orbit":2,"orbitIndex":0,"skill":34853,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"stringId":"azmerianimals31"},"34866":{"connections":[{"id":40985,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Effect","orbit":2,"orbitIndex":2,"skill":34866,"stats":["Remnants you create have 10% increased effect"],"stringId":"remnant3"},"34871":{"connections":[{"id":52764,"orbit":2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":22,"skill":34871,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage35"},"34882":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":11641,"orbit":2147483647}],"group":457,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":34882,"stats":["+2% to Quality of all Skills"],"stringId":"AscendancyMercenary3Small1"},"34892":{"connections":[{"id":12066,"orbit":0}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Aura Magnitude","orbit":3,"orbitIndex":11,"skill":34892,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"azmerianimals57"},"34898":{"connections":[{"id":38463,"orbit":0}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":5,"orbitIndex":31,"skill":34898,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies7"},"34908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Staunch Deflection","orbit":3,"orbitIndex":23,"recipe":["Guilt","Despair","Fear"],"skill":34908,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating","Deflected Hits cannot inflict Maim on you","Deflected Hits cannot inflict Bleeding on you"],"stringId":"deflect53"},"34912":{"connections":[{"id":4664,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":45,"skill":34912,"stats":["10% increased Trap Damage"],"stringId":"trap3_"},"34927":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":748,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":34927,"stats":[],"stringId":"mastery_fire118"},"34940":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connectionArt":"CharacterPlanned","connections":[],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","isNotable":true,"name":"Meditative Focus","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":6,"skill":34940,"stats":["60% increased Stun Threshold while Channelling","30% of Damage taken Recouped as Life while Channelling"],"stringId":"oracle_channelling5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"34968":{"connections":[{"id":64637,"orbit":0}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":10,"skill":34968,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"spell_suppression35"},"34984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":34984,"stats":[],"stringId":"mastery_energy_shield_6495"},"34990":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":34990,"stats":["10% chance to Poison on Hit"],"stringId":"oracle_poison1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35011":{"connections":[{"id":10305,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Attack Damage with Ally","orbit":2,"orbitIndex":18,"skill":35011,"stats":["16% increased Attack Damage while you have an Ally in your Presence"],"stringId":"auras22"},"35015":{"connections":[{"id":6655,"orbit":0}],"group":718,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":35015,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed19_"},"35028":{"connections":[{"id":51974,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"In the Thick of It","orbit":2,"orbitIndex":17,"recipe":["Disgust","Despair","Greed"],"skill":35028,"stats":["Regenerate 2.5% of maximum Life per second while Surrounded"],"stringId":"being_surrounded9"},"35031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","isNotable":true,"name":"Chakra of Life","orbit":0,"orbitIndex":0,"recipe":["Fear","Isolation","Fear"],"skill":35031,"stats":["3% increased maximum Life","10% increased Life Recovery rate"],"stringId":"monkchakra18"},"35033":{"ascendancyName":"Amazon","connections":[{"id":55796,"orbit":0}],"group":1596,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35033,"stats":["4% increased Skill Speed"],"stringId":"AscendancyHuntress1Small3"},"35043":{"connections":[],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Debuff Magnitude","orbit":4,"orbitIndex":36,"skill":35043,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"buckler7"},"35046":{"connections":[],"group":900,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Mystic Avalanche","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Isolation","Suffering"],"skill":35046,"stats":["Final Echo of Cascadable Spells also Cascades to either side of the targeted Area along a random axis"],"stringId":"DeliriumAnoint_MysticAvalanche"},"35048":{"connections":[{"id":43650,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":12,"skill":35048,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals60"},"35058":{"connections":[{"id":64650,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if no recent Stun","orbit":2,"orbitIndex":18,"skill":35058,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold17"},"35085":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":228,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":35085,"stats":[],"stringId":"mastery_criticals66"},"35095":{"connections":[{"id":41886,"orbit":2}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage","orbit":2,"orbitIndex":20,"skill":35095,"stats":["10% increased Chaos Damage"],"stringId":"monkchaos2"},"35118":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":35118,"stats":[],"stringId":"mastery_twohand242"},"35151":{"connections":[{"id":44453,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":7,"orbitIndex":23,"skill":35151,"stats":["15% increased Stun Threshold"],"stringId":"monkchakra26"},"35171":{"connections":[{"id":18846,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":3,"orbitIndex":2,"skill":35171,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells2"},"35173":{"connections":[{"id":1599,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Critical Chance","orbit":7,"orbitIndex":22,"skill":35173,"stats":["5% increased Critical Hit Chance","8% increased Physical Damage"],"stringId":"physical2"},"35187":{"ascendancyName":"Amazon","connections":[],"group":1581,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonSpeedBloodlustedEnemy.dds","isNotable":true,"name":"In for the Kill","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":35187,"stats":["20% increased Movement Speed while an enemy with an Open Weakness is in your Presence","40% increased Skill Speed while an enemy with an Open Weakness is in your Presence"],"stringId":"AscendancyHuntress1Notable4"},"35223":{"connections":[{"id":55680,"orbit":0},{"id":9227,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":3,"orbitIndex":4,"skill":35223,"stats":["3% increased Attack Speed with Spears"],"stringId":"spear11"},"35234":{"connections":[{"id":35660,"orbit":0},{"id":6789,"orbit":0},{"id":56651,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":14623,"name":"Attack Damage","stats":["10% increased Attack Damage"]}},"orbit":7,"orbitIndex":19,"skill":35234,"stats":["10% increased Projectile Damage"],"stringId":"projectiles22"},"35265":{"connections":[{"id":31903,"orbit":0},{"id":48589,"orbit":0},{"id":18374,"orbit":0},{"id":6274,"orbit":0}],"group":563,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":35265,"stats":["+5 to any Attribute"],"stringId":"strength79"},"35284":{"connections":[{"id":31898,"orbit":-2},{"id":64471,"orbit":-7}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":3,"skill":35284,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds1"},"35324":{"connections":[{"id":34927,"orbit":0},{"id":34290,"orbit":4}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Burnout","orbit":3,"orbitIndex":0,"recipe":["Isolation","Greed","Paranoia"],"skill":35324,"stats":["Ignites you inflict deal Damage 15% faster"],"stringId":"ignite17"},"35369":{"connections":[{"id":1459,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Investing Energies","orbit":0,"orbitIndex":0,"recipe":["Ire","Ire","Envy"],"skill":35369,"stats":["35% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration16"},"35380":{"connections":[{"id":44373,"orbit":-2}],"group":1350,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Withered Effect","orbit":2,"orbitIndex":20,"skill":35380,"stats":["10% increased Withered Magnitude"],"stringId":"chaos22"},"35387":{"connections":[{"id":6554,"orbit":2},{"id":49512,"orbit":0}],"group":769,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":35387,"stats":["12% increased Cold Damage"],"stringId":"cold60__"},"35393":{"connectionArt":"CharacterPlanned","connections":[{"id":23708,"orbit":0}],"group":440,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour while Bleeding","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":2,"skill":35393,"stats":["30% increased Armour while Bleeding"],"stringId":"oracle_iron_blood2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35404":{"connections":[{"id":43250,"orbit":2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Cold Resistance","orbit":7,"orbitIndex":2,"skill":35404,"stats":["+5% to Cold Resistance"],"stringId":"shaman5"},"35408":{"connections":[{"id":24767,"orbit":7},{"id":23382,"orbit":0}],"group":354,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Focus Energy Shield","orbit":2,"orbitIndex":16,"skill":35408,"stats":["40% increased Energy Shield from Equipped Focus"],"stringId":"focus1"},"35417":{"connections":[{"id":28770,"orbit":3},{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Wyvern's Breath","orbit":3,"orbitIndex":13,"recipe":["Guilt","Disgust","Paranoia"],"skill":35417,"stats":["40% increased Elemental Ailment Application if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting28"},"35426":{"connections":[{"id":8406,"orbit":6}],"group":626,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":35426,"stats":["+5 to any Attribute"],"stringId":"strength89"},"35453":{"ascendancyName":"Titan","connections":[{"id":42275,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Slam Area of Effect","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":5,"orbitIndex":52,"skill":35453,"stats":["Slam Skills have 8% increased Area of Effect"],"stringId":"AscendancyWarrior1Small1"},"35477":{"connections":[{"id":10277,"orbit":0}],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Far Sighted","orbit":2,"orbitIndex":1,"recipe":["Guilt","Ire","Fear"],"skill":35477,"stats":["30% reduced penalty to Accuracy Rating at range"],"stringId":"accuracy29"},"35492":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":807,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":7,"orbitIndex":21,"skill":35492,"stats":[],"stringId":"mastery_minion_offence_6621"},"35503":{"connections":[{"id":23764,"orbit":0}],"group":1021,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Effect and Mana Regeneration","orbit":0,"orbitIndex":0,"skill":35503,"stats":["6% increased Mana Regeneration Rate","10% increased Magnitude of Shock you inflict"],"stringId":"lightning48"},"35534":{"connections":[{"id":44280,"orbit":-3}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":15,"skill":35534,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks32"},"35535":{"ascendancyName":"Shaman","connections":[{"id":1855,"orbit":8},{"id":33824,"orbit":9},{"id":61722,"orbit":9},{"id":54512,"orbit":9},{"id":28022,"orbit":9}],"group":50,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Shaman","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35535,"stats":[],"stringId":"AscendancyDruid2Start"},"35560":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":607,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"At your Command","orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Envy"],"skill":35560,"stats":["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"],"stringId":"minion_offence47_"},"35564":{"connections":[{"id":18121,"orbit":0},{"id":65310,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Turn the Clock Back","orbit":3,"orbitIndex":0,"recipe":["Fear","Fear","Despair"],"skill":35564,"stats":["15% increased Spell Damage","10% reduced Projectile Speed for Spell Skills"],"stringId":"projectile_spells8"},"35581":{"connections":[{"id":26895,"orbit":0}],"group":544,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Near at Hand","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Paranoia"],"skill":35581,"stats":["16% reduced Skill Effect Duration","10% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells6"},"35594":{"connections":[],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":2,"orbitIndex":8,"skill":35594,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break21_"},"35602":{"connections":[],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":12,"skill":35602,"stats":["Offerings have 30% reduced Maximum Life"],"stringId":"corpses16"},"35618":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[{"id":36504,"orbit":0}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Cold Coat","orbit":7,"orbitIndex":15,"recipe":["Envy","Despair","Envy"],"skill":35618,"stats":["25% increased Freeze Buildup","25% reduced Freeze Duration on you","25% increased Freeze Threshold"],"stringId":"chill_and_freeze25"},"35623":{"connections":[{"id":24736,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":9,"skill":35623,"stats":["+4% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 6% of Evasion Rating"],"stringId":"armour_and_evasion56_"},"35644":{"connections":[{"id":45193,"orbit":6},{"id":65009,"orbit":0}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":23,"skill":35644,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison17"},"35645":{"connections":[],"group":540,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Cooldown","orbit":0,"orbitIndex":0,"skill":35645,"stats":["Minions have 20% increased Cooldown Recovery Rate for Command Skills"],"stringId":"minion_offence49"},"35653":{"connections":[{"id":35653,"orbit":0},{"id":65468,"orbit":0}],"group":885,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":0,"orbitIndex":0,"skill":35653,"stats":["12% increased Grenade Damage"],"stringId":"crossbow9"},"35660":{"connections":[{"id":18548,"orbit":0}],"group":966,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":13,"skill":35660,"stats":["3% increased Attack Speed"],"stringId":"attack_speed3"},"35671":{"connections":[{"id":31172,"orbit":3}],"group":1352,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Dexterity","orbit":4,"orbitIndex":57,"skill":35671,"stats":["2% increased Attack Speed","+5 to Dexterity"],"stringId":"attack_speed18"},"35688":{"connections":[{"id":16618,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Reduced Attribute Requirements","orbit":7,"orbitIndex":10,"skill":35688,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"all_attributes7"},"35689":{"connections":[{"id":34543,"orbit":2}],"group":1218,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","name":"Damage","orbit":2,"orbitIndex":14,"skill":35689,"stats":["10% increased Damage"],"stringId":"azmerianimals29"},"35696":{"connections":[{"id":24070,"orbit":0},{"id":64064,"orbit":0},{"id":1020,"orbit":0},{"id":10267,"orbit":0}],"group":1383,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":35696,"stats":["+5 to any Attribute"],"stringId":"dexterity59"},"35708":{"connections":[{"id":2863,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Chill Magnitude","orbit":2,"orbitIndex":2,"skill":35708,"stats":["12% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze16"},"35720":{"connectionArt":"CharacterPlanned","connections":[{"id":7258,"orbit":0}],"group":725,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":9,"skill":35720,"stats":["10% increased Spell Damage","+10 to Strength"],"stringId":"oracle_strength_spell1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35739":{"connections":[{"id":42410,"orbit":3},{"id":8556,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Crushing Judgement","orbit":7,"orbitIndex":23,"recipe":["Greed","Isolation","Ire"],"skill":35739,"stats":["25% increased Armour Break Duration","25% increased Attack Area Damage"],"stringId":"area_attacks31"},"35743":{"connections":[{"id":60116,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Saqawal's Hide","orbit":4,"orbitIndex":36,"recipe":["Disgust","Fear","Disgust"],"skill":35743,"stats":["+5% to Lightning Resistance","25% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion34"},"35745":{"connectionArt":"CharacterPlanned","connections":[],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Gain Maximum Endurance Charges on Gaining Endurance Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":35745,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges"],"stringId":"oracle_endurance_charge1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35755":{"connections":[{"id":54058,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Damage","orbit":2,"orbitIndex":16,"skill":35755,"stats":["10% increased Critical Damage Bonus with Daggers"],"stringId":"dagger15"},"35760":{"connections":[{"id":22359,"orbit":6}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":8,"skill":35760,"stats":["10% increased Elemental Damage"],"stringId":"elemental45"},"35762":{"ascendancyName":"Shaman","connections":[],"group":66,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageonHit.dds","isNotable":true,"name":"Furious Wellspring","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":35762,"stats":["No Inherent loss of Rage","Regenerate 6% of your maximum Rage per second","Increases and Reductions to Mana Regeneration Rate also apply to Rage Regeneration Rate","Skills have +5 to Rage cost","+7 to Maximum Rage"],"stringId":"AscendancyDruid2Notable6"},"35787":{"connections":[{"id":42813,"orbit":7}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":1,"orbitIndex":0,"skill":35787,"stats":["10% increased Skill Effect Duration"],"stringId":"duration4"},"35792":{"connections":[],"group":296,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Blood of Rage","orbit":2,"orbitIndex":12,"recipe":["Isolation","Despair","Isolation"],"skill":35792,"stats":["Gain 8 Rage when you use a Life Flask"],"stringId":"life_flasks37"},"35801":{"ascendancyName":"Deadeye","connections":[{"id":23508,"orbit":0}],"group":1561,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Frenzy Charge Duration","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35801,"stats":["25% increased Frenzy Charge Duration"],"stringId":"AscendancyRanger1Small6"},"35809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Reinvigoration","orbit":1,"orbitIndex":6,"recipe":["Disgust","Envy","Ire"],"skill":35809,"stats":["Regenerate 1% of maximum Life per Second if you've used a Life Flask in the past 10 seconds"],"stringId":"life_flasks6"},"35831":{"connections":[{"id":904,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":9,"skill":35831,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana7"},"35848":{"connections":[],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Recovery","orbit":7,"orbitIndex":20,"skill":35848,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks16"},"35849":{"connections":[],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Thickened Arteries","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Greed"],"skill":35849,"stats":["Regenerate 0.5% of maximum Life per second","40% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration16__"},"35855":{"connections":[{"id":48583,"orbit":0},{"id":35859,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Fortifying Blood","orbit":2,"orbitIndex":3,"recipe":["Greed","Paranoia","Fear"],"skill":35855,"stats":["15% increased amount of Life Leeched","40% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech13"},"35859":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLeechPattern","connections":[],"group":935,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLifeMana.dds","isOnlyImage":true,"name":"Leech Mastery","orbit":0,"orbitIndex":0,"skill":35859,"stats":[],"stringId":"mastery_leech129"},"35863":{"connections":[{"id":51732,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":35863,"stats":["3% increased Attack Speed"],"stringId":"duration_spells9"},"35876":{"connections":[{"id":53194,"orbit":4},{"id":35977,"orbit":0},{"id":27540,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Admonisher","orbit":2,"orbitIndex":20,"recipe":["Disgust","Suffering","Disgust"],"skill":35876,"stats":["25% increased Warcry Speed","25% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries21"},"35878":{"connections":[{"id":50884,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":7,"orbitIndex":11,"skill":35878,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental55"},"35880":{"ascendancyName":"Disciple of Varashta","connections":[],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Cast Speed","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":4,"orbitIndex":6,"skill":35880,"stats":["4% increased Cast Speed"],"stringId":"AscendancySorceress3Small4"},"35896":{"connections":[{"id":55668,"orbit":0},{"id":53266,"orbit":0},{"id":17672,"orbit":0}],"group":1012,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":35896,"stats":["+5 to any Attribute"],"stringId":"intelligence36_"},"35901":{"connections":[{"id":12120,"orbit":-6},{"id":62464,"orbit":6},{"id":60735,"orbit":0},{"id":6951,"orbit":0}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":60,"skill":35901,"stats":["+5 to any Attribute"],"stringId":"dexterity34"},"35918":{"connections":[{"id":52038,"orbit":0}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"One For All","orbit":7,"orbitIndex":19,"recipe":["Disgust","Paranoia","Suffering"],"skill":35918,"stats":["40% increased Presence Area of Effect","8% reduced Area of Effect"],"stringId":"auras37"},"35920":{"ascendancyName":"Shaman","connections":[{"id":35762,"orbit":2147483647}],"group":67,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":35920,"stats":["+3 to Maximum Rage"],"stringId":"AscendancyDruid2Small6"},"35921":{"connections":[{"id":5642,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":35921,"stats":["6% increased Area of Effect for Attacks"],"stringId":"slam_area3"},"35966":{"connections":[{"id":44316,"orbit":2147483647}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Heart Tissue","orbit":7,"orbitIndex":4,"recipe":["Paranoia","Despair","Ire"],"skill":35966,"stats":["Regenerate 0.5% of maximum Life per second if you have been Hit Recently","8% of Damage taken Recouped as Life"],"stringId":"life_recoup15"},"35974":{"connections":[{"id":51105,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":2,"orbitIndex":22,"skill":35974,"stats":["16% increased Totem Life"],"stringId":"totems19"},"35977":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":35977,"stats":[],"stringId":"mastery_warcry251"},"35980":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connectionArt":"CharacterPlanned","connections":[],"group":88,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":35980,"stats":[],"stringId":"oracle_rust_king_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"35985":{"connections":[],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":5,"orbitIndex":18,"skill":35985,"stats":["10% increased Melee Damage"],"stringId":"melee15"},"35987":{"connections":[{"id":32274,"orbit":0},{"id":19470,"orbit":0},{"id":55397,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/finesse.dds","isNotable":true,"name":"Blur","orbit":4,"orbitIndex":27,"skill":35987,"stats":["4% increased Movement Speed","20% increased Evasion Rating","+10 to Dexterity"],"stringId":"ranger_huntress_notable1"},"36025":{"connectionArt":"CharacterPlanned","connections":[{"id":44309,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":6,"orbitIndex":30,"skill":36025,"stats":["Minions deal 12% increased Damage"],"stringId":"oracle_big_family1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36027":{"connections":[{"id":18073,"orbit":2}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":36027,"stats":["12% increased Attack Damage"],"stringId":"slow_attacks3"},"36070":{"connections":[{"id":14045,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":45,"skill":36070,"stats":["6% increased Area of Effect for Attacks"],"stringId":"ranged16"},"36071":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpearsPattern","connections":[],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/ImpaleMasterySymbol.dds","isOnlyImage":true,"name":"Spear Mastery","orbit":5,"orbitIndex":12,"skill":36071,"stats":[],"stringId":"mastery_spear_6704"},"36085":{"connections":[{"id":37548,"orbit":0},{"id":15270,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Serrated Edges","orbit":3,"orbitIndex":0,"recipe":["Paranoia","Disgust","Greed"],"skill":36085,"stats":["10% increased Critical Hit Chance for Attacks","30% increased Attack Damage against Rare or Unique Enemies"],"stringId":"melee31"},"36100":{"connections":[{"id":34782,"orbit":0}],"group":167,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Molten Claw","orbit":0,"orbitIndex":0,"recipe":["Suffering","Greed","Paranoia"],"skill":36100,"stats":["Gain 8% of Damage as Extra Fire Damage while Shapeshifted"],"stringId":"bear8"},"36109":{"ascendancyName":"Disciple of Varashta","connections":[{"id":13289,"orbit":8}],"flavourText":"\"The snare was set on our fallen. Beetles burst from their flesh, flooding the sands. Their exploding carapaces halted the advancing enemy... but it was not enough. And for that... I grieve.\" \\n\\nKelari admitted his wrongdoing to Varashta.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/SandDjinnCorpseBeetles.dds","isNotable":true,"name":"Kelari's Malediction","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":19,"skill":36109,"stats":["Grants Skill: Kelari's Malediction"],"stringId":"AscendancySorceress3Notable15"},"36114":{"connections":[{"id":23360,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Attack Damage while Moving","orbit":7,"orbitIndex":10,"skill":36114,"stats":["12% increased Attack Damage while moving"],"stringId":"slow_mitigation12"},"36163":{"connections":[{"id":30390,"orbit":-4}],"group":486,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":2,"orbitIndex":9,"skill":36163,"stats":["5% increased Block chance"],"stringId":"block25_"},"36169":{"connections":[{"id":29514,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Area","orbit":3,"orbitIndex":23,"skill":36169,"stats":["10% increased Grenade Area of Effect"],"stringId":"grenades5"},"36170":{"connections":[{"id":53853,"orbit":-3},{"id":7628,"orbit":-4}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":13,"skill":36170,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion4"},"36191":{"connections":[{"id":40325,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":21,"skill":36191,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold2"},"36197":{"connectionArt":"CharacterPlanned","connections":[{"id":27096,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":19,"skill":36197,"stats":["30% increased Totem Placement speed"],"stringId":"oracle_totems6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36217":{"connections":[],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":2,"skill":36217,"stats":["15% increased Volatility Explosion delay"],"stringId":"volatility16"},"36231":{"connections":[{"id":3336,"orbit":0},{"id":31765,"orbit":0}],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Critical Damage when consuming a Power Charge","orbit":2,"orbitIndex":1,"skill":36231,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently"],"stringId":"power_charges5"},"36250":{"connections":[{"id":56368,"orbit":-7},{"id":49214,"orbit":3},{"id":55897,"orbit":3}],"group":133,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Regeneration","orbit":0,"orbitIndex":0,"skill":36250,"stats":["15% increased Life Regeneration rate while Shapeshifted"],"stringId":"wolf7"},"36252":{"ascendancyName":"Tactician","connections":[{"id":46522,"orbit":0},{"id":762,"orbit":0},{"id":12054,"orbit":0},{"id":29162,"orbit":0},{"id":54892,"orbit":0}],"group":380,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Tactician","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":6,"orbitIndex":36,"skill":36252,"stats":[],"stringId":"AscendancyMercenary1Start"},"36270":{"connections":[{"id":5009,"orbit":0}],"group":1291,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze on Hit","orbit":3,"orbitIndex":1,"skill":36270,"stats":["5% chance to Daze on Hit"],"stringId":"daze_6"},"36286":{"connections":[{"id":41130,"orbit":0},{"id":14033,"orbit":0},{"id":34058,"orbit":0}],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","orbit":1,"orbitIndex":5,"skill":36286,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"stringId":"spells53"},"36290":{"connections":[{"id":23046,"orbit":-2}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":4,"orbitIndex":33,"skill":36290,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery7"},"36293":{"connections":[{"id":27785,"orbit":0},{"id":55708,"orbit":0}],"group":918,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":36293,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration15_"},"36298":{"connections":[{"id":8510,"orbit":3},{"id":40918,"orbit":6}],"group":1156,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect","orbit":0,"orbitIndex":0,"skill":36298,"stats":["10% increased Magnitude of Ailments you inflict"],"stringId":"ailments23"},"36302":{"connections":[{"id":47307,"orbit":6}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Practiced Signs","orbit":7,"orbitIndex":0,"skill":36302,"stats":["6% increased Cast Speed"],"stringId":"cast_speed36_"},"36325":{"connections":[{"id":54148,"orbit":-5}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":4,"orbitIndex":71,"skill":36325,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration7"},"36333":{"connections":[{"id":62360,"orbit":0},{"id":49259,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Explosive Empowerment","orbit":3,"orbitIndex":22,"recipe":["Paranoia","Suffering","Despair"],"skill":36333,"stats":["Empowered Attacks deal 20% increased Damage","Enemies you kill with Empowered Attacks have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage"],"stringId":"warcries42"},"36341":{"connections":[{"id":35118,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","isNotable":true,"name":"Cull the Hordes","orbit":2,"orbitIndex":10,"recipe":["Despair","Guilt","Suffering"],"skill":36341,"stats":["40% increased Culling Strike Threshold against Rare or Unique Enemies"],"stringId":"boss_slaying9_"},"36358":{"connections":[{"id":12367,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":4,"skill":36358,"stats":["7% increased Chaos Damage"],"stringId":"chaos16"},"36364":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1455,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Electrocution","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Greed"],"skill":36364,"stats":["Enemies you Electrocute have 20% increased Damage taken"],"stringId":"shock_mitigation4_"},"36365":{"ascendancyName":"Ritualist","connections":[{"id":60859,"orbit":9},{"id":58149,"orbit":9},{"id":22661,"orbit":9},{"id":17058,"orbit":-9},{"id":42017,"orbit":0},{"id":58574,"orbit":9},{"id":11776,"orbit":8}],"group":1615,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Ritualist","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":36365,"stats":[],"stringId":"AscendancyHuntress3Start"},"36379":{"connections":[{"id":25026,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":4,"orbitIndex":58,"skill":36379,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana32"},"36389":{"connections":[{"id":53989,"orbit":8}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":8,"orbitIndex":59,"skill":36389,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage21"},"36408":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Deadly Thorns","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":0,"skill":36408,"stats":["35% increased Physical Damage"],"stringId":"oracle_duration_physical6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"36449":{"connections":[{"id":8115,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":6,"skill":36449,"stats":["15% increased Pin Buildup"],"stringId":"armour_break31"},"36450":{"connections":[{"id":11838,"orbit":-4}],"group":1112,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Spell Damage on full Energy Shield","orbit":3,"orbitIndex":0,"skill":36450,"stats":["12% increased Spell Damage while on Full Energy Shield"],"stringId":"focus8"},"36474":{"connections":[{"id":31925,"orbit":3}],"group":376,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Curse Effect on Self","orbit":0,"orbitIndex":0,"skill":36474,"stats":["15% reduced effect of Curses on you"],"stringId":"focus2"},"36478":{"connections":[{"id":43014,"orbit":2147483647},{"id":48714,"orbit":2147483647}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":36478,"stats":["10% increased Attack Damage"],"stringId":"melee5"},"36479":{"connections":[{"id":12925,"orbit":0}],"group":1018,"icon":"Art/2DArt/SkillIcons/passives/Storm Weaver.dds","isNotable":true,"name":"Essence of the Storm","orbit":4,"orbitIndex":66,"skill":36479,"stats":["Gain 5% of Damage as Extra Lightning Damage","30% increased chance to Shock"],"stringId":"lightning41"},"36504":{"connections":[{"id":65,"orbit":2147483647}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":11,"skill":36504,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze20"},"36507":{"connections":[{"id":60313,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","isNotable":true,"name":"Vile Mending","orbit":2,"orbitIndex":4,"recipe":["Greed","Fear","Fear"],"skill":36507,"stats":["Minions have 20% increased maximum Life","Minions Regenerate 3% of maximum Life per second","Minions have +13% to Chaos Resistance"],"stringId":"minion_defence35"},"36522":{"connections":[{"id":3999,"orbit":0},{"id":54099,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":4,"orbitIndex":33,"skill":36522,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks15"},"36540":{"connections":[{"id":56988,"orbit":0}],"group":1430,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Resistance","orbit":0,"orbitIndex":0,"skill":36540,"stats":["+5% to Lightning Resistance"],"stringId":"lightning58"},"36556":{"connections":[{"id":1502,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Defences","orbit":2,"orbitIndex":12,"skill":36556,"stats":["8% increased Armour, Evasion and Energy Shield while Channelling"],"stringId":"channelling16_"},"36564":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToMana.dds","isNotable":true,"name":"Beidat's Gaze","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":9,"orbitIndex":100,"skill":36564,"stats":["Reserves 25% of Life","+1 to Maximum Mana per 6 Maximum Life"],"stringId":"AscendancyWitch1Notable1"},"36576":{"connections":[{"id":25055,"orbit":-3},{"id":54984,"orbit":0}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":14,"skill":36576,"stats":["10% increased Attack Damage"],"stringId":"attack6"},"36596":{"connections":[{"id":45013,"orbit":-3},{"id":56118,"orbit":-5}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":7,"orbitIndex":22,"skill":36596,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life6"},"36602":{"connections":[{"id":18465,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isSwitchable":true,"name":"Critical Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","id":16160,"name":"Skill Speed while Shapeshifted","stats":["3% increased Skill Speed while Shapeshifted"]}},"orbit":4,"orbitIndex":39,"skill":36602,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals36"},"36623":{"connections":[{"id":10729,"orbit":0},{"id":31630,"orbit":0}],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Convalescence","orbit":2,"orbitIndex":21,"recipe":["Disgust","Suffering","Greed"],"skill":36623,"stats":["10% reduced Energy Shield Recharge Rate","20% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery22"},"36629":{"connections":[{"id":44659,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":45,"skill":36629,"stats":["+5 to any Attribute"],"stringId":"strength22"},"36630":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[{"id":49473,"orbit":0}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Incision","orbit":2,"orbitIndex":4,"recipe":["Greed","Greed","Greed"],"skill":36630,"stats":["50% increased effect of Incision"],"stringId":"bleed30"},"36639":{"connections":[{"id":62677,"orbit":-6},{"id":32009,"orbit":0}],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":22,"skill":36639,"stats":["20% increased Curse Duration"],"stringId":"curses15"},"36643":{"ascendancyName":"Martial Artist","connections":[{"id":1739,"orbit":9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Additional Power Charge Chance","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":1,"skill":36643,"stats":["10% chance when you gain a Power Charge to gain an additional Power Charge"],"stringId":"AscendancyMonk1Small6"},"36659":{"ascendancyName":"Warbringer","connections":[],"group":31,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerEnemyArmourBrokenBelowZero.dds","isNotable":true,"name":"Imploding Impacts","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":36659,"stats":["Fully Broken Armour you inflict increases all Damage Taken from Hits instead","You can Break Enemy Armour to below 0"],"stringId":"AscendancyWarrior2Notable2"},"36676":{"ascendancyName":"Pathfinder","connections":[{"id":46454,"orbit":0}],"group":1577,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Passive Points","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":36676,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyRanger3Small9"},"36677":{"connections":[{"id":9240,"orbit":0},{"id":36071,"orbit":0},{"id":9227,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Damage","orbit":0,"orbitIndex":0,"skill":36677,"stats":["10% increased Damage with Spears"],"stringId":"spear12"},"36696":{"ascendancyName":"Lich","connections":[{"id":28431,"orbit":4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Life","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":31398,"name":"Life","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["3% increased maximum Life"]}},"orbit":9,"orbitIndex":30,"skill":36696,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch3Small5"},"36709":{"connections":[],"group":685,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":6,"skill":36709,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold13"},"36723":{"connections":[{"id":3700,"orbit":0}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":0,"skill":36723,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise7"},"36728":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":564,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingMaxElementalResistanceSupportColour.dds","isNotable":true,"name":"Thaumaturgical Infusion","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":36728,"stats":["+1% to Maximum Cold Resistance per 3 Blue Support Gems Socketed","+1% to Maximum Fire Resistance per 3 Red Support Gems Socketed","+1% to Maximum Lightning Resistance per 3 Green Support Gems Socketed"],"stringId":"AscendancyMercenary3Notable8"},"36737":{"connections":[{"id":7542,"orbit":-2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":0,"skill":36737,"stats":["10% increased Area Damage"],"stringId":"area_of_effect18"},"36746":{"connections":[{"id":40691,"orbit":-3}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":3,"orbitIndex":16,"skill":36746,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"mana22"},"36759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1228,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":36759,"stats":[],"stringId":"mastery_caster_6359"},"36778":{"connections":[{"id":36479,"orbit":0}],"group":1018,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":4,"orbitIndex":58,"skill":36778,"stats":["15% increased chance to Shock"],"stringId":"lightning42"},"36782":{"connections":[{"id":1151,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":12,"skill":36782,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze6"},"36788":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":25781,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Leech","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":6,"orbitIndex":8,"skill":36788,"stats":["11% increased amount of Life Leeched","11% increased amount of Mana Leeched"],"stringId":"AscendancyMonk3Small3"},"36808":{"connections":[{"id":34076,"orbit":3},{"id":37795,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Spiked Shield","orbit":2,"orbitIndex":16,"recipe":["Fear","Suffering","Fear"],"skill":36808,"stats":["2% increased Attack Damage per 75 Item Armour and Evasion on Equipped Shield","50% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block17"},"36814":{"connections":[],"group":894,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":6,"skill":36814,"stats":["20% increased Curse Duration"],"stringId":"curses17"},"36822":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":58591,"orbit":0}],"group":573,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Attributes","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":36822,"stats":["3% increased Attributes"],"stringId":"AscendancyMercenary3Small5"},"36880":{"connections":[{"id":43036,"orbit":3}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge Effect","orbit":4,"orbitIndex":57,"skill":36880,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"mana_regeneration26"},"36891":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56783,"orbit":9}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/TimelostJewelsLargerRadius.dds","isNotable":true,"name":"Baryanic Leylines","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":28,"skill":36891,"stats":["Non-Unique Time-Lost Jewels have 40% increased radius"],"stringId":"AscendancySorceress3Notable6"},"36894":{"connections":[{"id":61938,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":20,"skill":36894,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"jagged_ground2"},"36927":{"connections":[{"id":44756,"orbit":5}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":11,"skill":36927,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks8"},"36931":{"connections":[],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Concussive Attack","orbit":7,"orbitIndex":0,"recipe":["Disgust","Greed","Greed"],"skill":36931,"stats":["25% increased Attack Damage","5% chance to Daze on Hit"],"stringId":"attack45"},"36976":{"connections":[],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Marked for Death","orbit":3,"orbitIndex":9,"recipe":["Isolation","Suffering","Guilt"],"skill":36976,"stats":["Culling Strike against Enemies you Mark"],"stringId":"marks9"},"36994":{"connections":[{"id":27491,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":12,"skill":36994,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield41"},"36997":{"connections":[{"id":27761,"orbit":0}],"group":1095,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":0,"orbitIndex":0,"skill":36997,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"deflect14"},"37026":{"connections":[{"id":27513,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Physical Damage","orbit":1,"orbitIndex":2,"skill":37026,"stats":["Break 10% increased Armour","6% increased Physical Damage"],"stringId":"physical49"},"37046":{"ascendancyName":"Ritualist","connections":[],"group":1619,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistBloodBoils.dds","isNotable":true,"name":"Corrupted Lifeforce","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37046,"stats":["15% more Damage against Enemies affected by Blood Boils","Grants Skill: Blood Boil"],"stringId":"AscendancyHuntress3Notable6"},"37078":{"ascendancyName":"Witchhunter","connections":[],"group":365,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterMonsterHolyExplosion.dds","isNotable":true,"name":"Zealous Inquisition","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37078,"stats":["10% chance for Enemies you Kill to Explode, dealing 100%","of their maximum Life as Physical Damage","Chance is doubled against Undead and Demons"],"stringId":"AscendancyMercenary2Notable7"},"37092":{"connections":[{"id":55817,"orbit":0}],"group":695,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Exposure Effect and Slow Effect","orbit":7,"orbitIndex":6,"skill":37092,"stats":["Debuffs you inflict have 7% increased Slow Magnitude","7% increased Exposure Effect"],"stringId":"slowed_enemies29"},"37113":{"connections":[{"id":28982,"orbit":0}],"group":115,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":37113,"stats":["12% increased Lightning Damage"],"stringId":"lightning50"},"37164":{"connections":[{"id":419,"orbit":2147483647}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Non-Damaging Ailment Magnitude","orbit":2,"orbitIndex":16,"skill":37164,"stats":["10% increased Magnitude of Non-Damaging Ailments you inflict"],"stringId":"monkchakra22"},"37187":{"connections":[{"id":14026,"orbit":-4},{"id":63085,"orbit":5}],"group":157,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage against Immobilised","orbit":0,"orbitIndex":0,"skill":37187,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"stringId":"bear7"},"37190":{"connections":[{"id":35855,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":7,"skill":37190,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech11"},"37220":{"connections":[{"id":17955,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":9,"skill":37220,"stats":["15% increased Evasion Rating"],"stringId":"evasion10"},"37226":{"connections":[{"id":4015,"orbit":2},{"id":9187,"orbit":-6}],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":4,"skill":37226,"stats":["16% increased Warcry Speed"],"stringId":"warcries30"},"37242":{"connections":[{"id":16871,"orbit":2},{"id":54031,"orbit":0}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":14,"skill":37242,"stats":["12% increased Stun Threshold"],"stringId":"azmerianimals1"},"37244":{"connections":[{"id":33445,"orbit":3},{"id":37795,"orbit":0}],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Shield Expertise","orbit":2,"orbitIndex":8,"recipe":["Disgust","Greed","Fear"],"skill":37244,"stats":["12% increased Block chance","40% increased Block Recovery"],"stringId":"block18"},"37250":{"connections":[{"id":1420,"orbit":0}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":2,"orbitIndex":16,"skill":37250,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks48"},"37258":{"connections":[{"id":31903,"orbit":0}],"group":466,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":37258,"stats":["+5 to any Attribute"],"stringId":"attributes18"},"37260":{"connections":[{"id":30395,"orbit":2}],"group":278,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Warcry Speed","orbit":2,"orbitIndex":13,"skill":37260,"stats":["16% increased Warcry Speed"],"stringId":"wolf13_"},"37266":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[{"id":29930,"orbit":0}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Nourishing Ally","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Guilt"],"skill":37266,"stats":["Companions have 20% increased maximum Life","20% increased Life Recovery Rate while your Companion is in your Presence"],"stringId":"duelist_minions9"},"37276":{"connections":[{"id":33244,"orbit":0}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Battle Trance","orbit":2,"orbitIndex":14,"recipe":["Isolation","Disgust","Fear"],"skill":37276,"stats":["+8 to Maximum Rage"],"stringId":"rage6"},"37279":{"connections":[{"id":41159,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":15,"skill":37279,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning52"},"37290":{"connections":[{"id":28892,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage while Shapeshifted","orbit":7,"orbitIndex":5,"skill":37290,"stats":["+3 to maximum Rage while Shapeshifted"],"stringId":"rage29"},"37302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Kept at Bay","orbit":3,"orbitIndex":20,"recipe":["Guilt","Paranoia","Suffering"],"skill":37302,"stats":["Attacks used by Ballistas have 10% increased Attack Speed","50% increased Ballista Immobilisation buildup"],"stringId":"ballista18"},"37304":{"connections":[{"id":336,"orbit":4},{"id":61921,"orbit":-4},{"id":64543,"orbit":0}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental","orbit":4,"orbitIndex":57,"skill":37304,"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"stringId":"elemental20"},"37327":{"connections":[],"group":567,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":37327,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana15"},"37336":{"ascendancyName":"Deadeye","connections":[{"id":35801,"orbit":0}],"group":1563,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeFrenzyChargesGeneration.dds","isNotable":true,"name":"Avidity","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37336,"stats":["50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge"],"stringId":"AscendancyRanger1Notable5_"},"37361":{"connections":[{"id":40043,"orbit":2147483647}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":6,"skill":37361,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed22_"},"37372":{"connections":[{"id":13738,"orbit":0}],"group":1032,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":37372,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning10"},"37389":{"connections":[{"id":37644,"orbit":0},{"id":28061,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":4,"skill":37389,"stats":["10% increased Attack Damage"],"stringId":"attack36"},"37397":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":393,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelIntSkillGems.dds","isMultipleChoiceOption":true,"name":"Neurological Implants","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":37397,"stats":["+2 to Level of all Skills with an Intelligence requirement"],"stringId":"AscendancyMercenary3Notable2_3_"},"37408":{"connections":[{"id":31855,"orbit":7},{"id":46761,"orbit":0}],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Staunching","orbit":2,"orbitIndex":13,"recipe":["Envy","Despair","Disgust"],"skill":37408,"stats":["Life Flasks gain 0.1 charges per Second","+10 to Strength"],"stringId":"life_flasks12_"},"37414":{"connections":[{"id":65193,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Accuracy","orbit":2,"orbitIndex":16,"skill":37414,"stats":["10% increased Accuracy Rating"],"stringId":"melee9"},"37415":{"connections":[{"id":51328,"orbit":-5}],"group":328,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":37415,"stats":["12% increased Cold Damage"],"stringId":"cold53_"},"37434":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":10,"skill":37434,"stats":[],"stringId":"mastery_armour_and_evasion_6281"},"37450":{"connections":[],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":46,"skill":37450,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments3"},"37484":{"connections":[],"flavourText":"The irrepressible spirit of the wilds burns within you, roaring to be let loose.","group":144,"icon":"Art/2DArt/SkillIcons/passives/DruidRageKeystone.dds","isKeystone":true,"name":"Primal Hunger","orbit":0,"orbitIndex":0,"skill":37484,"stats":["100% more Maximum Rage","Regenerate 1 Rage per second per 4 Rage spent Recently","No Rage effect"],"stringId":"passive_keystone_acrobatics"},"37509":{"connections":[{"id":57921,"orbit":-2}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Critical Hit Chance","orbit":7,"orbitIndex":18,"skill":37509,"stats":["15% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting8"},"37514":{"connections":[{"id":32442,"orbit":0},{"id":64700,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","isNotable":true,"name":"Whirling Assault","orbit":3,"orbitIndex":1,"recipe":["Envy","Disgust","Greed"],"skill":37514,"stats":["8% increased Attack Speed with Quarterstaves","Knocks Back Enemies if you get a Critical Hit with a Quarterstaff"],"stringId":"quarterstaff10"},"37519":{"connections":[{"id":17045,"orbit":0}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Movement Speed ","orbit":7,"orbitIndex":14,"skill":37519,"stats":["2% increased Movement Speed"],"stringId":"slow_mitigation3"},"37523":{"ascendancyName":"Tactician","connections":[{"id":24696,"orbit":0}],"group":460,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianTotems.dds","isNotable":true,"name":"Cannons, Ready!","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37523,"stats":["+1 to maximum number of Summoned Totems","Skills used by Totems have 30% more Skill Speed","Totems only use Skills when you fire an Attack Projectile"],"stringId":"AscendancyMercenary1Notable8"},"37532":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":37532,"stats":[],"stringId":"mastery_elemental97"},"37543":{"connections":[{"id":16647,"orbit":0}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Full Recovery","orbit":2,"orbitIndex":16,"recipe":["Despair","Envy","Guilt"],"skill":37543,"stats":["15% increased Life Regeneration rate","15% increased Mana Regeneration Rate","12% increased Cast Speed while on Full Mana"],"stringId":"mana_regeneration18"},"37548":{"connections":[{"id":37742,"orbit":0},{"id":17589,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":5,"skill":37548,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech6"},"37568":{"connections":[{"id":45370,"orbit":0}],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOx.dds","name":"Strength and Critical Damage Bonus on You","orbit":2,"orbitIndex":6,"skill":37568,"stats":["Hits against you have 5% reduced Critical Damage Bonus","+5 to Strength"],"stringId":"azmerianimals35"},"37593":{"connections":[],"group":889,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":0,"orbitIndex":0,"skill":37593,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant7"},"37594":{"connections":[{"id":8983,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":5,"orbitIndex":38,"skill":37594,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence7"},"37604":{"ascendancyName":"Martial Artist","connections":[{"id":51546,"orbit":9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Immobilisation Buildup","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":21,"skill":37604,"stats":["20% increased Immobilisation buildup"],"stringId":"AscendancyMonk1Small8"},"37608":{"connections":[{"id":53524,"orbit":0},{"id":61042,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":4,"orbitIndex":51,"skill":37608,"stats":["10% increased Physical Damage"],"stringId":"physical9"},"37609":{"connections":[{"id":21213,"orbit":0},{"id":60332,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":0,"orbitIndex":0,"skill":37609,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour53"},"37612":{"connections":[{"id":13279,"orbit":0},{"id":17532,"orbit":0},{"id":60191,"orbit":0}],"group":590,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":37612,"stats":["+5 to any Attribute"],"stringId":"attributes44"},"37616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":5,"orbitIndex":45,"skill":37616,"stats":[],"stringId":"mastery_trap238_"},"37619":{"connections":[],"group":318,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Rhythm of Fire","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Ire"],"skill":37619,"stats":["20% increased Fire Damage","5% chance for Slam Skills to cause an additional Aftershock"],"stringId":"fire76"},"37629":{"connections":[{"id":55933,"orbit":0},{"id":41338,"orbit":-7},{"id":8248,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":37629,"stats":["+5 to any Attribute"],"stringId":"strength7"},"37641":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":284,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":37641,"stats":[],"stringId":"mastery_armour9"},"37644":{"connections":[{"id":46874,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":0,"skill":37644,"stats":["12% increased Attack Physical Damage"],"stringId":"physical27_"},"37665":{"connections":[{"id":35739,"orbit":3}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage and Armour Break","orbit":7,"orbitIndex":2,"skill":37665,"stats":["Break 10% increased Armour","6% increased Attack Area Damage"],"stringId":"area_attacks16_"},"37688":{"connections":[{"id":37616,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Devastating Devices","orbit":6,"orbitIndex":36,"skill":37688,"stats":["25% increased Trap Damage"],"stringId":"trap17"},"37691":{"connections":[{"id":42750,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":13,"skill":37691,"stats":["10% increased Attack Damage"],"stringId":"attack24"},"37694":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":21,"skill":37694,"stats":["20% increased Fire Damage"],"stringId":"oracle_hierarchy3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37695":{"connections":[{"id":11813,"orbit":-5}],"group":1197,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":0,"orbitIndex":0,"skill":37695,"stats":["15% increased Evasion Rating"],"stringId":"evasion1"},"37742":{"connections":[{"id":15270,"orbit":0},{"id":8246,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Manifold Method","orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Fear"],"skill":37742,"stats":["50% increased amount of Mana Leeched","25% increased chance to inflict Ailments against Rare or Unique Enemies"],"stringId":"mana_leech19"},"37746":{"connections":[{"id":6544,"orbit":-2}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":7,"orbitIndex":19,"skill":37746,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite18"},"37767":{"connections":[{"id":9020,"orbit":0},{"id":6596,"orbit":0},{"id":63731,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Speed","orbit":7,"orbitIndex":16,"skill":37767,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"stringId":"boss_slaying4"},"37769":{"ascendancyName":"Spirit Walker","connections":[{"id":62743,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Shared Companion Damage","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":37769,"stats":["Companions deal 10% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"AscendancyHuntress2Small3"},"37778":{"connectionArt":"CharacterPlanned","connections":[{"id":24929,"orbit":0},{"id":13108,"orbit":0}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Self Sacrificing","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":20,"skill":37778,"stats":["-20% increased Spirit Reservation Efficiency","40% increased Reservation Efficiency of Minion Skills"],"stringId":"oracle_self_sacrificing5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37780":{"connections":[{"id":7888,"orbit":0}],"group":1495,"icon":"Art/2DArt/SkillIcons/passives/MonkStrengthChakra.dds","name":"Combo Gain","orbit":3,"orbitIndex":1,"skill":37780,"stats":["10% Chance to build an additional Combo on Hit"],"stringId":"unarmed6"},"37782":{"ascendancyName":"Oracle","connections":[],"group":37,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleSpellFlux.dds","isNotable":true,"name":"Fateful Vision","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":37782,"stats":["Grants Skill: Align Fate"],"stringId":"AscendancyDruid1Notable5"},"37795":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[],"group":1242,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Shield Mastery","orbit":0,"orbitIndex":0,"skill":37795,"stats":[],"stringId":"mastery_shield211"},"37806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1051,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Branching Bolts","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Ire"],"skill":37806,"stats":["60% chance for Lightning Skills to Chain an additional time"],"stringId":"shock5"},"37813":{"connections":[{"id":14724,"orbit":0},{"id":50701,"orbit":0}],"group":1362,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Duration","orbit":0,"orbitIndex":0,"skill":37813,"stats":["20% increased Shock Duration"],"stringId":"shock16"},"37846":{"connections":[],"group":181,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","isNotable":true,"name":"Bastion of Light","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Fear","Despair"],"skill":37846,"stats":["Blind Enemies 3 metres in front of you every 0.25 seconds while your Shield is raised","Raise Shield inflicts Parried for 2 seconds on Hit"],"stringId":"DeliriumAnoint_BastionOfLight"},"37869":{"connections":[{"id":60068,"orbit":-2},{"id":21413,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":7,"orbitIndex":16,"skill":37869,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage24"},"37872":{"connections":[{"id":28863,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Presence Present","orbit":7,"orbitIndex":4,"recipe":["Ire","Fear","Isolation"],"skill":37872,"stats":["Allies in your Presence have +100 to Accuracy Rating","35% increased Attack Damage while you have an Ally in your Presence"],"stringId":"attack29"},"37876":{"connections":[{"id":52615,"orbit":3},{"id":25729,"orbit":-3}],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":4,"orbitIndex":45,"skill":37876,"stats":["10% increased Spell Damage"],"stringId":"spells10"},"37888":{"connectionArt":"CharacterPlanned","connections":[{"id":29663,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","isNotable":true,"name":"Limitless Pursuit","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":3,"orbitIndex":6,"skill":37888,"stats":["4% increased Movement Speed","14% increased Cooldown Recovery Rate"],"stringId":"oracle_movement_cooldown5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"37905":{"connections":[],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":3,"orbitIndex":2,"skill":37905,"stats":["30% increased Flammability Magnitude"],"stringId":"fire_penetration3_"},"37946":{"connections":[],"group":1209,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Stun Buildup","orbit":0,"orbitIndex":0,"skill":37946,"stats":["20% increased Projectile Stun Buildup"],"stringId":"quivers5"},"37951":{"connections":[{"id":41020,"orbit":0},{"id":9089,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":11,"skill":37951,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect51"},"37956":{"connections":[{"id":35581,"orbit":3}],"group":539,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":37956,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration_spells1"},"37963":{"connections":[],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":13,"skill":37963,"stats":["10% increased Damage with Swords"],"stringId":"sword11_"},"37967":{"connections":[],"group":647,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.dds","isNotable":true,"name":"Desert's Scorn","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Contempt","Fear","Suffering"],"skill":37967,"stats":["Enemies standing on Chilled Ground take 25% increased Fire Damage","Enemies standing on Ignited Ground take 25% increased Cold Damage"],"stringId":"DeliriumAnoint_DesertsScorn"},"37971":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1538,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":37971,"stats":[],"stringId":"mastery_companion289"},"37972":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":-4},{"id":18280,"orbit":5}],"group":1613,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Charm Charges","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":37972,"stats":["15% increased Charm Charges gained"],"stringId":"AscendancyHuntress3Small3"},"37974":{"connections":[{"id":62230,"orbit":0}],"group":1040,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":6,"orbitIndex":68,"skill":37974,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield46_"},"37991":{"connections":[{"id":52254,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":18,"skill":37991,"stats":["6% increased Curse Magnitudes"],"stringId":"curses21"},"38003":{"connections":[{"id":63526,"orbit":4}],"group":831,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":20,"skill":38003,"stats":["12% increased Stun Threshold"],"stringId":"weapon_swapping1"},"38004":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1564,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionFire.dds","isMultipleChoiceOption":true,"name":"Explosive Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":38004,"stats":["Grants Skill: Explosive Concoction"],"stringId":"AscendancyRanger3Notable7_1"},"38010":{"connections":[],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":23,"skill":38010,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory1"},"38014":{"ascendancyName":"Titan","connections":[{"id":3762,"orbit":5}],"group":75,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Slam Area of Effect","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":38014,"stats":["Slam Skills have 8% increased Area of Effect"],"stringId":"AscendancyWarrior1Small2"},"38044":{"connections":[{"id":37695,"orbit":-4}],"group":1205,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":38044,"stats":["15% increased Evasion Rating"],"stringId":"evasion2"},"38053":{"connections":[{"id":28564,"orbit":5},{"id":8460,"orbit":0},{"id":9528,"orbit":-2}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Deafening Cries","orbit":3,"orbitIndex":13,"recipe":["Disgust","Guilt","Paranoia"],"skill":38053,"stats":["25% increased Warcry Cooldown Recovery Rate","8% increased Damage for each time you've Warcried Recently"],"stringId":"warcries17"},"38057":{"connections":[],"group":840,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":5,"orbitIndex":58,"skill":38057,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion25"},"38066":{"connections":[{"id":25300,"orbit":0}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break and Armour","orbit":7,"orbitIndex":12,"skill":38066,"stats":["10% increased Armour","Break 15% increased Armour"],"stringId":"armour_break3_"},"38068":{"connections":[],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Chance","orbit":4,"orbitIndex":60,"skill":38068,"stats":["24% increased Flammability Magnitude","12% increased Freeze Buildup","12% increased chance to Shock"],"stringId":"elemental52"},"38069":{"connections":[{"id":338,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":0,"skill":38069,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers14"},"38103":{"connections":[{"id":6898,"orbit":-8}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration and Stun Threshold","orbit":7,"orbitIndex":12,"skill":38103,"stats":["8% increased Skill Effect Duration","8% increased Stun Threshold"],"stringId":"duration14"},"38105":{"connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":67,"skill":38105,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield22"},"38111":{"connections":[{"id":32241,"orbit":0}],"group":1262,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Pliable Flesh","orbit":2,"orbitIndex":0,"recipe":["Greed","Disgust","Isolation"],"skill":38111,"stats":["6% of Damage taken Recouped as Life","25% increased speed of Recoup Effects"],"stringId":"life_recoup17"},"38124":{"connections":[{"id":51820,"orbit":8}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":4,"orbitIndex":26,"skill":38124,"stats":["15% increased Totem Damage"],"stringId":"totems35"},"38130":{"connections":[],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":3,"orbitIndex":12,"skill":38130,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries19_"},"38138":{"connections":[{"id":35688,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Reduced Attribute Requirements","orbit":5,"orbitIndex":36,"skill":38138,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"all_attributes8"},"38143":{"connections":[],"group":983,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":18,"skill":38143,"stats":["+5 to any Attribute"],"stringId":"dexterity17"},"38172":{"connections":[{"id":60568,"orbit":-6}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":5,"skill":38172,"stats":["20% increased Totem Placement speed"],"stringId":"totems26"},"38212":{"connections":[{"id":57683,"orbit":0}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":16,"skill":38212,"stats":["3% of Damage taken Recouped as Life"],"stringId":"monkchakra13"},"38215":{"connections":[{"id":61921,"orbit":-3}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":4,"skill":38215,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration7"},"38235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":600,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":38235,"stats":[],"stringId":"mastery_life144"},"38270":{"connections":[{"id":23724,"orbit":0}],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage","orbit":3,"orbitIndex":0,"skill":38270,"stats":["10% increased Lightning Damage"],"stringId":"shock_mitigation10"},"38292":{"connections":[{"id":33397,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":15,"skill":38292,"stats":["30% increased Flammability Magnitude"],"stringId":"fire4"},"38300":{"connections":[{"id":39716,"orbit":-7},{"id":57373,"orbit":-7}],"group":622,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":38300,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite9"},"38313":{"connections":[],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNode.dds","name":"Projectile Speed","orbit":2,"orbitIndex":16,"skill":38313,"stats":["10% increased Projectile Speed"],"stringId":"projectiles40"},"38320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":90,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":38320,"stats":[],"stringId":"mastery_fire122"},"38323":{"connections":[{"id":6015,"orbit":-6},{"id":22928,"orbit":-5}],"group":604,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38323,"stats":["+5 to any Attribute"],"stringId":"strength17"},"38329":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1399,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Biting Frost","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Guilt"],"skill":38329,"stats":["20% reduced Freeze Duration on Enemies","Enemies Frozen by you take 20% increased Cold Damage"],"stringId":"cold43"},"38338":{"connections":[{"id":5257,"orbit":-2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":4,"orbitIndex":60,"skill":38338,"stats":["10% increased Elemental Damage"],"stringId":"elemental44"},"38342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Stupefy","orbit":7,"orbitIndex":20,"recipe":["Paranoia","Despair","Paranoia"],"skill":38342,"stats":["10% chance to Daze on Hit","30% increased Damage against Dazed Enemies"],"stringId":"daze_2"},"38365":{"connections":[{"id":34626,"orbit":0},{"id":46499,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Recover Life on consuming Endurance Charge","orbit":2,"orbitIndex":20,"skill":38365,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"stringId":"endurance_charges4_"},"38368":{"connections":[{"id":35966,"orbit":-2},{"id":4091,"orbit":2}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":38368,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup6"},"38369":{"connections":[{"id":18910,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Critical Chance","orbit":4,"orbitIndex":48,"skill":38369,"stats":["10% increased Critical Hit Chance with Spears"],"stringId":"spear1"},"38398":{"connections":[{"id":2211,"orbit":7}],"group":585,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Apocalypse","orbit":7,"orbitIndex":14,"recipe":["Suffering","Paranoia","Greed"],"skill":38398,"stats":["30% reduced Damage","+8% to Critical Hit Chance of Herald Skills"],"stringId":"heralds18"},"38420":{"connections":[{"id":37543,"orbit":0}],"group":575,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":20,"skill":38420,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration2"},"38430":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[{"id":10499,"orbit":0}],"group":687,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":38430,"stats":[],"stringId":"mastery_trap_6766"},"38433":{"connections":[{"id":55375,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":2,"orbitIndex":17,"skill":38433,"stats":["Minions have 10% increased maximum Life"],"stringId":"companions44"},"38459":{"connections":[{"id":38568,"orbit":0}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Disorientation","orbit":2,"orbitIndex":16,"recipe":["Disgust","Paranoia","Disgust"],"skill":38459,"stats":["25% increased Blind duration","25% increased Damage with Hits against Blinded Enemies"],"stringId":"blind10"},"38463":{"connections":[{"id":46882,"orbit":0},{"id":21111,"orbit":-6},{"id":43522,"orbit":5},{"id":22329,"orbit":0}],"group":1309,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38463,"stats":["+5 to any Attribute"],"stringId":"dexterity80"},"38474":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connectionArt":"CharacterPlanned","connections":[],"group":560,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Bleed Mastery","orbit":7,"orbitIndex":13,"skill":38474,"stats":[],"stringId":"oracle_bleed_mastery1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38479":{"connections":[{"id":17553,"orbit":-5}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Close Confines","orbit":2,"orbitIndex":20,"recipe":["Ire","Paranoia","Ire"],"skill":38479,"stats":["50% chance for Projectiles to Pierce Enemies within 3m distance of you"],"stringId":"ranged38_"},"38493":{"connections":[{"id":55621,"orbit":4}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":45,"skill":38493,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals52"},"38497":{"connections":[{"id":62803,"orbit":-5}],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":19,"skill":38497,"stats":["6% reduced Charm Charges used"],"stringId":"charms14"},"38501":{"connections":[{"id":47796,"orbit":-4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":40,"skill":38501,"stats":["3% increased Attack Speed"],"stringId":"attack_speed29"},"38532":{"connections":[{"id":31779,"orbit":0}],"group":220,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Thirst for Power","orbit":2,"orbitIndex":20,"recipe":["Envy","Ire","Despair"],"skill":38532,"stats":["25% chance when you gain a Power Charge to gain an additional Power Charge"],"stringId":"power_endurance_charges3"},"38535":{"connections":[{"id":61063,"orbit":7},{"id":42205,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Stormcharged","orbit":4,"orbitIndex":66,"recipe":["Fear","Fear","Envy"],"skill":38535,"stats":["Damage Penetrates 8% of Enemy Elemental Resistances","5% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental33"},"38537":{"connections":[{"id":54983,"orbit":-3},{"id":51583,"orbit":0}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Heartstopping","orbit":2,"orbitIndex":21,"recipe":["Ire","Despair","Paranoia"],"skill":38537,"stats":["+10 to Intelligence","20% increased Critical Hit Chance"],"stringId":"criticals53"},"38541":{"connections":[{"id":61601,"orbit":0}],"group":1237,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":38541,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals17"},"38564":{"connections":[{"id":20091,"orbit":0}],"group":594,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":3,"orbitIndex":15,"skill":38564,"stats":["10% increased Damage with Swords"],"stringId":"sword4"},"38568":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":1,"orbitIndex":2,"skill":38568,"stats":[],"stringId":"mastery_evasion110"},"38570":{"connections":[{"id":53895,"orbit":2},{"id":27992,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Demolitionist","orbit":7,"orbitIndex":10,"recipe":["Ire","Suffering","Envy"],"skill":38570,"stats":["Gain 4% of Damage as Extra Fire Damage for","every different Grenade fired in the past 8 seconds"],"stringId":"grenades28"},"38578":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedElementalStorm.dds","isNotable":true,"name":"Multiplying Squalls","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":24,"skill":38578,"stats":["+2 to Limit for Elemental Skills"],"stringId":"AscendancySorceress1Notable4"},"38596":{"connections":[{"id":35408,"orbit":-3}],"group":335,"icon":"Art/2DArt/SkillIcons/passives/ShieldNodeOffensive.dds","name":"Curse Effect on Self","orbit":0,"orbitIndex":0,"skill":38596,"stats":["15% reduced effect of Curses on you"],"stringId":"focus3"},"38601":{"ascendancyName":"Witchhunter","connections":[{"id":34501,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterArmourEvasionConvertedSpellAegis.dds","isNotable":true,"name":"Obsessive Rituals","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":6,"orbitIndex":28,"skill":38601,"stats":["50% less Armour and Evasion Rating","Grants Skill: Sorcery Ward"],"stringId":"AscendancyMercenary2Notable5"},"38614":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[{"id":27662,"orbit":0},{"id":44201,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","isNotable":true,"name":"Psychic Fragmentation","orbit":3,"orbitIndex":20,"recipe":["Paranoia","Disgust","Isolation"],"skill":38614,"stats":["12% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells10"},"38628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Escalating Toxins","orbit":2,"orbitIndex":19,"recipe":["Despair","Isolation","Disgust"],"skill":38628,"stats":["10% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"],"stringId":"poison9"},"38646":{"connections":[{"id":23570,"orbit":0}],"group":735,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":0,"orbitIndex":0,"skill":38646,"stats":["+20 to Armour"],"stringId":"armour6"},"38663":{"connections":[{"id":3516,"orbit":0}],"group":644,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Critical Chance","orbit":7,"orbitIndex":6,"skill":38663,"stats":["10% increased Melee Critical Hit Chance"],"stringId":"melee28"},"38668":{"connections":[],"group":1187,"icon":"Art/2DArt/SkillIcons/passives/MonkEnergyShieldChakra.dds","name":"Evasion","orbit":7,"orbitIndex":7,"skill":38668,"stats":["15% increased Evasion Rating"],"stringId":"unarmed10"},"38670":{"connections":[{"id":28589,"orbit":0}],"group":94,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour if Hit","orbit":2,"orbitIndex":21,"skill":38670,"stats":["20% increased Armour if you have been Hit Recently"],"stringId":"getting_hit2"},"38676":{"connections":[{"id":27910,"orbit":-8},{"id":56045,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":1,"orbitIndex":6,"skill":38676,"stats":["10% increased Attack Damage"],"stringId":"attack41__"},"38678":{"connections":[{"id":30463,"orbit":-7},{"id":60464,"orbit":-6}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":19,"skill":38678,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression28_"},"38694":{"connections":[{"id":22188,"orbit":-4}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":8,"skill":38694,"stats":["Herald Skills deal 20% increased Damage"],"stringId":"heralds4"},"38696":{"connections":[{"id":54868,"orbit":0}],"group":398,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":38696,"stats":["12% increased Fire Damage"],"stringId":"fire77"},"38697":{"connectionArt":"CharacterPlanned","connections":[{"id":20391,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block Chance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":12,"skill":38697,"stats":["8% increased Block chance"],"stringId":"oracle_crab_claw7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"38703":{"connections":[{"id":8249,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Critical Chance","orbit":7,"orbitIndex":14,"skill":38703,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"stringId":"accuracy32"},"38707":{"connections":[{"id":49734,"orbit":0},{"id":28564,"orbit":0},{"id":11464,"orbit":0},{"id":3723,"orbit":0}],"group":221,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38707,"stats":["+5 to any Attribute"],"stringId":"strength53"},"38728":{"connections":[{"id":14539,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Deflection and Evasion","orbit":7,"orbitIndex":0,"skill":38728,"stats":["8% increased Evasion Rating","Gain Deflection Rating equal to 4% of Evasion Rating"],"stringId":"evasion22"},"38732":{"connections":[{"id":17107,"orbit":-4},{"id":25594,"orbit":0}],"group":891,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38732,"stats":["+5 to any Attribute"],"stringId":"intelligence44"},"38763":{"connections":[{"id":27859,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":7,"orbitIndex":16,"skill":38763,"stats":["6% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds5"},"38769":{"ascendancyName":"Warbringer","connections":[{"id":58704,"orbit":0}],"group":30,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour Break","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":38769,"stats":["Break 25% increased Armour"],"stringId":"AscendancyWarrior2Small1"},"38776":{"connections":[{"id":57816,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":38776,"stats":["+8 to Dexterity"],"stringId":"attributes105"},"38779":{"connections":[{"id":44605,"orbit":5},{"id":44836,"orbit":0}],"group":827,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":8,"skill":38779,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion27"},"38813":{"ascendancyName":"Ritualist","connections":[],"group":1614,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistStabCorpseHand.dds","isNotable":true,"name":"Devotion to the King","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":38813,"stats":["Grants Skill: Queen's Procession"],"stringId":"AscendancyHuntress3Notable8"},"38814":{"connections":[{"id":19288,"orbit":0},{"id":62341,"orbit":0},{"id":11980,"orbit":0}],"group":1001,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38814,"stats":["+5 to any Attribute"],"stringId":"dexterity71"},"38827":{"connections":[{"id":1546,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":1,"skill":38827,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour17"},"38835":{"connections":[{"id":4091,"orbit":-7}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":7,"orbitIndex":16,"skill":38835,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup32"},"38856":{"connections":[{"id":49357,"orbit":0},{"id":2071,"orbit":0},{"id":21081,"orbit":5},{"id":56090,"orbit":0}],"group":670,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":38856,"stats":["+5 to any Attribute"],"stringId":"intelligence40"},"38876":{"connections":[{"id":61490,"orbit":0},{"id":31903,"orbit":0}],"group":480,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":38876,"stats":["+5 to any Attribute"],"stringId":"attributes59_"},"38878":{"connections":[{"id":34898,"orbit":-7}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Debuff Expiry","orbit":4,"orbitIndex":35,"skill":38878,"stats":["Debuffs on you expire 10% faster"],"stringId":"slowed_enemies2"},"38888":{"connections":[{"id":39116,"orbit":0}],"group":932,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Unerring Impact","orbit":7,"orbitIndex":12,"recipe":["Greed","Disgust","Ire"],"skill":38888,"stats":["16% increased Accuracy Rating with One Handed Melee Weapons","16% increased Accuracy Rating with Two Handed Melee Weapons","+0.2 metres to Melee Strike Range"],"stringId":"melee36_"},"38895":{"connections":[{"id":8697,"orbit":3},{"id":48660,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Crystal Elixir","orbit":2,"orbitIndex":7,"recipe":["Fear","Suffering","Greed"],"skill":38895,"stats":["40% increased Elemental Damage with Attack Skills during any Flask Effect"],"stringId":"elemental_attacks9"},"38921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":333,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":2,"orbitIndex":1,"skill":38921,"stats":[],"stringId":"mastery_shield213"},"38923":{"connections":[{"id":61429,"orbit":3},{"id":511,"orbit":-3}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Skill Speed","orbit":7,"orbitIndex":14,"skill":38923,"stats":["3% increased Skill Speed"],"stringId":"attacks_and_spells4"},"38944":{"connections":[{"id":43338,"orbit":0},{"id":59538,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Shock Chance and Lightning Damage","orbit":2,"orbitIndex":6,"skill":38944,"stats":["8% increased Lightning Damage","8% increased chance to Shock"],"stringId":"daze_13"},"38965":{"connections":[{"id":65226,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Infused Limits","orbit":7,"orbitIndex":21,"recipe":["Greed","Isolation","Paranoia"],"skill":38965,"stats":["+1 to maximum number of Elemental Infusions"],"stringId":"infusion1"},"38966":{"connections":[{"id":30210,"orbit":0},{"id":35058,"orbit":0},{"id":61976,"orbit":0}],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Evasion Rating","orbit":2,"orbitIndex":0,"skill":38966,"stats":["8% increased Evasion Rating","12% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold29"},"38969":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":50588,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Finesse","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Disgust"],"skill":38969,"stats":["10% increased Accuracy Rating","Gain Accuracy Rating equal to your Intelligence"],"stringId":"accuracy16"},"38972":{"connections":[{"id":34552,"orbit":0},{"id":8357,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Restless Dead","orbit":3,"orbitIndex":8,"recipe":["Despair","Fear","Disgust"],"skill":38972,"stats":["Minions Revive 25% faster"],"stringId":"minion_offence39"},"38993":{"connections":[{"id":21112,"orbit":0}],"group":1519,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Critical Damage","orbit":0,"orbitIndex":0,"skill":38993,"stats":["16% increased Critical Damage Bonus with Bows"],"stringId":"bow9"},"39037":{"connections":[{"id":11672,"orbit":0}],"group":859,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39037,"stats":["+5 to any Attribute"],"stringId":"intelligence17"},"39050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1272,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isNotable":true,"name":"Exploit","orbit":2,"orbitIndex":4,"recipe":["Disgust","Envy","Isolation"],"skill":39050,"stats":["25% increased Damage with Hits against Enemies affected by Elemental Ailments","15% increased Duration of Ignite, Shock and Chill on Enemies"],"stringId":"exploiting_elemental_ailments15"},"39083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":484,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Blood Rush","orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Disgust"],"skill":39083,"stats":["6% increased Skill Speed","6% of Skill Mana Costs Converted to Life Costs"],"stringId":"attack_speed55"},"39087":{"aliasPassiveSocket":"voices_jewel_slot4","connections":[],"group":700,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":39087,"stats":[],"stringId":"voices_jewel_slot4"},"39102":{"connectionArt":"CharacterPlanned","connections":[{"id":13228,"orbit":2147483647}],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":3,"skill":39102,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"stringId":"oracle_power_charge1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":932,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":3,"orbitIndex":14,"skill":39116,"stats":[],"stringId":"mastery_physical_6628"},"39128":{"connections":[{"id":47514,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":4,"skill":39128,"stats":["15% increased Magnitude of Daze"],"stringId":"daze_9"},"39130":{"connections":[{"id":14294,"orbit":-5}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Spell Damage","orbit":2,"orbitIndex":20,"skill":39130,"stats":["12% increased Spell Damage with Spells that cost Life"],"stringId":"life_costs7"},"39131":{"connections":[{"id":11741,"orbit":0},{"id":55596,"orbit":0}],"group":195,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39131,"stats":["+5 to any Attribute"],"stringId":"strength44"},"39190":{"connections":[{"id":8800,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":13,"skill":39190,"stats":["15% increased Melee Damage with Hits at Close Range"],"stringId":"melee10"},"39204":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ImprovedArcaneSurge.dds","isNotable":true,"name":"Force of Will","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":8,"orbitIndex":48,"skill":39204,"stats":["20% of Damage is taken from Mana before Life","20% increased Effect of Arcane Surge on you per ten percent missing Mana"],"stringId":"AscendancySorceress1Notable2"},"39207":{"connections":[{"id":33518,"orbit":0}],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":10,"skill":39207,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation1"},"39228":{"connections":[{"id":62603,"orbit":0},{"id":63021,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":18,"skill":39228,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration10"},"39237":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":39237,"stats":[],"stringId":"mastery_critical_6409"},"39241":{"ascendancyName":"Lich","connections":[{"id":58932,"orbit":-4}],"group":1191,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Energy Shield","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":59609,"name":"Energy Shield","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["20% increased maximum Energy Shield"]}},"orbit":0,"orbitIndex":0,"skill":39241,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancyWitch3Small7"},"39274":{"connections":[{"id":2119,"orbit":0}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":6,"skill":39274,"stats":["Leech Life 8% slower"],"stringId":"life_leech21"},"39280":{"connections":[{"id":44669,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":1,"skill":39280,"stats":["10% increased Skill Effect Duration"],"stringId":"duration10"},"39292":{"ascendancyName":"Pathfinder","connections":[{"id":40,"orbit":-7}],"group":1580,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Evasion","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":39292,"stats":["20% increased Evasion Rating"],"stringId":"AscendancyRanger3Small5"},"39298":{"connections":[{"id":38814,"orbit":0},{"id":3995,"orbit":0},{"id":18115,"orbit":0},{"id":1019,"orbit":0}],"group":956,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39298,"stats":["+5 to any Attribute"],"stringId":"attributes60"},"39307":{"connections":[{"id":37026,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Physical Damage","orbit":1,"orbitIndex":6,"skill":39307,"stats":["10% increased Physical Damage"],"stringId":"physical46"},"39347":{"connections":[],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Breaking Blows","orbit":3,"orbitIndex":21,"recipe":["Disgust","Disgust","Disgust"],"skill":39347,"stats":["30% increased Stun Buildup","12% increased Area of Effect if you have Stunned an Enemy Recently"],"stringId":"melee49"},"39365":{"ascendancyName":"Warbringer","connections":[{"id":39411,"orbit":0}],"group":46,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Totem Life","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":39365,"stats":["20% increased Totem Life"],"stringId":"AscendancyWarrior2Small6"},"39369":{"connections":[{"id":2936,"orbit":3},{"id":51583,"orbit":0}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Struck Through","orbit":4,"orbitIndex":9,"recipe":["Isolation","Despair","Greed"],"skill":39369,"stats":["Attacks have +1% to Critical Hit Chance"],"stringId":"criticals55_"},"39411":{"ascendancyName":"Warbringer","connections":[{"id":48682,"orbit":0}],"group":44,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerTotemsDefendedByAncestors.dds","isNotable":true,"name":"Answered Call","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":39411,"stats":["+1 to maximum number of Summoned Totems","Trigger Ancestral Spirits when you Summon a Totem","Grants Skill: Ancestral Spirits"],"stringId":"AscendancyWarrior2Notable6"},"39416":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":726,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":39416,"stats":[],"stringId":"mastery_minionoffence187"},"39423":{"connections":[{"id":53207,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":20,"skill":39423,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration2"},"39431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":39431,"stats":[],"stringId":"mastery_crossbow_6422"},"39448":{"connections":[{"id":11178,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":21,"skill":39448,"stats":["3% increased Attack Speed with Axes"],"stringId":"axe9"},"39461":{"connections":[{"id":229,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":0,"skill":39461,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation13_"},"39470":{"ascendancyName":"Infernalist","connections":[{"id":17754,"orbit":-6}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Minion Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":3,"skill":39470,"stats":["Minions have 12% increased maximum Life"],"stringId":"AscendancyWitch1Small10"},"39476":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":783,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":39476,"stats":[],"stringId":"mastery_cold_6398"},"39495":{"connections":[{"id":46386,"orbit":2147483647},{"id":27048,"orbit":9}],"group":1527,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39495,"stats":["Companions deal 12% increased Damage"],"stringId":"companions10"},"39515":{"connections":[{"id":23450,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":8,"skill":39515,"stats":["12% increased Fire Damage"],"stringId":"fire8"},"39517":{"connections":[],"group":612,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":18,"skill":39517,"stats":["5% increased Block chance"],"stringId":"block8"},"39540":{"connections":[{"id":55933,"orbit":0},{"id":50558,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isSwitchable":true,"name":"Critical Chance","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBear.dds","id":22652,"name":"Skill Speed while Shapeshifted","stats":["3% increased Skill Speed while Shapeshifted"]}},"orbit":4,"orbitIndex":49,"skill":39540,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals2_"},"39552":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistExtraRunes.dds","isNotable":true,"name":"Runic Meridians","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":7,"orbitIndex":22,"skill":39552,"stats":["Can tattoo Runes onto your body, gaining","additional Rune-only sockets:","1 Helmet socket","2 Body Armour sockets","1 Gloves socket","1 Boots socket"],"stringId":"AscendancyMonk1Notable5"},"39564":{"connections":[{"id":62039,"orbit":0},{"id":38663,"orbit":0},{"id":13279,"orbit":0}],"group":643,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":12,"skill":39564,"stats":["10% increased Melee Damage"],"stringId":"melee41"},"39567":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":53188,"orbit":0}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","isNotable":true,"name":"Ingenuity","orbit":5,"orbitIndex":0,"recipe":["Ire","Isolation","Suffering"],"skill":39567,"stats":["+25 to Intelligence"],"stringId":"intelligence101_"},"39568":{"connections":[],"group":1284,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","isNotable":true,"name":"Magnum Opus","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Ferocity","Despair","Isolation"],"skill":39568,"stats":["Charms applied to you have 100% increased Effect per empty Charm slot"],"stringId":"DeliriumAnoint_MagnumOpus"},"39569":{"connections":[{"id":35901,"orbit":0},{"id":3458,"orbit":-4},{"id":7353,"orbit":3}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":2,"skill":39569,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals46"},"39570":{"connections":[{"id":49394,"orbit":6}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance on Critical","orbit":4,"orbitIndex":59,"skill":39570,"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"stringId":"bleed9"},"39581":{"connections":[{"id":46325,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":8,"skill":39581,"stats":["15% increased Stun Buildup"],"stringId":"stun4_"},"39594":{"connections":[{"id":51248,"orbit":0},{"id":53294,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":3,"skill":39594,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration1"},"39595":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistHandWraps.dds","isNotable":true,"name":"Way of the Stonefist","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":3,"orbitIndex":7,"skill":39595,"stats":["Gloves you equip have their Base Type transformed to Fists of Stone while equipped, and","their Explicit Modifiers are transformed into more powerful related Modifiers","Ignore Attribute Requirements to equip Gloves"],"stringId":"AscendancyMonk1Notable8"},"39598":{"connections":[{"id":3949,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Power Counted","orbit":2,"orbitIndex":6,"skill":39598,"stats":["Empowered Attacks deal 8% increased Damage","5% increased total Power counted by Warcries"],"stringId":"warcries36"},"39607":{"connections":[{"id":2559,"orbit":-2},{"id":45713,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":2,"orbitIndex":12,"skill":39607,"stats":["10% increased Flask Charges gained"],"stringId":"flasks2"},"39608":{"connections":[{"id":1778,"orbit":-3}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Duration","orbit":7,"orbitIndex":20,"skill":39608,"stats":["20% increased Hazard Duration"],"stringId":"hazards7"},"39621":{"connections":[{"id":14176,"orbit":0},{"id":57703,"orbit":0}],"group":341,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Later Rage Loss Start","orbit":0,"orbitIndex":0,"skill":39621,"stats":["Inherent Rage loss starts 1 second later"],"stringId":"rage11"},"39640":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/AllDamageCanShock.dds","isNotable":true,"name":"Shaper of Storms","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":5,"orbitIndex":70,"skill":39640,"stats":["All Damage from Hits Contributes to Shock Chance"],"stringId":"AscendancySorceress1Notable6"},"39658":{"connections":[{"id":18831,"orbit":7},{"id":15030,"orbit":-2}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Block","orbit":7,"orbitIndex":1,"skill":39658,"stats":["5% increased Block chance"],"stringId":"deflect6"},"39659":{"ascendancyName":"Oracle","connections":[{"id":37782,"orbit":6}],"group":14,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Spell Damage","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":39659,"stats":["12% increased Spell Damage"],"stringId":"AscendancyDruid1Small5"},"39710":{"connections":[{"id":51821,"orbit":0},{"id":12232,"orbit":0},{"id":33045,"orbit":-4}],"group":266,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39710,"stats":["+5 to any Attribute"],"stringId":"attributes54_"},"39716":{"connections":[{"id":31326,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":12,"skill":39716,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite7_"},"39723":{"ascendancyName":"Deadeye","connections":[{"id":5817,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Damage","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":6,"orbitIndex":21,"skill":39723,"stats":["12% increased Projectile Damage"],"stringId":"AscendancyRanger1Small8"},"39732":{"connections":[{"id":30219,"orbit":-2}],"group":619,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":10,"skill":39732,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy49"},"39752":{"connections":[{"id":5936,"orbit":0},{"id":38068,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Duration","orbit":4,"orbitIndex":48,"skill":39752,"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"stringId":"elemental50"},"39759":{"connections":[{"id":48035,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":10,"skill":39759,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration30"},"39839":{"connections":[{"id":20205,"orbit":0},{"id":14340,"orbit":0}],"group":978,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if no recent Stun","orbit":2,"orbitIndex":20,"skill":39839,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun14"},"39857":{"connectionArt":"CharacterPlanned","connections":[{"id":4663,"orbit":0}],"group":411,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Mentorship","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":20,"skill":39857,"stats":["Minions have 15% reduced Attack Speed","Minions have 15% reduced Cast Speed","Minions deal 100% increased Damage with Command Skills"],"stringId":"oracle_solo_commander3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"39881":{"connections":[{"id":16013,"orbit":0},{"id":35173,"orbit":0}],"group":1402,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Staggering Palm","orbit":0,"orbitIndex":0,"recipe":["Guilt","Isolation","Despair"],"skill":39881,"stats":["20% increased Knockback Distance","10% chance to Daze on Hit","25% increased Physical Damage"],"stringId":"physical32__"},"39884":{"connections":[{"id":40271,"orbit":0}],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Searing Heat","orbit":7,"orbitIndex":1,"recipe":["Despair","Suffering","Disgust"],"skill":39884,"stats":["100% increased Flammability Magnitude","Ignites you inflict deal Damage 10% faster"],"stringId":"fire66"},"39886":{"connections":[{"id":56935,"orbit":0}],"group":743,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":39886,"stats":["+5 to any Attribute"],"stringId":"intelligence14"},"39887":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerTameBeastTargetUnique.dds","isNotable":true,"name":"The Natural Order","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":6,"orbitIndex":7,"skill":39887,"stats":["Tame Beast can capture Unique Beasts","Can have up to one Unique Tamed Beast summoned","Unique Tamed Beasts have 30% increased movement speed","Unique Tamed Beasts are Possessed by random Azmeri Spirits, changing every 20 seconds"],"stringId":"AscendancyHuntress2Notable7"},"39911":{"connections":[],"group":1431,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Frantic Reach","orbit":2,"orbitIndex":4,"recipe":["Disgust","Despair","Fear"],"skill":39911,"stats":["20% reduced Accuracy Rating","18% increased Area of Effect for Attacks"],"stringId":"area_attacks56"},"39935":{"connections":[{"id":44344,"orbit":0}],"flavourText":"I give you everything, my pets. Do not disappoint me.","group":603,"icon":"Art/2DArt/SkillIcons/passives/NecromanticTalismanKeystone.dds","isKeystone":true,"name":"Necromantic Talisman","orbit":0,"orbitIndex":0,"skill":39935,"stats":["All bonuses from Equipped Amulet apply to your Minions instead of you"],"stringId":"passive_keystone_necromantic_talisman"},"39964":{"connections":[{"id":48198,"orbit":0}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":4,"skill":39964,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana11"},"39986":{"connections":[{"id":57933,"orbit":0}],"group":1532,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":39986,"stats":["Companions deal 12% increased Damage"],"stringId":"companions9"},"39987":{"connections":[{"id":18913,"orbit":-3},{"id":47177,"orbit":-5}],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage and Duration","orbit":3,"orbitIndex":14,"skill":39987,"stats":["5% increased Chaos Damage","5% increased Skill Effect Duration"],"stringId":"chaos1"},"39990":{"connections":[{"id":13294,"orbit":2},{"id":61974,"orbit":0}],"group":614,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Chronomancy","orbit":7,"orbitIndex":7,"recipe":["Despair","Fear","Despair"],"skill":39990,"stats":["20% increased Skill Effect Duration","Debuffs you inflict have 10% increased Slow Magnitude"],"stringId":"slowed_enemies10"},"40006":{"connections":[{"id":9896,"orbit":-7},{"id":292,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Regeneration Rate and Presence","orbit":2,"orbitIndex":7,"skill":40006,"stats":["5% increased Life Regeneration rate","10% increased Presence Area of Effect"],"stringId":"life_recoup27"},"40024":{"connections":[{"id":2091,"orbit":-2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Chance","orbit":7,"orbitIndex":4,"skill":40024,"stats":["8% chance to Poison on Hit"],"stringId":"poison20"},"40043":{"connections":[{"id":54990,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":1,"orbitIndex":0,"skill":40043,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed14"},"40068":{"connections":[{"id":32683,"orbit":0}],"group":1062,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":38,"skill":40068,"stats":["15% increased Freeze Buildup"],"stringId":"cold28"},"40073":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":990,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Drenched","orbit":0,"orbitIndex":0,"recipe":["Isolation","Suffering","Ire"],"skill":40073,"stats":["40% increased chance to Shock","Gain 5% of Lightning damage as Extra Cold damage"],"stringId":"shock14"},"40105":{"connections":[{"id":20558,"orbit":0}],"group":235,"icon":"Art/2DArt/SkillIcons/passives/minionstr.dds","name":"Attack Speed and Minion Attack Speed","orbit":2,"orbitIndex":14,"skill":40105,"stats":["3% increased Attack Speed","Minions have 3% increased Attack Speed"],"stringId":"minion_offence57"},"40110":{"connections":[{"id":42347,"orbit":3}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":7,"orbitIndex":8,"skill":40110,"stats":["10% increased Blind Effect"],"stringId":"monkchakra11"},"40117":{"connections":[{"id":64023,"orbit":0}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Spiked Armour","orbit":7,"orbitIndex":4,"recipe":["Despair","Guilt","Disgust"],"skill":40117,"stats":["Thorns Damage has 50% chance to ignore Enemy Armour"],"stringId":"getting_hit11"},"40166":{"connections":[{"id":32399,"orbit":-3}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Deep Trance","orbit":2,"orbitIndex":4,"recipe":["Fear","Ire","Despair"],"skill":40166,"stats":["8% increased Attack Speed","15% increased Cost Efficiency"],"stringId":"attack_speed36"},"40196":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1192,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":40196,"stats":[],"stringId":"mastery_caster44"},"40200":{"connections":[{"id":33612,"orbit":0},{"id":61842,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":2,"orbitIndex":0,"skill":40200,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence11"},"40213":{"connections":[{"id":55846,"orbit":0},{"id":24481,"orbit":0}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","isNotable":true,"name":"Taste for Blood","orbit":1,"orbitIndex":1,"recipe":["Envy","Ire","Greed"],"skill":40213,"stats":["Gain 20 Life per enemy killed","2% chance to Recover all Life when you Kill an Enemy"],"stringId":"life_on_kill15"},"40244":{"connections":[{"id":43263,"orbit":-3}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":16,"skill":40244,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed8"},"40270":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Frenetic","orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Guilt"],"skill":40270,"stats":["10% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge","+1 to Maximum Frenzy Charges"],"stringId":"frenzy_charges7_"},"40271":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":2,"skill":40271,"stats":[],"stringId":"mastery_fire121"},"40276":{"connections":[{"id":32745,"orbit":0},{"id":60241,"orbit":0}],"group":520,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":40276,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical19"},"40292":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","isNotable":true,"name":"Nimble Strength","orbit":1,"orbitIndex":2,"recipe":["Greed","Despair","Isolation"],"skill":40292,"stats":["10% increased Attack Damage","Gain Accuracy Rating equal to your Strength"],"stringId":"accuracy45_"},"40313":{"connections":[{"id":58363,"orbit":2},{"id":56844,"orbit":-2},{"id":3251,"orbit":0}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect and Duration","orbit":0,"orbitIndex":0,"skill":40313,"stats":["8% increased Archon Buff duration","5% increased effect of Archon Buffs on you"],"stringId":"archon8"},"40325":{"connections":[{"id":7392,"orbit":0},{"id":48505,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Resolution","orbit":3,"orbitIndex":21,"recipe":["Envy","Disgust","Envy"],"skill":40325,"stats":["25% increased Stun Threshold","10% increased Armour, Evasion and Energy Shield"],"stringId":"stun_threshold9"},"40328":{"connections":[{"id":28564,"orbit":-5}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":3,"orbitIndex":3,"skill":40328,"stats":["16% increased Warcry Speed"],"stringId":"warcries1"},"40333":{"connections":[{"id":24178,"orbit":2}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":7,"orbitIndex":12,"skill":40333,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions29"},"40336":{"connections":[{"id":6655,"orbit":0}],"group":733,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":40336,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed27"},"40341":{"connections":[{"id":17340,"orbit":-3},{"id":21274,"orbit":9}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":3,"orbitIndex":6,"skill":40341,"stats":["3% increased Movement Speed if you've Killed Recently"],"stringId":"movement_speed6"},"40345":{"connections":[{"id":37991,"orbit":0},{"id":50540,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Master of Hexes","orbit":7,"orbitIndex":0,"recipe":["Suffering","Fear","Suffering"],"skill":40345,"stats":["25% reduced Curse Duration","18% increased Curse Magnitudes"],"stringId":"curses10"},"40377":{"connections":[{"id":46318,"orbit":7},{"id":7554,"orbit":-3},{"id":46628,"orbit":0}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":10,"skill":40377,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour21"},"40395":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":112,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":40395,"stats":[],"stringId":"mastery_attack4"},"40399":{"connections":[{"id":20641,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Energise","orbit":5,"orbitIndex":6,"recipe":["Isolation","Guilt","Paranoia"],"skill":40399,"stats":["25% chance for Trigger skills to refund half of Energy Spent"],"stringId":"triggers16"},"40453":{"connections":[{"id":25304,"orbit":0}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":9,"skill":40453,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers5"},"40471":{"connections":[{"id":19027,"orbit":-2},{"id":7847,"orbit":0}],"group":1485,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividStag.dds","name":"Dexterity","orbit":7,"orbitIndex":16,"skill":40471,"stats":["+8 to Dexterity"],"stringId":"azmerianimals16"},"40480":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":1953,"orbit":0}],"group":1230,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Harmonic Generator","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Despair"],"skill":40480,"stats":["15% increased Critical Hit Chance against Shocked Enemies","40% increased Magnitude of Shock you inflict with Critical Hits"],"stringId":"shock21"},"40511":{"connectionArt":"CharacterPlanned","connections":[{"id":55375,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":40511,"stats":["Minions have 12% increased maximum Life"],"stringId":"oracle_forbidden_path1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"40550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":396,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":4,"orbitIndex":0,"skill":40550,"stats":[],"stringId":"mastery_totem_6749"},"40596":{"connections":[],"group":324,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":36,"skill":40596,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold19___"},"40597":{"connections":[{"id":53607,"orbit":0},{"id":58817,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Attack Speed","orbit":4,"orbitIndex":9,"skill":40597,"stats":["Attacks used by Ballistas have 4% increased Attack Speed"],"stringId":"ballista7"},"40626":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1307,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":40626,"stats":[],"stringId":"mastery_trap_6764"},"40630":{"connections":[{"id":44527,"orbit":0}],"group":1053,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isSwitchable":true,"name":"Flask Charges Gained","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","id":18391,"name":"Ailment Threshold","stats":["15% increased Elemental Ailment Threshold"]}},"orbit":0,"orbitIndex":0,"skill":40630,"stats":["15% increased Flask Charges gained"],"stringId":"flasks23"},"40632":{"connections":[{"id":48889,"orbit":-2}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":12,"skill":40632,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect24"},"40687":{"connections":[],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Lead by Example","orbit":2,"orbitIndex":12,"recipe":["Disgust","Envy","Despair"],"skill":40687,"stats":["30% increased Presence Area of Effect","Allies in your Presence have 30% increased Glory generation"],"stringId":"glory21"},"40691":{"connections":[{"id":25893,"orbit":7}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":4,"orbitIndex":62,"skill":40691,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"mana21"},"40719":{"ascendancyName":"Witchhunter","connections":[{"id":17646,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage vs Low Life Enemies","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":5,"orbitIndex":47,"skill":40719,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"AscendancyMercenary2Small2"},"40721":{"ascendancyName":"Stormweaver","connections":[{"id":64789,"orbit":-6},{"id":65413,"orbit":6},{"id":49759,"orbit":-4},{"id":13673,"orbit":4},{"id":12488,"orbit":0},{"id":44484,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Stormweaver","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":40721,"stats":[],"stringId":"AscendancySorceress1Start_"},"40736":{"connections":[{"id":34305,"orbit":0},{"id":15606,"orbit":2}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation and Attack Damage","orbit":7,"orbitIndex":10,"skill":40736,"stats":["5% increased Attack Damage","8% increased Glory generation"],"stringId":"glory12"},"40760":{"connections":[{"id":21779,"orbit":0},{"id":9185,"orbit":0},{"id":47177,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":1,"skill":40760,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals22"},"40783":{"connections":[{"id":11672,"orbit":0},{"id":15358,"orbit":0},{"id":17711,"orbit":-4},{"id":24035,"orbit":0},{"id":63009,"orbit":0},{"id":21540,"orbit":0}],"group":890,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":40783,"stats":["+5 to any Attribute"],"stringId":"intelligence86"},"40803":{"connections":[{"id":3218,"orbit":0},{"id":44298,"orbit":0}],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Sigil of Ice","orbit":4,"orbitIndex":21,"recipe":["Suffering","Disgust","Guilt"],"skill":40803,"stats":["30% increased Damage with Hits against Chilled Enemies"],"stringId":"cold31"},"40894":{"connections":[{"id":1218,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","orbit":3,"orbitIndex":20,"skill":40894,"stats":["Minions have 10% increased maximum Life"],"stringId":"minion_defence6"},"40915":{"ascendancyName":"Warbringer","connections":[],"group":40,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerDamageTakenByTotems.dds","isNotable":true,"name":"Wooden Wall","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":40915,"stats":["20% of Damage from Hits is taken from your nearest Totem's Life before you"],"stringId":"AscendancyWarrior2Notable7"},"40918":{"connections":[{"id":1773,"orbit":-4}],"group":1152,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Effect and Duration","orbit":0,"orbitIndex":0,"skill":40918,"stats":["5% increased Magnitude of Ailments you inflict","5% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments35"},"40929":{"connections":[{"id":43633,"orbit":-7}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":3,"orbitIndex":21,"skill":40929,"stats":["15% increased Archon Buff duration"],"stringId":"archon13"},"40975":{"connections":[{"id":24368,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":0,"orbitIndex":0,"skill":40975,"stats":["15% increased Ballista damage"],"stringId":"ballista4"},"40985":{"connections":[{"id":62679,"orbit":0}],"group":872,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Empowering Remnants","orbit":2,"orbitIndex":6,"recipe":["Guilt","Fear","Paranoia"],"skill":40985,"stats":["15% chance for Remnants you create to grant their effects twice"],"stringId":"remnant4"},"40990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1444,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Exposed to the Storm","orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Despair"],"skill":40990,"stats":["Damage Penetrates 18% Lightning Resistance","15% increased Critical Hit Chance against enemies with Exposure"],"stringId":"lightning_penetration23"},"41008":{"ascendancyName":"Amazon","connections":[],"group":1583,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonGainPhysicalDamageWeaponsAccuracy.dds","isNotable":true,"name":"Penetrate","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":41008,"stats":["Attacks using your Weapons have Added Physical Damage equal","to 25% of the Accuracy Rating on the Weapon"],"stringId":"AscendancyHuntress1Notable2"},"41012":{"connections":[{"id":11392,"orbit":-6}],"group":96,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Armour ","orbit":0,"orbitIndex":0,"skill":41012,"stats":["6% increased Fire Damage","10% increased Armour"],"stringId":"fire49_"},"41016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":41016,"stats":[],"stringId":"mastery_attack18"},"41017":{"connections":[{"id":14262,"orbit":0},{"id":1801,"orbit":0}],"group":1453,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41017,"stats":["+5 to any Attribute"],"stringId":"attributes26"},"41020":{"connections":[{"id":3994,"orbit":0}],"group":1407,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":1,"orbitIndex":8,"skill":41020,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect52_"},"41029":{"connections":[{"id":25827,"orbit":0},{"id":44563,"orbit":-4},{"id":25557,"orbit":0},{"id":22219,"orbit":0}],"group":1089,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41029,"stats":["+5 to any Attribute"],"stringId":"attributes68"},"41031":{"connections":[{"id":54232,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":27,"skill":41031,"stats":["+5 to any Attribute"],"stringId":"strength25"},"41033":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":55872,"orbit":0}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Utmost Offering","orbit":2,"orbitIndex":23,"recipe":["Paranoia","Fear","Greed"],"skill":41033,"stats":["Offerings cannot be damaged if they have been created Recently"],"stringId":"corpses21"},"41044":{"connections":[{"id":47591,"orbit":-7}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":7,"orbitIndex":10,"skill":41044,"stats":["3% of Damage taken Recouped as Mana"],"stringId":"mana_regeneration37"},"41062":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":4,"orbitIndex":48,"skill":41062,"stats":[],"stringId":"mastery_projectile_6649"},"41076":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":32771,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaReplaceSpiritWithDarkness.dds","isNotable":true,"name":"Embrace the Darkness","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":9,"orbitIndex":45,"skill":41076,"stats":["You have no Spirit","Base Maximum Darkness is 100","Damage taken is Reserved from Darkness before being taken from Life or Energy Shield","Darkness Reservation lasts for 5 seconds","+10 to Maximum Darkness per Level"],"stringId":"AscendancyMonk3Notable7"},"41085":{"ascendancyName":"Spirit Walker","connections":[{"id":4367,"orbit":0},{"id":46070,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":5,"orbitIndex":46,"skill":41085,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyHuntress2Small6"},"41096":{"connections":[{"id":35901,"orbit":0},{"id":31345,"orbit":5}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Shock Chance","orbit":5,"orbitIndex":36,"skill":41096,"stats":["10% increased chance to Shock","8% increased Elemental Damage"],"stringId":"elemental28"},"41105":{"connections":[{"id":38835,"orbit":0},{"id":54288,"orbit":7}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":12,"skill":41105,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup19"},"41126":{"connections":[{"id":1170,"orbit":0},{"id":9918,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":4,"skill":41126,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks6__"},"41129":{"connections":[{"id":24338,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","name":"Damage against Ailments","orbit":4,"orbitIndex":70,"skill":41129,"stats":["12% increased Damage with Hits against Enemies affected by Elemental Ailments"],"stringId":"exploiting_elemental_ailments4"},"41130":{"connections":[],"group":719,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Spell and Minion Damage","orbit":2,"orbitIndex":4,"skill":41130,"stats":["10% increased Spell Damage","Minions deal 10% increased Damage"],"stringId":"spells57"},"41147":{"connections":[{"id":23797,"orbit":-6}],"group":242,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Lightning Damage","orbit":2,"orbitIndex":14,"skill":41147,"stats":["10% increased Armour","+10% of Armour also applies to Lightning Damage"],"stringId":"armour42"},"41154":{"connections":[{"id":33601,"orbit":0}],"group":570,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":2,"orbitIndex":14,"skill":41154,"stats":["20% increased Freeze Buildup"],"stringId":"chill_and_freeze17"},"41159":{"connections":[{"id":27434,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":18,"skill":41159,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning53"},"41163":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":41163,"stats":[],"stringId":"mastery_evasion111"},"41171":{"connections":[{"id":36341,"orbit":0}],"group":1020,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Speed","orbit":7,"orbitIndex":4,"skill":41171,"stats":["4% increased Attack Speed while a Rare or Unique Enemy is in your Presence"],"stringId":"boss_slaying3"},"41180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":355,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":41180,"stats":[],"stringId":"mastery_shapeshifting_6682"},"41186":{"connections":[],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":5,"orbitIndex":0,"skill":41186,"stats":["20% increased Totem Placement speed"],"stringId":"totems38"},"41210":{"connections":[{"id":1477,"orbit":0},{"id":43578,"orbit":0}],"group":838,"icon":"Art/2DArt/SkillIcons/passives/ChainingProjectiles.dds","isNotable":true,"name":"Ricochet","orbit":4,"orbitIndex":21,"skill":41210,"stats":["15% increased Projectile Damage","Projectiles have 10% chance to Chain an additional time from terrain"],"stringId":"projectiles28_"},"41225":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":41225,"stats":[],"stringId":"mastery_miniondefence181"},"41298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41298,"stats":[],"stringId":"mastery_attack_6299"},"41338":{"connections":[{"id":31673,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Armour applies to Elemental Damage Hits","orbit":2,"orbitIndex":7,"skill":41338,"stats":["+8% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"shapeshifting35"},"41363":{"connections":[{"id":62518,"orbit":-5}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Lightning Resistance","orbit":4,"orbitIndex":9,"skill":41363,"stats":["+5% to Lightning Resistance"],"stringId":"maximum_resistances9"},"41372":{"connections":[{"id":48030,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield and Mana Regeneration","orbit":7,"orbitIndex":21,"skill":41372,"stats":["10% increased maximum Energy Shield","6% increased Mana Regeneration Rate"],"stringId":"energy_shield7"},"41384":{"connections":[{"id":51672,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":4,"skill":41384,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour42"},"41394":{"connections":[{"id":10841,"orbit":0}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Invigorating Archon","orbit":7,"orbitIndex":13,"recipe":["Envy","Isolation","Paranoia"],"skill":41394,"stats":["Archon Buffs also grant +20% to all Elemental Resistances","Archon Buffs also grant 10% increased Movement Speed"],"stringId":"archon11"},"41401":{"ascendancyName":"Spirit Walker","connections":[{"id":62702,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerVividStags.dds","isNotable":true,"name":"Vivid Stampede","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":4,"orbitIndex":29,"skill":41401,"stats":["Gain a Vivid Wisp for every 10 metres you move, up to a maximum of 3","Expend all Vivid Wisps to trigger Vivid Stampede when you Attack","Grants Skill: Vivid Stampede"],"stringId":"AscendancyHuntress2Notable1"},"41414":{"connections":[{"id":4547,"orbit":-7}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","name":"Cold Resistance","orbit":7,"orbitIndex":23,"skill":41414,"stats":["+5% to Cold Resistance"],"stringId":"maximum_resistances5"},"41415":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":618,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":41415,"stats":[],"stringId":"mastery_life136"},"41442":{"connections":[{"id":58088,"orbit":5}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Block and Stun Threshold","orbit":3,"orbitIndex":14,"skill":41442,"stats":["4% increased Block chance","5% increased Stun Threshold"],"stringId":"shield31"},"41447":{"connections":[],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Flammability Magnitude","orbit":3,"orbitIndex":8,"skill":41447,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"stringId":"area_attacks61"},"41493":{"connections":[{"id":50253,"orbit":9}],"group":352,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":0,"orbitIndex":0,"skill":41493,"stats":["8% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"slams1"},"41497":{"connections":[{"id":21164,"orbit":0}],"group":160,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":7,"orbitIndex":6,"skill":41497,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence1"},"41511":{"connections":[{"id":35560,"orbit":0}],"group":582,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Command Skill Damage","orbit":0,"orbitIndex":0,"skill":41511,"stats":["Minions deal 15% increased Damage with Command Skills"],"stringId":"minion_offence43"},"41512":{"connections":[],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Heavy Weaponry","orbit":7,"orbitIndex":13,"recipe":["Paranoia","Disgust","Envy"],"skill":41512,"stats":["15% increased Melee Damage","15% increased Stun Buildup with Melee Damage","+15 to Strength"],"stringId":"melee37_"},"41522":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDurationPattern","connections":[],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/MasteryDuration.dds","isOnlyImage":true,"name":"Duration Mastery","orbit":0,"orbitIndex":0,"skill":41522,"stats":[],"stringId":"mastery_duration92"},"41529":{"connections":[{"id":21380,"orbit":-2}],"group":1267,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":5,"skill":41529,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals37"},"41538":{"connections":[{"id":9112,"orbit":3},{"id":30047,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":18,"skill":41538,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression30"},"41573":{"connections":[{"id":24655,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":10,"skill":41573,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration8"},"41580":{"connections":[{"id":13799,"orbit":3},{"id":41298,"orbit":0}],"group":1428,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Maiming Strike","orbit":7,"orbitIndex":2,"recipe":["Despair","Isolation","Ire"],"skill":41580,"stats":["25% increased Attack Damage","Attacks have 25% chance to Maim on Hit"],"stringId":"attack5"},"41609":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Energy Shield Recharge","orbit":5,"orbitIndex":20,"skill":41609,"stats":["15% increased Energy Shield Recharge Rate while Shapeshifted"],"stringId":"wyvern10"},"41615":{"connections":[{"id":10534,"orbit":4},{"id":22616,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":10,"skill":41615,"stats":["20% increased Totem Placement speed"],"stringId":"totems22"},"41619":{"ascendancyName":"Pathfinder","connections":[],"group":1572,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderLifeFlasks.dds","isNotable":true,"name":"Enduring Elixirs","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":41619,"stats":["Life Flask Effects are not removed when Unreserved Life is Filled","Life Flask Effects do not Queue"],"stringId":"AscendancyRanger3Notable6"},"41620":{"connections":[{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Bear's Roar","orbit":3,"orbitIndex":5,"recipe":["Paranoia","Envy","Greed"],"skill":41620,"stats":["40% increased Stun buildup if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting27"},"41645":{"connections":[{"id":6490,"orbit":0},{"id":10382,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":20,"skill":41645,"stats":["10% increased Physical Damage"],"stringId":"physical22"},"41646":{"connections":[{"id":48670,"orbit":0},{"id":14091,"orbit":0},{"id":17867,"orbit":0}],"group":693,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41646,"stats":["+5 to any Attribute"],"stringId":"strength39_"},"41651":{"connections":[{"id":43791,"orbit":0},{"id":53320,"orbit":-5}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Area","orbit":2,"orbitIndex":2,"skill":41651,"stats":["Banner Skills have 12% increased Area of Effect"],"stringId":"banners20"},"41654":{"connections":[{"id":41033,"orbit":2147483647}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Life","orbit":2,"orbitIndex":5,"skill":41654,"stats":["Offerings have 15% increased Maximum Life"],"stringId":"corpses20___"},"41657":{"connections":[],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":10,"skill":41657,"stats":["15% increased Armour"],"stringId":"armour20"},"41665":{"connections":[{"id":50562,"orbit":6}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":2,"skill":41665,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals72"},"41669":{"connections":[],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":12,"skill":41669,"stats":["12% increased Cold Damage"],"stringId":"cold7"},"41701":{"connections":[{"id":11741,"orbit":0},{"id":11027,"orbit":0}],"group":233,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Endurance Charge Duration and Armour","orbit":2,"orbitIndex":6,"skill":41701,"stats":["10% increased Endurance Charge Duration","10% increased Armour if you've consumed an Endurance Charge Recently"],"stringId":"power_endurance_charges4"},"41736":{"ascendancyName":"Amazon","connections":[{"id":46071,"orbit":0},{"id":35033,"orbit":0},{"id":5563,"orbit":4},{"id":60662,"orbit":0},{"id":2702,"orbit":-4},{"id":6109,"orbit":0}],"group":1598,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Amazon","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":6,"orbitIndex":27,"skill":41736,"stats":[],"stringId":"AscendancyHuntress1Start"},"41739":{"connections":[{"id":35265,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":2,"skill":41739,"stats":["15% increased Stun Buildup"],"stringId":"stun22"},"41747":{"connections":[{"id":61847,"orbit":3}],"group":185,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Critical Chance","orbit":0,"orbitIndex":0,"skill":41747,"stats":["10% increased Critical Hit Chance with Flails"],"stringId":"flail6"},"41751":{"ascendancyName":"Martial Artist","connections":[{"id":65228,"orbit":3}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAdditionalComboHit.dds","isNotable":true,"name":"Martial Adept","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":1,"orbitIndex":6,"skill":41751,"stats":["When you gain Combo, gain an additional Combo","-0.2 seconds to current Energy Shield Recharge delay per Combo expended when using Skills"],"stringId":"AscendancyMonk1Notable1_"},"41753":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/ashfrostandstorm.dds","isNotable":true,"name":"Evocational Practitioner","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Envy","Suffering"],"skill":41753,"stats":["25% increased Critical Hit Chance if you've Triggered a Skill Recently","Meta Skills gain 25% increased Energy if you've dealt a Critical Hit Recently"],"stringId":"monkelemental6"},"41768":{"connections":[{"id":28982,"orbit":0},{"id":53123,"orbit":0},{"id":46399,"orbit":0},{"id":37484,"orbit":0}],"group":123,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41768,"stats":["+5 to any Attribute"],"stringId":"strength47"},"41770":{"connections":[{"id":33080,"orbit":0},{"id":9441,"orbit":0},{"id":16484,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Area and Debuff Magnitude","orbit":2,"orbitIndex":13,"skill":41770,"stats":["6% increased Parried Debuff Magnitude","8% increased Parry Hit Area of Effect"],"stringId":"deflect17"},"41811":{"connections":[{"id":35173,"orbit":0}],"group":1397,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Shatter Palm","orbit":3,"orbitIndex":2,"recipe":["Greed","Despair","Paranoia"],"skill":41811,"stats":["20% increased Critical Damage Bonus","30% increased Stun Buildup"],"stringId":"physical30"},"41821":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":224,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":41821,"stats":[],"stringId":"mastery_attack7"},"41838":{"connections":[{"id":25429,"orbit":-8}],"group":652,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration and Stun Threshold","orbit":7,"orbitIndex":4,"skill":41838,"stats":["8% increased Skill Effect Duration","8% increased Stun Threshold"],"stringId":"duration13"},"41861":{"connections":[],"flavourText":"Bonds forged in battle surpass ties of blood.","group":1484,"icon":"Art/2DArt/SkillIcons/passives/MultipleBeastCompanionsKeystone.dds","isKeystone":true,"name":"Trusted Kinship","orbit":0,"orbitIndex":0,"skill":41861,"stats":["You can have two Companions of different types","30% more Reservation Efficiency of Companion Skills","20% less Reservation Efficiency of non-Companion Skills"],"stringId":"passive_keystone_two_companions"},"41873":{"connections":[],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":22,"skill":41873,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges12"},"41875":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1558,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageClose.dds","isMultipleChoiceOption":true,"name":"Point Blank","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":41875,"stats":["Projectiles deal 20% more Hit damage to targets in the first 3.5 metres of their movement, scaling down with distance travelled to reach 0% after 7 metres"],"stringId":"AscendancyRanger1Notable2_2"},"41877":{"connections":[{"id":53958,"orbit":0},{"id":64601,"orbit":0}],"group":1339,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":41877,"stats":["+5 to any Attribute"],"stringId":"dexterity43"},"41886":{"connections":[{"id":9663,"orbit":7}],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamage2.dds","name":"Chaos Damage and Resistance","orbit":2,"orbitIndex":14,"skill":41886,"stats":["5% increased Chaos Damage","+3% to Chaos Resistance"],"stringId":"monkchaos4"},"41905":{"connections":[{"id":56926,"orbit":0},{"id":44255,"orbit":7}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Gravedigger","orbit":0,"orbitIndex":0,"recipe":["Ire","Fear","Disgust"],"skill":41905,"stats":["Minions Revive 15% faster","Recover 2% of maximum Life when one of your Minions is Revived"],"stringId":"minion_defence9"},"41935":{"connections":[{"id":34782,"orbit":0}],"group":178,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNotable.dds","isNotable":true,"name":"Hide of the Bear","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Disgust"],"skill":41935,"stats":["40% increased Armour while Shapeshifted","+1% to Maximum Fire Resistance while Shapeshifted","25% increased Stun Threshold while Shapeshifted"],"stringId":"bear11"},"41965":{"connections":[{"id":1755,"orbit":-6}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":37463,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":2,"orbitIndex":21,"skill":41965,"stats":["8% increased Spell Damage"],"stringId":"spell_criticals1"},"41972":{"connections":[{"id":56649,"orbit":4},{"id":60515,"orbit":-4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Glaciation","orbit":4,"orbitIndex":18,"recipe":["Paranoia","Guilt","Isolation"],"skill":41972,"stats":["Damage Penetrates 18% Cold Resistance","Gain 6% of Elemental Damage as Extra Cold Damage"],"stringId":"cold_penetration26"},"41991":{"connections":[{"id":61026,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":3,"orbitIndex":2,"skill":41991,"stats":["Minions have 3% increased Attack and Cast Speed"],"stringId":"minion_offence19"},"42017":{"ascendancyName":"Ritualist","connections":[],"group":1611,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Spirit","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":42017,"stats":["25% reduced Spirit"],"stringId":"AscendancyHuntress3Small1_2_"},"42026":{"connections":[{"id":63813,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":0,"skill":42026,"stats":["16% increased Warcry Speed"],"stringId":"warcries35"},"42032":{"connections":[{"id":17906,"orbit":0}],"group":1492,"icon":"Art/2DArt/SkillIcons/passives/Trap.dds","isNotable":true,"name":"Escalating Mayhem","orbit":7,"orbitIndex":4,"recipe":["Isolation","Guilt","Ire"],"skill":42032,"stats":["10% increased Damage for each Hazard triggered Recently, up to 50%"],"stringId":"hazards3"},"42035":{"ascendancyName":"Chronomancer","connections":[],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistSynchronisationofPain.dds","isNotable":true,"name":"Inevitability","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":2,"orbitIndex":15,"skill":42035,"stats":["Grants Skill: Inevitable Agony"],"stringId":"AscendancySorceress2Notable3"},"42036":{"connections":[{"id":50146,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Off-Balancing Retort","orbit":4,"orbitIndex":17,"recipe":["Greed","Fear","Suffering"],"skill":42036,"stats":["30% increased Parried Debuff Duration"],"stringId":"buckler6"},"42045":{"connections":[{"id":50535,"orbit":7},{"id":52003,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Archon of the Blizzard","orbit":3,"orbitIndex":3,"recipe":["Isolation","Fear","Ire"],"skill":42045,"stats":["Gain Elemental Archon when your Energy Shield Recharge begins"],"stringId":"cold17"},"42059":{"connections":[{"id":36333,"orbit":3}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":4,"orbitIndex":60,"skill":42059,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries45"},"42065":{"connections":[{"id":37532,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Surging Currents","orbit":2,"orbitIndex":17,"recipe":["Fear","Envy","Isolation"],"skill":42065,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"stringId":"lightning_penetration26__"},"42070":{"connections":[{"id":26148,"orbit":0}],"group":327,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Saqawal's Guidance","orbit":0,"orbitIndex":0,"recipe":["Guilt","Envy","Isolation"],"skill":42070,"stats":["20% increased Elemental Damage with Attacks","15% increased Accuracy Rating","+10 to Dexterity"],"stringId":"accuracy54_"},"42076":{"connections":[{"id":17706,"orbit":-7}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":0,"orbitIndex":0,"skill":42076,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"energy_shield_recovery23"},"42077":{"connections":[{"id":56564,"orbit":0},{"id":2102,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Essence Infusion","orbit":2,"orbitIndex":11,"recipe":["Envy","Envy","Greed"],"skill":42077,"stats":["12% faster start of Energy Shield Recharge","+12 to Intelligence"],"stringId":"energy_shield_recovery16"},"42078":{"connectionArt":"CharacterPlanned","connections":[],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"The Hollowkeeper","orbit":0,"orbitIndex":0,"skill":42078,"stats":["50% reduced effect of Curses on you","35% reduced Effect of Non-Damaging Ailments on you"],"stringId":"evasion_and_energy_shield37","unlockConstraint":{"nodes":[59657,49356]}},"42103":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":62427,"orbit":-2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Enduring Deflection","orbit":3,"orbitIndex":0,"recipe":["Suffering","Greed","Despair"],"skill":42103,"stats":["20% increased Evasion Rating","Prevent +3% of Damage from Deflected Hits"],"stringId":"deflect41"},"42111":{"connections":[{"id":21387,"orbit":0},{"id":26437,"orbit":0}],"group":209,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":19,"skill":42111,"stats":["Break 20% increased Armour"],"stringId":"armour_break10"},"42118":{"connections":[{"id":2408,"orbit":0},{"id":57518,"orbit":0},{"id":11509,"orbit":0},{"id":43102,"orbit":0},{"id":49485,"orbit":0}],"group":1385,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42118,"stats":["+5 to any Attribute"],"stringId":"attributes74"},"42127":{"connections":[{"id":4456,"orbit":0},{"id":41573,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":2,"orbitIndex":10,"skill":42127,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration6"},"42169":{"connections":[{"id":24963,"orbit":-4}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":3,"orbitIndex":20,"skill":42169,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion43"},"42177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":11153,"orbit":3}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Blurred Motion","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Ire"],"skill":42177,"stats":["5% increased Attack Speed","10% increased Accuracy Rating","5% increased Dexterity"],"stringId":"attack_speed20"},"42205":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":372,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":42205,"stats":[],"stringId":"mastery_elemental_6477"},"42226":{"connections":[{"id":34892,"orbit":0},{"id":17792,"orbit":9}],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Intelligence","orbit":3,"orbitIndex":14,"skill":42226,"stats":["+10 to Intelligence"],"stringId":"azmerianimals59"},"42245":{"connections":[{"id":16024,"orbit":2},{"id":18167,"orbit":-2}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Efficient Inscriptions","orbit":1,"orbitIndex":8,"recipe":["Paranoia","Isolation","Greed"],"skill":42245,"stats":["Meta Skills have 20% increased Reservation Efficiency"],"stringId":"triggers26"},"42250":{"connections":[{"id":26786,"orbit":0},{"id":16484,"orbit":0},{"id":44014,"orbit":0},{"id":45137,"orbit":0}],"group":1052,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42250,"stats":["+5 to any Attribute"],"stringId":"dexterity65_"},"42253":{"ascendancyName":"Shaman","connections":[],"group":62,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRunesTalismans.dds","isNotable":true,"name":"Wisdom of the Maji","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":42253,"stats":["Gain the benefits of Bonded modifiers on Runes and Idols"],"stringId":"AscendancyDruid2Notable8"},"42275":{"ascendancyName":"Titan","connections":[{"id":38014,"orbit":5}],"group":76,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanSlamSkillsAftershock.dds","isNotable":true,"name":"Earthbreaker","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":42275,"stats":["25% chance for Slam Skills you use yourself to cause an additional Aftershock"],"stringId":"AscendancyWarrior1Notable1"},"42280":{"connections":[{"id":21205,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":22,"skill":42280,"stats":["+3 to all Attributes"],"stringId":"all_attributes14"},"42290":{"connections":[{"id":38732,"orbit":-8}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":10,"skill":42290,"stats":["6% increased Curse Magnitudes"],"stringId":"curses19"},"42302":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":45331,"orbit":4},{"id":31918,"orbit":-4}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Split Shot","orbit":4,"orbitIndex":54,"recipe":["Ire","Fear","Paranoia"],"skill":42302,"stats":["Projectiles have 75% chance for an additional Projectile when Forking"],"stringId":"ranged35"},"42339":{"connections":[{"id":60974,"orbit":-2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Additional Remnant Chance","orbit":2,"orbitIndex":6,"skill":42339,"stats":["5% chance to create an additional Remnant"],"stringId":"remnant17"},"42347":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","isNotable":true,"name":"Chakra of Sight","orbit":3,"orbitIndex":6,"recipe":["Despair","Despair","Disgust"],"skill":42347,"stats":["20% increased Light Radius","Cannot be Blinded","12% chance to Blind Enemies on Hit"],"stringId":"monkchakra12"},"42350":{"connections":[{"id":61438,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":67,"skill":42350,"stats":["+5 to any Attribute"],"stringId":"strength34"},"42354":{"connections":[{"id":43562,"orbit":2},{"id":3660,"orbit":7}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/EvasionAndBlindNotable.dds","isNotable":true,"name":"Blinding Flash","orbit":2,"orbitIndex":0,"recipe":["Ire","Guilt","Ire"],"skill":42354,"stats":["20% increased Blind Effect","Blind Enemies when they Stun you"],"stringId":"attack_speed38"},"42361":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":42361,"stats":[],"stringId":"mastery_chaos49"},"42379":{"connections":[{"id":16705,"orbit":0},{"id":25520,"orbit":0},{"id":3463,"orbit":0},{"id":4552,"orbit":0}],"group":1259,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42379,"stats":["+5 to any Attribute"],"stringId":"attributes25"},"42390":{"connections":[{"id":11433,"orbit":3},{"id":63608,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Overheating Blow","orbit":4,"orbitIndex":4,"recipe":["Disgust","Suffering","Guilt"],"skill":42390,"stats":["Gain 25% of Physical Damage as Extra Fire Damage against Heavy Stunned Enemies"],"stringId":"fire_penetration27"},"42410":{"connections":[{"id":9737,"orbit":4}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage and Armour Break","orbit":7,"orbitIndex":20,"skill":42410,"stats":["Break 10% increased Armour","6% increased Attack Area Damage"],"stringId":"area_attacks18"},"42416":{"ascendancyName":"Deadeye","connections":[],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeProjectileDamageChoose.dds","isMultipleChoice":true,"isNotable":true,"name":"Projectile Proximity Specialisation","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":5,"orbitIndex":24,"skill":42416,"stats":[],"stringId":"AscendancyRanger1Notable2_Choice"},"42441":{"ascendancyName":"Amazon","connections":[],"group":1585,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonElementalDamageReductionperElementalInstillation.dds","isNotable":true,"name":"Surging Avatar","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":42441,"stats":["When you Consume a Charge, Trigger Elemental Surge to gain 2 Fire Surges","When you Consume a Charge, Trigger Elemental Surge to gain 2 Cold Surges","Gain 1 fewer Lightning Surge from Triggering Elemental Surge"],"stringId":"AscendancyHuntress1Notable5"},"42452":{"connections":[{"id":51743,"orbit":3}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Attack Damage","orbit":5,"orbitIndex":6,"skill":42452,"stats":["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting24_"},"42460":{"connections":[{"id":11882,"orbit":5}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":7,"orbitIndex":3,"skill":42460,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments41_"},"42500":{"connections":[{"id":59881,"orbit":0}],"group":844,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":10,"skill":42500,"stats":["+5 to any Attribute"],"stringId":"dexterity27"},"42522":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant1.dds","isNotable":true,"name":"Refracted Infusion","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":9,"orbitIndex":127,"skill":42522,"stats":["When collecting an Elemental Infusion, gain another different Elemental Infusion"],"stringId":"AscendancySorceress1Notable10"},"42578":{"connections":[{"id":23192,"orbit":-6}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":3,"orbitIndex":11,"skill":42578,"stats":["5% increased Block chance"],"stringId":"block5"},"42583":{"connections":[{"id":6714,"orbit":2147483647}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Life Regeneration Rate","orbit":2,"orbitIndex":18,"skill":42583,"stats":["10% increased Life Regeneration rate"],"stringId":"mercenary8"},"42604":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":449,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":42604,"stats":[],"stringId":"mastery_fire_6517"},"42614":{"connections":[],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":6,"skill":42614,"stats":["Offering Skills have 30% reduced Duration"],"stringId":"corpses2"},"42635":{"connections":[{"id":1502,"orbit":0}],"group":279,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Damage","orbit":2,"orbitIndex":6,"skill":42635,"stats":["Channelling Skills deal 12% increased Damage"],"stringId":"channelling7"},"42658":{"connections":[],"group":1303,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42658,"stats":["+5 to any Attribute"],"stringId":"dexterity86"},"42660":{"connections":[{"id":54849,"orbit":0}],"group":236,"icon":"Art/2DArt/SkillIcons/passives/RageNotable.dds","isNotable":true,"name":"Commanding Rage","orbit":2,"orbitIndex":10,"recipe":["Disgust","Guilt","Suffering"],"skill":42660,"stats":["Every five Rage also grants you 2% increased Minion Attack Speed","Every Rage also grants you 1% increased Minion Damage"],"stringId":"minion_attack5"},"42680":{"connections":[],"flavourText":"Let the Darkness consume you.\\nBeyond the veil of death,\\nthere burns a black fire.","group":737,"icon":"Art/2DArt/SkillIcons/passives/FireSpellsBecomeChaosSpellsKeystone.dds","isKeystone":true,"name":"Blackflame Covenant","orbit":0,"orbitIndex":0,"skill":42680,"stats":["Fire Spells Convert 100% of Fire Damage to Chaos Damage","Chaos Damage from Fire Spells Contributes to Flammability and Ignite Magnitudes","Ignite inflicted with Fire Spells deals Chaos Damage instead of Fire Damage"],"stringId":"passive_keystone_fire_spells_to_chaos"},"42710":{"connections":[{"id":41186,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":20,"skill":42710,"stats":["20% increased Totem Placement speed"],"stringId":"totems11"},"42714":{"connections":[{"id":29065,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Thousand Cuts","orbit":5,"orbitIndex":60,"recipe":["Envy","Fear","Despair"],"skill":42714,"stats":["Enemies you apply Incision to take 2% increased Physical Damage per Incision"],"stringId":"bleed33"},"42736":{"connections":[{"id":60685,"orbit":-3}],"group":924,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":42736,"stats":["+5 to any Attribute"],"stringId":"attributes39"},"42737":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":598,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":7,"orbitIndex":4,"skill":42737,"stats":[],"stringId":"mastery_crossbow_6421_"},"42750":{"connections":[{"id":17088,"orbit":4},{"id":9050,"orbit":-4}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":6,"orbitIndex":42,"skill":42750,"stats":["10% increased Attack Damage"],"stringId":"attack22"},"42760":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","isNotable":true,"name":"Chakra of Stability","orbit":1,"orbitIndex":4,"recipe":["Greed","Fear","Paranoia"],"skill":42760,"stats":["30% increased Stun Recovery","Regenerate 3% of maximum Life over 1 second when Stunned","+1 to Stun Threshold per Dexterity"],"stringId":"monkchakra30"},"42761":{"ascendancyName":"Oracle","connections":[{"id":11335,"orbit":-9},{"id":21284,"orbit":6},{"id":56505,"orbit":5},{"id":39659,"orbit":8},{"id":25092,"orbit":3},{"id":15275,"orbit":4}],"group":1,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Oracle","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":42761,"stats":[],"stringId":"AscendancyDruid1Start"},"42762":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":61,"skill":42762,"stats":["15% increased Physical Damage"],"stringId":"oracle_rust_king2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"42781":{"connections":[{"id":55429,"orbit":0},{"id":56472,"orbit":0}],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/ProjectilesNotable.dds","isNotable":true,"isSwitchable":true,"name":"Clean Shot","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":42895,"name":"Stalk and Leap","stats":["30% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds","30% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"]}},"orbit":2,"orbitIndex":2,"skill":42781,"stats":["15% chance to Pierce an Enemy","15% increased Projectile Damage"],"stringId":"projectiles23"},"42794":{"connections":[{"id":31433,"orbit":-5}],"group":1320,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":2,"skill":42794,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks6"},"42802":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":42802,"stats":[],"stringId":"mastery_critical_6408"},"42805":{"connections":[{"id":26034,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":6,"skill":42805,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield8"},"42813":{"connections":[{"id":55491,"orbit":0}],"group":475,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Tides of Change","orbit":7,"orbitIndex":19,"recipe":["Paranoia","Suffering","Fear"],"skill":42813,"stats":["25% increased Skill Effect Duration"],"stringId":"duration8"},"42825":{"connections":[{"id":31238,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":14,"skill":42825,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery32_"},"42845":{"ascendancyName":"Tactician","connections":[{"id":10371,"orbit":0}],"group":338,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Banner Area","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":42845,"stats":["Banner Skills have 16% increased Area of Effect"],"stringId":"AscendancyMercenary1Small2"},"42857":{"connections":[{"id":20024,"orbit":3},{"id":7576,"orbit":0}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","name":"Skill Speed","orbit":7,"orbitIndex":16,"skill":42857,"stats":["4% increased Skill Speed"],"stringId":"attack_speed27"},"42914":{"connections":[{"id":33393,"orbit":0},{"id":50847,"orbit":0}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Ball and Chain","orbit":4,"orbitIndex":15,"skill":42914,"stats":["15% increased Damage with Flails","6% increased Attack Speed with Flails"],"stringId":"flail5"},"42959":{"connections":[{"id":32896,"orbit":-2},{"id":28903,"orbit":0}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Low Tolerance","orbit":7,"orbitIndex":12,"recipe":["Suffering","Greed","Isolation"],"skill":42959,"stats":["60% increased Magnitude of Poison you inflict on targets that are not Poisoned"],"stringId":"poison29"},"42974":{"connections":[{"id":46152,"orbit":3},{"id":8302,"orbit":-7},{"id":30808,"orbit":0}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Chance","orbit":2,"orbitIndex":18,"skill":42974,"stats":["5% chance to Blind Enemies on Hit"],"stringId":"monkchakra9"},"42981":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":56104,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Cruel Methods","orbit":4,"orbitIndex":40,"recipe":["Suffering","Envy","Paranoia"],"skill":42981,"stats":["Break 40% increased Armour","25% increased Physical Damage"],"stringId":"armour_break37"},"42984":{"connections":[{"id":21184,"orbit":0}],"group":131,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Attack Area","orbit":1,"orbitIndex":8,"skill":42984,"stats":["6% increased Area of Effect"],"stringId":"area_attacks38"},"42998":{"connections":[{"id":40333,"orbit":2}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":2,"orbitIndex":9,"skill":42998,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions37"},"42999":{"connections":[{"id":4925,"orbit":3}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":10,"skill":42999,"stats":["7% increased Chaos Damage"],"stringId":"chaos7"},"43014":{"connections":[{"id":34308,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Damage","orbit":2,"orbitIndex":22,"skill":43014,"stats":["5% increased Attack Damage","8% increased Immobilisation buildup"],"stringId":"melee7"},"43036":{"connections":[{"id":2244,"orbit":4}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":18,"skill":43036,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration31_"},"43044":{"connections":[{"id":63566,"orbit":0},{"id":38678,"orbit":0},{"id":21495,"orbit":-6}],"group":1286,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":43044,"stats":["+5 to any Attribute"],"stringId":"attributes73"},"43064":{"connections":[{"id":47853,"orbit":0}],"group":1456,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":43064,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions68"},"43077":{"connections":[{"id":26592,"orbit":-2},{"id":43250,"orbit":3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":4,"orbitIndex":58,"skill":43077,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour47"},"43082":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1408,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","isNotable":true,"name":"Acceleration","orbit":2,"orbitIndex":20,"recipe":["Fear","Envy","Disgust"],"skill":43082,"stats":["3% increased Movement Speed","10% increased Skill Speed"],"stringId":"movement_speed9"},"43088":{"connections":[{"id":28835,"orbit":0},{"id":178,"orbit":0},{"id":6988,"orbit":0}],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Agonising Calamity","orbit":3,"orbitIndex":8,"recipe":["Disgust","Suffering","Isolation"],"skill":43088,"stats":["40% increased Chaos Damage while affected by Herald of Plague","40% increased Physical Damage while affected by Herald of Blood"],"stringId":"heralds20"},"43090":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1421,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electrotherapy","orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Guilt"],"skill":43090,"stats":["5% increased Skill Speed","30% increased Electrocute Buildup"],"stringId":"lightning_penetration29"},"43095":{"ascendancyName":"Amazon","connections":[{"id":35187,"orbit":0}],"group":1587,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Skill Speed","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":43095,"stats":["4% increased Skill Speed"],"stringId":"AscendancyHuntress1Small4_"},"43102":{"connections":[{"id":30197,"orbit":0},{"id":42998,"orbit":-9}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage with Companion in Presence","orbit":7,"orbitIndex":6,"skill":43102,"stats":["12% increased Damage while your Companion is in your Presence"],"stringId":"companions30"},"43128":{"ascendancyName":"Chronomancer","connections":[{"id":10731,"orbit":4}],"group":383,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Skill Speed and Area of Effect","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":4,"orbitIndex":60,"skill":43128,"stats":["4% increased Skill Speed","6% increased Area of Effect"],"stringId":"AscendancySorceress2Small8"},"43131":{"ascendancyName":"Witchhunter","connections":[{"id":61973,"orbit":-9}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage vs Low Life Enemies","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":8,"orbitIndex":40,"skill":43131,"stats":["35% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"AscendancyMercenary2Small1"},"43139":{"connections":[{"id":38068,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Stormbreaker","orbit":4,"orbitIndex":0,"recipe":["Isolation","Despair","Guilt"],"skill":43139,"stats":["20% increased Damage for each type of Elemental Ailment on Enemy"],"stringId":"elemental40"},"43142":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":357,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":43142,"stats":[],"stringId":"mastery_critical_6415"},"43149":{"connections":[{"id":40292,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":2,"orbitIndex":20,"skill":43149,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy43_"},"43155":{"connections":[{"id":7062,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Critical Chance","orbit":4,"orbitIndex":23,"skill":43155,"stats":["10% increased Critical Hit Chance with Crossbows"],"stringId":"crossbow4"},"43164":{"connections":[{"id":5710,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":20,"skill":43164,"stats":["8% increased Melee Damage"],"stringId":"melee46"},"43174":{"connections":[{"id":28542,"orbit":-7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":7,"orbitIndex":18,"skill":43174,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break13"},"43183":{"connections":[{"id":11153,"orbit":0}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Accuracy","orbit":7,"orbitIndex":6,"skill":43183,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"attack_speed23"},"43201":{"connections":[{"id":43383,"orbit":0}],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance","orbit":4,"orbitIndex":56,"skill":43201,"stats":["10% increased chance to inflict Ailments"],"stringId":"ailments2"},"43238":{"connections":[{"id":14211,"orbit":-7}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Rearm Chance","orbit":7,"orbitIndex":12,"skill":43238,"stats":["Hazards have 5% chance to rearm after they are triggered"],"stringId":"hazards5"},"43250":{"connections":[],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","isNotable":true,"name":"Adaptive Skin","orbit":7,"orbitIndex":6,"recipe":["Disgust","Isolation","Guilt"],"skill":43250,"stats":["+1% to Maximum Resistances of each Elemental Damage Type you have been Hit with Recently"],"stringId":"shaman12"},"43254":{"connections":[{"id":33400,"orbit":0}],"group":1086,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Debuff Magnitude","orbit":2,"orbitIndex":22,"skill":43254,"stats":["10% increased Parried Debuff Magnitude"],"stringId":"deflect21"},"43263":{"connections":[{"id":64492,"orbit":-2}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":13,"skill":43263,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed6"},"43281":{"connections":[{"id":47359,"orbit":0},{"id":51934,"orbit":7}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":21,"skill":43281,"stats":["Triggered Spells deal 16% increased Spell Damage"],"stringId":"triggers2"},"43282":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Elemental Damage","orbit":6,"orbitIndex":49,"skill":43282,"stats":["12% increased Elemental Damage while Shapeshifted"],"stringId":"wyvern6"},"43303":{"connections":[{"id":50498,"orbit":-7}],"group":1199,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":43303,"stats":["12% increased Lightning Damage"],"stringId":"lightning65__"},"43324":{"connectionArt":"CharacterPlanned","connections":[{"id":57596,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":4,"skill":43324,"stats":["8% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_life_corruption2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43338":{"connections":[{"id":56767,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Shock Chance and Lightning Damage","orbit":2,"orbitIndex":10,"skill":43338,"stats":["8% increased Lightning Damage","8% increased chance to Shock"],"stringId":"daze_14"},"43366":{"connections":[{"id":2606,"orbit":0},{"id":4407,"orbit":0}],"group":613,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Physical Damage Reduction","orbit":0,"orbitIndex":0,"skill":43366,"stats":["Minions have 12% additional Physical Damage Reduction"],"stringId":"minion_defence25"},"43383":{"connections":[{"id":62588,"orbit":0},{"id":37450,"orbit":0}],"group":804,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Exposed Wounds","orbit":4,"orbitIndex":51,"skill":43383,"stats":["15% increased chance to inflict Ailments","Hits Break 30% increased Armour on targets with Ailments"],"stringId":"ailments20"},"43385":{"connectionArt":"CharacterPlanned","connections":[{"id":64139,"orbit":-5}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":18,"skill":43385,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_big_family6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43396":{"connections":[{"id":40550,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Reach","orbit":0,"orbitIndex":0,"recipe":["Suffering","Paranoia","Ire"],"skill":43396,"stats":["25% increased Totem Placement speed","50% increased Totem Placement range"],"stringId":"totems27"},"43423":{"connections":[{"id":48660,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Emboldened Avatar","orbit":2,"orbitIndex":23,"recipe":["Suffering","Disgust","Greed"],"skill":43423,"stats":["50% increased Flammability Magnitude","25% increased Freeze Buildup","25% increased chance to Shock","25% increased Electrocute Buildup"],"stringId":"elemental_attacks11"},"43426":{"ascendancyName":"Disciple of Varashta","connections":[{"id":32705,"orbit":0}],"flavourText":"\"Wipe the tears from your face, dear Navira. I did not deceive you. I meant every word. I will forever cherish you, my beloved. Know that I did it all for you... for our future!\" \\n\\nKelari pleaded with the Tale-woman.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnESRechargeCommand.dds","isNotable":true,"name":"Navira's Well","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":2,"orbitIndex":12,"skill":43426,"stats":["Grants Skill: Navira's Well"],"stringId":"AscendancySorceress3Notable11"},"43431":{"connections":[{"id":38814,"orbit":0},{"id":19224,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":4,"orbitIndex":69,"skill":43431,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"armour_and_evasion35_"},"43443":{"connections":[{"id":32148,"orbit":0},{"id":49370,"orbit":0},{"id":8535,"orbit":0}],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Critical Chance","orbit":0,"orbitIndex":0,"skill":43443,"stats":["15% increased Critical Hit Chance with Flails"],"stringId":"flail8"},"43444":{"connections":[],"group":830,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","name":"Knockback","orbit":7,"orbitIndex":8,"skill":43444,"stats":["8% increased Knockback Distance"],"stringId":"knockback5"},"43453":{"connections":[{"id":64050,"orbit":0}],"group":1390,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":43453,"stats":["3% increased Movement Speed while Sprinting"],"stringId":"Sprint4"},"43460":{"connections":[{"id":63678,"orbit":4},{"id":63085,"orbit":-5}],"group":174,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Armour","orbit":0,"orbitIndex":0,"skill":43460,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"bear9"},"43461":{"connections":[{"id":51299,"orbit":0}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Attack Damage","orbit":5,"orbitIndex":24,"skill":43461,"stats":["8% increased Fire Damage","8% increased Attack Damage"],"stringId":"fire56"},"43471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":14265,"orbit":0}],"group":425,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":43471,"stats":[],"stringId":"mastery_fire_6514"},"43486":{"connectionArt":"CharacterPlanned","connections":[{"id":54289,"orbit":0},{"id":39102,"orbit":2147483647}],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Gain Maximum Power Charges on Gaining Power Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":11,"skill":43486,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges"],"stringId":"oracle_power_charge2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43507":{"connections":[{"id":40292,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":2,"orbitIndex":12,"skill":43507,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy44"},"43522":{"connections":[{"id":38497,"orbit":4},{"id":33099,"orbit":6}],"group":1317,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges Used","orbit":7,"orbitIndex":7,"skill":43522,"stats":["6% reduced Charm Charges used"],"stringId":"charms20"},"43557":{"connections":[],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Critical Damage","orbit":3,"orbitIndex":17,"skill":43557,"stats":["Minions have 15% increased Critical Damage Bonus"],"stringId":"minion_offence37_"},"43562":{"connections":[{"id":3660,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Chance","orbit":3,"orbitIndex":2,"skill":43562,"stats":["8% chance to Blind Enemies on Hit with Attacks"],"stringId":"attack_speed43"},"43575":{"connections":[{"id":41512,"orbit":0}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage ","orbit":7,"orbitIndex":16,"skill":43575,"stats":["10% increased Melee Damage"],"stringId":"melee24_"},"43576":{"connections":[{"id":7971,"orbit":3}],"group":822,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":8,"skill":43576,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration15"},"43578":{"connections":[],"group":838,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":26,"skill":43578,"stats":["10% increased Projectile Damage"],"stringId":"projectiles4__"},"43579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":35369,"orbit":0}],"group":252,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":9,"skill":43579,"stats":[],"stringId":"mastery_mana_6599"},"43584":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Flare","orbit":0,"orbitIndex":0,"recipe":["Disgust","Disgust","Despair"],"skill":43584,"stats":["Gain 2% of Damage as Extra Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges16_"},"43588":{"connections":[{"id":61835,"orbit":-2},{"id":39131,"orbit":3}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":2,"skill":43588,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells8"},"43633":{"connections":[{"id":10841,"orbit":0}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Energising Archon","orbit":7,"orbitIndex":17,"recipe":["Isolation","Paranoia","Envy"],"skill":43633,"stats":["30% increased Archon Buff duration","20% faster start of Energy Shield Recharge while affected by an Archon Buff"],"stringId":"archon14"},"43647":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":32507,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":2,"orbitIndex":17,"skill":43647,"stats":[],"stringId":"mastery_minionoffence188"},"43650":{"connections":[{"id":21070,"orbit":0},{"id":53386,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance and Damage","orbit":1,"orbitIndex":11,"skill":43650,"stats":["8% increased Critical Damage Bonus","5% increased Critical Hit Chance"],"stringId":"criticals62"},"43653":{"connections":[{"id":26518,"orbit":0},{"id":48171,"orbit":0}],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":9,"skill":43653,"stats":["12% increased Cold Damage"],"stringId":"cold20"},"43677":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Crippling Toxins","orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Envy"],"skill":43677,"stats":["25% chance for Attacks to Maim on Hit against Poisoned Enemies","25% increased Magnitude of Poison you inflict"],"stringId":"poison18"},"43691":{"connections":[{"id":21746,"orbit":0},{"id":55270,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":6,"skill":43691,"stats":["+5 to any Attribute"],"stringId":"dexterity10"},"43711":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":331,"icon":"Art/2DArt/SkillIcons/passives/ThornsNotable1.dds","isNotable":true,"name":"Thornhide","orbit":2,"orbitIndex":18,"recipe":["Ire","Greed","Fear"],"skill":43711,"stats":["+6% to Thorns Critical Hit Chance"],"stringId":"getting_hit14"},"43713":{"connections":[{"id":3051,"orbit":0},{"id":27009,"orbit":0},{"id":35602,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Area","orbit":0,"orbitIndex":0,"skill":43713,"stats":["Offering Skills have 20% increased Area of Effect"],"stringId":"corpses14"},"43720":{"connections":[],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech and Cold Resistance","orbit":2,"orbitIndex":11,"skill":43720,"stats":["+5% to Cold Resistance","10% increased amount of Mana Leeched"],"stringId":"mana_leech1"},"43721":{"connectionArt":"CharacterPlanned","connections":[{"id":24993,"orbit":8}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":0,"skill":43721,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption12","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"43736":{"connections":[{"id":29695,"orbit":4}],"group":850,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isSwitchable":true,"name":"Energy Shield Delay","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","id":38659,"name":"Mana Regeneration","stats":["10% increased Mana Regeneration Rate"]}},"orbit":2,"orbitIndex":3,"skill":43736,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery20"},"43746":{"connections":[{"id":16460,"orbit":0},{"id":38143,"orbit":0}],"group":983,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":6,"skill":43746,"stats":["+5 to any Attribute"],"stringId":"dexterity16"},"43778":{"connections":[{"id":36894,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":2,"skill":43778,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"jagged_ground1"},"43791":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Rallying Icon","orbit":3,"orbitIndex":0,"recipe":["Greed","Despair","Guilt"],"skill":43791,"stats":["When a Banner expires, recover 15% of the Glory required for that Banner"],"stringId":"banners13"},"43818":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":503,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":43818,"stats":[],"stringId":"mastery_life147"},"43829":{"connections":[{"id":51944,"orbit":0},{"id":45576,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Advanced Munitions","orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Greed"],"skill":43829,"stats":["25% increased chance to inflict Ailments with Projectiles"],"stringId":"ranged40"},"43842":{"connections":[{"id":5695,"orbit":2},{"id":28092,"orbit":2}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":0,"orbitIndex":0,"skill":43842,"stats":["10% increased effect of Archon Buffs on you"],"stringId":"archon1"},"43843":{"connections":[{"id":17417,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed and Physical Damage","orbit":5,"orbitIndex":12,"skill":43843,"stats":["5% increased Projectile Speed","8% increased Physical Damage"],"stringId":"projectiles46"},"43854":{"connections":[{"id":52038,"orbit":0}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"All For One","orbit":7,"orbitIndex":7,"recipe":["Paranoia","Disgust","Suffering"],"skill":43854,"stats":["20% reduced Presence Area of Effect","12% increased Area of Effect"],"stringId":"auras34"},"43867":{"connections":[{"id":10423,"orbit":2}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":7,"orbitIndex":23,"skill":43867,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration2"},"43877":{"connections":[{"id":51522,"orbit":-2},{"id":47895,"orbit":-2}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":1,"orbitIndex":7,"skill":43877,"stats":["3% increased Attack Speed"],"stringId":"attack_speed57"},"43893":{"connections":[{"id":55101,"orbit":0},{"id":1433,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":10,"skill":43893,"stats":["10% increased Elemental Damage"],"stringId":"elemental12"},"43895":{"connections":[{"id":48670,"orbit":-5}],"group":617,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration on Low Life","orbit":7,"orbitIndex":6,"skill":43895,"stats":["15% increased Life Regeneration Rate while on Low Life"],"stringId":"life_regeneration6"},"43923":{"connections":[{"id":19104,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isSwitchable":true,"name":"Accuracy","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","id":34062,"name":"Stun Threshold during Parry","stats":["20% increased Stun Threshold while Parrying"]}},"orbit":2,"orbitIndex":2,"skill":43923,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy9"},"43938":{"connections":[{"id":37688,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Throw Speed","orbit":6,"orbitIndex":39,"skill":43938,"stats":["6% increased Trap Throwing Speed"],"stringId":"trap6"},"43939":{"connections":[{"id":48267,"orbit":0},{"id":56214,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Melting Flames","orbit":3,"orbitIndex":6,"recipe":["Fear","Paranoia","Paranoia"],"skill":43939,"stats":["Enemies Ignited by you permanently take 1% increased Fire Damage for each second they have ever been Ignited by you, up to a maximum of 10%"],"stringId":"ignite_mitigation12"},"43941":{"connections":[{"id":48314,"orbit":-7}],"group":109,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":43941,"stats":["3% increased Skill Speed while Shapeshifted"],"stringId":"wolf2_"},"43944":{"connections":[{"id":23547,"orbit":0}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNode.dds","isNotable":true,"name":"Instability","orbit":2,"orbitIndex":13,"recipe":["Paranoia","Greed","Ire"],"skill":43944,"stats":["25% chance that when Volatility on you explodes, you regain an equivalent amount of Volatility"],"stringId":"volatility3"},"43964":{"connections":[{"id":41645,"orbit":0}],"group":1238,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":2,"orbitIndex":4,"skill":43964,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"physical24"},"43979":{"connections":[{"id":50837,"orbit":0},{"id":26926,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Skill Cooldown","orbit":3,"orbitIndex":18,"skill":43979,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon22__"},"44005":{"connections":[],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Casting Cascade","orbit":6,"orbitIndex":38,"recipe":["Fear","Greed","Isolation"],"skill":44005,"stats":["15% reduced Spell Damage","6% increased Cast Speed for each different Spell you've Cast in the last eight seconds"],"stringId":"cast_speed31"},"44014":{"connections":[{"id":11855,"orbit":0}],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":8,"skill":44014,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy24"},"44017":{"connections":[{"id":4527,"orbit":0}],"flavourText":"Great tacticians learn that consistency often trumps potential.","group":241,"icon":"Art/2DArt/SkillIcons/passives/KeystoneResoluteTechnique.dds","isKeystone":true,"name":"Resolute Technique","orbit":0,"orbitIndex":0,"skill":44017,"stats":["Accuracy Rating is Doubled","Never deal Critical Hits"],"stringId":"passive_keystone_resolute_technique"},"44069":{"connections":[{"id":29358,"orbit":-7}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":4,"skill":44069,"stats":["15% increased Stun Buildup"],"stringId":"stun11"},"44082":{"connections":[{"id":4931,"orbit":0}],"group":517,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":6,"skill":44082,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery35"},"44092":{"connections":[{"id":54911,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":0,"skill":44092,"stats":["12% increased Ignite Magnitude"],"stringId":"ignite8"},"44098":{"connections":[{"id":4061,"orbit":0},{"id":34531,"orbit":0}],"group":706,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":7,"orbitIndex":12,"skill":44098,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield8"},"44141":{"connections":[{"id":18969,"orbit":0},{"id":21788,"orbit":0}],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Speed","orbit":3,"orbitIndex":7,"skill":44141,"stats":["3% increased Attack Speed with Bows"],"stringId":"bow17"},"44176":{"connections":[{"id":57047,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":7,"orbitIndex":18,"skill":44176,"stats":["+3 to all Attributes"],"stringId":"all_attributes1"},"44179":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":861,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":44179,"stats":[],"stringId":"mastery_cold60"},"44188":{"connections":[{"id":64427,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion and Power Charge Duration","orbit":2,"orbitIndex":7,"skill":44188,"stats":["8% increased Power Charge Duration","8% increased Elemental Infusion duration"],"stringId":"power_charges19"},"44191":{"connections":[{"id":12099,"orbit":3}],"group":458,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":44191,"stats":["12% increased Cold Damage"],"stringId":"cold57"},"44201":{"connections":[],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":2,"orbitIndex":2,"skill":44201,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells6"},"44204":{"connections":[{"id":33729,"orbit":3}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Flammability Magnitude","orbit":7,"orbitIndex":0,"skill":44204,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"stringId":"elemental23"},"44213":{"connections":[{"id":869,"orbit":0}],"group":463,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield Delay","orbit":7,"orbitIndex":5,"skill":44213,"stats":["12% increased Armour","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour32_"},"44223":{"connections":[],"group":955,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":7,"orbitIndex":1,"skill":44223,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals15"},"44239":{"connections":[{"id":29479,"orbit":0}],"group":1141,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":16,"skill":44239,"stats":["15% increased Pin Buildup"],"stringId":"pin1"},"44255":{"connections":[{"id":28573,"orbit":-3}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Revive Speed","orbit":7,"orbitIndex":12,"skill":44255,"stats":["Minions Revive 5% faster"],"stringId":"minion_defence12"},"44280":{"connections":[{"id":23305,"orbit":-3}],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect and Blind Chance","orbit":2,"orbitIndex":9,"skill":44280,"stats":["8% increased Effect of your Mark Skills","5% chance to Blind Enemies on Hit with Attacks"],"stringId":"marks30"},"44293":{"connections":[],"group":690,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","isNotable":true,"name":"Hastening Barrier","orbit":2,"orbitIndex":9,"recipe":["Paranoia","Greed","Paranoia"],"skill":44293,"stats":["5% increased Cast Speed","10% increased Cast Speed when on Full Life"],"stringId":"cast_speed40"},"44298":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":46024,"orbit":0}],"group":277,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":44298,"stats":[],"stringId":"mastery_elemental93"},"44299":{"connections":[{"id":38105,"orbit":0},{"id":49455,"orbit":0},{"id":857,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Enhanced Barrier","orbit":4,"orbitIndex":0,"recipe":["Isolation","Paranoia","Isolation"],"skill":44299,"stats":["25% increased maximum Energy Shield","5% of Maximum Life Converted to Energy Shield"],"stringId":"energy_shield36"},"44309":{"connectionArt":"CharacterPlanned","connections":[{"id":44485,"orbit":2147483647}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Companion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":35,"skill":44309,"stats":["Companions deal 15% increased Damage"],"stringId":"oracle_big_family2_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44316":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":282,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":1,"orbitIndex":6,"skill":44316,"stats":[],"stringId":"mastery_life146"},"44330":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Coated Arms","orbit":3,"orbitIndex":2,"recipe":["Fear","Greed","Paranoia"],"skill":44330,"stats":["25% increased Damage with One Handed Weapons","Attacks with One-Handed Weapons have 20% increased Chance to inflict Ailments"],"stringId":"one_handed26"},"44343":{"connections":[{"id":55276,"orbit":5}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":35,"skill":44343,"stats":["+5 to any Attribute"],"stringId":"dexterity1"},"44344":{"connections":[{"id":28092,"orbit":4}],"group":624,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":44344,"stats":["+5 to any Attribute"],"stringId":"attributes63"},"44345":{"connections":[{"id":48833,"orbit":0}],"group":1045,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":44345,"stats":["10% increased Lightning Damage"],"stringId":"lightning12"},"44357":{"ascendancyName":"Invoker","connections":[{"id":63713,"orbit":-9}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":9,"orbitIndex":34,"skill":44357,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyMonk2Small8"},"44359":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":920,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":44359,"stats":[],"stringId":"mastery_energy_shield_6487"},"44369":{"connections":[{"id":30748,"orbit":0}],"group":1273,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":7,"orbitIndex":16,"skill":44369,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility4"},"44371":{"ascendancyName":"Tactician","connections":[{"id":30151,"orbit":0}],"group":401,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianGainStunThresholdArmour.dds","isNotable":true,"name":"Polish That Gear","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":44371,"stats":["Gain Deflection Rating equal to 20% of Armour","Gain 100% of Evasion Rating as extra Ailment Threshold"],"stringId":"AscendancyMercenary1Notable6"},"44372":{"connections":[{"id":11679,"orbit":0},{"id":25829,"orbit":0}],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Spell Damage and Cast Speed","orbit":2,"orbitIndex":22,"skill":44372,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"stringId":"orb1"},"44373":{"connections":[],"group":1353,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Wither Away","orbit":0,"orbitIndex":0,"recipe":["Guilt","Guilt","Isolation"],"skill":44373,"stats":["Unwithered enemies are Withered for 8 seconds when they enter your Presence","20% increased Withered Magnitude"],"stringId":"chaos38"},"44405":{"connections":[],"group":788,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":44405,"stats":["12% increased Lightning Damage"],"stringId":"lightning63"},"44406":{"connections":[],"group":435,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":0,"skill":44406,"stats":["15% increased Stun Buildup"],"stringId":"stun12_"},"44419":{"connections":[{"id":7251,"orbit":7},{"id":29788,"orbit":-7}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":7,"orbitIndex":10,"skill":44419,"stats":["8% increased amount of Life Leeched"],"stringId":"life_leech5_"},"44420":{"connections":[{"id":28021,"orbit":0}],"group":1236,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":44420,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals16"},"44423":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":25971,"orbit":0}],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":2,"orbitIndex":1,"skill":44423,"stats":[],"stringId":"mastery_attack276_"},"44430":{"connections":[{"id":7062,"orbit":0}],"group":961,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Damage","orbit":0,"orbitIndex":0,"skill":44430,"stats":["12% increased Damage with Crossbows"],"stringId":"crossbow3"},"44452":{"connectionArt":"CharacterPlanned","connections":[{"id":21809,"orbit":-6}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":48,"skill":44452,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44453":{"connections":[{"id":42760,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Threshold","orbit":2,"orbitIndex":3,"skill":44453,"stats":["15% increased Stun Threshold"],"stringId":"monkchakra27"},"44455":{"connections":[{"id":41669,"orbit":0},{"id":60515,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":44455,"stats":["12% increased Cold Damage"],"stringId":"cold13"},"44461":{"connections":[{"id":54998,"orbit":-7}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":7,"orbitIndex":21,"skill":44461,"stats":["10% increased Skill Effect Duration"],"stringId":"duration3"},"44484":{"ascendancyName":"Stormweaver","connections":[{"id":42522,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Remnant Range","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":9,"orbitIndex":136,"skill":44484,"stats":["Remnants can be collected from 25% further away"],"stringId":"AscendancySorceress1Small10"},"44485":{"connectionArt":"CharacterPlanned","connections":[{"id":7553,"orbit":-3}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Companion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":41,"skill":44485,"stats":["Companions deal 15% increased Damage"],"stringId":"oracle_big_family3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44487":{"connections":[{"id":39884,"orbit":0}],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":5,"skill":44487,"stats":["10% increased Ignite Magnitude"],"stringId":"fire64_"},"44490":{"connections":[{"id":43090,"orbit":0}],"group":1393,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage and Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":44490,"stats":["8% increased Lightning Damage","10% increased Electrocute Buildup"],"stringId":"lightning49"},"44498":{"connections":[{"id":22439,"orbit":-5},{"id":38068,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":3,"orbitIndex":20,"skill":44498,"stats":["10% increased Exposure Effect"],"stringId":"elemental34"},"44516":{"connections":[{"id":2113,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Speed","orbit":2,"orbitIndex":13,"skill":44516,"stats":["3% increased Attack Speed with Quarterstaves"],"stringId":"quarterstaff9_"},"44522":{"connections":[{"id":47831,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":22,"skill":44522,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect44"},"44527":{"connections":[{"id":44875,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/FlaskNotableFlasksLastLonger.dds","isNotable":true,"isSwitchable":true,"name":"Cautious Concoctions","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/StunAvoidNotable.dds","id":55535,"name":"Attuned with Nature","stats":["25% increased Elemental Ailment Threshold","25% increased Stun Threshold while on Full Life"]}},"orbit":2,"orbitIndex":2,"skill":44527,"stats":["15% increased Flask Effect Duration","15% increased Flask Charges gained"],"stringId":"flasks24"},"44540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":1,"orbitIndex":4,"skill":44540,"stats":[],"stringId":"mastery_trap239"},"44560":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":44560,"stats":["20% increased Cold Damage"],"stringId":"oracle_hierarchy4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"44563":{"connections":[{"id":59053,"orbit":7}],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect and Hinder Duration","orbit":0,"orbitIndex":0,"skill":44563,"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"stringId":"slowed_enemies13"},"44566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":915,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Lightning Rod","orbit":0,"orbitIndex":0,"recipe":["Suffering","Isolation","Isolation"],"skill":44566,"stats":["30% chance for Lightning Damage with Hits to be Lucky"],"stringId":"lightning_penetration28"},"44573":{"connections":[],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Disciplined Training","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Disgust","Guilt"],"skill":44573,"stats":["10% increased Skill Effect Duration","10% increased Area of Effect for Attacks","Skills lose Combo 20% slower"],"stringId":"area_attacks59"},"44605":{"connections":[{"id":59881,"orbit":-6},{"id":13081,"orbit":0}],"group":801,"icon":"Art/2DArt/SkillIcons/passives/newnewattackspeed.dds","isNotable":true,"name":"Remorseless","orbit":5,"orbitIndex":21,"skill":44605,"stats":["15% increased Projectile Damage","30% increased Stun Buildup against enemies within 2 metres","+5 to Strength and Dexterity"],"stringId":"duelist_mercenary_notable2"},"44608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":945,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":44608,"stats":[],"stringId":"mastery_critical_6413"},"44612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":0,"orbitIndex":0,"skill":44612,"stats":[],"stringId":"mastery_spell_suppression_6714"},"44628":{"connections":[{"id":20820,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":44628,"stats":["3% increased Attack Speed"],"stringId":"attack_speed26"},"44659":{"connections":[],"group":612,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":27,"skill":44659,"stats":["+5 to any Attribute"],"stringId":"strength23"},"44669":{"connections":[],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Increased Duration","orbit":3,"orbitIndex":9,"skill":44669,"stats":["10% increased Skill Effect Duration"],"stringId":"duration12"},"44683":{"classesStart":["Shadow","Monk"],"connections":[{"id":5162,"orbit":0},{"id":45406,"orbit":0},{"id":50198,"orbit":0},{"id":11495,"orbit":0},{"id":9994,"orbit":0},{"id":74,"orbit":0},{"id":52980,"orbit":0}],"group":911,"icon":"Art/2DArt/SkillIcons/passives/tempint.dds","name":"SIX","orbit":0,"orbitIndex":0,"skill":44683,"stats":[],"stringId":"six704"},"44684":{"connections":[{"id":5191,"orbit":0}],"group":1227,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Companion Attack Speed","orbit":0,"orbitIndex":0,"skill":44684,"stats":["Companions have 10% increased Attack Speed"],"stringId":"companions69"},"44690":{"connections":[{"id":14127,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":2,"orbitIndex":5,"skill":44690,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration9_"},"44699":{"connections":[{"id":16150,"orbit":0}],"group":1544,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":44699,"stats":["8% increased Reservation Efficiency of Companion Skills"],"stringId":"companions15"},"44707":{"connections":[{"id":54785,"orbit":0},{"id":7628,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":0,"orbitIndex":0,"skill":44707,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield1"},"44733":{"connections":[{"id":10742,"orbit":0},{"id":29432,"orbit":-9},{"id":1433,"orbit":0},{"id":49363,"orbit":0}],"group":577,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":12,"skill":44733,"stats":["+5 to any Attribute"],"stringId":"intelligence2"},"44746":{"ascendancyName":"Tactician","connections":[{"id":4245,"orbit":0}],"group":361,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianProjectileBuildsPin.dds","isNotable":true,"name":"Suppressing Fire","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":44746,"stats":["40% more Immobilisation buildup"],"stringId":"AscendancyMercenary1Notable4_"},"44753":{"connections":[{"id":63608,"orbit":0}],"group":110,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"One With Flame","orbit":0,"orbitIndex":0,"recipe":["Greed","Greed","Isolation"],"skill":44753,"stats":["50% reduced Magnitude of Ignite on you"],"stringId":"ignite_mitigation6"},"44756":{"connections":[{"id":44841,"orbit":5}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Marked Agility","orbit":3,"orbitIndex":15,"recipe":["Despair","Disgust","Suffering"],"skill":44756,"stats":["60% increased Mana Cost Efficiency of Marks","4% increased Movement Speed if you've used a Mark Recently"],"stringId":"marks17"},"44765":{"connections":[{"id":32233,"orbit":0}],"group":864,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","isNotable":true,"name":"Distracting Presence","orbit":3,"orbitIndex":21,"recipe":["Envy","Guilt","Suffering"],"skill":44765,"stats":["10% increased Cooldown Recovery Rate","Enemies in your Presence have 10% reduced Cooldown Recovery Rate"],"stringId":"cooldowns13"},"44776":{"connections":[{"id":48773,"orbit":0},{"id":1841,"orbit":5}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":5,"orbitIndex":18,"skill":44776,"stats":["15% increased Evasion Rating"],"stringId":"evasion24_"},"44783":{"connections":[{"id":22949,"orbit":0}],"group":417,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":44783,"stats":["10% increased Spell Area Damage"],"stringId":"area_spells1"},"44787":{"connections":[{"id":14654,"orbit":0},{"id":49192,"orbit":0},{"id":51683,"orbit":-4}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":14,"skill":44787,"stats":["20% increased Totem Placement speed"],"stringId":"totems24"},"44836":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[{"id":47150,"orbit":0}],"group":827,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Feel no Pain","orbit":2,"orbitIndex":12,"skill":44836,"stats":["20% increased Armour and Evasion Rating","20% increased Stun Threshold"],"stringId":"armour_and_evasion28"},"44841":{"connections":[{"id":36927,"orbit":0},{"id":28258,"orbit":2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Duration","orbit":2,"orbitIndex":19,"skill":44841,"stats":["Mark Skills have 25% increased Skill Effect Duration"],"stringId":"marks13"},"44850":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[{"id":59438,"orbit":2147483647},{"id":32128,"orbit":-3}],"group":658,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":0,"orbitIndex":0,"skill":44850,"stats":[],"stringId":"mastery_recovery_6673"},"44871":{"connections":[{"id":54447,"orbit":0},{"id":56216,"orbit":0}],"group":808,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":3,"orbitIndex":2,"skill":44871,"stats":["+10 to maximum Energy Shield"],"stringId":"energy_shield15"},"44872":{"connections":[{"id":11248,"orbit":0},{"id":22949,"orbit":0},{"id":4970,"orbit":0},{"id":3363,"orbit":0}],"group":375,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":44872,"stats":["+5 to any Attribute"],"stringId":"attributes79"},"44875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":44875,"stats":[],"stringId":"mastery_evasion_6508"},"44891":{"connections":[{"id":52537,"orbit":2147483647},{"id":15775,"orbit":0}],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":7,"skill":44891,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration2"},"44902":{"connections":[{"id":511,"orbit":3}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":7,"orbitIndex":2,"skill":44902,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells5_"},"44917":{"connections":[{"id":34984,"orbit":0}],"group":1028,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Self Mortification","orbit":7,"orbitIndex":0,"recipe":["Ire","Envy","Envy"],"skill":44917,"stats":["Gain additional Stun Threshold equal to 20% of maximum Energy Shield","20% increased Stun Threshold while on Full Life"],"stringId":"stun_threshold_from_energy_shield11"},"44932":{"connections":[{"id":54984,"orbit":0}],"group":1374,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":3,"orbitIndex":4,"skill":44932,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock3"},"44948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":705,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":44948,"stats":[],"stringId":"mastery_mana160"},"44951":{"connections":[{"id":5777,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isSwitchable":true,"name":"Minion Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":48248,"name":"Armour and Energy Shield","stats":["12% increased Armour","12% increased maximum Energy Shield"]}},"orbit":4,"orbitIndex":9,"skill":44951,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence4"},"44952":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":9163,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Made to Last","orbit":3,"orbitIndex":11,"recipe":["Suffering","Fear","Guilt"],"skill":44952,"stats":["30% increased Armour","5% of Physical Damage prevented Recouped as Life"],"stringId":"armour34"},"44974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","isNotable":true,"name":"Hail","orbit":0,"orbitIndex":0,"recipe":["Disgust","Fear","Greed"],"skill":44974,"stats":["Empowered Attacks Gain 16% of Damage as Extra Cold Damage"],"stringId":"cold51"},"44983":{"connections":[{"id":3685,"orbit":0}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":22,"skill":44983,"stats":["+3 to all Attributes"],"stringId":"all_attributes5"},"45012":{"connections":[{"id":8246,"orbit":0},{"id":64462,"orbit":0},{"id":41017,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":3,"orbitIndex":12,"skill":45012,"stats":["10% increased Attack Damage"],"stringId":"attack18"},"45013":{"connections":[{"id":58884,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Finishing Blows","orbit":7,"orbitIndex":4,"recipe":["Despair","Guilt","Ire"],"skill":45013,"stats":["60% increased Damage with Hits against Enemies that are on Low Life","30% increased Stun Buildup against Enemies that are on Low Life"],"stringId":"enemies_on_low_life9_"},"45019":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":995,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":45019,"stats":[],"stringId":"mastery_mana167"},"45037":{"connections":[{"id":9736,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":17,"skill":45037,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion6"},"45075":{"connections":[{"id":43507,"orbit":0},{"id":27439,"orbit":0}],"group":316,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":7,"orbitIndex":8,"skill":45075,"stats":["5% increased Attack Damage","6% increased Accuracy Rating"],"stringId":"accuracy42"},"45086":{"connections":[{"id":34520,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical as Extra Chaos Damage","orbit":2,"orbitIndex":21,"skill":45086,"stats":["Gain 3% of Physical Damage as extra Chaos Damage"],"stringId":"physical12"},"45090":{"connections":[{"id":36027,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Attack Damage","orbit":7,"orbitIndex":19,"skill":45090,"stats":["12% increased Attack Damage"],"stringId":"slow_attacks5"},"45100":{"connections":[{"id":56928,"orbit":-3}],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Flask Duration","orbit":4,"orbitIndex":37,"skill":45100,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"stringId":"attack_speed15"},"45111":{"connections":[{"id":14446,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Duration","orbit":7,"orbitIndex":2,"skill":45111,"stats":["20% increased Curse Duration"],"stringId":"curses13"},"45137":{"connections":[{"id":44487,"orbit":0}],"group":1044,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":8,"skill":45137,"stats":["10% increased Ignite Magnitude"],"stringId":"fire65"},"45162":{"connections":[{"id":24801,"orbit":7},{"id":63031,"orbit":-2}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Presence Area","orbit":7,"orbitIndex":18,"skill":45162,"stats":["20% increased Presence Area of Effect"],"stringId":"glory14"},"45177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":619,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Strike True","orbit":2,"orbitIndex":4,"recipe":["Paranoia","Envy","Envy"],"skill":45177,"stats":["20% increased Accuracy Rating","+10 to Dexterity"],"stringId":"accuracy48"},"45193":{"connections":[{"id":4083,"orbit":0}],"group":1165,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":2,"orbitIndex":17,"skill":45193,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison13"},"45202":{"connections":[{"id":59093,"orbit":0}],"flavourText":"A wooden construct, mute and blind.\\nBut fear the wrath of shackled mind.","group":269,"icon":"Art/2DArt/SkillIcons/passives/totemmax.dds","isKeystone":true,"name":"Ancestral Bond","orbit":0,"orbitIndex":0,"skill":45202,"stats":["Your Totem Limit is doubled","No Charge requirement for placing Totems","Totems reserve 75 Spirit each"],"stringId":"passive_keystone_ancestral_bond"},"45215":{"connections":[{"id":53187,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Attack Damage with Ally","orbit":2,"orbitIndex":2,"skill":45215,"stats":["Allies in your Presence deal 8% increased Damage","8% increased Attack Damage while you have an Ally in your Presence"],"stringId":"auras25"},"45226":{"connectionArt":"CharacterPlanned","connections":[{"id":21218,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":24,"skill":45226,"stats":["16% increased Damage with Bows"],"stringId":"oracle_bow_movement3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45227":{"connections":[{"id":42111,"orbit":0}],"group":208,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":1,"skill":45227,"stats":["Break 20% increased Armour"],"stringId":"armour_break7"},"45228":{"ascendancyName":"Spirit Walker","connections":[{"id":39887,"orbit":4}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Companion Life and Area","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":8,"orbitIndex":14,"skill":45228,"stats":["Companions have 10% increased Area of Effect","Companions have 15% increased maximum Life"],"stringId":"AscendancyHuntress2Small7"},"45230":{"connections":[{"id":28229,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Area","orbit":2,"orbitIndex":4,"skill":45230,"stats":["10% increased Area of Effect of Curses"],"stringId":"curses9"},"45244":{"connections":[{"id":23343,"orbit":0},{"id":41016,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Refills","orbit":2,"orbitIndex":16,"recipe":["Greed","Ire","Isolation"],"skill":45244,"stats":["Life Flasks gain 0.15 charges per Second"],"stringId":"life_flasks3"},"45248":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":14429,"orbit":2147483647}],"group":433,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":45248,"stats":["+2% to Quality of all Skills"],"stringId":"AscendancyMercenary3Small4"},"45272":{"connections":[{"id":42280,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":0,"skill":45272,"stats":["+3 to all Attributes"],"stringId":"all_attributes2"},"45278":{"connections":[{"id":38138,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"Reduced Attribute Requirements","orbit":7,"orbitIndex":14,"skill":45278,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"all_attributes9"},"45301":{"connections":[{"id":31724,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":2,"orbitIndex":18,"skill":45301,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"energy_shield_and_armour28__"},"45304":{"connections":[{"id":6078,"orbit":-4}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":3,"orbitIndex":18,"skill":45304,"stats":["10% increased Poison Duration"],"stringId":"poison24_"},"45319":{"connections":[{"id":55041,"orbit":0},{"id":26135,"orbit":0},{"id":3251,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage","orbit":3,"orbitIndex":16,"skill":45319,"stats":["8% increased Spell Damage"],"stringId":"projectile_spells1"},"45327":{"connections":[{"id":10251,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":3,"orbitIndex":16,"skill":45327,"stats":["15% increased Stun Buildup"],"stringId":"stun25_"},"45329":{"connections":[{"id":2128,"orbit":0},{"id":40626,"orbit":0}],"group":1277,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Delayed Danger","orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Disgust"],"skill":45329,"stats":["30% increased Hazard Duration","40% increased Hazard Damage"],"stringId":"hazards16"},"45331":{"connections":[{"id":23221,"orbit":7},{"id":60323,"orbit":9}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Chaining Projectiles","orbit":7,"orbitIndex":21,"skill":45331,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"stringId":"ranged8"},"45333":{"connections":[{"id":59781,"orbit":-2}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Archon Effect","orbit":2,"orbitIndex":6,"skill":45333,"stats":["15% increased effect of Archon Buffs on you"],"stringId":"archon24"},"45343":{"connections":[{"id":50483,"orbit":0},{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":7,"orbitIndex":19,"skill":45343,"stats":["Minions have 8% increased Area of Effect"],"stringId":"minion_offence22"},"45350":{"connections":[{"id":3438,"orbit":0}],"group":954,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Invocation Spell Damage","orbit":7,"orbitIndex":6,"skill":45350,"stats":["Invocated Spells deal 15% increased Damage"],"stringId":"triggers15"},"45354":{"connections":[{"id":64948,"orbit":0},{"id":21568,"orbit":0}],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":18,"skill":45354,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras26"},"45363":{"connections":[{"id":31292,"orbit":0},{"id":58528,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNotable.dds","isNotable":true,"name":"Smash","orbit":3,"orbitIndex":23,"skill":45363,"stats":["20% increased Melee Damage","40% increased Melee Damage against Heavy Stunned enemies"],"stringId":"melee55"},"45370":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1287,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildOxNotable.dds","isNotable":true,"name":"The Raging Ox","orbit":2,"orbitIndex":16,"recipe":["Suffering","Ire","Disgust"],"skill":45370,"stats":["Hits against you have 30% reduced Critical Damage Bonus","15% reduced Duration of Ailments on You","+10 to Strength"],"stringId":"azmerianimals36"},"45377":{"connections":[{"id":14310,"orbit":-7}],"group":1263,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":45377,"stats":["12% increased Cold Damage"],"stringId":"cold65"},"45382":{"connections":[{"id":53265,"orbit":0}],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Ailment Chance and Elemental Damage","orbit":3,"orbitIndex":3,"skill":45382,"stats":["10% increased Elemental Damage","6% increased chance to inflict Ailments"],"stringId":"ailments46"},"45383":{"connections":[{"id":23930,"orbit":0},{"id":30662,"orbit":0}],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":4,"orbitIndex":36,"skill":45383,"stats":["12% increased Lightning Damage"],"stringId":"lightning3"},"45390":{"connections":[{"id":13624,"orbit":0},{"id":28258,"orbit":2}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Use Speed","orbit":2,"orbitIndex":7,"skill":45390,"stats":["Mark Skills have 10% increased Use Speed"],"stringId":"marks14"},"45400":{"connectionArt":"CharacterPlanned","connections":[{"id":59908,"orbit":2147483647},{"id":13691,"orbit":0}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Mighty Trunk","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":45400,"stats":["Totems gain +3% to all Maximum Elemental Resistances","20% increased Area of Effect for Skills used by Totems"],"stringId":"oracle_totems8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45422":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connectionArt":"CharacterPlanned","connections":[],"group":448,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Anger Management","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":2,"skill":45422,"stats":["+15 to Maximum Rage","200% faster start of inherent Rage loss"],"stringId":"oracle_rage3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"45481":{"connections":[{"id":52765,"orbit":0}],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":16,"skill":45481,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration10"},"45488":{"connections":[{"id":4377,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","isNotable":true,"name":"Cross Strike","orbit":3,"orbitIndex":15,"recipe":["Guilt","Greed","Envy"],"skill":45488,"stats":["20% increased Accuracy Rating while Dual Wielding","3% increased Movement Speed while Dual Wielding"],"stringId":"dual_wielding4"},"45494":{"connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Immobilisation Buildup","orbit":3,"orbitIndex":9,"skill":45494,"stats":["20% increased Ballista Immobilisation buildup"],"stringId":"ballista3"},"45497":{"connections":[{"id":13333,"orbit":-7},{"id":17057,"orbit":0},{"id":61170,"orbit":7}],"group":729,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":45497,"stats":["10% increased Elemental Damage"],"stringId":"ground16"},"45503":{"connections":[{"id":37746,"orbit":4}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":0,"skill":45503,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite15"},"45522":{"connections":[{"id":22314,"orbit":5}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","isSwitchable":true,"name":"Infused Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","id":40885,"name":"Chaos Damage","stats":["10% increased Chaos Damage"]}},"orbit":3,"orbitIndex":6,"skill":45522,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"lightning6"},"45530":{"connections":[{"id":55180,"orbit":-7}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Stun Buildup","orbit":7,"orbitIndex":18,"skill":45530,"stats":["Minions cause 15% increased Stun Buildup"],"stringId":"minion_offence24_"},"45569":{"connections":[{"id":55596,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":22,"skill":45569,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"criticals34"},"45570":{"connections":[{"id":43713,"orbit":0},{"id":29009,"orbit":0}],"group":856,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Area","orbit":7,"orbitIndex":18,"skill":45570,"stats":["Offering Skills have 20% increased Area of Effect"],"stringId":"corpses13"},"45576":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":866,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":7,"orbitIndex":3,"skill":45576,"stats":[],"stringId":"mastery_projectile_6647"},"45585":{"connections":[{"id":55617,"orbit":0},{"id":37258,"orbit":5}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour and Evasion while Surrounded","orbit":3,"orbitIndex":23,"skill":45585,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded17_"},"45586":{"connections":[{"id":14761,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Ally Attack Damage","orbit":2,"orbitIndex":10,"skill":45586,"stats":["Allies in your Presence deal 16% increased Damage"],"stringId":"auras21"},"45599":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":6689,"orbit":0},{"id":32885,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Lay Siege","orbit":7,"orbitIndex":12,"recipe":["Fear","Envy","Fear"],"skill":45599,"stats":["1% increased Damage per 1% Chance to Block"],"stringId":"shield5"},"45602":{"ascendancyName":"Disciple of Varashta","connections":[{"id":32705,"orbit":-9}],"flavourText":"\"Kelari, you deceiver! I fell for your words, but no longer. Your sentence is a fate too good for you! I would give anything to bring back those who fell to your lies. Instead... I mourn my choices.\" \\n\\nNavira lambasted Kelari a final time.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/WaterDjinnCommandOasis.dds","isNotable":true,"name":"Navira's Oasis","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":7,"orbitIndex":7,"skill":45602,"stats":["Grants Skill: Navira's Oasis"],"stringId":"AscendancySorceress3Notable12_"},"45609":{"connections":[],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":20,"skill":45609,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals48"},"45612":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":53901,"orbit":0}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Defensive Reflexes","orbit":2,"orbitIndex":12,"recipe":["Greed","Ire","Ire"],"skill":45612,"stats":["12% increased Block chance","5 Mana gained when you Block"],"stringId":"shield28_"},"45631":{"connections":[{"id":3630,"orbit":-5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield Delay","orbit":7,"orbitIndex":14,"skill":45631,"stats":["12% increased Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield6_"},"45632":{"connections":[{"id":24551,"orbit":0}],"group":299,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Mind Eraser","orbit":7,"orbitIndex":19,"recipe":["Fear","Ire","Paranoia"],"skill":45632,"stats":["20% increased Mana Regeneration Rate","15% increased Mana Cost Efficiency"],"stringId":"mana16"},"45650":{"connections":[{"id":9572,"orbit":0},{"id":36997,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage if Projectile Hit","orbit":3,"orbitIndex":14,"skill":45650,"stats":["15% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds"],"stringId":"ranged19_"},"45693":{"connections":[{"id":64851,"orbit":0}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Shield Defences","orbit":0,"orbitIndex":0,"skill":45693,"stats":["25% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"deflect1_"},"45702":{"connections":[{"id":61333,"orbit":-3},{"id":31692,"orbit":3}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":19,"skill":45702,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals86"},"45709":{"connections":[{"id":52803,"orbit":0}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charges","orbit":7,"orbitIndex":21,"skill":45709,"stats":["15% increased Life Flask Charges gained"],"stringId":"life_flasks10"},"45712":{"connections":[{"id":65009,"orbit":0}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Flammability Magnitude","orbit":5,"orbitIndex":60,"skill":45712,"stats":["20% increased Flammability Magnitude","8% increased Elemental Damage"],"stringId":"elemental29"},"45713":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isNotable":true,"name":"Savouring","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Isolation"],"skill":45713,"stats":["20% increased Flask Effect Duration","20% chance for Flasks you use to not consume Charges"],"stringId":"flasks18"},"45736":{"connections":[{"id":15825,"orbit":-3}],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":12,"skill":45736,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour50"},"45751":{"connections":[],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Frightening Shield","orbit":2,"orbitIndex":0,"recipe":["Disgust","Disgust","Suffering"],"skill":45751,"stats":["Apply Debilitate to Enemies 30 Metres in front of you while your Shield is raised"],"stringId":"shield37"},"45774":{"connections":[{"id":54975,"orbit":3}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect","orbit":4,"orbitIndex":71,"skill":45774,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"stringId":"slowed_enemies5"},"45777":{"connections":[{"id":47212,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Hidden Barb","orbit":2,"orbitIndex":16,"recipe":["Envy","Paranoia","Isolation"],"skill":45777,"stats":["20% increased chance to inflict Ailments","20% increased Physical Damage"],"stringId":"projectiles50"},"45798":{"connections":[{"id":62578,"orbit":-7},{"id":46615,"orbit":7}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":3,"orbitIndex":13,"skill":45798,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility10"},"45808":{"connections":[{"id":35623,"orbit":0}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":7,"orbitIndex":6,"skill":45808,"stats":["+4% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 6% of Evasion Rating"],"stringId":"armour_and_evasion47"},"45824":{"connections":[{"id":61441,"orbit":0},{"id":8493,"orbit":0}],"group":629,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Damage","orbit":0,"orbitIndex":0,"skill":45824,"stats":["10% increased Damage with Swords"],"stringId":"sword1"},"45874":{"connections":[],"group":334,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Proliferating Weeds","orbit":5,"orbitIndex":48,"recipe":["Suffering","Ire","Paranoia"],"skill":45874,"stats":["Fissure Skills have +1 to Limit"],"stringId":"physical70_"},"45885":{"connections":[{"id":54521,"orbit":0},{"id":59362,"orbit":0},{"id":45497,"orbit":4},{"id":13359,"orbit":9}],"group":756,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":45885,"stats":["+5 to any Attribute"],"stringId":"intelligence54"},"45899":{"connections":[{"id":968,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage and Area","orbit":3,"orbitIndex":5,"skill":45899,"stats":["6% increased Fire Damage","5% increased Area of Effect"],"stringId":"fire9"},"45916":{"connections":[{"id":27501,"orbit":-4},{"id":19330,"orbit":4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":5,"orbitIndex":48,"skill":45916,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration37"},"45918":{"connections":[],"flavourText":"While the mind endures, so too will the body.","group":453,"icon":"Art/2DArt/SkillIcons/passives/heroicspirit.dds","isKeystone":true,"name":"Mind Over Matter","orbit":0,"orbitIndex":0,"skill":45918,"stats":["All Damage is taken from Mana before Life","50% less Mana Recovery Rate"],"stringId":"passive_keystone_mind_over_matter"},"45923":{"connections":[{"id":50084,"orbit":0},{"id":52319,"orbit":0}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":31,"skill":45923,"stats":["+5 to any Attribute"],"stringId":"strength4"},"45962":{"connections":[{"id":7183,"orbit":-6},{"id":15617,"orbit":0}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":3,"orbitIndex":23,"skill":45962,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks20"},"45969":{"connections":[{"id":28693,"orbit":-7},{"id":24880,"orbit":0}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":45969,"stats":["+5 to any Attribute"],"stringId":"strength31"},"45990":{"connections":[{"id":39448,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Attack Speed","orbit":3,"orbitIndex":23,"skill":45990,"stats":["4% increased Attack Speed with Axes"],"stringId":"axe8"},"45992":{"connections":[{"id":41657,"orbit":0}],"group":497,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":12,"skill":45992,"stats":["15% increased Armour"],"stringId":"armour22"},"46016":{"ascendancyName":"Infernalist","connections":[{"id":24039,"orbit":7}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Life","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":6,"orbitIndex":54,"skill":46016,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch1Small2"},"46017":{"connections":[{"id":54962,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration while Stationary","orbit":7,"orbitIndex":0,"skill":46017,"stats":["15% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration9"},"46023":{"connections":[],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":3,"skill":46023,"stats":["15% increased Armour"],"stringId":"armour8"},"46024":{"connections":[],"group":285,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Sigil of Lightning","orbit":4,"orbitIndex":44,"recipe":["Paranoia","Suffering","Paranoia"],"skill":46024,"stats":["30% increased Damage with Hits against Shocked Enemies"],"stringId":"lightning31"},"46034":{"connections":[{"id":41029,"orbit":0},{"id":10552,"orbit":0}],"group":1070,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":46034,"stats":["+5 to any Attribute"],"stringId":"attributes69"},"46051":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":94,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":46051,"stats":[],"stringId":"mastery_thorns309"},"46060":{"connections":[{"id":29270,"orbit":-2},{"id":7488,"orbit":0}],"group":596,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Voracious","orbit":7,"orbitIndex":0,"recipe":["Greed","Isolation","Suffering"],"skill":46060,"stats":["15% increased Attack Speed while Leeching"],"stringId":"life_leech14"},"46069":{"connectionArt":"CharacterPlanned","connections":[{"id":6088,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":46069,"stats":["12% increased Magnitude of Poison you inflict"],"stringId":"oracle_poison4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"46070":{"ascendancyName":"Spirit Walker","connections":[{"id":62424,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerOwlFeathers.dds","isNotable":true,"name":"Primal Bounty","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":5,"orbitIndex":38,"skill":46070,"stats":["Gain a Primal Owl Feather every 4 seconds, up to a maximum of 3","Expend an Owl Feather when you Dodge to trigger Primal Bounty","Grants Skill: Primal Bounty"],"stringId":"AscendancyHuntress2Notable5"},"46071":{"ascendancyName":"Amazon","connections":[{"id":9294,"orbit":0}],"group":1595,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Accuracy","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":46071,"stats":["12% increased Accuracy Rating"],"stringId":"AscendancyHuntress1Small1"},"46088":{"connections":[{"id":13823,"orbit":0}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":3,"orbitIndex":9,"skill":46088,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals16"},"46091":{"ascendancyName":"Disciple of Varashta","connections":[{"id":30265,"orbit":-9},{"id":64223,"orbit":6}],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/MoreEnergyShieldRechargeRate.dds","isNotable":true,"name":"The Fourth Teaching","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":5,"orbitIndex":56,"skill":46091,"stats":["-1 second to base Energy Shield Recharge delay","40% more Energy Shield Recharge Rate while on Low Energy Shield"],"stringId":"AscendancySorceress3Notable2"},"46124":{"connections":[{"id":37593,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Arcane Remnants","orbit":7,"orbitIndex":10,"recipe":["Despair","Guilt","Envy"],"skill":46124,"stats":["Recover 3% of Maximum Mana when you collect a Remnant"],"stringId":"remnant10"},"46146":{"connections":[{"id":43691,"orbit":0}],"group":1128,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":4,"skill":46146,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech10"},"46152":{"connections":[{"id":40110,"orbit":4}],"group":1518,"icon":"Art/2DArt/SkillIcons/passives/MonkAccuracyChakra.dds","name":"Blind Effect","orbit":1,"orbitIndex":6,"skill":46152,"stats":["10% increased Blind Effect"],"stringId":"monkchakra10"},"46157":{"connections":[{"id":37806,"orbit":0}],"group":1047,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Skill Chain Chance","orbit":0,"orbitIndex":0,"skill":46157,"stats":["20% chance for Lightning Skills to Chain an additional time"],"stringId":"shock2"},"46171":{"connections":[{"id":61421,"orbit":7}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Critical Chance","orbit":7,"orbitIndex":13,"skill":46171,"stats":["10% increased Critical Hit Chance"],"stringId":"monkelemental4"},"46182":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":42460,"orbit":4}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Intense Dose","orbit":0,"orbitIndex":0,"recipe":["Fear","Fear","Disgust"],"skill":46182,"stats":["20% increased chance to inflict Ailments","15% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments43"},"46197":{"connections":[{"id":39237,"orbit":0}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Careful Assassin","orbit":2,"orbitIndex":7,"recipe":["Suffering","Envy","Greed"],"skill":46197,"stats":["20% reduced Critical Damage Bonus","50% increased Critical Hit Chance"],"stringId":"criticals84"},"46205":{"connections":[{"id":2174,"orbit":7},{"id":33209,"orbit":-7},{"id":51683,"orbit":-7}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":0,"skill":46205,"stats":["15% increased Totem Damage"],"stringId":"totems2"},"46224":{"connections":[{"id":24045,"orbit":0},{"id":45019,"orbit":0}],"group":995,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Arcane Alchemy","orbit":2,"orbitIndex":2,"recipe":["Envy","Greed","Greed"],"skill":46224,"stats":["Mana Flasks gain 0.1 charges per Second","+10 to Intelligence"],"stringId":"mana_flasks12"},"46268":{"connections":[{"id":5324,"orbit":-5},{"id":2397,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage while no remaining Life Flasks","orbit":7,"orbitIndex":8,"skill":46268,"stats":["20% increased Attack Damage while you have no Life Flask uses left"],"stringId":"attack40"},"46275":{"connections":[{"id":3894,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":35,"skill":46275,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield15"},"46296":{"connections":[],"group":959,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Short Shot","orbit":1,"orbitIndex":4,"recipe":["Suffering","Guilt","Envy"],"skill":46296,"stats":["10% reduced Projectile Speed","20% increased Projectile Damage"],"stringId":"ranged37"},"46300":{"connections":[{"id":63021,"orbit":0},{"id":52774,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":14,"skill":46300,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite1"},"46318":{"connections":[{"id":32964,"orbit":3}],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":7,"skill":46318,"stats":["+6% of Armour also applies to Elemental Damage","3% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour38"},"46325":{"connections":[{"id":3936,"orbit":0},{"id":33556,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":5,"skill":46325,"stats":["10% increased Melee Damage"],"stringId":"melee18"},"46343":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[{"id":13708,"orbit":0},{"id":25513,"orbit":0},{"id":47363,"orbit":0}],"group":763,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":46343,"stats":[],"stringId":"mastery_two_hand_6774"},"46358":{"connections":[{"id":50423,"orbit":0},{"id":59376,"orbit":0},{"id":59442,"orbit":-5}],"group":673,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":66,"skill":46358,"stats":["+5 to any Attribute"],"stringId":"intelligence37"},"46365":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","isNotable":true,"name":"Gigantic Following","orbit":0,"orbitIndex":0,"recipe":["Envy","Guilt","Isolation"],"skill":46365,"stats":["Your Minions are Gigantic","25% reduced Reservation Efficiency of Minion Skills"],"stringId":"minion_reservation16"},"46380":{"connections":[{"id":21327,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Energy Shield if Consumed Power Charge","orbit":2,"orbitIndex":22,"skill":46380,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_charges10"},"46384":{"connections":[{"id":18746,"orbit":-5},{"id":58138,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Wide Barrier","orbit":4,"orbitIndex":24,"recipe":["Envy","Isolation","Isolation"],"skill":46384,"stats":["20% reduced Armour","30% increased Block chance"],"stringId":"shield10"},"46386":{"connections":[{"id":39986,"orbit":0}],"group":1535,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":46386,"stats":["Companions deal 12% increased Damage"],"stringId":"companions11"},"46399":{"connections":[{"id":589,"orbit":0},{"id":50820,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Rage on Melee Hit","orbit":7,"orbitIndex":11,"skill":46399,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"glory24_"},"46402":{"connections":[{"id":18923,"orbit":0},{"id":37220,"orbit":0},{"id":50342,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":13,"skill":46402,"stats":["15% increased Evasion Rating"],"stringId":"evasion8"},"46421":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":329,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":46421,"stats":[],"stringId":"mastery_aura_6309"},"46431":{"connections":[{"id":11015,"orbit":0},{"id":38463,"orbit":0}],"group":1304,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":0,"orbitIndex":0,"skill":46431,"stats":["16% increased Hazard Damage"],"stringId":"hazards14"},"46454":{"ascendancyName":"Pathfinder","connections":[],"group":1576,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderAdditionalPoints.dds","isNotable":true,"name":"Traveller's Wisdom","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":46454,"stats":["Attribute Passive Skills can instead grant 5% increased Damage","Attribute Passive Skills can instead grant 5% increased Armour, Evasion and Energy Shield","Attribute Passive Skills can instead grant 5% increased Cost Efficiency"],"stringId":"AscendancyRanger3Notable9"},"46475":{"connections":[{"id":18186,"orbit":5},{"id":51299,"orbit":0},{"id":16385,"orbit":0}],"group":708,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":4,"orbitIndex":63,"skill":46475,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion20_"},"46499":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Guts","orbit":0,"orbitIndex":0,"recipe":["Suffering","Ire","Ire"],"skill":46499,"stats":["Recover 3% of maximum Life for each Endurance Charge consumed","+1 to Maximum Endurance Charges"],"stringId":"endurance_charges8"},"46522":{"ascendancyName":"Tactician","connections":[{"id":44746,"orbit":0}],"group":369,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Pin Buildup","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":46522,"stats":["20% increased Pin Buildup"],"stringId":"AscendancyMercenary1Small5_"},"46533":{"connections":[{"id":28329,"orbit":3}],"group":1325,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","name":"Stun and Freeze Buildup","orbit":2,"orbitIndex":18,"skill":46533,"stats":["15% increased Stun Buildup","15% increased Freeze Buildup"],"stringId":"poise5"},"46535":{"ascendancyName":"Witchhunter","connections":[],"group":290,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterDamageMonsterMissingFocus.dds","isNotable":true,"name":"No Mercy","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":46535,"stats":["Deal up to 40% more Damage to Enemies based on their missing Concentration"],"stringId":"AscendancyMercenary2Notable4"},"46554":{"connections":[{"id":62677,"orbit":0},{"id":36379,"orbit":0},{"id":10131,"orbit":0},{"id":42999,"orbit":-3}],"group":972,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":46554,"stats":["+5 to any Attribute"],"stringId":"intelligence59"},"46561":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryRecoveryPattern","connections":[],"group":982,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Recovery Mastery","orbit":2,"orbitIndex":6,"skill":46561,"stats":[],"stringId":"mastery_recovery_6676_"},"46565":{"connections":[{"id":15855,"orbit":0}],"group":555,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Stance Breaker","orbit":0,"orbitIndex":0,"skill":46565,"stats":["25% increased Damage with Swords"],"stringId":"sword18"},"46601":{"connections":[{"id":18568,"orbit":0},{"id":43720,"orbit":0}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":18,"skill":46601,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech4"},"46604":{"connections":[{"id":2138,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":17,"skill":46604,"stats":["7% increased Chaos Damage"],"stringId":"chaos17"},"46615":{"connections":[{"id":53177,"orbit":7}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility when Stunned","orbit":7,"orbitIndex":10,"skill":46615,"stats":["50% chance to gain Volatility when you are Stunned"],"stringId":"volatility8"},"46628":{"connections":[{"id":40894,"orbit":0},{"id":44872,"orbit":0},{"id":50184,"orbit":0},{"id":25337,"orbit":0},{"id":20848,"orbit":-8}],"group":459,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":67,"skill":46628,"stats":["+5 to any Attribute"],"stringId":"intelligence76"},"46644":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistConvertLifeToSpirit.dds","isNotable":true,"name":"Beidat's Will","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":8,"orbitIndex":48,"skill":46644,"stats":["Reserves 25% of Life","+1 to Maximum Spirit per 25 Maximum Life"],"stringId":"AscendancyWitch1Notable3"},"46654":{"ascendancyName":"Shaman","connections":[{"id":61983,"orbit":2147483647}],"group":71,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Resistances","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":46654,"stats":["+3% to all Elemental Resistances"],"stringId":"AscendancyDruid2Small5"},"46665":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":263,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46665,"stats":[],"stringId":"mastery_life145"},"46674":{"connections":[{"id":35921,"orbit":0},{"id":64807,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":16,"skill":46674,"stats":["6% increased Area of Effect for Attacks"],"stringId":"slam_area2"},"46683":{"connections":[{"id":30553,"orbit":0}],"group":151,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Inherited Strength ","orbit":3,"orbitIndex":4,"recipe":["Envy","Suffering","Despair"],"skill":46683,"stats":["Warcries have 15% chance to Empower 3 additional Attacks"],"stringId":"warcries49"},"46688":{"connections":[{"id":4238,"orbit":-2}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":1,"skill":46688,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed7"},"46692":{"connections":[{"id":9393,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isNotable":true,"name":"Efficient Alchemy","orbit":7,"orbitIndex":16,"recipe":["Fear","Ire","Guilt"],"skill":46692,"stats":["20% increased Flask and Charm Charges gained","40% increased Life and Mana Recovery from Flasks while you have an active Charm"],"stringId":"flasks9"},"46696":{"connections":[{"id":8629,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","isNotable":true,"name":"Impair","orbit":4,"orbitIndex":68,"recipe":["Envy","Suffering","Disgust"],"skill":46696,"stats":["25% increased Damage with One Handed Weapons","Attacks have 10% chance to Maim on Hit"],"stringId":"one_handed20"},"46705":{"connections":[{"id":12822,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage if Melee Hit","orbit":2,"orbitIndex":6,"skill":46705,"stats":["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"stringId":"ranged18"},"46741":{"connections":[],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":22,"skill":46741,"stats":["15% increased Stun Buildup"],"stringId":"stun3__"},"46742":{"connections":[],"flavourText":"Balance is good in all things, but especially in the realm of magic.","group":524,"icon":"Art/2DArt/SkillIcons/passives/KeystoneElementalEquilibrium.dds","isKeystone":true,"name":"Elemental Equilibrium","orbit":0,"orbitIndex":0,"skill":46742,"stats":["Create Lightning Infusion Remnants instead of Fire","Create Cold Infusion Remnants instead of Lightning","Create Fire Infusion Remnants instead of Cold"],"stringId":"passive_keystone_elemental_equilibrium"},"46748":{"connections":[{"id":51206,"orbit":5},{"id":60568,"orbit":-5}],"group":534,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":0,"orbitIndex":0,"skill":46748,"stats":["16% increased Totem Life"],"stringId":"totems50"},"46760":{"connections":[{"id":51534,"orbit":0},{"id":8631,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":0,"orbitIndex":0,"skill":46760,"stats":["16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"stringId":"criticals8"},"46761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":46761,"stats":[],"stringId":"mastery_flask126"},"46782":{"connections":[{"id":53698,"orbit":3}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":16,"skill":46782,"stats":["10% increased Attack Damage"],"stringId":"attack13_"},"46819":{"connections":[{"id":8616,"orbit":0},{"id":13909,"orbit":0},{"id":3472,"orbit":0}],"group":809,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":46819,"stats":["+5 to any Attribute"],"stringId":"attributes21"},"46854":{"ascendancyName":"Deadeye","connections":[{"id":12033,"orbit":0},{"id":42416,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Speed","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":3,"orbitIndex":8,"skill":46854,"stats":["10% increased Projectile Speed"],"stringId":"AscendancyRanger1Small1__"},"46857":{"connections":[{"id":52971,"orbit":-2}],"group":1318,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds","name":"Energy Shield Delay","orbit":0,"orbitIndex":0,"skill":46857,"stats":["Gain Deflection Rating equal to 4% of Evasion Rating","4% faster start of Energy Shield Recharge","5% increased Mana Cost Efficiency"],"stringId":"energy_shield_recovery1"},"46874":{"connections":[{"id":7449,"orbit":0},{"id":53696,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Attack Damage","orbit":7,"orbitIndex":21,"skill":46874,"stats":["12% increased Attack Physical Damage"],"stringId":"physical38"},"46882":{"connections":[],"group":1245,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":8,"skill":46882,"stats":[],"stringId":"jewel_slot1970"},"46887":{"connections":[{"id":43720,"orbit":-6},{"id":38463,"orbit":0}],"group":1276,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":3,"orbitIndex":6,"skill":46887,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech5"},"46931":{"connections":[{"id":23036,"orbit":0},{"id":28175,"orbit":5}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":11,"skill":46931,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded15"},"46961":{"connections":[{"id":5191,"orbit":0}],"group":1231,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Attack Speed","orbit":0,"orbitIndex":0,"skill":46961,"stats":["3% increased Attack Speed"],"stringId":"companions59"},"46972":{"connections":[{"id":54783,"orbit":0}],"group":933,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Arcane Mixtures","orbit":7,"orbitIndex":23,"recipe":["Paranoia","Paranoia","Guilt"],"skill":46972,"stats":["10% increased Cast Speed if you've used a Mana Flask Recently","Mana Flasks gain 0.1 charges per Second"],"stringId":"energy_shield_recovery25_"},"46989":{"connections":[],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":7,"orbitIndex":12,"skill":46989,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells9"},"46990":{"ascendancyName":"Deadeye","connections":[{"id":3987,"orbit":0},{"id":39723,"orbit":0},{"id":49165,"orbit":0},{"id":24295,"orbit":0},{"id":61461,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Deadeye","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":9,"orbitIndex":48,"skill":46990,"stats":[],"stringId":"AscendancyRanger1Start"},"47006":{"connections":[{"id":43174,"orbit":7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":3,"orbitIndex":14,"skill":47006,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break12"},"47009":{"connections":[{"id":37250,"orbit":-7}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage","orbit":7,"orbitIndex":11,"skill":47009,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks47"},"47021":{"connections":[{"id":36217,"orbit":1}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":0,"skill":47021,"stats":["15% increased Volatility Explosion delay"],"stringId":"volatility17"},"47080":{"connections":[{"id":37113,"orbit":0}],"group":104,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":47080,"stats":["12% increased Lightning Damage"],"stringId":"lightning60"},"47088":{"connections":[],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Sic 'Em","orbit":4,"orbitIndex":0,"recipe":["Paranoia","Greed","Disgust"],"skill":47088,"stats":["Companions deal 60% increased damage against Immobilised enemies"],"stringId":"companions21"},"47097":{"ascendancyName":"Warbringer","connections":[],"group":53,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerWarcryExplodesCorpses.dds","isNotable":true,"name":"Warcaller's Bellow","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":47097,"stats":["Warcries Explode Corpses dealing 25% of their Life as Physical Damage","Ignore Warcry Cooldowns"],"stringId":"AscendancyWarrior2Notable4_"},"47150":{"connections":[{"id":56910,"orbit":-5}],"group":827,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":16,"skill":47150,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion26"},"47155":{"connections":[{"id":35896,"orbit":0},{"id":63545,"orbit":2},{"id":17394,"orbit":-2}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":3,"skill":47155,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence20"},"47157":{"connections":[{"id":61347,"orbit":4},{"id":54818,"orbit":0}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":12,"skill":47157,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies further than 6m"],"stringId":"projectiles31"},"47168":{"connections":[{"id":6006,"orbit":-4},{"id":54521,"orbit":0},{"id":55412,"orbit":-4},{"id":25570,"orbit":0}],"group":599,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47168,"stats":["+5 to any Attribute"],"stringId":"intelligence52"},"47173":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":47173,"stats":[],"stringId":"mastery_warcry_6792"},"47175":{"classesStart":["Marauder","Warrior"],"connections":[{"id":16732,"orbit":0},{"id":51916,"orbit":0},{"id":54579,"orbit":0},{"id":5852,"orbit":0},{"id":33812,"orbit":0},{"id":32534,"orbit":0},{"id":3936,"orbit":0},{"id":38646,"orbit":0}],"group":746,"icon":"Art/2DArt/SkillIcons/passives/blankStr.dds","name":"MARAUDER","orbit":0,"orbitIndex":0,"skill":47175,"stats":[],"stringId":"marauder594"},"47177":{"connections":[],"group":974,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47177,"stats":["+5 to any Attribute"],"stringId":"intelligence85"},"47184":{"ascendancyName":"Smith of Kitava","connections":[],"group":17,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaCreateMinionMeleeWeapon.dds","isNotable":true,"name":"Living Weapon","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":47184,"stats":["Grants Skill: Manifest Weapon"],"stringId":"AscendancyWarrior3Notable2"},"47190":{"ascendancyName":"Oracle","connections":[{"id":32905,"orbit":6}],"group":38,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Passive Point","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":47190,"stats":["Grants 1 Passive Skill Point"],"stringId":"AscendancyDruid1Small2"},"47191":{"connections":[],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":4,"orbitIndex":58,"skill":47191,"stats":["12% increased Fire Damage"],"stringId":"fire1_"},"47212":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":513,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":47212,"stats":[],"stringId":"mastery_bow33"},"47235":{"connections":[{"id":24570,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blinded Enemies Critical","orbit":7,"orbitIndex":22,"skill":47235,"stats":["Enemies Blinded by you have 15% reduced Critical Hit Chance"],"stringId":"blind15_"},"47236":{"ascendancyName":"Smith of Kitava","connections":[{"id":60298,"orbit":0}],"group":16,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Melee Damage","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":47236,"stats":["20% increased Melee Damage"],"stringId":"AscendancyWarrior3Small3"},"47242":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":47242,"stats":[],"stringId":"mastery_miniondefence179"},"47252":{"connections":[],"group":252,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":7,"orbitIndex":16,"skill":47252,"stats":["16% increased Mana Regeneration Rate while stationary"],"stringId":"mana_regeneration6"},"47263":{"connections":[{"id":38707,"orbit":0},{"id":18448,"orbit":0},{"id":58295,"orbit":0},{"id":60068,"orbit":0}],"group":204,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47263,"stats":["+5 to any Attribute"],"stringId":"strength54"},"47270":{"connections":[],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Inescapable Cold","orbit":4,"orbitIndex":66,"recipe":["Ire","Paranoia","Isolation"],"skill":47270,"stats":["40% increased Freeze Buildup","20% increased Freeze Duration on Enemies"],"stringId":"chill_and_freeze4"},"47284":{"connections":[{"id":3332,"orbit":0}],"group":648,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":47284,"stats":["Minions have +20% to Cold Resistance"],"stringId":"minion_defence26"},"47307":{"connections":[{"id":2254,"orbit":5}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":4,"skill":47307,"stats":["3% increased Cast Speed"],"stringId":"cast_speed15_"},"47312":{"ascendancyName":"Amazon","connections":[],"group":1604,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonLifeFlasksRecoverManaViceVersa.dds","isNotable":true,"name":"Azmeri Brew","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":47312,"stats":["Life Flasks also recover Mana","Mana Flasks also recover Life"],"stringId":"AscendancyHuntress1Notable7"},"47316":{"connections":[{"id":2888,"orbit":0},{"id":28862,"orbit":0}],"group":465,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","isNotable":true,"name":"Goring","orbit":7,"orbitIndex":19,"recipe":["Ire","Isolation","Isolation"],"skill":47316,"stats":["3% increased maximum Life","20% increased amount of Life Leeched"],"stringId":"life_leech16"},"47344":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":3781,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Damage","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":47344,"stats":["11% increased Chaos Damage"],"stringId":"AscendancyMonk3Small2"},"47359":{"connections":[{"id":14231,"orbit":-7}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":7,"orbitIndex":17,"skill":47359,"stats":["Triggered Spells deal 16% increased Spell Damage"],"stringId":"triggers4"},"47363":{"connections":[],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Colossal Weapon","orbit":4,"orbitIndex":50,"recipe":["Fear","Greed","Ire"],"skill":47363,"stats":["12% increased Area of Effect for Attacks","+10 to Strength"],"stringId":"two_handed14"},"47371":{"connections":[{"id":7668,"orbit":0}],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage and Bleeding Chance","orbit":2,"orbitIndex":22,"skill":47371,"stats":["5% chance to inflict Bleeding on Hit","Empowered Attacks deal 10% increased Damage"],"stringId":"warcries4"},"47374":{"connections":[{"id":18049,"orbit":0}],"group":1356,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":66,"skill":47374,"stats":["Projectiles deal 15% increased Damage with Hits against Enemies within 2m"],"stringId":"projectiles26"},"47375":{"connections":[{"id":63618,"orbit":5}],"group":1531,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":0,"orbitIndex":0,"skill":47375,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions16"},"47387":{"connections":[{"id":18593,"orbit":0}],"group":100,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Stormkeeper","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Guilt"],"skill":47387,"stats":["20% increased Lightning Damage","30% reduced effect of Shock on you","15% increased Magnitude of Shock you inflict"],"stringId":"lightning68"},"47418":{"connections":[{"id":23839,"orbit":0},{"id":10738,"orbit":0}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Warding Potions","orbit":2,"orbitIndex":9,"recipe":["Greed","Envy","Paranoia"],"skill":47418,"stats":["10% reduced Flask Charges used from Mana Flasks","Remove a Curse when you use a Mana Flask"],"stringId":"mana_flasks13"},"47420":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[{"id":11048,"orbit":0},{"id":52676,"orbit":7}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","isNotable":true,"name":"Expendable Army","orbit":1,"orbitIndex":9,"recipe":["Ire","Greed","Isolation"],"skill":47420,"stats":["20% increased Minion Duration","Temporary Minion Skills have +2 to Limit of Minions summoned"],"stringId":"minion_reservation2___"},"47429":{"connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":6,"orbitIndex":6,"skill":47429,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries52"},"47441":{"connections":[{"id":61992,"orbit":0}],"group":880,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","isNotable":true,"name":"Stigmata","orbit":7,"orbitIndex":12,"recipe":["Disgust","Guilt","Fear"],"skill":47441,"stats":["Offerings have 30% increased Maximum Life","Recover 3% of maximum Life when you create an Offering"],"stringId":"corpses9_"},"47442":{"ascendancyName":"Blood Mage","connections":[{"id":65518,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life Flasks","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":5,"orbitIndex":2,"skill":47442,"stats":["15% increased Life Flask Charges gained"],"stringId":"AscendancyWitch2Small9"},"47443":{"connections":[{"id":31129,"orbit":0}],"group":1543,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Reservation","orbit":0,"orbitIndex":0,"skill":47443,"stats":["8% increased Reservation Efficiency of Companion Skills"],"stringId":"companions13"},"47469":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":52669,"orbit":0}],"group":99,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":47469,"stats":[],"stringId":"mastery_fire_6513"},"47477":{"connections":[{"id":51774,"orbit":1}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":1,"orbitIndex":6,"skill":47477,"stats":["15% reduced Volatility Explosion delay"],"stringId":"volatility14"},"47514":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Dizzying Hits","orbit":7,"orbitIndex":8,"recipe":["Ire","Despair","Envy"],"skill":47514,"stats":["10% chance to Daze on Hit","25% increased Critical Hit Chance against Dazed Enemies"],"stringId":"daze_19"},"47517":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":142,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":47517,"stats":[],"stringId":"mastery_armour_6284"},"47555":{"connections":[{"id":51184,"orbit":0},{"id":18407,"orbit":0},{"id":39886,"orbit":0}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":22,"skill":47555,"stats":["+5 to any Attribute"],"stringId":"intelligence13"},"47560":{"connections":[],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Multi Shot","orbit":8,"orbitIndex":54,"recipe":["Ire","Isolation","Disgust"],"skill":47560,"stats":["+24% Surpassing chance to fire an additional Projectile"],"stringId":"projectiles44"},"47591":{"connections":[{"id":9226,"orbit":-2}],"group":554,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Recoup","orbit":2,"orbitIndex":16,"skill":47591,"stats":["3% of Damage taken Recouped as Mana"],"stringId":"mana_regeneration36_"},"47606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":196,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":0,"orbitIndex":0,"skill":47606,"stats":[],"stringId":"mastery_rage_6668"},"47614":{"connections":[{"id":22219,"orbit":-7}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":2,"orbitIndex":22,"skill":47614,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers10"},"47623":{"connections":[{"id":38570,"orbit":0}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":2,"orbitIndex":14,"skill":47623,"stats":["12% increased Grenade Damage"],"stringId":"grenades21"},"47633":{"connectionArt":"CharacterPlanned","connections":[{"id":57002,"orbit":0}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":4,"skill":47633,"stats":["20% increased Thorns damage"],"stringId":"oracle_thorns2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"47635":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Overload","orbit":3,"orbitIndex":8,"recipe":["Paranoia","Isolation","Envy"],"skill":47635,"stats":["Damage Penetrates 10% Lightning Resistance if on Low Mana","Damage Penetrates 15% Lightning Resistance"],"stringId":"lightning_penetration22_"},"47677":{"connections":[{"id":9472,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":7,"orbitIndex":17,"skill":47677,"stats":["8% increased Projectile Speed"],"stringId":"ranged11"},"47683":{"connections":[],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Chaining Projectiles","orbit":2,"orbitIndex":23,"skill":47683,"stats":["Projectiles have 5% chance to Chain an additional time from terrain"],"stringId":"ranged44"},"47709":{"connections":[{"id":63814,"orbit":0},{"id":40336,"orbit":0}],"group":745,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":47709,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed26"},"47722":{"connections":[{"id":6514,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":3,"orbitIndex":4,"skill":47722,"stats":["16% increased Damage with Warcries"],"stringId":"warcries25"},"47733":{"connections":[],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Ailment Chance","orbit":2,"orbitIndex":7,"skill":47733,"stats":["Attacks with One-Handed Weapons have 15% increased Chance to inflict Ailments"],"stringId":"one_handed24"},"47753":{"connections":[{"id":51868,"orbit":-6}],"group":87,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Penetration","orbit":0,"orbitIndex":0,"skill":47753,"stats":["Damage Penetrates 8% Fire Resistance"],"stringId":"fire48"},"47754":{"connections":[{"id":23455,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":7,"orbitIndex":16,"skill":47754,"stats":["10% increased Cold Damage"],"stringId":"cold_penetration11"},"47759":{"connections":[{"id":62677,"orbit":2147483647}],"flavourText":"Your grandchildren will awaken screaming in memory of what I utter today.","group":921,"icon":"Art/2DArt/SkillIcons/passives/KeystoneWhispersOfDoom.dds","isKeystone":true,"name":"Whispers of Doom","orbit":0,"orbitIndex":0,"skill":47759,"stats":["You can apply an additional Curse","Double Activation Delay of Curses"],"stringId":"passive_keystone_whispers_of_doom"},"47782":{"connections":[{"id":38003,"orbit":4},{"id":28361,"orbit":-4}],"group":831,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Steady Footing","orbit":4,"orbitIndex":54,"recipe":["Envy","Disgust","Ire"],"skill":47782,"stats":["40% increased Stun Threshold","20% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"weapon_swapping9"},"47790":{"connections":[{"id":17625,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":7,"skill":47790,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"shapeshifting4"},"47796":{"connections":[{"id":62640,"orbit":-4}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":12,"skill":47796,"stats":["3% increased Attack Speed"],"stringId":"attack_speed13_"},"47821":{"connections":[{"id":41033,"orbit":9}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":2,"orbitIndex":17,"skill":47821,"stats":["Offering Skills have 15% increased Buff effect"],"stringId":"corpses19"},"47831":{"connections":[{"id":8734,"orbit":0},{"id":49996,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection and Energy Shield Delay","orbit":2,"orbitIndex":18,"skill":47831,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"deflect43"},"47833":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":964,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":47833,"stats":[],"stringId":"mastery_critical_270_"},"47853":{"connections":[],"group":1469,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnakeNotable.dds","isNotable":true,"name":"Bond of the Mamba","orbit":0,"orbitIndex":0,"recipe":["Ire","Greed","Disgust"],"skill":47853,"stats":["Gain 4% of Physical Damage as extra Chaos Damage","Companions gain 12% Damage as extra Chaos Damage"],"stringId":"companions52"},"47856":{"connections":[{"id":32561,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":2,"orbitIndex":15,"skill":47856,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed5_"},"47893":{"connections":[{"id":57774,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Speed","orbit":2,"orbitIndex":21,"skill":47893,"stats":["3% increased Attack Speed while Dual Wielding"],"stringId":"dual_wielding6_"},"47895":{"connections":[{"id":56493,"orbit":-2}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Evasion Rating on Hit Recently","orbit":2,"orbitIndex":6,"skill":47895,"stats":["20% increased Evasion Rating if you have Hit an Enemy Recently"],"stringId":"attack_speed59"},"47931":{"connections":[{"id":33722,"orbit":0},{"id":39131,"orbit":0},{"id":9324,"orbit":0},{"id":53329,"orbit":0},{"id":63170,"orbit":0}],"group":166,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47931,"stats":["+5 to any Attribute"],"stringId":"intelligence8"},"47976":{"connections":[{"id":14446,"orbit":0},{"id":37876,"orbit":0}],"group":1377,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":47976,"stats":["+5 to any Attribute"],"stringId":"attributes12"},"48006":{"connections":[{"id":33604,"orbit":0}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Devastation","orbit":7,"orbitIndex":9,"recipe":["Ire","Ire","Despair"],"skill":48006,"stats":["15% increased Attack Area Damage","12% increased Area of Effect for Attacks"],"stringId":"area_attacks28"},"48007":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[{"id":36302,"orbit":0}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":48007,"stats":[],"stringId":"mastery_mana165"},"48014":{"connections":[],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Honourless","orbit":5,"orbitIndex":63,"recipe":["Ire","Guilt","Fear"],"skill":48014,"stats":["25% increased Armour if you've Hit an Enemy with a Melee Attack Recently","50% increased Melee Damage against Immobilised Enemies"],"stringId":"melee51_"},"48026":{"connections":[{"id":65439,"orbit":0},{"id":6623,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":14,"skill":48026,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners3"},"48030":{"connections":[{"id":62436,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":1,"skill":48030,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield12"},"48035":{"connections":[{"id":11329,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":3,"skill":48035,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration28"},"48079":{"connectionArt":"CharacterPlanned","connections":[{"id":60014,"orbit":-7}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":48079,"stats":["10% increased Bleeding Duration","20% chance for Attack Hits to apply Incision"],"stringId":"oracle_bleed2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48103":{"connections":[{"id":52875,"orbit":0}],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","isNotable":true,"name":"Forcewave","orbit":2,"orbitIndex":8,"recipe":["Greed","Paranoia","Paranoia"],"skill":48103,"stats":["20% increased Stun Buildup","20% increased Knockback Distance","20% increased Physical Damage"],"stringId":"knockback18"},"48116":{"connections":[{"id":21112,"orbit":0},{"id":34015,"orbit":0},{"id":18624,"orbit":0}],"group":1483,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48116,"stats":["+5 to any Attribute"],"stringId":"dexterity52"},"48121":{"connections":[{"id":24438,"orbit":-5}],"group":516,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Elemental Resistance","orbit":0,"orbitIndex":0,"skill":48121,"stats":["Totems gain +12% to all Elemental Resistances"],"stringId":"totems47_"},"48135":{"connections":[{"id":12750,"orbit":0}],"group":1056,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":7,"orbitIndex":12,"skill":48135,"stats":["10% increased Charm Charges gained"],"stringId":"charms21"},"48137":{"connections":[{"id":33887,"orbit":0}],"group":958,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Crossbow Reload Speed","orbit":4,"orbitIndex":11,"skill":48137,"stats":["15% increased Crossbow Reload Speed"],"stringId":"crossbow16"},"48160":{"connectionArt":"CharacterPlanned","connections":[{"id":37778,"orbit":2147483647}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Ally Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":15,"skill":48160,"stats":["Allies in your Presence deal 20% increased Damage","10% reduced Damage"],"stringId":"oracle_self_sacrificing2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48171":{"connections":[],"group":259,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":4,"orbitIndex":13,"skill":48171,"stats":["12% increased Cold Damage"],"stringId":"cold21"},"48198":{"connections":[{"id":29361,"orbit":3},{"id":65437,"orbit":-5},{"id":40068,"orbit":-6},{"id":1215,"orbit":0},{"id":13411,"orbit":6}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","isNotable":true,"name":"Step Like Mist","orbit":4,"orbitIndex":12,"skill":48198,"stats":["4% increased Movement Speed","15% increased Mana Regeneration Rate","+5 to Dexterity and Intelligence"],"stringId":"shadow_monk_notable2"},"48215":{"connections":[{"id":516,"orbit":0},{"id":7201,"orbit":0},{"id":64488,"orbit":0},{"id":61347,"orbit":0}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Headshot","orbit":0,"orbitIndex":0,"recipe":["Fear","Ire","Suffering"],"skill":48215,"stats":["Projectiles have 30% increased Critical Damage Bonus against Enemies further than 6m","Projectiles have 20% increased Critical Hit Chance against Enemies further than 6m","25% chance to inflict Daze with Hits against Enemies further than 6m"],"stringId":"projectiles36"},"48240":{"connections":[{"id":48505,"orbit":0}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Quick Recovery","orbit":3,"orbitIndex":15,"recipe":["Despair","Suffering","Greed"],"skill":48240,"stats":["40% increased Stun Recovery","Regenerate 5% of maximum Life over 1 second when Stunned"],"stringId":"stun_threshold10"},"48264":{"connections":[{"id":12964,"orbit":0}],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":1,"skill":48264,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras29"},"48267":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":48267,"stats":[],"stringId":"mastery_fire117"},"48290":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[{"id":55180,"orbit":0},{"id":49088,"orbit":0}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":15,"skill":48290,"stats":[],"stringId":"mastery_miniondefence180"},"48305":{"connections":[{"id":37629,"orbit":6}],"group":605,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48305,"stats":["+5 to any Attribute"],"stringId":"strength6"},"48314":{"connections":[{"id":61896,"orbit":5},{"id":3348,"orbit":-7},{"id":55897,"orbit":-3}],"group":108,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Skill Speed","orbit":0,"orbitIndex":0,"skill":48314,"stats":["3% increased Skill Speed while Shapeshifted"],"stringId":"wolf5"},"48387":{"connections":[{"id":34415,"orbit":-4}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":5,"orbitIndex":56,"skill":48387,"stats":["12% increased Physical Damage"],"stringId":"physical53"},"48401":{"connections":[{"id":35987,"orbit":0},{"id":61312,"orbit":0},{"id":10909,"orbit":5}],"group":931,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":48401,"stats":["+5 to any Attribute"],"stringId":"dexterity23_"},"48418":{"connections":[{"id":38235,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Hefty Unit","orbit":2,"orbitIndex":6,"recipe":["Ire","Disgust","Suffering"],"skill":48418,"stats":["+3 to Stun Threshold per Strength"],"stringId":"stun_threshold24_"},"48429":{"connections":[{"id":58714,"orbit":0},{"id":36169,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Cooldown Recovery Rate","orbit":3,"orbitIndex":20,"skill":48429,"stats":["15% increased Cooldown Recovery Rate for Grenade Skills"],"stringId":"grenades7"},"48462":{"connections":[{"id":11094,"orbit":5},{"id":62803,"orbit":5}],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Effect","orbit":7,"orbitIndex":15,"skill":48462,"stats":["Charms applied to you have 10% increased Effect"],"stringId":"charms12"},"48505":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":492,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":2,"orbitIndex":18,"skill":48505,"stats":[],"stringId":"mastery_life142"},"48524":{"connections":[{"id":43818,"orbit":0}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","isNotable":true,"name":"Blood Transfusion","orbit":2,"orbitIndex":10,"recipe":["Paranoia","Paranoia","Suffering"],"skill":48524,"stats":["25% increased Life Regeneration rate","25% of Spell Mana Cost Converted to Life Cost"],"stringId":"life_costs9"},"48530":{"connections":[{"id":39130,"orbit":0},{"id":4623,"orbit":0}],"group":502,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Spell Damage and Costs","orbit":2,"orbitIndex":0,"skill":48530,"stats":["6% increased Spell Damage with Spells that cost Life","8% of Spell Mana Cost Converted to Life Cost"],"stringId":"life_costs4"},"48531":{"connections":[{"id":13987,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Attack Speed","orbit":1,"orbitIndex":7,"skill":48531,"stats":["3% increased Melee Attack Speed"],"stringId":"melee26"},"48537":{"ascendancyName":"Smith of Kitava","connections":[],"group":25,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImprovedFireResistAppliesToColdLightning.dds","isNotable":true,"name":"Forged in Flame","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":48537,"stats":["Modifiers to Maximum Fire Resistance also grant Maximum Cold and Lightning Resistance"],"stringId":"AscendancyWarrior3Notable5"},"48544":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":40166,"orbit":0}],"group":1279,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":48544,"stats":[],"stringId":"mastery_attack278"},"48551":{"ascendancyName":"Blood Mage","connections":[{"id":52703,"orbit":9}],"group":948,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":48551,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancyWitch2Small2"},"48552":{"connections":[{"id":43036,"orbit":0},{"id":7960,"orbit":0},{"id":23825,"orbit":0}],"group":462,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48552,"stats":["+5 to any Attribute"],"stringId":"attributes13"},"48565":{"connections":[{"id":47242,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","isNotable":true,"name":"Bringer of Order","orbit":3,"orbitIndex":2,"recipe":["Envy","Fear","Disgust"],"skill":48565,"stats":["20% increased Damage","Minions deal 20% increased Damage"],"stringId":"sentinels10"},"48568":{"connections":[{"id":16489,"orbit":0}],"group":980,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48568,"stats":["+5 to any Attribute"],"stringId":"attributes67"},"48581":{"connections":[{"id":33242,"orbit":0},{"id":13387,"orbit":0}],"group":689,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isNotable":true,"name":"Exploit the Elements","orbit":6,"orbitIndex":0,"recipe":["Greed","Fear","Isolation"],"skill":48581,"stats":["24% increased Damage with Hits against Enemies affected by Elemental Ailments","30% increased chance to inflict Ailments against Rare or Unique Enemies"],"stringId":"exploiting_elemental_ailments16"},"48583":{"connections":[{"id":58783,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech, Armour and Evasion while Leeching","orbit":2,"orbitIndex":23,"skill":48583,"stats":["6% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech2"},"48585":{"connections":[{"id":20831,"orbit":0},{"id":56325,"orbit":0}],"group":1036,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion and Reduced Movement Penalty","orbit":0,"orbitIndex":0,"skill":48585,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion9"},"48588":{"connections":[{"id":2455,"orbit":0},{"id":13081,"orbit":0}],"group":801,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":5,"orbitIndex":14,"skill":48588,"stats":["8% increased Projectile Damage"],"stringId":"projectiles20"},"48589":{"connections":[{"id":7922,"orbit":-6}],"group":552,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Recovery","orbit":2,"orbitIndex":11,"skill":48589,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks21"},"48611":{"connections":[{"id":4271,"orbit":0},{"id":46554,"orbit":0}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","name":"Minion Resistances","orbit":2,"orbitIndex":0,"skill":48611,"stats":["Minions have +8% to all Elemental Resistances"],"stringId":"minion_defence28"},"48614":{"connections":[{"id":9018,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Area and Presence","orbit":7,"orbitIndex":1,"skill":48614,"stats":["20% increased Presence Area of Effect","3% reduced Area of Effect"],"stringId":"auras35"},"48617":{"connections":[{"id":1915,"orbit":0},{"id":11667,"orbit":0},{"id":15839,"orbit":0},{"id":6266,"orbit":0},{"id":2978,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","isNotable":true,"name":"Hunter","orbit":7,"orbitIndex":3,"recipe":["Fear","Guilt","Disgust"],"skill":48617,"stats":["50% increased Damage against Demons","50% increased Duration of Ailments on Beasts","50% increased Critical Hit Chance against Humanoids","50% increased Immobilisation buildup against Constructs"],"stringId":"mercenary5"},"48618":{"connections":[{"id":37327,"orbit":7}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":12,"skill":48618,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana28"},"48631":{"connections":[{"id":35426,"orbit":0},{"id":59006,"orbit":-4}],"group":501,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48631,"stats":["+5 to any Attribute"],"stringId":"attributes65"},"48635":{"connections":[{"id":63526,"orbit":0},{"id":28361,"orbit":4},{"id":43444,"orbit":-4}],"group":828,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48635,"stats":["+5 to any Attribute"],"stringId":"attributes30_"},"48649":{"connections":[{"id":51485,"orbit":0}],"group":545,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","isNotable":true,"name":"Insulating Hide","orbit":2,"orbitIndex":22,"recipe":["Guilt","Greed","Suffering"],"skill":48649,"stats":["20% faster start of Energy Shield Recharge while Shapeshifted","+20% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"shapeshifting37"},"48658":{"connections":[],"group":1093,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Shattering","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Despair"],"skill":48658,"stats":["30% increased Freeze Buildup","20% increased Chill Duration on Enemies","20% increased Magnitude of Chill you inflict"],"stringId":"chill_and_freeze8"},"48660":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":0,"orbitIndex":0,"skill":48660,"stats":[],"stringId":"mastery_elemental96"},"48670":{"connections":[{"id":13241,"orbit":0},{"id":53589,"orbit":0},{"id":51299,"orbit":0},{"id":49231,"orbit":0},{"id":1865,"orbit":0}],"group":683,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":48670,"stats":["+5 to any Attribute"],"stringId":"strength40_"},"48682":{"ascendancyName":"Warbringer","connections":[{"id":40915,"orbit":4}],"group":43,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Totem Life","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":48682,"stats":["20% increased Totem Life"],"stringId":"AscendancyWarrior2Small7_"},"48699":{"connections":[{"id":14601,"orbit":0}],"group":753,"icon":"Art/2DArt/SkillIcons/passives/frostborn.dds","isNotable":true,"name":"Frostwalker","orbit":7,"orbitIndex":6,"recipe":["Paranoia","Fear","Suffering"],"skill":48699,"stats":["40% reduced Effect of Chill on you","Gain 15% of Damage as Extra Cold Damage while on Chilled Ground"],"stringId":"ground9"},"48714":{"connections":[],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.dds","name":"Attack Speed","orbit":2,"orbitIndex":10,"skill":48714,"stats":["3% increased Attack Speed"],"stringId":"melee6"},"48717":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":209,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":7,"orbitIndex":16,"skill":48717,"stats":[],"stringId":"mastery_armour6"},"48734":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":1501,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkeyNotable.dds","isNotable":true,"name":"The Howling Primate","orbit":3,"orbitIndex":4,"recipe":["Guilt","Despair","Greed"],"skill":48734,"stats":["15% increased Presence Area of Effect","Aura Skills have 10% increased Magnitudes","+10 to Intelligence"],"stringId":"azmerianimals60_"},"48745":{"connections":[{"id":22558,"orbit":0},{"id":7878,"orbit":-2}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":0,"orbitIndex":0,"skill":48745,"stats":["5% increased Block chance"],"stringId":"shield19"},"48761":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connectionArt":"CharacterPlanned","connections":[],"group":509,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":48761,"stats":[],"stringId":"oracle_thorns_mastery1___","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48773":{"connections":[{"id":32763,"orbit":0},{"id":38493,"orbit":0},{"id":41873,"orbit":0},{"id":42226,"orbit":0},{"id":52800,"orbit":0}],"group":1509,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":48773,"stats":["+5 to any Attribute"],"stringId":"dexterity50"},"48774":{"connections":[{"id":27492,"orbit":2147483647}],"group":853,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Taut Flesh","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Paranoia"],"skill":48774,"stats":["20% of Physical Damage taken Recouped as Life"],"stringId":"life_recoup14"},"48805":{"connections":[{"id":7782,"orbit":4},{"id":26563,"orbit":0}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Spell Critical Chance","orbit":7,"orbitIndex":4,"skill":48805,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical_witch11"},"48821":{"connections":[{"id":15618,"orbit":-6}],"group":816,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":6,"skill":48821,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals3"},"48828":{"connectionArt":"CharacterPlanned","connections":[{"id":34840,"orbit":0}],"group":511,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Gain Maximum Frenzy Charges on Gaining Frenzy Charge","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":4,"skill":48828,"stats":["2% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"],"stringId":"oracle_frenzy_charge3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48833":{"connections":[{"id":4,"orbit":0}],"group":1067,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48833,"stats":["10% increased Lightning Damage"],"stringId":"lightning13"},"48836":{"connections":[{"id":33542,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":7,"orbitIndex":16,"skill":48836,"stats":["+10% Surpassing chance to fire an additional Arrow"],"stringId":"bow22"},"48846":{"connections":[{"id":44566,"orbit":0}],"group":936,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":48846,"stats":["12% increased Lightning Damage"],"stringId":"lightning_penetration16"},"48856":{"connections":[{"id":17882,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":7,"orbitIndex":4,"skill":48856,"stats":["12% increased Grenade Damage"],"stringId":"grenades17"},"48889":{"connections":[{"id":28038,"orbit":0},{"id":56488,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":16,"skill":48889,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect25"},"48925":{"connections":[{"id":54887,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","isNotable":true,"name":"Blessing of the Moon","orbit":7,"orbitIndex":0,"recipe":["Fear","Guilt","Despair"],"skill":48925,"stats":["8% increased Skill Effect Duration per Enemy you've Frozen in the last 8 seconds, up to 40%"],"stringId":"chill_and_freeze31_"},"48935":{"connectionArt":"CharacterPlanned","connections":[{"id":61367,"orbit":2147483647}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Attack Added Lighting Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":3,"skill":48935,"stats":["Adds 1 to 7 Lightning damage to Attacks"],"stringId":"oracle_flat_lightning1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"48974":{"connections":[{"id":47418,"orbit":0},{"id":10738,"orbit":0}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Altered Brain Chemistry","orbit":2,"orbitIndex":15,"recipe":["Ire","Envy","Guilt"],"skill":48974,"stats":["25% increased Mana Recovery from Flasks","10% increased Mana Recovery Rate during Effect of any Mana Flask"],"stringId":"mana_flasks10"},"48979":{"connections":[{"id":51820,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":3,"orbitIndex":10,"skill":48979,"stats":["16% increased Totem Life"],"stringId":"totems52_"},"49023":{"connections":[{"id":12817,"orbit":3},{"id":22975,"orbit":0}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":1,"orbitIndex":6,"skill":49023,"stats":["5% increased Block chance"],"stringId":"shield21"},"49046":{"connections":[{"id":8569,"orbit":0}],"group":981,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49046,"stats":["+5 to any Attribute"],"stringId":"attributes38"},"49049":{"ascendancyName":"Chronomancer","connections":[],"group":414,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNearbyEnemiesProjectilesSlowed.dds","isNotable":true,"name":"Apex of the Moment","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":49049,"stats":["Enemies in your Presence are Slowed by 20%"],"stringId":"AscendancySorceress2Notable7"},"49088":{"connections":[{"id":17394,"orbit":7}],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Splintering Force","orbit":0,"orbitIndex":0,"recipe":["Envy","Paranoia","Guilt"],"skill":49088,"stats":["Minions Break Armour equal to 3% of Physical damage dealt"],"stringId":"minion_offence15"},"49107":{"connections":[{"id":54562,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":14,"skill":49107,"stats":["10% increased Critical Hit Chance"],"stringId":"azmerianimals45"},"49110":{"connections":[{"id":54746,"orbit":-7}],"group":1145,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Effect","orbit":0,"orbitIndex":0,"skill":49110,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments14"},"49111":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":145,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":49111,"stats":[],"stringId":"mastery_attack_6300"},"49130":{"connections":[],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Reduced Projectile Speed","orbit":2,"orbitIndex":19,"skill":49130,"stats":["6% reduced Projectile Speed"],"stringId":"quivers10"},"49150":{"connections":[{"id":36759,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Precise Invocations","orbit":3,"orbitIndex":7,"recipe":["Envy","Ire","Isolation"],"skill":49150,"stats":["Invocated Spells have 30% increased Critical Hit Chance"],"stringId":"triggers28"},"49153":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connectionArt":"CharacterPlanned","connections":[],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Comradery","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":4,"orbitIndex":66,"skill":49153,"stats":["30% increased Damage","Minions deal 30% increased Damage"],"stringId":"oracle_damage_and_minions4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49165":{"ascendancyName":"Deadeye","connections":[{"id":59913,"orbit":0}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Mark Effect","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":8,"orbitIndex":27,"skill":49165,"stats":["12% increased Effect of your Mark Skills"],"stringId":"AscendancyRanger1Small7"},"49172":{"connections":[{"id":33730,"orbit":0}],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingSpeed.dds","name":"Channelling Speed","orbit":2,"orbitIndex":9,"skill":49172,"stats":["3% increased Skill Speed with Channelling Skills"],"stringId":"channelling5"},"49189":{"ascendancyName":"Stormweaver","connections":[],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverRemnant2.dds","isNotable":true,"name":"Storm's Recollection","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":9,"orbitIndex":17,"skill":49189,"stats":["Remnants can be collected from 50% further away","Remnants you create reappear once, 3 seconds after being collected"],"stringId":"AscendancySorceress1Notable9"},"49192":{"connections":[{"id":43396,"orbit":0},{"id":41615,"orbit":0}],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":7,"orbitIndex":12,"skill":49192,"stats":["20% increased Totem Placement speed"],"stringId":"totems23"},"49198":{"connections":[{"id":49023,"orbit":3}],"group":333,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":7,"orbitIndex":22,"skill":49198,"stats":["5% increased Block chance"],"stringId":"shield22"},"49214":{"connections":[{"id":50767,"orbit":0}],"group":135,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNotable.dds","isNotable":true,"name":"Blood of the Wolf","orbit":0,"orbitIndex":0,"recipe":["Isolation","Ire","Despair"],"skill":49214,"stats":["15% increased amount of Life Leeched while Shapeshifted","15% increased Life Regeneration rate while Shapeshifted","+1% to Maximum Cold Resistance while Shapeshifted"],"stringId":"wolf8"},"49220":{"connections":[{"id":10429,"orbit":0},{"id":44223,"orbit":-3},{"id":53960,"orbit":-6},{"id":21336,"orbit":5},{"id":36778,"orbit":6}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/Harrier.dds","isNotable":true,"name":"Flow Like Water","orbit":4,"orbitIndex":12,"skill":49220,"stats":["8% increased Attack and Cast Speed","+5 to Dexterity and Intelligence"],"stringId":"shadow_monk_notable1"},"49231":{"connections":[{"id":43183,"orbit":0}],"group":651,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":7,"orbitIndex":0,"skill":49231,"stats":["3% increased Attack Speed"],"stringId":"attack_speed9"},"49235":{"connections":[{"id":42077,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":7,"skill":49235,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery30__"},"49256":{"connections":[{"id":14439,"orbit":4}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":3,"orbitIndex":12,"skill":49256,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour6_"},"49258":{"connectionArt":"CharacterPlanned","connections":[{"id":49769,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":66,"skill":49258,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49259":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":49259,"stats":[],"stringId":"mastery_warcry_6794"},"49280":{"connections":[{"id":36170,"orbit":3}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":7,"orbitIndex":7,"skill":49280,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion9"},"49285":{"connections":[{"id":364,"orbit":9}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":22,"skill":49285,"stats":["+8 to Strength"],"stringId":"attributes103"},"49291":{"connections":[{"id":57945,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charge Generation","orbit":7,"orbitIndex":9,"skill":49291,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks8"},"49320":{"connections":[{"id":52215,"orbit":0}],"group":1493,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Chance","orbit":6,"orbitIndex":31,"skill":49320,"stats":["10% increased Critical Hit Chance with Daggers"],"stringId":"dagger10_"},"49340":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":49,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus4.dds","isNotable":true,"name":"Support Straps","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":49340,"stats":["Body Armour grants 20% increased Strength"],"stringId":"AscendancyWarrior3Notable6_4_"},"49356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"First Principle of the Hollow","orbit":3,"orbitIndex":4,"recipe":["Paranoia","Despair","Disgust"],"skill":49356,"stats":["20% increased Evasion Rating","20% increased maximum Energy Shield","+5% to Cold Resistance","+5% to Lightning Resistance"],"stringId":"evasion_and_energy_shield31"},"49357":{"connections":[{"id":32194,"orbit":0},{"id":51618,"orbit":-9}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":0,"skill":49357,"stats":["+5 to any Attribute"],"stringId":"intelligence33_"},"49363":{"connections":[],"flavourText":"The world is a pattern, moving in natural waves.\\nWith enough force, those waves can be made to converge...","group":578,"icon":"Art/2DArt/SkillIcons/passives/DruidWildsurgeIncantation.dds","isKeystone":true,"name":"Wildsurge Incantation","orbit":0,"orbitIndex":0,"skill":49363,"stats":["Storm and Plant Spells:","deal 50% more damage","cost 50% less","have 75% less duration"],"stringId":"passive_keystone_wildsurge_incantation"},"49370":{"connections":[{"id":6502,"orbit":0}],"group":183,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","isNotable":true,"name":"Morning Star","orbit":2,"orbitIndex":18,"skill":49370,"stats":["30% increased Critical Hit Chance with Flails","20% increased Critical Damage Bonus with Flails"],"stringId":"flail11"},"49380":{"ascendancyName":"Warbringer","connections":[{"id":36659,"orbit":-7}],"group":28,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerNode.dds","name":"Armour Break","nodeOverlay":{"alloc":"WarbringerFrameSmallAllocated","path":"WarbringerFrameSmallCanAllocate","unalloc":"WarbringerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":49380,"stats":["Break 25% increased Armour"],"stringId":"AscendancyWarrior2Small2"},"49388":{"connections":[{"id":37304,"orbit":0},{"id":38215,"orbit":-7},{"id":4806,"orbit":7}],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental","orbit":2,"orbitIndex":19,"skill":49388,"stats":["10% increased Magnitude of Chill you inflict","10% increased Magnitude of Shock you inflict"],"stringId":"elemental17"},"49391":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":612,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":49391,"stats":[],"stringId":"mastery_block31"},"49394":{"connections":[{"id":23786,"orbit":0}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Critical Bleeding Effect","orbit":7,"orbitIndex":19,"skill":49394,"stats":["15% increased Magnitude of Bleeding you inflict with Critical Hits"],"stringId":"bleed2"},"49406":{"connections":[{"id":52125,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":45,"skill":49406,"stats":["10% increased Projectile Damage"],"stringId":"ranged43"},"49455":{"connections":[],"group":639,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":4,"orbitIndex":5,"skill":49455,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield23"},"49461":{"connections":[{"id":50912,"orbit":2}],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Speed","orbit":2,"orbitIndex":23,"skill":49461,"stats":["3% increased Attack Speed"],"stringId":"attack48"},"49466":{"connections":[{"id":30871,"orbit":0}],"group":1254,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":12,"skill":49466,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks13"},"49473":{"connections":[{"id":61104,"orbit":0}],"group":1102,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":0,"orbitIndex":0,"skill":49473,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed42"},"49485":{"connections":[{"id":12174,"orbit":-9},{"id":49107,"orbit":9}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Dexterity","orbit":2,"orbitIndex":18,"skill":49485,"stats":["+8 to Dexterity"],"stringId":"azmerianimals47"},"49497":{"connections":[{"id":23244,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":6,"skill":49497,"stats":["5% increased Culling Strike Threshold"],"stringId":"slaying3"},"49503":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1568,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderNode.dds","name":"Mana Flask Charges","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":49503,"stats":["20% increased Mana Flask Charges gained"],"stringId":"AscendancyRanger3Small7"},"49512":{"connections":[{"id":61419,"orbit":0},{"id":15885,"orbit":0},{"id":5936,"orbit":0}],"group":768,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49512,"stats":["+5 to any Attribute"],"stringId":"intelligence46"},"49537":{"connections":[],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Speed with Elemental Skills","orbit":3,"orbitIndex":16,"skill":49537,"stats":["3% increased Attack and Cast Speed with Elemental Skills"],"stringId":"elemental7"},"49543":{"connectionArt":"CharacterPlanned","connections":[{"id":13108,"orbit":0}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/minionattackspeed.dds","name":"Ally Attack and Cast Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":23,"skill":49543,"stats":["3% reduced Skill Speed","Allies in your Presence have 6% increased Attack Speed","Allies in your Presence have 6% increased Cast Speed"],"stringId":"oracle_self_sacrificing4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49545":{"connections":[{"id":64851,"orbit":2}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":7,"orbitIndex":13,"skill":49545,"stats":["20% increased Parry Damage"],"stringId":"deflect13"},"49547":{"connections":[],"flavourText":"Hope is a mistake. Pain is the only truth.","group":454,"icon":"Art/2DArt/SkillIcons/passives/DruidAlternateEnergyShield.dds","isKeystone":true,"name":"Scarred Faith","orbit":0,"orbitIndex":0,"skill":49547,"stats":["5% of Physical Damage prevented Recouped as Energy Shield per enemy Power","Energy Shield does not Recharge","You cannot Recover Energy Shield from Regeneration","You cannot Recover Energy Shield to above Armour"],"stringId":"passive_keystone_alternate_es_recovery"},"49550":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Prolonged Fury","orbit":7,"orbitIndex":12,"recipe":["Ire","Greed","Despair"],"skill":49550,"stats":["Inherent loss of Rage is 25% slower"],"stringId":"rage10"},"49593":{"connections":[{"id":4725,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":7,"orbitIndex":21,"skill":49593,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels4"},"49618":{"connections":[{"id":38663,"orbit":0},{"id":55348,"orbit":0}],"group":644,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"Deadly Flourish","orbit":0,"orbitIndex":0,"recipe":["Envy","Ire","Guilt"],"skill":49618,"stats":["25% increased Melee Critical Hit Chance"],"stringId":"melee39"},"49633":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":854,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":49633,"stats":[],"stringId":"mastery_energy_shield_6483"},"49642":{"connections":[{"id":4882,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":7,"orbitIndex":1,"skill":49642,"stats":["15% increased Totem Damage"],"stringId":"totems6"},"49657":{"connections":[{"id":54417,"orbit":0},{"id":63526,"orbit":6},{"id":43578,"orbit":6},{"id":58109,"orbit":0}],"group":823,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":33,"skill":49657,"stats":["+5 to any Attribute"],"stringId":"dexterity30_"},"49661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Perfectly Placed Knife","orbit":1,"orbitIndex":2,"recipe":["Fear","Paranoia","Isolation"],"skill":49661,"stats":["25% increased Critical Hit Chance against Bleeding Enemies","20% chance to Aggravate Bleeding on targets you Critically Hit with Attacks"],"stringId":"bleed12"},"49691":{"connections":[{"id":13828,"orbit":0},{"id":31409,"orbit":0},{"id":61106,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":21,"skill":49691,"stats":["+16 to Evasion Rating"],"stringId":"evasion12"},"49696":{"connections":[{"id":10273,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":5,"orbitIndex":12,"skill":49696,"stats":["+3 to all Attributes"],"stringId":"all_attributes13"},"49734":{"connections":[{"id":46741,"orbit":0},{"id":9414,"orbit":0},{"id":32768,"orbit":0}],"group":239,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49734,"stats":["+5 to any Attribute"],"stringId":"attributes55"},"49740":{"connections":[{"id":27274,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Shattered Crystal","orbit":7,"orbitIndex":0,"recipe":["Suffering","Fear","Ire"],"skill":49740,"stats":["60% reduced Ice Crystal Life"],"stringId":"cold_penetration14"},"49759":{"ascendancyName":"Stormweaver","connections":[{"id":2857,"orbit":6}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Shock Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":71,"skill":49759,"stats":["20% increased chance to Shock"],"stringId":"AscendancySorceress1Small5"},"49769":{"connectionArt":"CharacterPlanned","connections":[{"id":21374,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Corruption Endures","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":21,"skill":49769,"stats":["7% chance to Avoid Death from Hits"],"stringId":"oracle_beast_corruption15_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49799":{"connections":[{"id":46224,"orbit":0}],"group":995,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":20,"skill":49799,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks5"},"49804":{"connections":[{"id":24035,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Exposure Effect","orbit":2,"orbitIndex":22,"skill":49804,"stats":["10% increased Exposure Effect"],"stringId":"elemental58_"},"49929":{"connectionArt":"CharacterPlanned","connections":[{"id":31757,"orbit":0}],"group":147,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Everlasting Bloom","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":0,"skill":49929,"stats":["30% increased Skill Effect Duration"],"stringId":"oracle_duration_physical9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"49938":{"connections":[{"id":26196,"orbit":0},{"id":28002,"orbit":0},{"id":51795,"orbit":0},{"id":18822,"orbit":0},{"id":15580,"orbit":0}],"group":368,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49938,"stats":["+5 to any Attribute"],"stringId":"strength13"},"49952":{"connections":[{"id":13856,"orbit":0}],"group":264,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Ailment Effect","orbit":7,"orbitIndex":6,"skill":49952,"stats":["12% increased Magnitude of Ailments you inflict"],"stringId":"slow_attacks4"},"49968":{"connections":[{"id":20008,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Stun Buildup","orbit":1,"orbitIndex":5,"skill":49968,"stats":["18% increased Stun Buildup with Melee Damage"],"stringId":"ranged23"},"49976":{"connections":[{"id":62936,"orbit":7},{"id":47976,"orbit":-3}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":7,"orbitIndex":5,"skill":49976,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"mana23"},"49984":{"connections":[],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Spellblade","orbit":5,"orbitIndex":57,"recipe":["Despair","Fear","Fear"],"skill":49984,"stats":["32% increased Spell Damage while wielding a Melee Weapon","+10 to Dexterity"],"stringId":"spells34"},"49993":{"connections":[{"id":40632,"orbit":2},{"id":64434,"orbit":0},{"id":7526,"orbit":0}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":7,"orbitIndex":8,"skill":49993,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect23"},"49996":{"connections":[{"id":32183,"orbit":0},{"id":38215,"orbit":-4},{"id":5163,"orbit":3},{"id":33463,"orbit":0}],"group":1380,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":49996,"stats":["+5 to any Attribute"],"stringId":"attributes35"},"50023":{"connections":[{"id":4921,"orbit":0},{"id":259,"orbit":0}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Invigorating Grandeur","orbit":4,"orbitIndex":39,"recipe":["Guilt","Fear","Fear"],"skill":50023,"stats":["Recover 1% of maximum Life per Glory consumed"],"stringId":"glory6_"},"50062":{"connections":[{"id":37641,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","isNotable":true,"name":"Barrier of Venarius","orbit":2,"orbitIndex":2,"recipe":["Despair","Greed","Envy"],"skill":50062,"stats":["20% increased maximum Energy Shield","25% reduced Armour Break taken","Defend with 120% of Armour while not on Low Energy Shield"],"stringId":"energy_shield_and_armour13"},"50084":{"connections":[{"id":61525,"orbit":0}],"group":722,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Spell and Attack Damage","orbit":0,"orbitIndex":0,"skill":50084,"stats":["10% increased Spell Damage","10% increased Attack Damage"],"stringId":"placeholder2"},"50098":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":11771,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaBreachWalk.dds","isNotable":true,"name":"Waking Dream","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":5,"orbitIndex":16,"skill":50098,"stats":["Grants Skill: Into the Breach"],"stringId":"AscendancyMonk3Notable5"},"50104":{"connections":[{"id":47168,"orbit":0},{"id":37594,"orbit":0},{"id":7960,"orbit":0},{"id":46742,"orbit":0},{"id":44191,"orbit":-8}],"group":512,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":50104,"stats":["+5 to any Attribute"],"stringId":"intelligence51"},"50107":{"connections":[{"id":50881,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect on Self","orbit":2,"orbitIndex":16,"skill":50107,"stats":["15% reduced effect of Curses on you"],"stringId":"curses26"},"50118":{"connections":[{"id":55450,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Resistance and Life","orbit":1,"orbitIndex":4,"skill":50118,"stats":["Companions have +12% to all Elemental Resistances","Companions have 12% increased maximum Life"],"stringId":"companions38"},"50121":{"connections":[{"id":3128,"orbit":0}],"group":1271,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":50121,"stats":["10% increased Cold Damage"],"stringId":"cold11"},"50124":{"connections":[{"id":62237,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":4,"skill":50124,"stats":["+2% to Cold Resistance","8% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion33"},"50142":{"connectionArt":"CharacterPlanned","connections":[{"id":58197,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":58,"skill":50142,"stats":["15% increased Lightning Damage"],"stringId":"oracle_rust_king7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50146":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Buckler Mastery","orbit":3,"orbitIndex":8,"skill":50146,"stats":[],"stringId":"mastery_buckler281"},"50150":{"connections":[{"id":37279,"orbit":0}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Mana Regeneration","orbit":3,"orbitIndex":12,"skill":50150,"stats":["8% increased Mana Regeneration Rate","8% increased Elemental Damage"],"stringId":"lightning46"},"50177":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":451,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":50177,"stats":[],"stringId":"mastery_cold_6393"},"50184":{"connectionArt":"CharacterPlanned","connections":[{"id":46069,"orbit":0}],"group":464,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":1,"skill":50184,"stats":["12% increased Magnitude of Poison you inflict"],"stringId":"oracle_poison3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50192":{"ascendancyName":"Blood Mage","connections":[{"id":31223,"orbit":-9}],"group":1057,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":50192,"stats":["3% increased maximum Life"],"stringId":"AscendancyWitch2Small8"},"50216":{"connections":[{"id":44951,"orbit":3},{"id":17655,"orbit":4}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Skill Speed","orbit":2,"orbitIndex":18,"skill":50216,"stats":["2% increased Skill Speed","5% increased Mana Regeneration Rate"],"stringId":"mana2"},"50219":{"ascendancyName":"Chronomancer","connections":[{"id":42035,"orbit":0}],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":2,"orbitIndex":21,"skill":50219,"stats":["8% increased Area of Effect"],"stringId":"AscendancySorceress2Small3"},"50228":{"connections":[{"id":20511,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":3,"orbitIndex":10,"skill":50228,"stats":["10% increased Fire Damage"],"stringId":"warcries43"},"50239":{"connections":[{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/coldresist.dds","isNotable":true,"name":"Mutewind Agility","orbit":7,"orbitIndex":5,"recipe":["Suffering","Envy","Suffering"],"skill":50239,"stats":["3% increased Movement Speed","+8% to Cold Resistance","+30% of Armour also applies to Cold Damage"],"stringId":"armour_and_evasion37"},"50253":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":370,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Aftershocks","orbit":0,"orbitIndex":0,"recipe":["Despair","Guilt","Greed"],"skill":50253,"stats":["Slam Skills you use yourself have 30% increased Aftershock Area of Effect"],"stringId":"slams5"},"50268":{"connections":[{"id":2446,"orbit":0}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","name":"Cold and Lightning Damage","orbit":2,"orbitIndex":20,"skill":50268,"stats":["8% increased Cold Damage","8% increased Lightning Damage"],"stringId":"monkchakra20_"},"50273":{"connections":[{"id":47893,"orbit":0},{"id":63267,"orbit":0},{"id":3131,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Damage","orbit":0,"orbitIndex":0,"skill":50273,"stats":["12% increased Attack Damage while Dual Wielding"],"stringId":"dual_wielding5"},"50277":{"connections":[{"id":50701,"orbit":0}],"group":1373,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50277,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock15"},"50302":{"connections":[{"id":63470,"orbit":0}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","orbit":3,"orbitIndex":11,"skill":50302,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"stringId":"life_costs2"},"50328":{"connections":[{"id":28992,"orbit":0},{"id":10053,"orbit":0}],"group":1006,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Life and Mana Flask Recovery","orbit":3,"orbitIndex":23,"skill":50328,"stats":["10% increased Life and Mana Recovery from Flasks"],"stringId":"flasks20_"},"50342":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":5227,"orbit":0}],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":2,"orbitIndex":17,"skill":50342,"stats":["15% increased Evasion Rating"],"stringId":"evasion15"},"50383":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":784,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":50383,"stats":[],"stringId":"mastery_infusion295_"},"50392":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[],"group":216,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","isNotable":true,"name":"Brute Strength","orbit":0,"orbitIndex":0,"recipe":["Ire","Suffering","Isolation"],"skill":50392,"stats":["10% reduced maximum Mana","1% increased Damage per 15 Strength"],"stringId":"strength108_"},"50403":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1422,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":50403,"stats":[],"stringId":"mastery_cold6170_"},"50420":{"connections":[{"id":51241,"orbit":-2},{"id":31364,"orbit":0}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":2,"skill":50420,"stats":["10% increased Charm Charges gained"],"stringId":"charms23"},"50423":{"connections":[{"id":38856,"orbit":0},{"id":23364,"orbit":0},{"id":56547,"orbit":0}],"group":673,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":57,"skill":50423,"stats":["+5 to any Attribute"],"stringId":"intelligence39"},"50437":{"connections":[{"id":35987,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":8,"skill":50437,"stats":["15% increased Evasion Rating"],"stringId":"evasion14"},"50459":{"classesStart":["Ranger","Huntress"],"connections":[{"id":46990,"orbit":0},{"id":1583,"orbit":0},{"id":24665,"orbit":0},{"id":41736,"orbit":0},{"id":63493,"orbit":0},{"id":36365,"orbit":0},{"id":13828,"orbit":0},{"id":56651,"orbit":0}],"group":912,"icon":"Art/2DArt/SkillIcons/passives/blankDex.dds","name":"RANGER","orbit":0,"orbitIndex":0,"skill":50459,"stats":[],"stringId":"ranger596"},"50469":{"connections":[{"id":32701,"orbit":0}],"group":1144,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":50469,"stats":["+5 to any Attribute"],"stringId":"attributes66"},"50483":{"connections":[{"id":61842,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":22,"skill":50483,"stats":["Minions have 8% increased Area of Effect"],"stringId":"minion_offence8"},"50485":{"connections":[{"id":22959,"orbit":0}],"group":999,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Zone of Control","orbit":2,"orbitIndex":18,"recipe":["Isolation","Isolation","Envy"],"skill":50485,"stats":["20% increased Area of Effect of Curses","10% increased Curse Magnitudes","Enemies you Curse are Hindered, with 15% reduced Movement Speed"],"stringId":"curses6"},"50498":{"connections":[],"group":1217,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Brain Storm","orbit":0,"orbitIndex":0,"recipe":["Suffering","Guilt","Guilt"],"skill":50498,"stats":["20% increased Lightning Damage","15% increased Mana Cost Efficiency"],"stringId":"lightning70"},"50510":{"connections":[{"id":46384,"orbit":0}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":18,"skill":50510,"stats":["5% increased Block chance"],"stringId":"shield8"},"50516":{"connections":[{"id":2814,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Flammability Magnitude","orbit":7,"orbitIndex":2,"skill":50516,"stats":["15% increased Flammability Magnitude","4% increased Area of Effect for Attacks"],"stringId":"area_attacks60"},"50535":{"connections":[{"id":10612,"orbit":2}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":2,"orbitIndex":18,"skill":50535,"stats":["15% increased effect of Archon Buffs on you"],"stringId":"cold19"},"50540":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCursePattern","connections":[{"id":16499,"orbit":0}],"group":893,"icon":"Art/2DArt/SkillIcons/passives/MasteryCurse.dds","isOnlyImage":true,"name":"Curse Mastery","orbit":0,"orbitIndex":0,"skill":50540,"stats":[],"stringId":"mastery_curse69"},"50558":{"connections":[{"id":32194,"orbit":0},{"id":12462,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isSwitchable":true,"name":"Aura Effect","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":36908,"name":"Damage","stats":["8% increased Damage"]}},"orbit":4,"orbitIndex":60,"skill":50558,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras3"},"50561":{"connections":[{"id":12418,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":18,"skill":50561,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries8"},"50562":{"connections":[{"id":43142,"orbit":0}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Barbaric Strength","orbit":7,"orbitIndex":8,"recipe":["Guilt","Despair","Envy"],"skill":50562,"stats":["45% increased Critical Damage Bonus","10% increased Mana Cost of Skills","+10 to Strength"],"stringId":"criticals74"},"50574":{"connections":[{"id":19426,"orbit":0},{"id":46034,"orbit":0}],"group":1091,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Life Recoup","orbit":2,"orbitIndex":20,"skill":50574,"stats":["3% of Physical Damage taken Recouped as Life","5% increased Physical Damage"],"stringId":"physical45"},"50588":{"connections":[{"id":6010,"orbit":0}],"group":1194,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":2,"orbitIndex":2,"skill":50588,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy13"},"50609":{"connections":[{"id":11916,"orbit":0}],"group":839,"icon":"Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNotable.dds","isNotable":true,"name":"Hard to Kill","orbit":3,"orbitIndex":18,"skill":50609,"stats":["40% increased Flask Life Recovery rate","Regenerate 0.75% of maximum Life per second"],"stringId":"life_regeneration17_"},"50616":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":262,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":50616,"stats":[],"stringId":"mastery_attack1"},"50626":{"connections":[{"id":32597,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":7,"skill":50626,"stats":["+10 to Armour","+5 to maximum Energy Shield"],"stringId":"energy_shield_and_armour1"},"50629":{"connections":[{"id":3218,"orbit":0},{"id":23930,"orbit":0},{"id":24430,"orbit":0}],"group":276,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":0,"orbitIndex":0,"skill":50629,"stats":["10% increased Elemental Damage"],"stringId":"elemental3"},"50635":{"connections":[{"id":25971,"orbit":0},{"id":42750,"orbit":5},{"id":9050,"orbit":-5}],"group":1265,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":13,"skill":50635,"stats":["3% increased Attack Speed"],"stringId":"attack_speed5"},"50673":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":58526,"orbit":-2},{"id":62427,"orbit":-2}],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Avoiding Deflection","orbit":3,"orbitIndex":18,"recipe":["Disgust","Greed","Suffering"],"skill":50673,"stats":["-5% to amount of Damage Prevented by Deflection","20% increased Deflection Rating"],"stringId":"deflect42"},"50687":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":773,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Coursing Energy","orbit":7,"orbitIndex":14,"recipe":["Envy","Disgust","Paranoia"],"skill":50687,"stats":["40% increased Electrocute Buildup","30% increased Shock Chance against Electrocuted Enemies"],"stringId":"shock_mitigation8_"},"50701":{"connections":[{"id":44932,"orbit":0}],"group":1376,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Effect","orbit":0,"orbitIndex":0,"skill":50701,"stats":["15% increased Magnitude of Shock you inflict"],"stringId":"shock4"},"50715":{"connections":[{"id":50383,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Frozen Limit","orbit":7,"orbitIndex":21,"recipe":["Greed","Envy","Fear"],"skill":50715,"stats":["+1 to maximum Cold Infusions"],"stringId":"infusion23"},"50720":{"connections":[{"id":43557,"orbit":0},{"id":11376,"orbit":-3},{"id":34199,"orbit":3},{"id":30523,"orbit":3}],"group":807,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":23,"skill":50720,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence35"},"50755":{"connections":[{"id":10131,"orbit":9},{"id":39567,"orbit":0},{"id":19355,"orbit":8}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":5,"skill":50755,"stats":["+8 to Intelligence"],"stringId":"intelligence103"},"50757":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":308,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":50757,"stats":[],"stringId":"mastery_evasion108"},"50767":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":121,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":2,"orbitIndex":0,"skill":50767,"stats":[],"stringId":"mastery_shapeshifting_6685"},"50795":{"connections":[{"id":58013,"orbit":0},{"id":20744,"orbit":0}],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Careful Aim","orbit":7,"orbitIndex":7,"recipe":["Guilt","Guilt","Paranoia"],"skill":50795,"stats":["15% increased Accuracy Rating","20% increased Projectile Damage"],"stringId":"ranged31"},"50816":{"connections":[{"id":46554,"orbit":-9},{"id":39567,"orbit":0},{"id":37974,"orbit":-5}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":5,"orbitIndex":67,"skill":50816,"stats":["+8 to Intelligence"],"stringId":"intelligence102"},"50817":{"connections":[{"id":61355,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Damage from Mana","orbit":7,"orbitIndex":11,"skill":50817,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"monkchakra4"},"50820":{"connections":[{"id":65472,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":17,"skill":50820,"stats":["15% increased Glory generation"],"stringId":"glory25"},"50837":{"connections":[{"id":14598,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNode.dds","name":"Minion Damage and Command Speed","orbit":3,"orbitIndex":15,"skill":50837,"stats":["Minions deal 6% increased Damage","Minions have 8% increased Cooldown Recovery Rate for Command Skills"],"stringId":"archon21"},"50847":{"connections":[{"id":1130,"orbit":0}],"group":152,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Damage","orbit":7,"orbitIndex":5,"skill":50847,"stats":["10% increased Damage with Flails"],"stringId":"flail3"},"50879":{"connections":[{"id":14211,"orbit":7}],"group":1198,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Hazard Damage","orbit":7,"orbitIndex":4,"skill":50879,"stats":["16% increased Hazard Damage"],"stringId":"hazards13"},"50881":{"connections":[{"id":55420,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect on Self","orbit":2,"orbitIndex":20,"skill":50881,"stats":["15% reduced effect of Curses on you"],"stringId":"curses27"},"50884":{"connections":[{"id":53696,"orbit":0}],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","isNotable":true,"name":"Primal Sundering","orbit":7,"orbitIndex":14,"recipe":["Guilt","Fear","Ire"],"skill":50884,"stats":["Damage Penetrates 12% Elemental Resistances","8% increased Area of Effect for Attacks"],"stringId":"elemental56"},"50908":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":663,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Strength of the Deep","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":50908,"stats":["2% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges","+1 to Maximum Endurance Charges"],"stringId":"oracle_endurance_charge4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"50912":{"connections":[],"group":1163,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Imbibed Power","orbit":7,"orbitIndex":20,"recipe":["Ire","Disgust","Paranoia"],"skill":50912,"stats":["6% increased Attack Speed during any Flask Effect","25% increased Damage during any Flask Effect"],"stringId":"attack46"},"50986":{"classesStart":["Duelist","Mercenary"],"connections":[{"id":39383,"orbit":0},{"id":10889,"orbit":0},{"id":62386,"orbit":0},{"id":36252,"orbit":0},{"id":7120,"orbit":0},{"id":55536,"orbit":0},{"id":59915,"orbit":0}],"group":825,"icon":"Art/2DArt/SkillIcons/passives/damagedualwield.dds","name":"DUELIST","orbit":0,"orbitIndex":0,"skill":50986,"stats":[],"stringId":"duelist597"},"51006":{"connections":[{"id":41877,"orbit":0}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Charges Used","orbit":3,"orbitIndex":1,"skill":51006,"stats":["4% reduced Flask Charges used from Mana Flasks"],"stringId":"mana_flasks9"},"51040":{"connections":[{"id":9652,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":0,"orbitIndex":0,"skill":51040,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"deflect60"},"51048":{"connections":[{"id":17702,"orbit":0},{"id":58814,"orbit":0},{"id":33946,"orbit":0},{"id":30910,"orbit":0}],"group":1108,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":51048,"stats":["+5 to any Attribute"],"stringId":"dexterity76"},"51052":{"connections":[{"id":22558,"orbit":0},{"id":761,"orbit":-8},{"id":51183,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":60,"skill":51052,"stats":["+5 to any Attribute"],"stringId":"strength10"},"51105":{"connections":[{"id":48979,"orbit":0},{"id":21127,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Spirit Bond","orbit":1,"orbitIndex":5,"recipe":["Greed","Ire","Fear"],"skill":51105,"stats":["30% increased Totem Life","30% increased Totem Duration"],"stringId":"totems21"},"51129":{"connections":[{"id":15892,"orbit":0},{"id":48717,"orbit":0}],"group":193,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak2BuffIcon.dds","isNotable":true,"name":"Pile On","orbit":7,"orbitIndex":16,"recipe":["Isolation","Ire","Ire"],"skill":51129,"stats":["30% increased effect of Fully Broken Armour"],"stringId":"armour_break35"},"51142":{"ascendancyName":"Lich","connections":[{"id":26085,"orbit":-4}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Mana","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":15373,"name":"Minion Reservation Efficiency","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["6% increased Reservation Efficiency of Minion Skills"]}},"orbit":9,"orbitIndex":135,"skill":51142,"stats":["3% increased maximum Mana"],"stringId":"AscendancyWitch3Small4"},"51169":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":822,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","isNotable":true,"name":"Soul Bloom","orbit":7,"orbitIndex":21,"recipe":["Despair","Ire","Isolation"],"skill":51169,"stats":["15% faster start of Energy Shield Recharge"],"stringId":"mana40"},"51183":{"connections":[{"id":45301,"orbit":0},{"id":10635,"orbit":0}],"group":446,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":12,"skill":51183,"stats":["10% increased Armour","10% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour26"},"51184":{"connections":[{"id":41965,"orbit":-4},{"id":29502,"orbit":6},{"id":3242,"orbit":-4}],"group":776,"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","isNotable":true,"isSwitchable":true,"name":"Raw Power","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/IncreasedManaCostNotable.dds","id":5788,"name":"Raw Destruction","stats":["16% increased Spell Damage","Minions deal 16% increased Damage","+10 to Intelligence"]}},"orbit":0,"orbitIndex":0,"skill":51184,"stats":["20% increased Spell Damage","+10 to Intelligence"],"stringId":"witch_sorceress_notable1"},"51194":{"connections":[{"id":24060,"orbit":2147483647},{"id":18793,"orbit":2147483647},{"id":49512,"orbit":0}],"group":762,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":2,"orbitIndex":0,"skill":51194,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion11"},"51206":{"connections":[{"id":49642,"orbit":-6}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":17,"skill":51206,"stats":["15% increased Totem Damage"],"stringId":"totems3"},"51210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":205,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":51210,"stats":[],"stringId":"mastery_caster_6125"},"51213":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryDamageOverTimePattern","connections":[{"id":64747,"orbit":5}],"group":1162,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","isNotable":true,"name":"Wasting","orbit":0,"orbitIndex":0,"recipe":["Guilt","Fear","Despair"],"skill":51213,"stats":["15% increased Duration of Damaging Ailments on Enemies","30% increased Damage with Hits against Enemies affected by Ailments"],"stringId":"ailments39_"},"51234":{"connections":[{"id":15991,"orbit":-2},{"id":27434,"orbit":7}],"group":878,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":2,"orbitIndex":6,"skill":51234,"stats":["15% increased effect of Archon Buffs on you"],"stringId":"lightning56"},"51241":{"connections":[{"id":55118,"orbit":-2}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":10,"skill":51241,"stats":["10% increased Charm Charges gained"],"stringId":"charms22"},"51248":{"connections":[{"id":38292,"orbit":0},{"id":6015,"orbit":4}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":9,"skill":51248,"stats":["10% increased Fire Damage"],"stringId":"fire27"},"51267":{"connections":[{"id":11886,"orbit":0}],"group":452,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":7,"orbitIndex":19,"skill":51267,"stats":["15% increased Stun Buildup"],"stringId":"stun26_"},"51299":{"connections":[{"id":35265,"orbit":0},{"id":19802,"orbit":0},{"id":44419,"orbit":0}],"group":595,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":0,"skill":51299,"stats":["+5 to any Attribute"],"stringId":"strength50"},"51303":{"connections":[{"id":38965,"orbit":0}],"group":470,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","name":"Infusion Duration","orbit":1,"orbitIndex":11,"skill":51303,"stats":["10% increased Elemental Infusion duration"],"stringId":"infusion9"},"51328":{"connections":[{"id":49938,"orbit":9}],"group":320,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":0,"orbitIndex":0,"skill":51328,"stats":["12% increased Cold Damage"],"stringId":"cold54"},"51335":{"connections":[{"id":51968,"orbit":-6},{"id":5726,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isNotable":true,"isSwitchable":true,"name":"Affliction Enforcer","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","id":64801,"name":"Jagged Shards","stats":["20% increased Critical Hit Chance for Spells","20% increased Physical Damage"]}},"orbit":7,"orbitIndex":21,"skill":51335,"stats":["40% increased Flammability Magnitude","20% increased Freeze Buildup","20% increased chance to Shock"],"stringId":"fire32"},"51336":{"connections":[{"id":56818,"orbit":4},{"id":53965,"orbit":0}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":45,"skill":51336,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks5"},"51369":{"connections":[{"id":56061,"orbit":0},{"id":45503,"orbit":0}],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Damage against Burning Enemies","orbit":2,"orbitIndex":6,"skill":51369,"stats":["14% increased Damage with Hits against Burning Enemies"],"stringId":"fire10"},"51394":{"connections":[{"id":29993,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Unimpeded","orbit":3,"orbitIndex":2,"recipe":["Isolation","Envy","Isolation"],"skill":51394,"stats":["24% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells4"},"51416":{"connections":[{"id":32016,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":54,"skill":51416,"stats":["3% increased Cast Speed"],"stringId":"spells17"},"51446":{"connections":[{"id":53647,"orbit":-7},{"id":19750,"orbit":0}],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Leather Bound Gauntlets","orbit":3,"orbitIndex":16,"recipe":["Greed","Suffering","Ire"],"skill":51446,"stats":["+1 to Evasion Rating per 1 Item Armour on Equipped Gloves"],"stringId":"evasion38_"},"51454":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connectionArt":"CharacterPlanned","connections":[],"group":522,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":51454,"stats":[],"stringId":"oracle_life_corruption_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51463":{"connections":[{"id":4364,"orbit":0}],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","name":"Attack Damage while Moving","orbit":7,"orbitIndex":14,"skill":51463,"stats":["12% increased Attack Damage while moving"],"stringId":"slow_mitigation10_"},"51485":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":545,"icon":"Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.dds","isOnlyImage":true,"name":"Shapeshifting Mastery","orbit":0,"orbitIndex":0,"skill":51485,"stats":[],"stringId":"mastery_shapeshifting_6684"},"51509":{"connections":[{"id":35848,"orbit":7},{"id":9393,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","isNotable":true,"name":"Waters of Life","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Disgust"],"skill":51509,"stats":["Recover 2% of maximum Life when you use a Mana Flask","Mana Flasks gain 0.1 charges per Second"],"stringId":"mana_flasks14"},"51522":{"connections":[{"id":56493,"orbit":-7}],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":22,"skill":51522,"stats":["3% increased Attack Speed"],"stringId":"attack_speed58"},"51534":{"connections":[{"id":24483,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":3,"orbitIndex":14,"skill":51534,"stats":["16% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"stringId":"criticals7"},"51535":{"connections":[{"id":8852,"orbit":0}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Slower Leech","orbit":2,"orbitIndex":13,"skill":51535,"stats":["12% increased amount of Life Leeched","Leech Life 5% slower"],"stringId":"life_leech10"},"51546":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistCoveredinStone.dds","isNotable":true,"name":"Way of the Mountain","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":9,"orbitIndex":57,"skill":51546,"stats":["100% Surpassing chance per enemy Power to gain Mountain's Teachings on Immobilising an enemy, up to a maximum of 30","Lose a Mountain's Teaching when you are Hit, or when you use or Sustain an Attack that benefits from Mountain's Teachings"],"stringId":"AscendancyMonk1Notable6"},"51561":{"connections":[{"id":25312,"orbit":0},{"id":2491,"orbit":0},{"id":7716,"orbit":0}],"group":343,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":51561,"stats":["+5 to any Attribute"],"stringId":"strength71"},"51565":{"connections":[{"id":2335,"orbit":0},{"id":22682,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":6,"skill":51565,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"spells14"},"51583":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":51583,"stats":[],"stringId":"mastery_criticals64"},"51602":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[],"group":1406,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Unsight","orbit":0,"orbitIndex":0,"recipe":["Suffering","Disgust","Despair"],"skill":51602,"stats":["Enemies near Enemies you Mark are Blinded","Enemies you Mark cannot deal Critical Hits"],"stringId":"marks27"},"51606":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":65207,"orbit":-7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Freedom of Movement","orbit":4,"orbitIndex":48,"recipe":["Greed","Greed","Envy"],"skill":51606,"stats":["20% increased Evasion Rating","10% reduced Slowing Potency of Debuffs on You","5% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion30"},"51618":{"connectionArt":"CharacterPlanned","connections":[{"id":11580,"orbit":0},{"id":43324,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs and Regeneration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":51618,"stats":["15% increased Life Regeneration rate","6% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_life_corruption1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"51672":{"connections":[{"id":31955,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":10,"skill":51672,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour43"},"51683":{"connections":[],"group":396,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":22,"skill":51683,"stats":["15% increased Totem Damage"],"stringId":"totems5"},"51690":{"ascendancyName":"Titan","connections":[{"id":12000,"orbit":-5}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Life Regeneration","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":6,"orbitIndex":43,"skill":51690,"stats":["Regenerate 0.5% of maximum Life per second"],"stringId":"AscendancyWarrior1Small7"},"51702":{"connections":[],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":16,"skill":51702,"stats":["+8 to Strength"],"stringId":"strength104"},"51707":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":38728,"orbit":5},{"id":41163,"orbit":0}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Enhanced Reflexes","orbit":5,"orbitIndex":66,"recipe":["Fear","Ire","Envy"],"skill":51707,"stats":["20% increased Evasion Rating","Gain Deflection Rating equal to 5% of Evasion Rating","8% increased Dexterity"],"stringId":"evasion32"},"51708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1133,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Evasion Mastery","orbit":0,"orbitIndex":0,"skill":51708,"stats":[],"stringId":"mastery_evasion_6509"},"51728":{"connections":[{"id":6505,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Pierce Chance","orbit":2,"orbitIndex":7,"skill":51728,"stats":["15% chance to Pierce an Enemy"],"stringId":"ranged45"},"51732":{"connections":[{"id":26568,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":16,"skill":51732,"stats":["3% increased Attack Speed"],"stringId":"duration_spells8"},"51735":{"connections":[{"id":44707,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":2,"orbitIndex":17,"skill":51735,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield2"},"51737":{"ascendancyName":"Witchhunter","connections":[{"id":8272,"orbit":-8}],"group":245,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":51737,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"AscendancyMercenary2Small8_"},"51741":{"connections":[{"id":61834,"orbit":0},{"id":57230,"orbit":-4},{"id":57821,"orbit":0},{"id":45798,"orbit":0},{"id":15424,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":51741,"stats":["+5 to any Attribute"],"stringId":"intelligence25"},"51743":{"connections":[{"id":57617,"orbit":3}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Attack Damage","orbit":4,"orbitIndex":0,"skill":51743,"stats":["15% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting23"},"51749":{"connections":[{"id":30141,"orbit":0}],"flavourText":"Lay open your veins, and draw power from your own spilled life.","group":139,"icon":"Art/2DArt/SkillIcons/passives/KeystoneBloodMagic.dds","isKeystone":true,"name":"Blood Magic","orbit":0,"orbitIndex":0,"skill":51749,"stats":["You have no Mana","Skill Mana Costs Converted to Life Costs"],"stringId":"passive_keystone_blood_magic"},"51774":{"connections":[{"id":34425,"orbit":2}],"group":1487,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility Detonation Time","orbit":2,"orbitIndex":16,"skill":51774,"stats":["15% reduced Volatility Explosion delay"],"stringId":"volatility15"},"51788":{"connections":[{"id":5066,"orbit":-2}],"group":684,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Curse Effect on you","orbit":2,"orbitIndex":4,"skill":51788,"stats":["10% reduced effect of Curses on you"],"stringId":"mercenary7"},"51795":{"connections":[{"id":32271,"orbit":-2},{"id":53632,"orbit":7}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude and Fire Damage","orbit":7,"orbitIndex":12,"skill":51795,"stats":["8% increased Fire Damage","15% increased Flammability Magnitude"],"stringId":"fire22"},"51797":{"connections":[{"id":23939,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":51797,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup7"},"51807":{"connections":[{"id":57089,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":2,"orbitIndex":0,"skill":51807,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions39"},"51812":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":248,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":51812,"stats":[],"stringId":"mastery_attack_6302"},"51820":{"connections":[{"id":21127,"orbit":0}],"group":305,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Conduits","orbit":6,"orbitIndex":30,"recipe":["Despair","Suffering","Suffering"],"skill":51820,"stats":["12% increased Attack and Cast Speed if you've summoned a Totem Recently"],"stringId":"totems33_"},"51821":{"connections":[{"id":20115,"orbit":0},{"id":25014,"orbit":0},{"id":39102,"orbit":0}],"group":257,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":51821,"stats":["+5 to any Attribute"],"stringId":"strength51"},"51825":{"connections":[{"id":47363,"orbit":0},{"id":9164,"orbit":0},{"id":13708,"orbit":0}],"group":786,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":4,"orbitIndex":45,"skill":51825,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed20"},"51832":{"connections":[{"id":47722,"orbit":0}],"group":198,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Damage","orbit":2,"orbitIndex":6,"skill":51832,"stats":["16% increased Damage with Warcries"],"stringId":"warcries10"},"51847":{"connections":[{"id":33974,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":4,"orbitIndex":24,"skill":51847,"stats":["8% increased Attack Damage","5% increased Accuracy Rating"],"stringId":"attack31"},"51850":{"connectionArt":"CharacterPlanned","connections":[{"id":9535,"orbit":0},{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Path of the Renegade","orbit":3,"orbitIndex":10,"skill":51850,"stats":["+8% to Chaos Resistance","+20% of Armour also applies to Chaos Damage"],"stringId":"armour_and_evasion45","unlockConstraint":{"nodes":[50239,9535,61309]}},"51867":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":408,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Finality","orbit":0,"orbitIndex":0,"recipe":["Isolation","Guilt","Envy"],"skill":51867,"stats":["120% increased Damage with Hits against Enemies that are on Low Life","5% increased Damage taken while on Low Life"],"stringId":"enemies_on_low_life11"},"51868":{"connections":[{"id":19794,"orbit":3},{"id":38320,"orbit":0}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Molten Carapace","orbit":5,"orbitIndex":64,"recipe":["Guilt","Disgust","Suffering"],"skill":51868,"stats":["50% increased Armour while Ignited","+2% to Maximum Fire Resistance while Ignited","50% increased Fire Damage while Ignited"],"stringId":"ignite_mitigation4"},"51871":{"connections":[{"id":8045,"orbit":0}],"group":1328,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","isNotable":true,"name":"Immortal Thirst","orbit":0,"orbitIndex":0,"recipe":["Guilt","Suffering","Guilt"],"skill":51871,"stats":["15% increased maximum Energy Shield","25% increased amount of Mana Leeched"],"stringId":"mana_leech20"},"51891":{"connections":[{"id":25528,"orbit":0}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Lucidity","orbit":7,"orbitIndex":17,"recipe":["Envy","Disgust","Suffering"],"skill":51891,"stats":["8% of Damage is taken from Mana before Life","+15 to Intelligence"],"stringId":"mana19"},"51892":{"connections":[{"id":59387,"orbit":0},{"id":64427,"orbit":0},{"id":44188,"orbit":0}],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion and Power Charge Duration","orbit":2,"orbitIndex":23,"skill":51892,"stats":["6% increased Power Charge Duration","6% increased Elemental Infusion duration"],"stringId":"power_charges18"},"51903":{"connections":[{"id":55058,"orbit":0},{"id":39347,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":17,"skill":51903,"stats":["10% increased Melee Damage"],"stringId":"melee48_"},"51921":{"connections":[{"id":36629,"orbit":-4}],"group":655,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":51921,"stats":["+5 to any Attribute"],"stringId":"strength42"},"51934":{"connections":[],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Invocated Efficiency","orbit":0,"orbitIndex":0,"recipe":["Isolation","Envy","Paranoia"],"skill":51934,"stats":["10% increased Mana Cost Efficiency","Triggered Spells deal 40% increased Spell Damage"],"stringId":"triggers17"},"51944":{"connections":[{"id":49406,"orbit":0},{"id":51728,"orbit":0},{"id":47683,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":15,"skill":51944,"stats":["10% increased Projectile Damage"],"stringId":"ranged29_"},"51968":{"connections":[],"group":777,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isSwitchable":true,"name":"Elemental Ailment Chance","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","id":18040,"name":"Physical Damage","stats":["10% increased Physical Damage"]}},"orbit":3,"orbitIndex":18,"skill":51968,"stats":["20% increased Flammability Magnitude","10% increased Freeze Buildup","10% increased chance to Shock"],"stringId":"fire3"},"51974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFortifyPattern","connections":[{"id":25711,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/FortifyMasterySymbol.dds","isOnlyImage":true,"name":"Fortify Mastery","orbit":0,"orbitIndex":0,"skill":51974,"stats":[],"stringId":"mastery_fortify7"},"52003":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":772,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCast.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":2,"orbitIndex":18,"skill":52003,"stats":[],"stringId":"mastery_cold_6394"},"52038":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":572,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":52038,"stats":[],"stringId":"mastery_aura_6313"},"52053":{"connections":[{"id":14048,"orbit":3},{"id":24120,"orbit":-4}],"group":1346,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":16,"skill":52053,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana33"},"52060":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52060,"stats":[],"stringId":"mastery_energy_shield_6493"},"52068":{"ascendancyName":"Warbringer","connections":[],"group":60,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerCanBlockAllDamageShieldNotRaised.dds","isNotable":true,"name":"Turtle Charm","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":52068,"stats":["You take 20% of damage from Blocked Hits","Maximum Block chance is 75%"],"stringId":"AscendancyWarrior2Notable9"},"52106":{"connections":[{"id":44005,"orbit":0},{"id":10295,"orbit":0}],"group":281,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":6,"orbitIndex":34,"skill":52106,"stats":["3% increased Cast Speed"],"stringId":"cast_speed3"},"52115":{"connectionArt":"CharacterPlanned","connections":[{"id":51454,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Nurturing Nature","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":0,"skill":52115,"stats":["40% increased Mana Regeneration Rate while on Full Life"],"stringId":"oracle_life_corruption7","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"52125":{"connections":[{"id":2847,"orbit":0},{"id":21721,"orbit":0}],"group":819,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":52125,"stats":["+5 to any Attribute"],"stringId":"dexterity79"},"52126":{"connections":[{"id":21885,"orbit":3}],"group":268,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold and Strength","orbit":2,"orbitIndex":0,"skill":52126,"stats":["10% increased Stun Threshold","+5 to Strength"],"stringId":"stun_threshold25"},"52180":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Trained Deflection","orbit":1,"orbitIndex":9,"recipe":["Suffering","Despair","Suffering"],"skill":52180,"stats":["Prevent +6% of Damage from Deflected Hits"],"stringId":"deflect58"},"52191":{"connections":[{"id":57724,"orbit":-7}],"group":1296,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Event Horizon","orbit":0,"orbitIndex":0,"recipe":["Despair","Isolation","Guilt"],"skill":52191,"stats":["53% increased Chaos Damage","Lose 3% of maximum Life and Energy Shield when you use a Chaos Skill"],"stringId":"chaos33_"},"52199":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":44498,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Overexposure","orbit":0,"orbitIndex":0,"recipe":["Suffering","Isolation","Greed"],"skill":52199,"stats":["30% increased Exposure Effect"],"stringId":"elemental36"},"52215":{"connections":[{"id":56366,"orbit":0}],"group":1516,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Chance","orbit":0,"orbitIndex":0,"skill":52215,"stats":["10% increased Critical Hit Chance with Daggers"],"stringId":"dagger9"},"52220":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":226,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":0,"orbitIndex":0,"skill":52220,"stats":[],"stringId":"mastery_physical194"},"52229":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","isNotable":true,"name":"Secrets of the Orb","orbit":0,"orbitIndex":0,"recipe":["Disgust","Suffering","Despair"],"skill":52229,"stats":["Orb Skills have +1 to Limit"],"stringId":"orb5"},"52241":{"connections":[{"id":94,"orbit":2}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana on Kill","orbit":1,"orbitIndex":3,"skill":52241,"stats":["Recover 1% of maximum Mana on Kill"],"stringId":"mana_regeneration47_"},"52245":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":1480,"icon":"Art/2DArt/SkillIcons/passives/CursemitigationclusterNotable.dds","isNotable":true,"name":"Distant Dreamer","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Suffering","Envy"],"skill":52245,"stats":["+10% to Chaos Resistance","Gain 5% of Damage as Extra Chaos Damage","50% reduced effect of Withered on you"],"stringId":"monkchaos6"},"52254":{"connections":[{"id":42290,"orbit":0}],"group":892,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":7,"orbitIndex":14,"skill":52254,"stats":["6% increased Curse Magnitudes"],"stringId":"curses20"},"52257":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1461,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Conductive Embrace","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Isolation","Guilt"],"skill":52257,"stats":["+10% to Lightning Resistance","+2% to Maximum Lightning Resistance if you have at least 5 Green Support Gems Socketed"],"stringId":"shock36"},"52260":{"connections":[{"id":3688,"orbit":-2}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":8,"skill":52260,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers8_"},"52274":{"connections":[{"id":3109,"orbit":0},{"id":21077,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Damage","orbit":3,"orbitIndex":9,"skill":52274,"stats":["12% increased Grenade Damage"],"stringId":"grenades8"},"52295":{"ascendancyName":"Martial Artist","connections":[{"id":39595,"orbit":7}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Evasion and Energy Shield","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":4,"orbitIndex":15,"skill":52295,"stats":["15% increased Evasion Rating","15% increased maximum Energy Shield"],"stringId":"AscendancyMonk1Small3"},"52298":{"connections":[{"id":4527,"orbit":0},{"id":26725,"orbit":0},{"id":53308,"orbit":0},{"id":31805,"orbit":0},{"id":52126,"orbit":0}],"group":267,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":52298,"stats":["+5 to any Attribute"],"stringId":"strength61_"},"52300":{"connections":[{"id":53440,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Rage on Hit","orbit":3,"orbitIndex":9,"skill":52300,"stats":["Gain 1 Rage on Melee Axe Hit"],"stringId":"axe12"},"52319":{"connections":[{"id":48305,"orbit":-6}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":52319,"stats":["+5 to any Attribute"],"stringId":"strength5"},"52348":{"connections":[{"id":51206,"orbit":-5},{"id":34487,"orbit":0}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Carved Earth","orbit":7,"orbitIndex":15,"recipe":["Suffering","Suffering","Ire"],"skill":52348,"stats":["20% increased Totem Damage","6% increased Attack and Cast Speed if you've summoned a Totem Recently"],"stringId":"totems8"},"52351":{"connections":[{"id":52260,"orbit":0}],"group":1129,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":2,"orbitIndex":12,"skill":52351,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers7"},"52354":{"connections":[{"id":41171,"orbit":0}],"group":1014,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":52354,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"stringId":"boss_slaying6"},"52361":{"connections":[{"id":26107,"orbit":7}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":2,"orbitIndex":9,"skill":52361,"stats":["10% increased Projectile Damage"],"stringId":"projectiles10"},"52373":{"connections":[{"id":37276,"orbit":-2},{"id":56342,"orbit":7}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":20,"skill":52373,"stats":["+2 to Maximum Rage"],"stringId":"rage1"},"52374":{"ascendancyName":"Oracle","connections":[],"group":21,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleTotemLimit.dds","isNotable":true,"name":"Unnamed Heartwood","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":52374,"stats":["+1 to maximum number of Summoned Totems","Totems die 6 seconds after their Life is reduced to 0"],"stringId":"AscendancyDruid1Notable6"},"52392":{"connections":[{"id":25934,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Singular Purpose","orbit":3,"orbitIndex":17,"recipe":["Disgust","Envy","Fear"],"skill":52392,"stats":["5% reduced Attack Speed","20% increased Stun Buildup","40% increased Damage with Two Handed Weapons"],"stringId":"two_handed8"},"52395":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":56331,"orbit":0},{"id":26283,"orbit":0},{"id":664,"orbit":0}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaFlameSelector.dds","isMultipleChoice":true,"isNotable":true,"name":"Lucid Dreaming","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":5,"orbitIndex":27,"skill":52395,"stats":[],"stringId":"AscendancyMonk3Notable6_Choice"},"52399":{"connections":[{"id":9444,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Damage","orbit":5,"orbitIndex":38,"skill":52399,"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"stringId":"quarterstaff16_"},"52410":{"connections":[],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Stun Threshold during Parry","orbit":4,"orbitIndex":26,"skill":52410,"stats":["20% increased Stun Threshold while Parrying"],"stringId":"buckler10"},"52415":{"connections":[{"id":32655,"orbit":0}],"group":1340,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Attack Speed with Companion in Presence","orbit":2,"orbitIndex":22,"skill":52415,"stats":["4% increased Attack Speed while your Companion is in your Presence"],"stringId":"companions32"},"52429":{"connections":[{"id":58930,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":3,"orbitIndex":13,"skill":52429,"stats":["3% increased Cast Speed"],"stringId":"cast_speed26"},"52440":{"connections":[{"id":53893,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":2,"orbitIndex":18,"skill":52440,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions40"},"52442":{"connections":[],"group":826,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":2,"orbitIndex":20,"skill":52442,"stats":["3% increased Attack Speed"],"stringId":"attack_speed1"},"52445":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[],"group":1364,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Evasion and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":52445,"stats":[],"stringId":"mastery_evasion_and_energy_shield_6498"},"52448":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerWildStrike.dds","isNotable":true,"name":"...and Scatter Them to the Winds","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":53,"skill":52448,"stats":["Trigger Elemental Expression on Melee Critical Hit","Grants Skill: Elemental Expression"],"stringId":"AscendancyMonk2Notable7_"},"52454":{"connections":[{"id":46604,"orbit":3}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":3,"orbitIndex":21,"skill":52454,"stats":["7% increased Chaos Damage"],"stringId":"chaos15"},"52462":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":496,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":52462,"stats":[],"stringId":"mastery_armour5_"},"52464":{"connections":[],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":6,"orbitIndex":24,"skill":52464,"stats":["Recover 1% of maximum Life on Kill"],"stringId":"life_on_kill5"},"52501":{"connections":[{"id":60700,"orbit":2147483647}],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Empowered Attack Freeze Buildup","orbit":7,"orbitIndex":8,"skill":52501,"stats":["20% increased Freeze Buildup with Empowered Attacks"],"stringId":"cold50"},"52537":{"connections":[],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Penetration","orbit":2,"orbitIndex":13,"skill":52537,"stats":["10% increased Magnitude of Chill you inflict"],"stringId":"cold_penetration4"},"52556":{"connections":[{"id":16347,"orbit":-7},{"id":28304,"orbit":0}],"group":397,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage","orbit":2,"orbitIndex":8,"skill":52556,"stats":["+2 to Maximum Rage"],"stringId":"rage3"},"52568":{"connections":[{"id":3665,"orbit":-7},{"id":62779,"orbit":0}],"group":1026,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds","isNotable":true,"name":"Bond of the Owl","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Despair"],"skill":52568,"stats":["Gain 6% of Damage as Extra Cold Damage","Companions gain 12% Damage as extra Cold Damage"],"stringId":"companions51"},"52574":{"connections":[{"id":55478,"orbit":-7}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":7,"orbitIndex":21,"skill":52574,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks21"},"52576":{"connections":[{"id":64550,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":9,"skill":52576,"stats":["20% increased Damage against Immobilised Enemies"],"stringId":"immobilisation4"},"52615":{"connections":[],"group":1411,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Spell Area of Effect","orbit":7,"orbitIndex":18,"skill":52615,"stats":["Spell Skills have 6% increased Area of Effect"],"stringId":"area_spells6"},"52618":{"connections":[{"id":32777,"orbit":0}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Boon of the Beast","orbit":3,"orbitIndex":18,"recipe":["Fear","Suffering","Paranoia"],"skill":52618,"stats":["When you Shapeshift to Human form, gain 10% increased Spell Damage per second you were Shapeshifted, up to a maximum of 80%, for 8 seconds"],"stringId":"shapeshifting19"},"52630":{"connections":[{"id":61800,"orbit":0},{"id":28371,"orbit":0}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Critical Damage vs Full Life","orbit":7,"orbitIndex":13,"skill":52630,"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"stringId":"enemies_on_full_life2"},"52659":{"connections":[{"id":10362,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":20,"skill":52659,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration2"},"52669":{"connections":[{"id":55188,"orbit":-3}],"group":98,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Flamekeeper","orbit":0,"orbitIndex":0,"recipe":["Guilt","Ire","Ire"],"skill":52669,"stats":["20% increased Fire Damage","15% increased Ignite Magnitude","30% reduced Magnitude of Ignite on you"],"stringId":"fire75"},"52676":{"connections":[],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":7,"orbitIndex":3,"skill":52676,"stats":["16% increased Minion Duration"],"stringId":"minion_reservation9"},"52684":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":8115,"orbit":0}],"group":694,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Eroding Chains","orbit":4,"orbitIndex":32,"recipe":["Guilt","Fear","Guilt"],"skill":52684,"stats":["Break 50% of Armour on Pinning an Enemy"],"stringId":"armour_break38"},"52695":{"connections":[{"id":57230,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":7,"orbitIndex":1,"skill":52695,"stats":["10% increased Physical Damage"],"stringId":"chaos6"},"52703":{"ascendancyName":"Blood Mage","connections":[],"group":979,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageCritDamagePerLife.dds","isNotable":true,"name":"Gore Spike","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":52703,"stats":["1% increased Critical Damage Bonus per 50 current Life"],"stringId":"AscendancyWitch2Notable1"},"52743":{"connections":[{"id":34541,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":10,"skill":52743,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"deflect47"},"52746":{"connections":[{"id":9796,"orbit":0},{"id":64471,"orbit":3}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":2,"orbitIndex":12,"skill":52746,"stats":["12% increased Fire Damage"],"stringId":"fire14"},"52764":{"connections":[{"id":47606,"orbit":0}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Mystical Rage","orbit":1,"orbitIndex":0,"recipe":["Isolation","Greed","Envy"],"skill":52764,"stats":["Every Rage also grants 2% increased Spell Damage"],"stringId":"rage40"},"52765":{"connections":[],"group":1150,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":12,"skill":52765,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration12"},"52774":{"connections":[{"id":5084,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":52774,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite12"},"52796":{"connections":[{"id":30371,"orbit":-6}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Damage","orbit":4,"orbitIndex":66,"skill":52796,"stats":["Attack Skills deal 10% increased Damage while holding a Shield"],"stringId":"shield24"},"52799":{"connections":[{"id":47270,"orbit":-4},{"id":19955,"orbit":4},{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":3,"orbitIndex":0,"skill":52799,"stats":["15% increased Freeze Buildup"],"stringId":"cold10"},"52800":{"connections":[{"id":57615,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":6,"orbitIndex":54,"skill":52800,"stats":["+8% Surpassing chance to fire an additional Arrow"],"stringId":"bow19"},"52803":{"connections":[{"id":59356,"orbit":0}],"group":1298,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Hale Traveller","orbit":7,"orbitIndex":0,"recipe":["Envy","Disgust","Disgust"],"skill":52803,"stats":["20% increased Life Recovery from Flasks","Life Flasks gain 0.1 charges per Second"],"stringId":"life_flasks5_"},"52807":{"connections":[{"id":60551,"orbit":0},{"id":61836,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":52807,"stats":["15% increased Presence Area of Effect"],"stringId":"auras13"},"52829":{"connections":[{"id":375,"orbit":0}],"group":136,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Mace Damage and Stun Buildup","orbit":4,"orbitIndex":63,"skill":52829,"stats":["12% increased Stun Buildup","10% increased Damage with Maces"],"stringId":"mace8"},"52836":{"connections":[{"id":11980,"orbit":7},{"id":56806,"orbit":0}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":66,"skill":52836,"stats":["5% increased Block chance"],"stringId":"block11"},"52860":{"connections":[{"id":45494,"orbit":0},{"id":40975,"orbit":0}],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Damage","orbit":7,"orbitIndex":12,"skill":52860,"stats":["15% increased Ballista damage"],"stringId":"ballista2"},"52875":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1400,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":52875,"stats":[],"stringId":"mastery_attack21"},"52971":{"connections":[{"id":21227,"orbit":-2},{"id":25528,"orbit":0}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds","isNotable":true,"name":"The Soul Meridian","orbit":4,"orbitIndex":45,"recipe":["Envy","Disgust","Fear"],"skill":52971,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating","8% faster start of Energy Shield Recharge","10% increased Mana Cost Efficiency","10% increased Reservation Efficiency of Minion Skills"],"stringId":"energy_shield_recovery13"},"52973":{"connections":[{"id":12851,"orbit":0},{"id":57555,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":2,"orbitIndex":11,"skill":52973,"stats":["15% chance to Impale on Spell Hit"],"stringId":"physical8"},"52980":{"connections":[{"id":18970,"orbit":0},{"id":44343,"orbit":-4}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":4,"orbitIndex":48,"skill":52980,"stats":["+8 to Evasion Rating","+5 to maximum Energy Shield"],"stringId":"evasion_and_energy_shield1"},"52993":{"connectionArt":"CharacterPlanned","connections":[{"id":9414,"orbit":0}],"group":293,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":4,"skill":52993,"stats":["16% increased Elemental Damage"],"stringId":"oracle_glory_elemental1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53030":{"connections":[{"id":11525,"orbit":0},{"id":48267,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Immolation","orbit":2,"orbitIndex":2,"recipe":["Ire","Despair","Disgust"],"skill":53030,"stats":["25% increased Ignite Magnitude","+10 to Strength"],"stringId":"ignite5"},"53089":{"connections":[{"id":9918,"orbit":0},{"id":10474,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":12,"skill":53089,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks13"},"53094":{"connections":[{"id":38703,"orbit":0},{"id":51048,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":20,"skill":53094,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy36"},"53108":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36822,"orbit":0}],"group":562,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingHighestAttributeSatisfiesGemRequirements.dds","isNotable":true,"name":"Adaptive Capability","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":53108,"stats":["Attribute Requirements of Gems can be satisified by your highest Attribute"],"stringId":"AscendancyMercenary3Notable6"},"53123":{"connections":[{"id":8421,"orbit":-2},{"id":54982,"orbit":-2},{"id":5862,"orbit":-2}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/ElementalDominion2.dds","name":"Shaman","orbit":7,"orbitIndex":18,"skill":53123,"stats":["+3% to all Elemental Resistances"],"stringId":"shaman1"},"53131":{"connections":[{"id":7060,"orbit":0},{"id":46665,"orbit":0}],"group":265,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","isNotable":true,"name":"Tukohama's Brew","orbit":7,"orbitIndex":16,"recipe":["Isolation","Paranoia","Greed"],"skill":53131,"stats":["50% of Skill Mana costs Converted to Life Costs during any Life Flask Effect"],"stringId":"life_flasks43"},"53149":{"connections":[{"id":24647,"orbit":-5}],"group":1062,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Freeze Buildup","orbit":4,"orbitIndex":22,"skill":53149,"stats":["15% increased Freeze Buildup"],"stringId":"cold29"},"53150":{"connections":[{"id":15270,"orbit":0},{"id":17589,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Sharp Sight","orbit":3,"orbitIndex":18,"recipe":["Guilt","Disgust","Ire"],"skill":53150,"stats":["5% increased Attack Speed","30% increased Accuracy Rating against Rare or Unique Enemies"],"stringId":"accuracy30"},"53166":{"connections":[{"id":26194,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":7,"orbitIndex":21,"skill":53166,"stats":["20% increased Presence Area of Effect"],"stringId":"auras9"},"53177":{"connections":[{"id":43944,"orbit":2147483647}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility when Stunned","orbit":2,"orbitIndex":3,"skill":53177,"stats":["50% chance to gain Volatility when you are Stunned"],"stringId":"volatility9"},"53185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwlNotable.dds","isNotable":true,"name":"The Winter Owl","orbit":3,"orbitIndex":19,"recipe":["Greed","Greed","Fear"],"skill":53185,"stats":["3% increased Evasion Rating per 10 Intelligence","Gain Accuracy Rating equal to your Intelligence","+10 to Intelligence"],"stringId":"azmerianimals54"},"53187":{"connections":[{"id":35011,"orbit":0},{"id":57775,"orbit":0}],"group":455,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Warlord Berserker","orbit":2,"orbitIndex":22,"recipe":["Disgust","Fear","Fear"],"skill":53187,"stats":["40% reduced Presence Area of Effect","Allies in your Presence Regenerate 5 Rage per second if you have gained Rage Recently"],"stringId":"auras24"},"53188":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":0,"orbitIndex":0,"skill":53188,"stats":[],"stringId":"mastery_mana158"},"53194":{"connections":[{"id":38130,"orbit":3}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":16,"skill":53194,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries20"},"53196":{"connections":[{"id":46692,"orbit":0}],"group":1011,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask and Charm Charges Gained","orbit":7,"orbitIndex":12,"skill":53196,"stats":["8% increased Flask and Charm Charges gained"],"stringId":"flasks12"},"53207":{"connections":[{"id":47635,"orbit":0},{"id":56914,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":1,"orbitIndex":4,"skill":53207,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration3"},"53216":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":268,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":53216,"stats":[],"stringId":"mastery_warcry252_"},"53261":{"connections":[{"id":30780,"orbit":-2}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Area and Damage","orbit":7,"orbitIndex":11,"skill":53261,"stats":["4% increased Area of Effect of Ancestrally Boosted Attacks","Ancestrally Boosted Attacks deal 8% increased Damage"],"stringId":"melee61"},"53265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":1478,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Nature's Bite","orbit":0,"orbitIndex":0,"recipe":["Ire","Despair","Suffering"],"skill":53265,"stats":["20% increased Elemental Damage","15% increased chance to inflict Ailments"],"stringId":"ailments48"},"53266":{"connections":[{"id":13576,"orbit":0},{"id":20387,"orbit":0},{"id":53560,"orbit":0}],"group":994,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Skill Speed","orbit":0,"orbitIndex":0,"skill":53266,"stats":["3% increased Attack and Cast Speed with Lightning Skills"],"stringId":"lightning7"},"53272":{"connections":[{"id":2560,"orbit":0},{"id":2582,"orbit":0}],"group":1521,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":3,"orbitIndex":20,"skill":53272,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect54"},"53280":{"ascendancyName":"Martial Artist","connections":[{"id":41751,"orbit":3}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Attack Speed","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":3,"orbitIndex":3,"skill":53280,"stats":["4% increased Attack Speed"],"stringId":"AscendancyMonk1Small1"},"53294":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":33397,"orbit":0}],"group":576,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Burn Away","orbit":0,"orbitIndex":0,"recipe":["Fear","Disgust","Disgust"],"skill":53294,"stats":["15% increased Fire Damage","10% increased Ignite Magnitude","Damage Penetrates 10% Fire Resistance"],"stringId":"fire33"},"53308":{"connections":[{"id":17138,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":5,"skill":53308,"stats":["10% increased Melee Damage"],"stringId":"melee47"},"53320":{"connections":[{"id":43791,"orbit":0}],"group":697,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":2,"orbitIndex":22,"skill":53320,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners18"},"53324":{"connections":[],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":8,"skill":53324,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster4"},"53329":{"connections":[{"id":64724,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability and Ignite Magnitude","orbit":2,"orbitIndex":20,"skill":53329,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"stringId":"ignite4"},"53354":{"connections":[{"id":36250,"orbit":4},{"id":33408,"orbit":5},{"id":20289,"orbit":0}],"group":127,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Leech","orbit":0,"orbitIndex":0,"skill":53354,"stats":["10% increased amount of Life Leeched while Shapeshifted"],"stringId":"wolf4"},"53367":{"connections":[{"id":12821,"orbit":0},{"id":65353,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Symbol of Defiance","orbit":3,"orbitIndex":0,"recipe":["Despair","Ire","Greed"],"skill":53367,"stats":["Banner Skills have 30% increased Area of Effect","Banner Skills have 30% increased Duration"],"stringId":"banners11"},"53373":{"connections":[{"id":39517,"orbit":3},{"id":36629,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":4,"orbitIndex":45,"skill":53373,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold26"},"53386":{"connections":[{"id":57388,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":7,"orbitIndex":0,"skill":53386,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals65"},"53396":{"connections":[{"id":10156,"orbit":6}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":12,"skill":53396,"stats":["+5 to any Attribute"],"stringId":"intelligence30"},"53405":{"connections":[{"id":17468,"orbit":0},{"id":16090,"orbit":6},{"id":26798,"orbit":4},{"id":8693,"orbit":0}],"group":499,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":42,"skill":53405,"stats":["+5 to any Attribute"],"stringId":"strength58"},"53440":{"connections":[{"id":11306,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Rage on Hit","orbit":3,"orbitIndex":7,"skill":53440,"stats":["Gain 2 Rage on Melee Axe Hit"],"stringId":"axe10"},"53443":{"connections":[{"id":5710,"orbit":-6},{"id":59767,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":3,"orbitIndex":8,"skill":53443,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks24"},"53444":{"connections":[{"id":752,"orbit":5}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Duration","orbit":4,"orbitIndex":31,"skill":53444,"stats":["12% increased Minion Duration"],"stringId":"minion_reservation3_"},"53471":{"connections":[{"id":11836,"orbit":0}],"group":1292,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Critical vs Blinded","orbit":7,"orbitIndex":4,"skill":53471,"stats":["12% increased Critical Hit Chance against Blinded Enemies"],"stringId":"blind16"},"53505":{"connections":[{"id":21468,"orbit":6}],"group":686,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech","orbit":2,"orbitIndex":18,"skill":53505,"stats":["Leech Life 8% faster"],"stringId":"life_leech22"},"53524":{"connections":[{"id":32727,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Armour Break","orbit":7,"orbitIndex":19,"skill":53524,"stats":["Break Armour on Critical Hit with Spells equal to 5% of Physical Damage dealt"],"stringId":"physical21"},"53527":{"connections":[{"id":58855,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Shattering Blow","orbit":7,"orbitIndex":0,"recipe":["Fear","Guilt","Guilt"],"skill":53527,"stats":["Break 50% of Armour on Heavy Stunning an Enemy"],"stringId":"stun17"},"53539":{"connections":[{"id":46705,"orbit":0},{"id":13379,"orbit":0}],"group":1096,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage if Melee Hit","orbit":3,"orbitIndex":6,"skill":53539,"stats":["15% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds"],"stringId":"ranged17"},"53560":{"connections":[{"id":46157,"orbit":0}],"group":1027,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Skill Chain Chance","orbit":0,"orbitIndex":0,"skill":53560,"stats":["20% chance for Lightning Skills to Chain an additional time"],"stringId":"shock1"},"53566":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1143,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Run and Gun","orbit":4,"orbitIndex":29,"recipe":["Suffering","Paranoia","Fear"],"skill":53566,"stats":["5% reduced Movement Speed Penalty from using Skills while moving","Projectile Attacks have a 12% chance to fire two additional Projectiles while moving"],"stringId":"slow_mitigation16"},"53589":{"connections":[{"id":25374,"orbit":0}],"group":679,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":53589,"stats":["+5 to any Attribute"],"stringId":"attributes64"},"53595":{"connections":[{"id":29458,"orbit":7},{"id":38628,"orbit":0}],"group":1533,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":19,"skill":53595,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison4"},"53607":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Fortified Location","orbit":4,"orbitIndex":3,"recipe":["Suffering","Despair","Disgust"],"skill":53607,"stats":["10% increased Armour and Evasion Rating per Summoned Totem in your Presence","10% increased Attack Damage per Summoned Totem in your Presence"],"stringId":"ballista17"},"53632":{"connections":[{"id":28482,"orbit":3}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage","orbit":2,"orbitIndex":8,"skill":53632,"stats":["12% increased Fire Damage"],"stringId":"fire29_"},"53647":{"connections":[],"group":739,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":12,"skill":53647,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion24"},"53675":{"connections":[{"id":59498,"orbit":0}],"group":473,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":0,"skill":53675,"stats":["15% increased Presence Area of Effect"],"stringId":"auras8"},"53683":{"connections":[{"id":30082,"orbit":0},{"id":61432,"orbit":0}],"group":960,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Efficient Loading","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Despair","Isolation"],"skill":53683,"stats":["30% chance when you Reload a Crossbow to be immediate"],"stringId":"crossbow26"},"53696":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1153,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":53696,"stats":[],"stringId":"mastery_attack10_"},"53697":{"connections":[{"id":47555,"orbit":7},{"id":3041,"orbit":-3}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":26,"skill":53697,"stats":["+5 to any Attribute"],"stringId":"intelligence26"},"53698":{"connections":[{"id":20916,"orbit":-3},{"id":59355,"orbit":0}],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":7,"orbitIndex":22,"skill":53698,"stats":["10% increased Attack Damage"],"stringId":"attack14"},"53719":{"connections":[{"id":27082,"orbit":0}],"group":171,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":53719,"stats":["+5 to any Attribute"],"stringId":"attributes71"},"53762":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":36728,"orbit":2147483647}],"group":551,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Reduced Attribute Requirements","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":53762,"stats":["Equipment and Skill Gems have 4% reduced Attribute Requirements"],"stringId":"AscendancyMercenary3Small8"},"53771":{"connections":[{"id":52361,"orbit":-2}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":3,"orbitIndex":9,"skill":53771,"stats":["10% increased Projectile Damage"],"stringId":"projectiles12"},"53785":{"connections":[{"id":1170,"orbit":0},{"id":23307,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":3,"orbitIndex":18,"skill":53785,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks8"},"53795":{"connections":[{"id":62210,"orbit":5},{"id":53324,"orbit":-4},{"id":64804,"orbit":-5}],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":0,"orbitIndex":0,"skill":53795,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster2_"},"53804":{"connections":[{"id":56112,"orbit":7}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":4,"orbitIndex":48,"skill":53804,"stats":["10% increased Fire Damage"],"stringId":"warcries46"},"53822":{"connections":[],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":7,"orbitIndex":14,"skill":53822,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage17"},"53823":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":10508,"orbit":-3}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Towering Shield","orbit":3,"orbitIndex":18,"recipe":["Ire","Despair","Guilt"],"skill":53823,"stats":["25% increased Chance to Block if you've Blocked with a raised Shield Recently","50% increased Armour, Evasion and Energy Shield from Equipped Shield"],"stringId":"block14"},"53853":{"connections":[{"id":57320,"orbit":0}],"group":728,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Backup Plan","orbit":7,"orbitIndex":19,"recipe":["Greed","Greed","Ire"],"skill":53853,"stats":["20% increased Armour and Evasion Rating","40% increased Evasion Rating if you have been Hit Recently","40% increased Armour if you haven't been Hit Recently"],"stringId":"armour_and_evasion13"},"53893":{"connections":[{"id":21784,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":2,"orbitIndex":14,"skill":53893,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions26"},"53895":{"connections":[{"id":17303,"orbit":2}],"group":665,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","name":"Grenade Fuse Duration","orbit":3,"orbitIndex":8,"skill":53895,"stats":["15% reduced Grenade Detonation Time"],"stringId":"grenades24"},"53901":{"connections":[{"id":34375,"orbit":7}],"group":490,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":3,"orbitIndex":12,"skill":53901,"stats":["5% increased Block chance"],"stringId":"shield20"},"53910":{"connectionArt":"CharacterPlanned","connections":[{"id":9212,"orbit":0},{"id":58368,"orbit":7}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/MinionChaosResistanceNode.dds","isNotable":true,"name":"Forbidden Path","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":53910,"stats":["5% reduced maximum Life","-10% to all Elemental Resistances","Minions Recoup 30% of Damage taken as Life","Minions Gain 20% of Elemental Damage as Extra Chaos Damage"],"stringId":"oracle_forbidden_path5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"53921":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":58838,"orbit":0},{"id":40596,"orbit":0}],"group":324,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Unbreaking","orbit":5,"orbitIndex":48,"recipe":["Paranoia","Envy","Paranoia"],"skill":53921,"stats":["30% increased Stun Threshold","30% increased Elemental Ailment Threshold"],"stringId":"stun_threshold12"},"53935":{"connections":[{"id":10677,"orbit":2},{"id":25281,"orbit":0}],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Briny Carapace","orbit":2,"orbitIndex":14,"recipe":["Guilt","Ire","Paranoia"],"skill":53935,"stats":["100% increased Stun Threshold for each time you've been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun9"},"53938":{"connections":[{"id":36931,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage","orbit":2,"orbitIndex":18,"skill":53938,"stats":["10% increased Attack Damage"],"stringId":"attack43"},"53941":{"connections":[{"id":17283,"orbit":0}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Shimmering","orbit":3,"orbitIndex":12,"recipe":["Envy","Envy","Suffering"],"skill":53941,"stats":["10% faster start of Energy Shield Recharge","20% increased Evasion Rating if you haven't been Hit Recently","3% increased Movement Speed while you have Energy Shield"],"stringId":"evasion_and_energy_shield15"},"53958":{"connections":[{"id":51006,"orbit":2}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":3,"orbitIndex":23,"skill":53958,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks8"},"53960":{"connections":[{"id":8975,"orbit":-5}],"group":1017,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":54,"skill":53960,"stats":["+5 to any Attribute"],"stringId":"intelligence5"},"53965":{"connections":[{"id":12337,"orbit":0}],"group":1065,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":0,"orbitIndex":0,"skill":53965,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning27"},"53975":{"connections":[{"id":33254,"orbit":0}],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":2,"orbitIndex":8,"skill":53975,"stats":["10% increased Spell Damage"],"stringId":"spells1"},"53989":{"connections":[{"id":29372,"orbit":8}],"group":532,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":6,"orbitIndex":59,"skill":53989,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage20"},"53996":{"connections":[{"id":9941,"orbit":7},{"id":28556,"orbit":3}],"group":923,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":22,"skill":53996,"stats":["8% increased Melee Damage"],"stringId":"melee21"},"54031":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoarNotable.dds","isNotable":true,"name":"The Great Boar","orbit":0,"orbitIndex":0,"recipe":["Envy","Suffering","Guilt"],"skill":54031,"stats":["+1 Life per 4 Dexterity","+1 to Stun Threshold per Dexterity","+5 to Strength"],"stringId":"azmerianimals6_"},"54036":{"connections":[{"id":30720,"orbit":0},{"id":15809,"orbit":-7},{"id":17501,"orbit":-7},{"id":18485,"orbit":0}],"group":699,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":3,"orbitIndex":2,"skill":54036,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_reservation4"},"54058":{"connections":[{"id":62001,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","name":"Dagger Critical Damage","orbit":0,"orbitIndex":0,"skill":54058,"stats":["10% increased Critical Damage Bonus with Daggers"],"stringId":"dagger14"},"54067":{"connections":[{"id":27626,"orbit":0},{"id":2244,"orbit":-4}],"group":461,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Arcane Surge on Critical Hit","orbit":5,"orbitIndex":49,"skill":54067,"stats":["5% chance to Gain Arcane Surge when you deal a Critical Hit"],"stringId":"mana_regeneration30"},"54099":{"connections":[{"id":8493,"orbit":0},{"id":2847,"orbit":0},{"id":55700,"orbit":0}],"group":738,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54099,"stats":["+5 to any Attribute"],"stringId":"strength83"},"54127":{"connections":[{"id":54282,"orbit":0},{"id":15182,"orbit":0},{"id":56978,"orbit":0}],"group":834,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":54127,"stats":[],"stringId":"jewel_slot1975"},"54138":{"connections":[{"id":38564,"orbit":0},{"id":37963,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":2,"orbitIndex":12,"skill":54138,"stats":["3% increased Attack Speed with Swords"],"stringId":"sword8"},"54148":{"connections":[{"id":52746,"orbit":0},{"id":56934,"orbit":0}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","isNotable":true,"name":"Smoke Inhalation","orbit":2,"orbitIndex":6,"recipe":["Isolation","Envy","Fear"],"skill":54148,"stats":["Damage Penetrates 15% Fire Resistance","15% increased Duration of Damaging Ailments on Enemies"],"stringId":"fire_penetration25"},"54152":{"connections":[{"id":43453,"orbit":0}],"group":1396,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Sprint Movement Speed","orbit":0,"orbitIndex":0,"skill":54152,"stats":["3% increased Movement Speed while Sprinting"],"stringId":"Sprint3"},"54176":{"connections":[{"id":55463,"orbit":0},{"id":26598,"orbit":0}],"group":1239,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54176,"stats":["15% increased chance to Shock"],"stringId":"shock8"},"54194":{"ascendancyName":"Chronomancer","connections":[{"id":10987,"orbit":0}],"group":378,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Cast Speed","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":2,"orbitIndex":3,"skill":54194,"stats":["6% increased Cast Speed"],"stringId":"AscendancySorceress2Small4"},"54198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1229,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":54198,"stats":[],"stringId":"mastery_companion294"},"54228":{"connections":[{"id":64240,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":2,"skill":54228,"stats":["10% increased Physical Damage"],"stringId":"physical29"},"54232":{"connections":[{"id":44659,"orbit":5}],"group":691,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54232,"stats":["+5 to any Attribute"],"stringId":"strength24_"},"54282":{"connections":[{"id":52125,"orbit":0},{"id":11066,"orbit":2147483647}],"group":835,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":0,"skill":54282,"stats":["+5 to any Attribute"],"stringId":"strength82"},"54283":{"connections":[{"id":26324,"orbit":0}],"group":496,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":3,"orbitIndex":21,"skill":54283,"stats":["15% increased Armour"],"stringId":"armour10"},"54288":{"connections":[{"id":35966,"orbit":7}],"group":282,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":8,"skill":54288,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup9"},"54289":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connectionArt":"CharacterPlanned","connections":[],"group":240,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Gift of the Plains","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":54289,"stats":["2% chance that if you would gain Power Charges, you instead gain up to","your maximum number of Power Charges","+1 to Maximum Power Charges"],"stringId":"oracle_power_charge4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54297":{"connectionArt":"CharacterPlanned","connections":[{"id":25678,"orbit":0}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Life Costs and Chaos Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":24,"skill":54297,"stats":["21% increased Chaos Damage","11% increased Life Cost of Skills","3% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_beast_corruption10","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54311":{"connections":[{"id":28482,"orbit":7}],"group":382,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":18,"skill":54311,"stats":["30% increased Flammability Magnitude"],"stringId":"fire24"},"54340":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":388,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":2,"orbitIndex":3,"skill":54340,"stats":[],"stringId":"mastery_armour10"},"54351":{"connections":[{"id":52464,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":7,"orbitIndex":7,"skill":54351,"stats":["Recover 1% of maximum Life on Kill"],"stringId":"life_on_kill3"},"54378":{"connections":[{"id":26863,"orbit":0}],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Recover Mana on consuming Power Charge","orbit":2,"orbitIndex":2,"skill":54378,"stats":["Recover 2% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges15"},"54380":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":464,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":0,"orbitIndex":0,"skill":54380,"stats":[],"stringId":"oracle_poison_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"54413":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasterySpellSuppressionPattern","connections":[],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShieldMana.dds","isOnlyImage":true,"name":"Spell Suppression Mastery","orbit":3,"orbitIndex":10,"skill":54413,"stats":[],"stringId":"mastery_evasion114"},"54416":{"connections":[{"id":60274,"orbit":4}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":6,"skill":54416,"stats":["20% increased Armour if you have been Hit Recently"],"stringId":"armour3"},"54417":{"connections":[],"group":823,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":21,"skill":54417,"stats":["+5 to any Attribute"],"stringId":"dexterity29"},"54437":{"connections":[{"id":16111,"orbit":-5},{"id":2397,"orbit":0},{"id":8493,"orbit":0}],"group":696,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Attack Damage on Low Life","orbit":7,"orbitIndex":20,"skill":54437,"stats":["20% increased Attack Damage while on Low Life"],"stringId":"attack37"},"54447":{"classesStart":["Witch","Sorceress"],"connections":[{"id":23710,"orbit":0},{"id":59822,"orbit":0},{"id":32699,"orbit":0},{"id":40721,"orbit":0},{"id":22147,"orbit":0},{"id":8305,"orbit":0},{"id":4739,"orbit":0}],"group":818,"icon":"Art/2DArt/SkillIcons/passives/blankInt.dds","name":"WITCH","orbit":0,"orbitIndex":0,"skill":54447,"stats":[],"stringId":"witch595"},"54453":{"connections":[{"id":19006,"orbit":0},{"id":61042,"orbit":0}],"group":669,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage and Life","orbit":2,"orbitIndex":12,"skill":54453,"stats":["Minions have 6% increased maximum Life","Minions deal 6% increased Damage"],"stringId":"minion_reservation11"},"54485":{"connections":[{"id":25482,"orbit":0}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":54485,"stats":["+8 to Strength"],"stringId":"strength105"},"54512":{"ascendancyName":"Shaman","connections":[{"id":56933,"orbit":6}],"group":64,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Maximum Rage","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":54512,"stats":["+3 to Maximum Rage"],"stringId":"AscendancyDruid2Small3"},"54521":{"connections":[{"id":13537,"orbit":5},{"id":58789,"orbit":0},{"id":22185,"orbit":4}],"group":682,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54521,"stats":["+5 to any Attribute"],"stringId":"intelligence53_"},"54545":{"connections":[{"id":38342,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Daze Magnitude","orbit":2,"orbitIndex":0,"skill":54545,"stats":["15% increased Magnitude of Daze"],"stringId":"daze_8"},"54557":{"connections":[{"id":9421,"orbit":-6}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":2,"skill":54557,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration7"},"54562":{"connections":[{"id":2745,"orbit":0}],"group":1420,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividWolf.dds","name":"Critical Chance","orbit":2,"orbitIndex":10,"skill":54562,"stats":["10% increased Critical Hit Chance"],"stringId":"azmerianimals46"},"54631":{"connections":[{"id":30132,"orbit":0}],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":0,"orbitIndex":0,"skill":54631,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers8"},"54632":{"connections":[{"id":36507,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":2,"orbitIndex":12,"skill":54632,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence33"},"54640":{"connections":[{"id":64042,"orbit":0}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Constricting","orbit":0,"orbitIndex":0,"recipe":["Fear","Greed","Greed"],"skill":54640,"stats":["Debuffs you inflict have 5% increased Slow Magnitude","25% increased Physical Damage"],"stringId":"physical54"},"54675":{"connections":[{"id":58814,"orbit":0}],"group":986,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":54675,"stats":["10% increased Lightning Damage"],"stringId":"lightning24"},"54676":{"connections":[{"id":39759,"orbit":0},{"id":37612,"orbit":0}],"group":587,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":2,"orbitIndex":15,"skill":54676,"stats":["10% increased Life Regeneration rate"],"stringId":"life_regeneration29"},"54678":{"connections":[{"id":41877,"orbit":0}],"group":1313,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":54678,"stats":["15% increased chance to Shock"],"stringId":"shock10"},"54701":{"connections":[{"id":21089,"orbit":2},{"id":1286,"orbit":-7}],"group":274,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","orbit":7,"orbitIndex":16,"skill":54701,"stats":["16% increased Thorns damage"],"stringId":"getting_hit20"},"54708":{"connections":[{"id":13855,"orbit":0},{"id":3918,"orbit":0}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":11,"skill":54708,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration1"},"54725":{"connections":[{"id":56336,"orbit":0}],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Activation Speed and Effect","orbit":7,"orbitIndex":0,"skill":54725,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"stringId":"curses1"},"54733":{"connections":[{"id":5314,"orbit":-4}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":4,"orbitIndex":55,"skill":54733,"stats":["15% increased Effect of Puppet Master"],"stringId":"Puppetmaster11"},"54746":{"connections":[{"id":14343,"orbit":7}],"group":1136,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Effect","orbit":0,"orbitIndex":0,"skill":54746,"stats":["6% increased chance to inflict Ailments","6% increased Magnitude of Damaging Ailments you inflict"],"stringId":"ailments16"},"54783":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":934,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMana.dds","isOnlyImage":true,"name":"Mana Mastery","orbit":1,"orbitIndex":10,"skill":54783,"stats":[],"stringId":"mastery_energy_shield_6485"},"54785":{"connections":[{"id":32885,"orbit":0}],"group":740,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":2,"orbitIndex":7,"skill":54785,"stats":["5% increased Block chance"],"stringId":"shield16"},"54805":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBrandPattern","connections":[],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Hindered Capabilities","orbit":5,"orbitIndex":27,"recipe":["Suffering","Greed","Envy"],"skill":54805,"stats":["30% increased Damage with Hits against Hindered Enemies","Debuffs you inflict have 10% increased Slow Magnitude"],"stringId":"slowed_enemies15"},"54811":{"connections":[{"id":13474,"orbit":0}],"group":422,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54811,"stats":["+5 to any Attribute"],"stringId":"strength15"},"54814":{"connections":[{"id":16114,"orbit":0}],"group":473,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Profane Commander","orbit":2,"orbitIndex":14,"recipe":["Guilt","Isolation","Isolation"],"skill":54814,"stats":["30% increased Presence Area of Effect","4% increased Spirit"],"stringId":"auras19"},"54818":{"connections":[{"id":18801,"orbit":0}],"group":751,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54818,"stats":["+5 to any Attribute"],"stringId":"strength80"},"54838":{"ascendancyName":"Tactician","connections":[],"group":359,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianPinnedEnemiesCannotAct.dds","isNotable":true,"name":"Right Where We Want Them","nodeOverlay":{"alloc":"TacticianFrameLargeAllocated","path":"TacticianFrameLargeCanAllocate","unalloc":"TacticianFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":54838,"stats":["Projectile Damage builds Pin","Pinned enemies cannot perform actions"],"stringId":"AscendancyMercenary1Notable5"},"54849":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":236,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":0,"orbitIndex":0,"skill":54849,"stats":[],"stringId":"mastery_minionoffence185"},"54868":{"connections":[{"id":14265,"orbit":0}],"group":409,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":54868,"stats":["12% increased Fire Damage"],"stringId":"fire74"},"54883":{"connections":[{"id":34473,"orbit":-2}],"group":1321,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":54883,"stats":["7% increased Chaos Damage"],"stringId":"chaos21"},"54886":{"connections":[{"id":56997,"orbit":-4}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage and Stun","orbit":7,"orbitIndex":20,"skill":54886,"stats":["10% increased Stun Buildup","10% increased Damage with Two Handed Weapons"],"stringId":"two_handed11"},"54887":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":350,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":54887,"stats":[],"stringId":"mastery_projectile203"},"54892":{"ascendancyName":"Tactician","connections":[{"id":44371,"orbit":0}],"group":391,"icon":"Art/2DArt/SkillIcons/passives/Tactician/TacticianNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"TacticianFrameSmallAllocated","path":"TacticianFrameSmallCanAllocate","unalloc":"TacticianFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":54892,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary1Small7_"},"54911":{"connections":[{"id":11505,"orbit":0},{"id":39716,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","isNotable":true,"name":"Firestarter","orbit":2,"orbitIndex":6,"recipe":["Greed","Isolation","Guilt"],"skill":54911,"stats":["80% increased Flammability Magnitude","Enemies Ignited by you have -5% to Fire Resistance"],"stringId":"ignite10"},"54923":{"connections":[{"id":27638,"orbit":2147483647}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":7,"orbitIndex":7,"skill":54923,"stats":["15% increased Glory generation"],"stringId":"glory4"},"54934":{"connections":[{"id":15494,"orbit":0}],"group":649,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Fire Damage when consuming an Endurance Charge","orbit":2,"orbitIndex":4,"skill":54934,"stats":["3% increased Fire Damage per Endurance Charge consumed Recently"],"stringId":"endurance_charges14"},"54937":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":143,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","isNotable":true,"name":"Vengeful Fury","orbit":1,"orbitIndex":9,"recipe":["Suffering","Ire","Despair"],"skill":54937,"stats":["Gain 5 Rage when Hit by an Enemy","Every Rage also grants 1% increased Armour"],"stringId":"rage18"},"54962":{"connections":[{"id":35849,"orbit":0}],"group":258,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration while Stationary","orbit":7,"orbitIndex":4,"skill":54962,"stats":["15% increased Life Regeneration Rate while stationary"],"stringId":"life_regeneration14"},"54964":{"connections":[{"id":23078,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":16,"skill":54964,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels3"},"54975":{"connections":[{"id":7526,"orbit":-9}],"group":1266,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect","orbit":5,"orbitIndex":66,"skill":54975,"stats":["Debuffs you inflict have 5% increased Slow Magnitude"],"stringId":"slowed_enemies3_"},"54982":{"connections":[{"id":34818,"orbit":-9}],"group":155,"icon":"Art/2DArt/SkillIcons/passives/FireResistNode.dds","name":"Fire Resistance","orbit":1,"orbitIndex":7,"skill":54982,"stats":["+5% to Fire Resistance"],"stringId":"shaman7"},"54983":{"connections":[{"id":39369,"orbit":3}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":7,"orbitIndex":2,"skill":54983,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals59"},"54984":{"connections":[{"id":34015,"orbit":0},{"id":34702,"orbit":-4},{"id":55118,"orbit":0},{"id":37951,"orbit":0}],"group":1417,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":54984,"stats":["+5 to any Attribute"],"stringId":"dexterity54"},"54985":{"connections":[{"id":14602,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":7,"skill":54985,"stats":["8% increased Bolt Speed"],"stringId":"crossbow28"},"54990":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Bloodletting","orbit":7,"orbitIndex":1,"recipe":["Fear","Suffering","Ire"],"skill":54990,"stats":["10% chance to inflict Bleeding on Hit","15% increased Magnitude of Bleeding you inflict"],"stringId":"bleed6"},"54998":{"connections":[{"id":29993,"orbit":0}],"group":301,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Protraction","orbit":2,"orbitIndex":5,"recipe":["Despair","Disgust","Guilt"],"skill":54998,"stats":["20% increased Skill Effect Duration","15% increased Duration of Damaging Ailments on Enemies"],"stringId":"duration5"},"54999":{"connections":[{"id":14511,"orbit":-3}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Attack Damage and Stun","orbit":3,"orbitIndex":2,"skill":54999,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"stringId":"melee58"},"55011":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":580,"icon":"Art/2DArt/SkillIcons/passives/AreaofEffectSpellsMastery.dds","isOnlyImage":true,"name":"Caster Mastery","orbit":0,"orbitIndex":0,"skill":55011,"stats":[],"stringId":"mastery_caster_6355"},"55033":{"connectionArt":"CharacterPlanned","connections":[{"id":17059,"orbit":-3}],"group":180,"icon":"Art/2DArt/SkillIcons/passives/ChannellingDamage.dds","name":"Channelling Life Recoup","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":14,"skill":55033,"stats":["10% of Damage taken Recouped as Life while Channelling"],"stringId":"oracle_channelling2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55041":{"connections":[{"id":35564,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Damage and Projectile Speed","orbit":3,"orbitIndex":21,"skill":55041,"stats":["8% increased Spell Damage","5% reduced Projectile Speed for Spell Skills"],"stringId":"projectile_spells2"},"55048":{"connections":[],"flavourText":"Embrace the pain, drink it in.\\nYour enemies will know your agony tenfold.","group":211,"icon":"Art/2DArt/SkillIcons/passives/KeystonePainAttunement.dds","isKeystone":true,"name":"Pain Attunement","orbit":0,"orbitIndex":0,"skill":55048,"stats":["30% less Critical Damage Bonus when on Full Life","30% more Critical Damage Bonus when on Low Life"],"stringId":"passive_keystone_pain_attunement"},"55058":{"connections":[{"id":63790,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage against Immobilised","orbit":5,"orbitIndex":48,"skill":55058,"stats":["20% increased Melee Damage against Immobilised Enemies"],"stringId":"melee52"},"55060":{"connections":[{"id":33037,"orbit":0},{"id":45576,"orbit":0}],"group":866,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Shrapnel","orbit":5,"orbitIndex":9,"recipe":["Guilt","Guilt","Disgust"],"skill":55060,"stats":["30% chance to Pierce an Enemy","Projectiles have 10% chance to Chain an additional time from terrain"],"stringId":"ranged39"},"55063":{"connections":[{"id":51535,"orbit":4}],"group":148,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech and Slower Leech","orbit":2,"orbitIndex":5,"skill":55063,"stats":["12% increased amount of Life Leeched","Leech Life 5% slower"],"stringId":"life_leech8"},"55066":{"connections":[{"id":19796,"orbit":0}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Attack Damage vs Bleeding Enemies","orbit":2,"orbitIndex":21,"skill":55066,"stats":["16% increased Attack Damage against Bleeding Enemies"],"stringId":"bleed11__"},"55088":{"connections":[{"id":61196,"orbit":5}],"group":1016,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance2.dds","name":"Critical Chance","orbit":7,"orbitIndex":2,"skill":55088,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals12"},"55101":{"connections":[{"id":58016,"orbit":7}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":12,"skill":55101,"stats":["10% increased Elemental Damage"],"stringId":"elemental11_"},"55104":{"connections":[{"id":33254,"orbit":-7},{"id":19125,"orbit":7}],"group":794,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","name":"Spell Damage","orbit":7,"orbitIndex":22,"skill":55104,"stats":["10% increased Spell Damage"],"stringId":"spells12"},"55118":{"connections":[{"id":50420,"orbit":0}],"group":1440,"icon":"Art/2DArt/SkillIcons/passives/CharmNode1.dds","name":"Charm Charges","orbit":2,"orbitIndex":18,"skill":55118,"stats":["10% increased Charm Charges gained"],"stringId":"charms24"},"55131":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Light on your Feet","orbit":4,"orbitIndex":38,"recipe":["Disgust","Isolation","Greed"],"skill":55131,"stats":["3% increased Movement Speed","Immune to Hinder","Immune to Maim"],"stringId":"slow_mitigation8"},"55135":{"ascendancyName":"Oracle","connections":[],"group":23,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleRerollingCrit.dds","isNotable":true,"name":"Forced Outcome","nodeOverlay":{"alloc":"OracleFrameLargeAllocated","path":"OracleFrameLargeCanAllocate","unalloc":"OracleFrameLargeNormal"},"orbit":6,"orbitIndex":16,"skill":55135,"stats":["Inevitable Critical Hits"],"stringId":"AscendancyDruid1Notable8"},"55149":{"connections":[],"group":1333,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Pure Chaos","orbit":0,"orbitIndex":0,"recipe":["Envy","Isolation","Guilt"],"skill":55149,"stats":["Gain 11% of Damage as Extra Chaos Damage"],"stringId":"chaos30"},"55152":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":5580,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":3,"orbitIndex":1,"skill":55152,"stats":[],"stringId":"mastery_totem231"},"55180":{"connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Relentless Fallen","orbit":3,"orbitIndex":15,"recipe":["Despair","Fear","Isolation"],"skill":55180,"stats":["3% increased Movement Speed","Minions have 20% increased Movement Speed","Minions have 8% increased Attack and Cast Speed"],"stringId":"minion_offence21_"},"55188":{"connections":[{"id":13326,"orbit":3}],"group":124,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":0,"orbitIndex":0,"skill":55188,"stats":["12% increased Fire Damage"],"stringId":"fire70"},"55190":{"connections":[],"group":95,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":1,"orbitIndex":0,"skill":55190,"stats":[],"stringId":"jewel_slot1971"},"55193":{"connections":[{"id":10944,"orbit":-2}],"group":1264,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Subterfuge Mask","orbit":1,"orbitIndex":4,"recipe":["Ire","Suffering","Paranoia"],"skill":55193,"stats":["+1 to Evasion Rating per 1 Item Energy Shield on Equipped Helmet"],"stringId":"evasion_and_energy_shield25"},"55227":{"connections":[{"id":29479,"orbit":0},{"id":15829,"orbit":0}],"group":1128,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":7,"orbitIndex":13,"skill":55227,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech7"},"55231":{"connections":[{"id":37361,"orbit":0},{"id":9857,"orbit":0}],"group":757,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":7,"orbitIndex":13,"skill":55231,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed21_"},"55235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMarkPattern","connections":[{"id":63830,"orbit":0},{"id":44756,"orbit":0},{"id":36976,"orbit":0}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkMastery.dds","isOnlyImage":true,"name":"Mark Mastery","orbit":1,"orbitIndex":4,"skill":55235,"stats":[],"stringId":"mastery_mark_6606"},"55241":{"connections":[{"id":38614,"orbit":0}],"group":1050,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":1,"orbitIndex":4,"skill":55241,"stats":["4% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"projectile_spells5"},"55250":{"connections":[{"id":56649,"orbit":-4},{"id":41669,"orbit":4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":4,"orbitIndex":30,"skill":55250,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration10"},"55260":{"connections":[{"id":19751,"orbit":-5}],"group":93,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Threshold","orbit":2,"orbitIndex":23,"skill":55260,"stats":["15% increased Freeze Threshold"],"stringId":"chill_and_freeze21"},"55270":{"connections":[{"id":60083,"orbit":0}],"group":1141,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":7,"orbitIndex":1,"skill":55270,"stats":["15% increased Pin Buildup"],"stringId":"pin2"},"55275":{"connections":[{"id":12890,"orbit":6}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":2,"skill":55275,"stats":["15% increased Evasion Rating"],"stringId":"evasion18"},"55276":{"connections":[{"id":13411,"orbit":5}],"group":962,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":24,"skill":55276,"stats":["+5 to any Attribute"],"stringId":"dexterity2"},"55308":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":38313,"orbit":0},{"id":30701,"orbit":0}],"group":445,"icon":"Art/2DArt/SkillIcons/passives/ProjectileDmgNotable.dds","isNotable":true,"name":"Sling Shots","orbit":7,"orbitIndex":12,"recipe":["Envy","Ire","Suffering"],"skill":55308,"stats":["20% increased Projectile Damage","20% increased chance to inflict Ailments with Projectiles"],"stringId":"projectiles39"},"55329":{"connections":[{"id":42036,"orbit":0}],"group":1491,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parried Duration","orbit":4,"orbitIndex":12,"skill":55329,"stats":["15% increased Parried Debuff Duration"],"stringId":"buckler5"},"55342":{"connections":[{"id":17248,"orbit":-5}],"group":955,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":61,"skill":55342,"stats":["+5 to any Attribute"],"stringId":"intelligence3"},"55348":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[{"id":23227,"orbit":0}],"group":645,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":55348,"stats":[],"stringId":"mastery_dualwield90"},"55375":{"connections":[{"id":62748,"orbit":0}],"group":351,"icon":"Art/2DArt/SkillIcons/passives/LifeandMana.dds","isNotable":true,"name":"Licking Wounds","orbit":2,"orbitIndex":21,"recipe":["Fear","Disgust","Ire"],"skill":55375,"stats":["Minions have 15% increased maximum Life","5% increased Life and Mana Regeneration Rate for each Minion in your Presence, up to a maximum of 40%"],"stringId":"companions50"},"55377":{"connections":[{"id":26211,"orbit":0},{"id":33463,"orbit":0}],"group":1367,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area and Combo","orbit":2,"orbitIndex":0,"skill":55377,"stats":["4% increased Area of Effect for Attacks","5% Chance to build an additional Combo on Hit"],"stringId":"area_attacks45__"},"55397":{"connections":[{"id":44527,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","isSwitchable":true,"name":"Flask Charges Gained","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","id":1247,"name":"Ailment Threshold","stats":["15% increased Elemental Ailment Threshold"]}},"orbit":7,"orbitIndex":21,"skill":55397,"stats":["15% increased Flask Charges gained"],"stringId":"flasks22"},"55400":{"connections":[{"id":30372,"orbit":0}],"group":1274,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":2,"orbitIndex":5,"skill":55400,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration9"},"55405":{"connections":[{"id":25620,"orbit":0}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":1,"orbitIndex":10,"skill":55405,"stats":["15% increased Damage if you have Consumed a Corpse Recently"],"stringId":"corpses6"},"55412":{"connections":[{"id":22538,"orbit":0},{"id":17796,"orbit":-4}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":15,"skill":55412,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"slowed_enemies16"},"55420":{"connections":[{"id":30061,"orbit":0}],"group":1072,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Effect","orbit":2,"orbitIndex":0,"skill":55420,"stats":["6% increased Curse Magnitudes"],"stringId":"curses22"},"55422":{"connections":[{"id":54640,"orbit":4}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":3,"orbitIndex":17,"skill":55422,"stats":["12% increased Physical Damage"],"stringId":"physical51"},"55429":{"connections":[{"id":22049,"orbit":0}],"group":1080,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksNode.dds","id":24854,"name":"Melee and Projectile Damage","stats":["10% increased Melee Damage","10% increased Projectile Damage"]}},"orbit":0,"orbitIndex":0,"skill":55429,"stats":["10% increased Projectile Damage"],"stringId":"projectiles17"},"55450":{"connections":[{"id":57089,"orbit":0},{"id":34443,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","isNotable":true,"name":"Rallying Form","orbit":7,"orbitIndex":7,"recipe":["Greed","Isolation","Fear"],"skill":55450,"stats":["Companions in your Presence have Onslaught while you are Shapeshifted"],"stringId":"companions28"},"55463":{"connections":[{"id":27875,"orbit":0}],"group":1270,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":3,"orbitIndex":14,"skill":55463,"stats":["15% increased chance to Shock"],"stringId":"shock7"},"55473":{"connections":[{"id":43164,"orbit":0}],"group":666,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":23,"skill":55473,"stats":["8% increased Melee Damage"],"stringId":"melee44"},"55478":{"connections":[{"id":48006,"orbit":4},{"id":16168,"orbit":-3}],"group":660,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":2,"orbitIndex":2,"skill":55478,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"area_attacks22"},"55491":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":475,"icon":"Art/2DArt/SkillIcons/passives/MasteryAuras.dds","isOnlyImage":true,"name":"Reservation Mastery","orbit":1,"orbitIndex":7,"skill":55491,"stats":[],"stringId":"mastery_reservation209"},"55507":{"connections":[{"id":22359,"orbit":-6},{"id":38338,"orbit":6}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":3,"orbitIndex":16,"skill":55507,"stats":["10% increased Elemental Damage"],"stringId":"elemental22"},"55536":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":34882,"orbit":2147483647},{"id":1442,"orbit":0},{"id":3084,"orbit":2147483647}],"group":487,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Gemling Legionnaire","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":9,"orbitIndex":72,"skill":55536,"stats":[],"stringId":"AscendancyMercenary3Start"},"55554":{"connections":[{"id":8821,"orbit":0},{"id":22271,"orbit":0}],"group":897,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":55554,"stats":["15% increased chance to Shock"],"stringId":"lightning18"},"55568":{"connections":[{"id":41522,"orbit":0},{"id":44690,"orbit":0}],"group":1111,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Forthcoming","orbit":2,"orbitIndex":21,"recipe":["Despair","Greed","Suffering"],"skill":55568,"stats":["16% reduced Skill Effect Duration","10% increased Cooldown Recovery Rate"],"stringId":"duration11"},"55572":{"connections":[{"id":57626,"orbit":0}],"group":861,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.dds","name":"Cold and Fire Damage","orbit":7,"orbitIndex":20,"skill":55572,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"stringId":"cold9"},"55575":{"connections":[{"id":58002,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical as Extra Chaos Damage","orbit":2,"orbitIndex":9,"skill":55575,"stats":["Gain 3% of Physical Damage as extra Chaos Damage"],"stringId":"physical11"},"55582":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":60287,"orbit":2147483647}],"group":406,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingNode.dds","name":"Skill Gem Quality","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":55582,"stats":["+2% to Quality of all Skills"],"stringId":"AscendancyMercenary3Small2"},"55596":{"connections":[{"id":8509,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":3,"orbitIndex":16,"skill":55596,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals35"},"55598":{"connections":[{"id":15644,"orbit":4},{"id":9112,"orbit":-3},{"id":28050,"orbit":0}],"group":1121,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":3,"orbitIndex":2,"skill":55598,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression31"},"55611":{"ascendancyName":"Invoker","connections":[{"id":64031,"orbit":-2}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":4,"orbitIndex":15,"skill":55611,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyMonk2Small5"},"55617":{"connections":[{"id":29914,"orbit":0},{"id":19546,"orbit":2}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Armour and Evasion while Surrounded","orbit":3,"orbitIndex":3,"skill":55617,"stats":["20% increased Armour while Surrounded","20% increased Evasion Rating while Surrounded"],"stringId":"being_surrounded18"},"55621":{"connections":[{"id":38537,"orbit":-3}],"group":1534,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":7,"orbitIndex":16,"skill":55621,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals56"},"55635":{"connections":[{"id":52440,"orbit":0},{"id":51807,"orbit":0},{"id":33722,"orbit":0}],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Damage and Companion Damage","orbit":7,"orbitIndex":21,"skill":55635,"stats":["Companions deal 12% increased Damage","10% increased Damage while your Companion is in your Presence"],"stringId":"companions22"},"55664":{"connections":[{"id":31826,"orbit":-3}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Presence Area and Companion Area","orbit":4,"orbitIndex":0,"skill":55664,"stats":["10% increased Presence Area of Effect","Companions have 10% increased Area of Effect"],"stringId":"companions12"},"55668":{"connections":[{"id":25557,"orbit":0},{"id":47754,"orbit":0},{"id":55420,"orbit":0}],"group":1071,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":55668,"stats":["+5 to any Attribute"],"stringId":"intelligence63__"},"55672":{"connections":[],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Accuracy Rating","orbit":5,"orbitIndex":46,"skill":55672,"stats":["10% increased Accuracy Rating while Shapeshifted"],"stringId":"wyvern7"},"55680":{"connections":[{"id":61112,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNode1.dds","name":"Spear Attack Speed","orbit":4,"orbitIndex":14,"skill":55680,"stats":["3% increased Attack Speed with Spears"],"stringId":"spear7"},"55700":{"connections":[{"id":44983,"orbit":2147483647}],"group":709,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","name":"All Attributes","orbit":2,"orbitIndex":8,"skill":55700,"stats":["+3 to all Attributes"],"stringId":"all_attributes4"},"55708":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":918,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electric Amplification","orbit":7,"orbitIndex":10,"recipe":["Isolation","Fear","Disgust"],"skill":55708,"stats":["Damage Penetrates 18% Lightning Resistance","Gain 6% of Elemental Damage as Extra Lightning Damage"],"stringId":"lightning_penetration27"},"55724":{"connections":[{"id":42714,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":4,"orbitIndex":58,"skill":55724,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed43"},"55746":{"connections":[{"id":61935,"orbit":-2}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":7,"orbitIndex":4,"skill":55746,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage8"},"55789":{"connections":[{"id":41665,"orbit":-2}],"group":357,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":4,"orbitIndex":3,"skill":55789,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals71"},"55796":{"ascendancyName":"Amazon","connections":[{"id":43095,"orbit":0}],"group":1592,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonRareUniqueBloodlusted.dds","isNotable":true,"name":"Predatory Instinct","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":55796,"stats":["Reveal Weaknesses against Rare and Unique enemies","50% more damage against enemies with an Open Weakness"],"stringId":"AscendancyHuntress1Notable3"},"55802":{"connections":[{"id":2847,"orbit":0},{"id":3717,"orbit":0}],"group":901,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":55802,"stats":["+5 to any Attribute"],"stringId":"dexterity77"},"55807":{"connections":[{"id":6686,"orbit":-4}],"group":790,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isSwitchable":true,"name":"Mana Regeneration","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","id":21429,"name":"Minion Life","stats":["Minions have 10% increased maximum Life"]}},"orbit":2,"orbitIndex":5,"skill":55807,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana25"},"55817":{"connections":[{"id":58674,"orbit":0}],"group":695,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Alchemical Oil","orbit":7,"orbitIndex":1,"recipe":["Ire","Isolation","Guilt"],"skill":55817,"stats":["30% increased Exposure Effect"],"stringId":"slowed_enemies30"},"55829":{"connections":[{"id":1420,"orbit":2147483647}],"group":1185,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":0,"skill":55829,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks52"},"55835":{"connections":[{"id":52537,"orbit":2147483647},{"id":20909,"orbit":-9},{"id":7023,"orbit":0}],"group":1471,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Exposed to the Cosmos","orbit":2,"orbitIndex":19,"recipe":["Isolation","Fear","Paranoia"],"skill":55835,"stats":["Damage Penetrates 18% Cold Resistance","20% increased chance to inflict Ailments against Enemies with Exposure"],"stringId":"cold_penetration23"},"55843":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":463,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":55843,"stats":[],"stringId":"mastery_armour_and_energy_shield_6275"},"55846":{"connections":[{"id":24239,"orbit":0}],"group":1100,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":1,"orbitIndex":5,"skill":55846,"stats":["Gain 5 Life per enemy killed"],"stringId":"life_on_kill11"},"55847":{"connections":[{"id":27274,"orbit":0}],"group":1103,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","isNotable":true,"name":"Ice Walls","orbit":7,"orbitIndex":8,"recipe":["Fear","Paranoia","Disgust"],"skill":55847,"stats":["200% increased Ice Crystal Life"],"stringId":"cold_penetration15"},"55872":{"connections":[],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Effect","orbit":3,"orbitIndex":23,"skill":55872,"stats":["Offering Skills have 15% increased Buff effect"],"stringId":"corpses22"},"55888":{"connections":[{"id":18746,"orbit":0},{"id":49256,"orbit":0},{"id":440,"orbit":0}],"group":126,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":0,"orbitIndex":0,"skill":55888,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour8"},"55897":{"connectionArt":"CharacterPlanned","connections":[{"id":14432,"orbit":0}],"group":120,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Mana Regeneration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":55897,"stats":["20% increased Mana Regeneration Rate while Shapeshifted"],"stringId":"oracle_wolf_addon1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"55909":{"connections":[{"id":64046,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNode1.dds","isSwitchable":true,"name":"Infused Spell Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","id":10903,"name":"Chaos Damage","stats":["10% increased Chaos Damage"]}},"orbit":4,"orbitIndex":3,"skill":55909,"stats":["15% increased Spell Damage if you have consumed an Elemental Infusion Recently"],"stringId":"sorcerer_start3"},"55925":{"connections":[{"id":37290,"orbit":0}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Maximum Rage while Shapeshifted","orbit":7,"orbitIndex":8,"skill":55925,"stats":["+3 to maximum Rage while Shapeshifted"],"stringId":"rage23"},"55930":{"connections":[{"id":40687,"orbit":0}],"group":1098,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":2,"orbitIndex":16,"skill":55930,"stats":["15% increased Glory generation"],"stringId":"glory19"},"55931":{"connections":[{"id":62034,"orbit":0},{"id":62313,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Armour Applies to Fire Damage Hits","orbit":3,"orbitIndex":18,"skill":55931,"stats":["+15% of Armour also applies to Fire Damage"],"stringId":"maximum_resistances3_"},"55933":{"connections":[{"id":60886,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":48,"skill":55933,"stats":["+5 to any Attribute"],"stringId":"strength8"},"55938":{"connections":[{"id":41394,"orbit":7}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":3,"orbitIndex":9,"skill":55938,"stats":["10% increased effect of Archon Buffs on you"],"stringId":"archon10"},"55947":{"connections":[{"id":46088,"orbit":3}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Chance","orbit":2,"orbitIndex":1,"skill":55947,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"spell_criticals12_"},"55995":{"connections":[{"id":41873,"orbit":0}],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":4,"skill":55995,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges4"},"56016":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[{"id":65149,"orbit":-8},{"id":35594,"orbit":2147483647}],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","isNotable":true,"name":"Passthrough Rounds","orbit":2,"orbitIndex":2,"recipe":["Greed","Guilt","Isolation"],"skill":56016,"stats":["Projectiles Pierce enemies with Fully Broken Armour"],"stringId":"armour_break19"},"56023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1371,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56023,"stats":[],"stringId":"mastery_projectile202"},"56045":{"connections":[{"id":24647,"orbit":4},{"id":11604,"orbit":0}],"group":1116,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56045,"stats":["+5 to any Attribute"],"stringId":"dexterity6"},"56061":{"connections":[],"group":449,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Damage against Burning Enemies","orbit":2,"orbitIndex":12,"skill":56061,"stats":["14% increased Damage with Hits against Burning Enemies"],"stringId":"fire16"},"56063":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":989,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Lingering Horror","orbit":0,"orbitIndex":0,"recipe":["Isolation","Disgust","Disgust"],"skill":56063,"stats":["23% increased Chaos Damage","15% increased Skill Effect Duration"],"stringId":"chaos37"},"56090":{"connectionArt":"CharacterPlanned","connections":[{"id":59136,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":16,"skill":56090,"stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"stringId":"oracle_spell_poison1_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56104":{"connections":[],"group":694,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":3,"orbitIndex":16,"skill":56104,"stats":["Break 20% increased Armour"],"stringId":"armour_break27"},"56112":{"connections":[{"id":42059,"orbit":-2},{"id":49259,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","isNotable":true,"name":"Extinguishing Exhalation","orbit":3,"orbitIndex":18,"recipe":["Suffering","Despair","Paranoia"],"skill":56112,"stats":["Remove Ignite when you Warcry"],"stringId":"warcries47"},"56118":{"connections":[{"id":19341,"orbit":-5},{"id":22976,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":4,"orbitIndex":12,"skill":56118,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life4"},"56162":{"ascendancyName":"Blood Mage","connections":[{"id":50192,"orbit":-9}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageLifeLoss.dds","isNotable":true,"name":"Grasping Wounds","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":8,"orbitIndex":13,"skill":56162,"stats":["25% of Life Loss from Hits is prevented, then that much Life is lost over 4 seconds instead"],"stringId":"AscendancyWitch2Notable7"},"56174":{"connectionArt":"CharacterPlanned","connections":[{"id":1887,"orbit":0}],"group":91,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":5,"skill":56174,"stats":["30% increased Armour while stationary"],"stringId":"oracle_crab_claw2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56214":{"connections":[{"id":30334,"orbit":0}],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Duration","orbit":3,"orbitIndex":3,"skill":56214,"stats":["8% increased Ignite Duration on Enemies"],"stringId":"ignite_mitigation9"},"56216":{"connections":[{"id":9485,"orbit":0}],"group":857,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56216,"stats":["+5 to any Attribute"],"stringId":"intelligence21"},"56219":{"connections":[{"id":52764,"orbit":-2}],"group":196,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage Decay","orbit":7,"orbitIndex":2,"skill":56219,"stats":["Inherent loss of Rage is 15% slower"],"stringId":"rage38"},"56237":{"connections":[{"id":1825,"orbit":0}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","isNotable":true,"name":"Enhancing Attacks","orbit":3,"orbitIndex":23,"recipe":["Envy","Guilt","Disgust"],"skill":56237,"stats":["12% increased Spell Damage for each different Non-Instant Attack you've used in the past 8 seconds"],"stringId":"attacks_and_spells13"},"56265":{"connections":[{"id":42802,"orbit":0}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Throatseeker","orbit":2,"orbitIndex":2,"recipe":["Greed","Envy","Isolation"],"skill":56265,"stats":["60% increased Critical Damage Bonus","20% reduced Critical Hit Chance"],"stringId":"criticals90"},"56284":{"connections":[{"id":1928,"orbit":-2}],"group":553,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Attack and Cast Speed","orbit":0,"orbitIndex":0,"skill":56284,"stats":["Minions have 5% increased Attack and Cast Speed"],"stringId":"minion_offence46"},"56320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connectionArt":"CharacterPlanned","connections":[],"group":440,"icon":"Art/2DArt/SkillIcons/passives/BloodMastery.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":56320,"stats":[],"stringId":"oracle_iron_blood_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56325":{"connections":[{"id":21280,"orbit":0}],"group":1063,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion and Reduced Movement Penalty","orbit":0,"orbitIndex":0,"skill":56325,"stats":["10% increased Evasion Rating","2% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"evasion23_"},"56330":{"connections":[{"id":39570,"orbit":2147483647}],"group":1168,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance on Critical","orbit":7,"orbitIndex":22,"skill":56330,"stats":["10% chance to inflict Bleeding on Critical Hit with Attacks"],"stringId":"bleed8_"},"56331":{"ascendancyName":"Acolyte of Chayula","connections":[],"group":1588,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosDamageRed.dds","isMultipleChoiceOption":true,"name":"Choice of Life","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56331,"stats":["Remnants you create have 50% increased effect","Remnants can be collected from 50% further away","All Flames of Chayula that you manifest are Red"],"stringId":"AscendancyMonk3Notable6_3"},"56334":{"connections":[{"id":46171,"orbit":7},{"id":41753,"orbit":0}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy and Critical Chance","orbit":7,"orbitIndex":7,"skill":56334,"stats":["Meta Skills gain 4% increased Energy","5% increased Critical Hit Chance"],"stringId":"monkelemental3"},"56336":{"connections":[{"id":21208,"orbit":0}],"group":1294,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","name":"Curse Activation Speed and Effect","orbit":7,"orbitIndex":20,"skill":56336,"stats":["3% increased Curse Magnitudes","10% faster Curse Activation"],"stringId":"curses2"},"56342":{"connections":[{"id":7341,"orbit":3}],"group":366,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage when Hit","orbit":0,"orbitIndex":0,"skill":56342,"stats":["Gain 2 Rage when Hit by an Enemy"],"stringId":"rage4"},"56349":{"connections":[],"flavourText":"Give up everything in pursuit of greatness - even life itself.","group":1289,"icon":"Art/2DArt/SkillIcons/passives/KeystoneChaosInoculation.dds","isKeystone":true,"name":"Chaos Inoculation","orbit":0,"orbitIndex":0,"skill":56349,"stats":["Maximum Life is 1","Immune to Chaos Damage and Bleeding"],"stringId":"passive_keystone_chaos_inoculation"},"56360":{"connections":[{"id":24812,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":19,"skill":56360,"stats":["20% increased Power Charge Duration"],"stringId":"power_charges2"},"56366":{"connections":[{"id":35755,"orbit":0}],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","isNotable":true,"name":"Silent Shiv","orbit":3,"orbitIndex":16,"skill":56366,"stats":["5% increased Attack Speed with Daggers","15% increased Critical Hit Chance with Daggers"],"stringId":"dagger13"},"56368":{"connections":[{"id":61393,"orbit":-4}],"group":134,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Life Regeneration","orbit":0,"orbitIndex":0,"skill":56368,"stats":["15% increased Life Regeneration rate while Shapeshifted"],"stringId":"wolf3"},"56388":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Reinforced Rallying","orbit":5,"orbitIndex":0,"recipe":["Ire","Envy","Isolation"],"skill":56388,"stats":["+1 to maximum number of placed Banners"],"stringId":"banners12"},"56409":{"connections":[{"id":25101,"orbit":0},{"id":43139,"orbit":0},{"id":65248,"orbit":0}],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Chance","orbit":4,"orbitIndex":12,"skill":56409,"stats":["24% increased Flammability Magnitude","12% increased Freeze Buildup","12% increased chance to Shock"],"stringId":"elemental51"},"56453":{"connections":[{"id":37691,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isNotable":true,"name":"Killer Instinct","orbit":5,"orbitIndex":39,"recipe":["Greed","Paranoia","Greed"],"skill":56453,"stats":["40% increased Attack Damage while on Full Life","60% increased Attack Damage while on Low Life"],"stringId":"attack27"},"56466":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connectionArt":"CharacterPlanned","connections":[],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Night's Bite","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":0,"orbitIndex":0,"skill":56466,"stats":["Spells Gain 12% of Damage as extra Chaos Damage"],"stringId":"oracle_spell_poison4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56472":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":1054,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":56472,"stats":[],"stringId":"mastery_projectile_6652"},"56488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Glancing Deflection","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Envy"],"skill":56488,"stats":["10% increased Deflection Rating"],"stringId":"deflect29"},"56489":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerBonusPerSocketedTalisman.dds","isNotable":true,"name":"Idolatry","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":9,"orbitIndex":10,"skill":56489,"stats":["Companions deal 10% increased damage per Idol in your Equipment","2% increased Reservation Efficiency of Skills per Idol in your Equipment","-4% to all Elemental Resistances per non-Idol Augment in your Equipment"],"stringId":"AscendancyHuntress2Notable8"},"56493":{"connections":[],"group":1204,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","isNotable":true,"name":"Agile Succession","orbit":3,"orbitIndex":3,"recipe":["Greed","Greed","Disgust"],"skill":56493,"stats":["6% increased Attack Speed","30% increased Evasion Rating if you have Hit an Enemy Recently"],"stringId":"attack_speed60_"},"56505":{"ascendancyName":"Oracle","connections":[{"id":4197,"orbit":-6}],"group":13,"icon":"Art/2DArt/SkillIcons/passives/Oracle/OracleNode.dds","name":"Immobilisation Buildup","nodeOverlay":{"alloc":"OracleFrameSmallAllocated","path":"OracleFrameSmallCanAllocate","unalloc":"OracleFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56505,"stats":["20% increased Immobilisation buildup"],"stringId":"AscendancyDruid1Small4"},"56547":{"connections":[{"id":12189,"orbit":4}],"group":493,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Plant Skill Damage","orbit":5,"orbitIndex":21,"skill":56547,"stats":["12% increased Damage with Plant Skills"],"stringId":"physical61"},"56564":{"connections":[{"id":8349,"orbit":0}],"group":742,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Intelligence","orbit":2,"orbitIndex":15,"skill":56564,"stats":["+8 to Intelligence"],"stringId":"energy_shield28_"},"56567":{"connections":[{"id":151,"orbit":0}],"group":616,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":7,"orbitIndex":11,"skill":56567,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy5"},"56595":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":471,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":56595,"stats":[],"stringId":"mastery_attack17"},"56605":{"connections":[],"flavourText":"In battle, certainty is worth a little pain.","group":514,"icon":"Art/2DArt/SkillIcons/passives/BulwarkKeystone.dds","isKeystone":true,"name":"Bulwark","orbit":0,"orbitIndex":0,"skill":56605,"stats":["Dodge Roll cannot Avoid Damage","Take 30% less Damage from Hits while Dodge Rolling"],"stringId":"passive_keystone_bulwark"},"56616":{"connections":[{"id":13562,"orbit":3},{"id":41415,"orbit":0}],"group":618,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","isNotable":true,"name":"Desperate Times","orbit":2,"orbitIndex":0,"recipe":["Despair","Disgust","Ire"],"skill":56616,"stats":["Regenerate 1.5% of maximum Life per second while on Low Life","40% increased Life Recovery from Flasks used when on Low Life"],"stringId":"life_regeneration8_"},"56618":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1569,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionLightning.dds","isMultipleChoiceOption":true,"name":"Fulminating Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56618,"stats":["Grants Skill: Fulminating Concoction"],"stringId":"AscendancyRanger3Notable7_3"},"56638":{"connections":[],"group":1034,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold if not Stunned recently","orbit":2,"orbitIndex":2,"skill":56638,"stats":["25% increased Stun Threshold if you haven't been Stunned Recently"],"stringId":"stun_threshold_if_no_recent_stun4"},"56640":{"connections":[{"id":10398,"orbit":2147483647}],"group":849,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","name":"Spell Critical Damage","orbit":2,"orbitIndex":22,"skill":56640,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals5"},"56649":{"connections":[{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":8,"skill":56649,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration12__"},"56651":{"connections":[{"id":38143,"orbit":0}],"group":927,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isSwitchable":true,"name":"Projectile Damage","options":{"Huntress":{"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","id":39263,"name":"Attack Damage","stats":["10% increased Attack Damage"]}},"orbit":0,"orbitIndex":0,"skill":56651,"stats":["10% increased Projectile Damage"],"stringId":"projectiles15"},"56666":{"connections":[],"group":734,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyPowerChargeNode.dds","isNotable":true,"name":"Thaumaturgic Generator","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"},"orbit":0,"orbitIndex":0,"recipe":["Melancholy","Disgust","Isolation"],"skill":56666,"stats":["Grants Thaumaturgical Dynamism"],"stringId":"DeliriumAnoint_ThaumaturgicGenerator"},"56701":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1460,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":56701,"stats":[],"stringId":"mastery_companion295"},"56703":{"connections":[{"id":15782,"orbit":0},{"id":28839,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":8,"skill":56703,"stats":["3% increased Cast Speed"],"stringId":"cast_speed11"},"56714":{"connections":[{"id":47212,"orbit":0}],"group":513,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","isNotable":true,"name":"Swift Flight","orbit":3,"orbitIndex":10,"recipe":["Suffering","Suffering","Guilt"],"skill":56714,"stats":["15% increased Projectile Speed","20% increased Physical Damage"],"stringId":"projectiles48"},"56729":{"connections":[{"id":26308,"orbit":0},{"id":34201,"orbit":0}],"group":1200,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredFox.dds","name":"Evasion while Moving","orbit":2,"orbitIndex":16,"skill":56729,"stats":["20% increased Evasion Rating while moving"],"stringId":"azmerianimals19"},"56757":{"connections":[{"id":10100,"orbit":0}],"group":182,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":2,"orbitIndex":10,"skill":56757,"stats":["20% increased Totem Placement speed"],"stringId":"totems41"},"56761":{"connections":[{"id":8560,"orbit":0},{"id":48531,"orbit":0},{"id":2408,"orbit":0}],"group":1432,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":18,"skill":56761,"stats":["8% increased Melee Damage"],"stringId":"melee27"},"56762":{"connections":[{"id":28839,"orbit":0}],"group":442,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":2,"orbitIndex":20,"skill":56762,"stats":["3% increased Cast Speed"],"stringId":"cast_speed16"},"56767":{"connections":[{"id":19461,"orbit":0},{"id":1416,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Electrifying Daze","orbit":7,"orbitIndex":13,"recipe":["Isolation","Disgust","Envy"],"skill":56767,"stats":["5% chance to Daze on Hit","Gain 12% of Physical Damage as Extra Lightning Damage against Dazed Enemies"],"stringId":"daze_18"},"56776":{"connections":[{"id":45609,"orbit":5},{"id":24129,"orbit":0}],"group":1232,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Cooked","orbit":1,"orbitIndex":7,"recipe":["Suffering","Ire","Envy"],"skill":56776,"stats":["60% increased Critical Damage Bonus","25% reduced Armour, Evasion and Energy Shield"],"stringId":"criticals49"},"56783":{"ascendancyName":"Disciple of Varashta","connections":[],"group":678,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56783,"stats":["8% increased Area of Effect"],"stringId":"AscendancySorceress3Small6_"},"56806":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","isNotable":true,"name":"Swift Blocking","orbit":7,"orbitIndex":22,"recipe":["Ire","Fear","Ire"],"skill":56806,"stats":["12% increased Block chance","1% increased Movement Speed for each time you've Blocked in the past 10 seconds"],"stringId":"block16"},"56818":{"connections":[{"id":43423,"orbit":-3},{"id":62510,"orbit":-6}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":18,"skill":56818,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks7"},"56838":{"connections":[{"id":42805,"orbit":-4},{"id":62624,"orbit":5}],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":2,"skill":56838,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield22"},"56841":{"connections":[{"id":18451,"orbit":0}],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":20,"skill":56841,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges11"},"56842":{"ascendancyName":"Titan","connections":[{"id":59540,"orbit":-5}],"group":80,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanNode.dds","name":"Stun Buildup","nodeOverlay":{"alloc":"TitanFrameSmallAllocated","path":"TitanFrameSmallCanAllocate","unalloc":"TitanFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":56842,"stats":["18% increased Stun Buildup"],"stringId":"AscendancyWarrior1Small4"},"56844":{"connections":[{"id":40929,"orbit":-2}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Duration","orbit":7,"orbitIndex":0,"skill":56844,"stats":["15% increased Archon Buff duration"],"stringId":"archon12"},"56847":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Damage","orbit":7,"orbitIndex":22,"skill":56847,"stats":["12% increased Damage while affected by a Herald"],"stringId":"heralds12_"},"56857":{"ascendancyName":"Disciple of Varashta","connections":[],"group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/EnergyShieldPhyDmgReduction.dds","isNotable":true,"name":"Sacred Rituals","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":6,"orbitIndex":44,"skill":56857,"stats":["60% of your current Energy Shield is added to your Armour for","determining your Physical Damage Reduction from Armour"],"stringId":"AscendancySorceress3Notable1"},"56860":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[],"group":1261,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Resolute Reprisal","orbit":0,"orbitIndex":0,"recipe":["Despair","Ire","Despair"],"skill":56860,"stats":["30% increased Parry Range","Your Heavy Stun buildup empties 50% faster if you've successfully Parried Recently"],"stringId":"buckler15"},"56876":{"connections":[{"id":46380,"orbit":0}],"group":373,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Energy Shield if Consumed Power Charge","orbit":2,"orbitIndex":6,"skill":56876,"stats":["20% increased maximum Energy Shield if you've consumed a Power Charge Recently"],"stringId":"power_charges12"},"56890":{"connectionArt":"CharacterPlanned","connections":[{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Endlessly Soaring","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":69,"skill":56890,"stats":["Shapeshift Skills have 30% increased Skill Effect Duration"],"stringId":"oracle_wyvern_addon2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"56893":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCharmsPattern","connections":[],"group":1311,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Thicket Warding","orbit":7,"orbitIndex":16,"recipe":["Paranoia","Fear","Paranoia"],"skill":56893,"stats":["20% chance for Charms you use to not consume Charges","Recover 5% of maximum Mana when a Charm is used"],"stringId":"charms5"},"56897":{"connections":[],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Damage","orbit":7,"orbitIndex":10,"skill":56897,"stats":["10% increased Ballista Critical Damage Bonus"],"stringId":"ballista12"},"56910":{"connections":[{"id":28510,"orbit":6},{"id":34061,"orbit":0},{"id":29328,"orbit":6}],"group":840,"icon":"Art/2DArt/SkillIcons/passives/Meleerange.dds","isNotable":true,"name":"Battle-hardened","orbit":5,"orbitIndex":51,"skill":56910,"stats":["Hits against you have 20% reduced Critical Damage Bonus","20% increased Armour and Evasion Rating","+5 to Strength and Dexterity"],"stringId":"duelist_mercenary_notable1"},"56914":{"connections":[{"id":50121,"orbit":0}],"group":1221,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Penetration","orbit":7,"orbitIndex":5,"skill":56914,"stats":["Damage Penetrates 6% Lightning Resistance"],"stringId":"lightning_penetration4"},"56926":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":977,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":2,"orbitIndex":3,"skill":56926,"stats":[],"stringId":"mastery_minion_defence_6611"},"56928":{"connections":[{"id":62350,"orbit":7}],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Flask Duration","orbit":3,"orbitIndex":15,"skill":56928,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"stringId":"attack_speed16"},"56933":{"ascendancyName":"Shaman","connections":[{"id":35920,"orbit":0}],"group":68,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanRageAffectsSpells.dds","isNotable":true,"name":"Druidic Champion","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":56933,"stats":["Every 2 Rage also grants 1% more Spell damage"],"stringId":"AscendancyDruid2Notable3"},"56934":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":588,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":56934,"stats":[],"stringId":"mastery_fire_6522"},"56935":{"connections":[{"id":57710,"orbit":0},{"id":34058,"orbit":0}],"group":778,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56935,"stats":["+5 to any Attribute"],"stringId":"intelligence15"},"56956":{"connections":[{"id":15885,"orbit":-4},{"id":54632,"orbit":0}],"group":724,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life and Chaos Resistance","orbit":2,"orbitIndex":20,"skill":56956,"stats":["Minions have 8% increased maximum Life","Minions have +7% to Chaos Resistance"],"stringId":"minion_defence31"},"56978":{"connections":[{"id":21274,"orbit":0}],"group":868,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":56978,"stats":["+5 to any Attribute"],"stringId":"dexterity73"},"56988":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1418,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Electric Blood","orbit":0,"orbitIndex":0,"recipe":["Isolation","Isolation","Guilt"],"skill":56988,"stats":["+1% to Maximum Lightning Resistance","50% reduced effect of Shock on you"],"stringId":"lightning59"},"56996":{"connections":[{"id":9568,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Life","orbit":4,"orbitIndex":3,"skill":56996,"stats":["16% increased Totem Life"],"stringId":"totems17_"},"56997":{"connections":[{"id":23861,"orbit":-5},{"id":56595,"orbit":0}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","isNotable":true,"name":"Heavy Contact","orbit":4,"orbitIndex":6,"recipe":["Ire","Envy","Despair"],"skill":56997,"stats":["Hits that Heavy Stun Enemies have Culling Strike"],"stringId":"two_handed12"},"56999":{"connections":[],"group":1008,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Locked On","orbit":0,"orbitIndex":0,"recipe":["Despair","Disgust","Envy"],"skill":56999,"stats":["15% increased Critical Hit Chance for Attacks","15% increased Accuracy Rating"],"stringId":"accuracy19"},"57002":{"connectionArt":"CharacterPlanned","connections":[{"id":48761,"orbit":0}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","isNotable":true,"name":"Rough Carapace","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":57002,"stats":["Gain Physical Thorns damage equal to 8% of maximum Life while Shapeshifted"],"stringId":"oracle_thorns3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57021":{"connections":[{"id":8957,"orbit":0},{"id":45343,"orbit":0},{"id":14505,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Area","orbit":3,"orbitIndex":16,"skill":57021,"stats":["Minions have 8% increased Area of Effect"],"stringId":"minion_offence27_"},"57039":{"connections":[{"id":44605,"orbit":6}],"group":803,"icon":"Art/2DArt/SkillIcons/passives/GreenAttackSmallPassive.dds","name":"Cooldown Recovery Rate","orbit":3,"orbitIndex":4,"skill":57039,"stats":["5% increased Cooldown Recovery Rate"],"stringId":"cooldowns1"},"57047":{"connections":[{"id":45278,"orbit":0},{"id":4492,"orbit":0}],"group":833,"icon":"Art/2DArt/SkillIcons/passives/Ascendants/SkillPoint.dds","isNotable":true,"name":"Polymathy","orbit":5,"orbitIndex":48,"recipe":["Isolation","Suffering","Paranoia"],"skill":57047,"stats":["7% increased Attributes"],"stringId":"all_attributes6"},"57069":{"connections":[{"id":52257,"orbit":0}],"group":1473,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage and Resistance","orbit":0,"orbitIndex":0,"skill":57069,"stats":["5% increased Lightning Damage","+3% to Lightning Resistance"],"stringId":"shock23"},"57079":{"connectionArt":"CharacterPlanned","connections":[{"id":19966,"orbit":-3},{"id":15842,"orbit":0}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Known by All","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":5,"orbitIndex":12,"skill":57079,"stats":["Temporary Minion Skills have +2 to Limit of Minions summoned"],"stringId":"oracle_big_family10","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57088":{"connections":[{"id":54557,"orbit":-5}],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":2,"orbitIndex":20,"skill":57088,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration1"},"57089":{"connections":[],"group":213,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":2,"orbitIndex":4,"skill":57089,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions23"},"57110":{"connections":[{"id":62159,"orbit":-2},{"id":46561,"orbit":0}],"group":982,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Infused Flesh","orbit":7,"orbitIndex":5,"recipe":["Greed","Envy","Envy"],"skill":57110,"stats":["+20 to maximum Life","8% of Damage taken Recouped as Life"],"stringId":"life_recoup16"},"57141":{"ascendancyName":"Pathfinder","connections":[],"group":1567,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoction.dds","isMultipleChoice":true,"isNotable":true,"name":"Brew Concoction","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":57141,"stats":[],"stringId":"AscendancyRanger3Notable7_Choice"},"57178":{"connections":[{"id":21245,"orbit":0},{"id":5284,"orbit":0}],"group":549,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance and Critical Ailment Effect","orbit":0,"orbitIndex":0,"skill":57178,"stats":["10% increased Critical Hit Chance for Spells","15% increased Magnitude of Damaging Ailments you inflict with Critical Hits"],"stringId":"physical17"},"57181":{"ascendancyName":"Invoker","connections":[{"id":52448,"orbit":-7}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"InvokerFrameSmallAllocated","path":"InvokerFrameSmallCanAllocate","unalloc":"InvokerFrameSmallNormal"},"orbit":8,"orbitIndex":24,"skill":57181,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyMonk2Small7"},"57190":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":27859,"orbit":0}],"group":905,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","isNotable":true,"name":"Doomsayer","orbit":1,"orbitIndex":6,"recipe":["Paranoia","Guilt","Disgust"],"skill":57190,"stats":["Herald Skills have 25% increased Area of Effect","Herald Skills deal 30% increased Damage"],"stringId":"heralds19"},"57196":{"connections":[],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":14,"skill":57196,"stats":["3% increased Attack Speed"],"stringId":"attack_speed41"},"57202":{"connectionArt":"CharacterPlanned","connections":[{"id":1628,"orbit":2147483647}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":12,"skill":57202,"stats":["17% increased Stun Threshold"],"stringId":"oracle_beast_corruption4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57204":{"connections":[{"id":47833,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Critical Exploit","orbit":2,"orbitIndex":13,"recipe":["Envy","Paranoia","Ire"],"skill":57204,"stats":["25% increased Critical Hit Chance"],"stringId":"criticals30"},"57227":{"connections":[{"id":23259,"orbit":-5}],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Chance","orbit":2,"orbitIndex":5,"skill":57227,"stats":["10% increased Critical Hit Chance for Attacks"],"stringId":"criticals77"},"57230":{"connections":[{"id":25851,"orbit":-4},{"id":36270,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":6,"orbitIndex":6,"skill":57230,"stats":["10% increased Physical Damage"],"stringId":"chaos8"},"57253":{"ascendancyName":"Pathfinder","connections":[{"id":38646,"orbit":0},{"id":3936,"orbit":0}],"group":1573,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderPathoftheWarrior.dds","isMultipleChoiceOption":true,"name":"Path of the Warrior","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":57253,"stats":["Can Allocate Passive Skills from the Warrior's starting point","Grants 4 Passive Skill Point"],"stringId":"AscendancyRanger3Notable8_3"},"57273":{"connections":[{"id":33562,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Shapeshifted Damage","orbit":4,"orbitIndex":33,"skill":57273,"stats":["12% increased Damage while Shapeshifted"],"stringId":"wyvern18"},"57320":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":728,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":0,"orbitIndex":0,"skill":57320,"stats":[],"stringId":"mastery_armour_and_evasion_6278"},"57373":{"connections":[{"id":44733,"orbit":4}],"group":601,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability Magnitude","orbit":0,"orbitIndex":0,"skill":57373,"stats":["30% increased Flammability Magnitude"],"stringId":"ignite11"},"57379":{"connections":[{"id":39190,"orbit":0},{"id":49111,"orbit":0}],"group":145,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","isNotable":true,"name":"In Your Face","orbit":3,"orbitIndex":10,"recipe":["Fear","Greed","Envy"],"skill":57379,"stats":["40% increased Melee Damage with Hits at Close Range"],"stringId":"melee33"},"57386":{"connectionArt":"CharacterPlanned","connections":[{"id":4621,"orbit":-6}],"group":243,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Elemental Threshold","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":13,"skill":57386,"stats":["17% increased Elemental Ailment Threshold"],"stringId":"oracle_beast_corruption6","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57388":{"connections":[{"id":9698,"orbit":0}],"group":238,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Overwhelming Strike","orbit":3,"orbitIndex":22,"recipe":["Despair","Envy","Disgust"],"skill":57388,"stats":["15% increased Critical Hit Chance for Attacks","20% increased Critical Damage Bonus for Attack Damage","20% more Stun Buildup with Critical Hits"],"stringId":"criticals64"},"57405":{"connections":[{"id":64807,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":2,"orbitIndex":2,"skill":57405,"stats":["10% increased Attack Area Damage"],"stringId":"slam_area4"},"57449":{"ascendancyName":"Martial Artist","connections":[{"id":17356,"orbit":9},{"id":19370,"orbit":-9}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Area of Effect","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":6,"orbitIndex":63,"skill":57449,"stats":["8% increased Area of Effect"],"stringId":"AscendancyMonk1Small5"},"57462":{"connections":[{"id":12078,"orbit":-6}],"group":1375,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Speed","orbit":3,"orbitIndex":17,"skill":57462,"stats":["8% increased Projectile Speed"],"stringId":"projectiles11"},"57471":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryShieldPattern","connections":[{"id":42578,"orbit":-4}],"group":187,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","isNotable":true,"name":"Hunker Down","orbit":3,"orbitIndex":8,"recipe":["Despair","Despair","Paranoia"],"skill":57471,"stats":["Recover 20 Life when you Block","+2% to maximum Block chance","80% less Knockback Distance for Blocked Hits"],"stringId":"block13"},"57513":{"connections":[],"flavourText":"What need have I for defence when my enemies\\nare reduced to ash and splinters?","group":1083,"icon":"Art/2DArt/SkillIcons/passives/KeystoneEldritchBattery.dds","isKeystone":true,"name":"Eldritch Battery","orbit":0,"orbitIndex":0,"skill":57513,"stats":["Convert 100% of maximum Energy Shield to maximum Mana","Mana Costs are Doubled"],"stringId":"passive_keystone_eldritch_battery__"},"57517":{"connections":[{"id":28268,"orbit":0}],"group":1068,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":57517,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed37"},"57518":{"connections":[{"id":17146,"orbit":4}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklerNode1.dds","name":"Parry Damage","orbit":2,"orbitIndex":23,"skill":57518,"stats":["20% increased Parry Damage"],"stringId":"deflect3"},"57552":{"connections":[{"id":24871,"orbit":0},{"id":46696,"orbit":0}],"group":421,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":4,"orbitIndex":0,"skill":57552,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed19"},"57555":{"connections":[{"id":37608,"orbit":0}],"group":713,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Impale Chance","orbit":7,"orbitIndex":15,"skill":57555,"stats":["15% chance to Impale on Spell Hit"],"stringId":"physical7"},"57571":{"connections":[{"id":37905,"orbit":-3}],"group":1525,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Flammability Magnitude","orbit":2,"orbitIndex":6,"skill":57571,"stats":["30% increased Flammability Magnitude"],"stringId":"fire_penetration4"},"57596":{"connectionArt":"CharacterPlanned","connections":[{"id":13468,"orbit":0}],"group":522,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":71,"skill":57596,"stats":["8% of Skill Mana Costs Converted to Life Costs"],"stringId":"oracle_life_corruption3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"57608":{"connections":[{"id":61703,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Physical Damage","orbit":2,"orbitIndex":15,"skill":57608,"stats":["12% increased Physical Damage while Shapeshifted"],"stringId":"shapeshifting3"},"57615":{"connections":[{"id":32319,"orbit":0},{"id":48836,"orbit":0}],"group":1541,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Surpassing Arrow Chance","orbit":4,"orbitIndex":54,"skill":57615,"stats":["+8% Surpassing chance to fire an additional Arrow"],"stringId":"bow20"},"57616":{"connections":[{"id":56388,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Duration","orbit":4,"orbitIndex":3,"skill":57616,"stats":["Banner Skills have 20% increased Duration"],"stringId":"banners26"},"57617":{"connections":[{"id":14996,"orbit":-2},{"id":16506,"orbit":-2},{"id":37509,"orbit":-2},{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Shifted Strikes","orbit":0,"orbitIndex":0,"recipe":["Greed","Guilt","Disgust"],"skill":57617,"stats":["30% increased Attack Damage if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting26"},"57626":{"connections":[{"id":36782,"orbit":0}],"group":862,"icon":"Art/2DArt/SkillIcons/passives/ColdFireNode.dds","name":"Cold and Fire Damage","orbit":7,"orbitIndex":16,"skill":57626,"stats":["10% increased Fire Damage","10% increased Cold Damage"],"stringId":"cold8_"},"57683":{"connections":[{"id":35031,"orbit":2}],"group":1528,"icon":"Art/2DArt/SkillIcons/passives/MonkHealthChakra.dds","name":"Life Recoup","orbit":2,"orbitIndex":11,"skill":57683,"stats":["3% of Damage taken Recouped as Life"],"stringId":"monkchakra14"},"57703":{"connections":[{"id":54811,"orbit":0},{"id":54485,"orbit":0},{"id":38130,"orbit":0},{"id":19674,"orbit":0}],"group":364,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":57703,"stats":["+5 to any Attribute"],"stringId":"attributes32"},"57710":{"connections":[{"id":39037,"orbit":0},{"id":40783,"orbit":0},{"id":53975,"orbit":0},{"id":58090,"orbit":2147483647}],"group":815,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":0,"skill":57710,"stats":["+5 to any Attribute"],"stringId":"intelligence16"},"57724":{"connections":[{"id":54883,"orbit":-7}],"group":1315,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":7,"orbitIndex":20,"skill":57724,"stats":["7% increased Chaos Damage"],"stringId":"chaos20_"},"57774":{"connections":[{"id":49657,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Speed","orbit":3,"orbitIndex":21,"skill":57774,"stats":["3% increased Attack Speed while Dual Wielding"],"stringId":"dual_wielding7"},"57775":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryReservationPattern","connections":[],"group":456,"icon":"Art/2DArt/SkillIcons/passives/AltMasteryAuras.dds","isOnlyImage":true,"name":"Aura Mastery","orbit":0,"orbitIndex":0,"skill":57775,"stats":[],"stringId":"mastery_aura_6311_"},"57785":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[{"id":31112,"orbit":0},{"id":56897,"orbit":0}],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Trained Turrets","orbit":7,"orbitIndex":6,"recipe":["Greed","Despair","Ire"],"skill":57785,"stats":["25% increased Ballista Critical Damage Bonus","20% increased Ballista Critical Hit Chance"],"stringId":"ballista15"},"57791":{"connections":[{"id":52229,"orbit":0}],"group":692,"icon":"Art/2DArt/SkillIcons/passives/AuraNotable.dds","name":"Spell Damage and Cast Speed","orbit":2,"orbitIndex":16,"skill":57791,"stats":["6% increased Spell Damage","2% increased Cast Speed"],"stringId":"orb4"},"57805":{"connections":[{"id":43444,"orbit":4}],"group":830,"icon":"Art/2DArt/SkillIcons/passives/knockback.dds","isNotable":true,"name":"Clear Space","orbit":4,"orbitIndex":18,"recipe":["Paranoia","Guilt","Guilt"],"skill":57805,"stats":["20% increased Knockback Distance","20% chance to Knock Enemies Back with Hits at Close Range"],"stringId":"knockback20_"},"57810":{"connections":[{"id":40073,"orbit":0}],"group":984,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Shock Chance","orbit":0,"orbitIndex":0,"skill":57810,"stats":["15% increased chance to Shock"],"stringId":"shock13"},"57816":{"connections":[{"id":364,"orbit":0}],"group":791,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","name":"Dexterity","orbit":1,"orbitIndex":8,"skill":57816,"stats":["+8 to Dexterity"],"stringId":"attributes106"},"57819":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":533,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingBuffSkillsReserveLessSpirit.dds","isNotable":true,"name":"Integrated Efficiency","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":57819,"stats":["Skills deal 20% increased Damage per Connected Red Support Gem","Skills have 6% increased Skill Speed per Connected Green Support Gem","Skills have 20% increased Critical Hit Chance per Connected Blue Support Gem"],"stringId":"AscendancyMercenary3Notable7"},"57821":{"connections":[{"id":31765,"orbit":0},{"id":26034,"orbit":0}],"group":1366,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":12,"skill":57821,"stats":["+5 to any Attribute"],"stringId":"dexterity9"},"57832":{"connections":[{"id":46300,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":2,"orbitIndex":9,"skill":57832,"stats":["10% increased Ignite Magnitude"],"stringId":"ignite13"},"57846":{"connections":[{"id":63451,"orbit":0},{"id":38876,"orbit":6}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":6,"orbitIndex":12,"skill":57846,"stats":["15% increased Stun Buildup"],"stringId":"stun19"},"57863":{"connections":[{"id":26356,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Detonator Area","orbit":7,"orbitIndex":5,"skill":57863,"stats":["Detonator skills have 8% increased Area of Effect"],"stringId":"area_attacks43"},"57880":{"connections":[{"id":27082,"orbit":0},{"id":6269,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","name":"Axe Damage","orbit":3,"orbitIndex":3,"skill":57880,"stats":["12% increased Damage with Axes"],"stringId":"axe3"},"57921":{"connections":[{"id":23879,"orbit":0}],"group":374,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Wolf's Howl","orbit":3,"orbitIndex":21,"recipe":["Disgust","Paranoia","Greed"],"skill":57921,"stats":["30% increased Critical Hit Chance if you have Shapeshifted to an Animal form Recently"],"stringId":"shapeshifting29"},"57928":{"connections":[{"id":43303,"orbit":2}],"group":1201,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":57928,"stats":["12% increased Lightning Damage"],"stringId":"lightning66"},"57933":{"connections":[{"id":16150,"orbit":0}],"group":1539,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Companion Damage","orbit":0,"orbitIndex":0,"skill":57933,"stats":["Companions deal 12% increased Damage"],"stringId":"companions18"},"57945":{"connections":[{"id":7412,"orbit":0}],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flask Charge Generation","orbit":7,"orbitIndex":12,"skill":57945,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks9"},"57959":{"ascendancyName":"Smith of Kitava","connections":[{"id":63401,"orbit":0}],"group":9,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaFireResistAppliesToColdLightning.dds","isNotable":true,"name":"Coal Stoker","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":57959,"stats":["Modifiers to Fire Resistance also grant Cold and Lightning Resistance at 50% of their value"],"stringId":"AscendancyWarrior3Notable4"},"57966":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1077,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":57966,"stats":[],"stringId":"mastery_critical_6416"},"57967":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryManaPattern","connections":[],"group":640,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Sturdy Mind","orbit":0,"orbitIndex":0,"skill":57967,"stats":["+30 to maximum Mana","14% increased Mana Regeneration Rate"],"stringId":"mana17"},"57970":{"connections":[{"id":55995,"orbit":0},{"id":21537,"orbit":0}],"group":1523,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Frenzy Charge Duration","orbit":2,"orbitIndex":10,"skill":57970,"stats":["20% increased Frenzy Charge Duration"],"stringId":"frenzy_charges6"},"58002":{"connections":[{"id":45086,"orbit":0},{"id":55668,"orbit":0}],"group":1009,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Physical Damage","orbit":3,"orbitIndex":3,"skill":58002,"stats":["10% increased Physical Damage"],"stringId":"physical10"},"58013":{"connections":[{"id":4844,"orbit":0}],"group":991,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":7,"orbitIndex":4,"skill":58013,"stats":["10% increased Projectile Damage"],"stringId":"ranged4"},"58016":{"connections":[{"id":49537,"orbit":7},{"id":42205,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"All Natural","orbit":4,"orbitIndex":42,"recipe":["Fear","Fear","Greed"],"skill":58016,"stats":["+5% to all Elemental Resistances","30% increased Elemental Damage"],"stringId":"elemental39"},"58022":{"connections":[{"id":5186,"orbit":3},{"id":26762,"orbit":-7}],"group":1363,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":58022,"stats":["11% increased Chaos Damage"],"stringId":"chaos19"},"58038":{"connections":[{"id":31566,"orbit":0}],"group":782,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","name":"Attack Damage while Surrounded","orbit":3,"orbitIndex":3,"skill":58038,"stats":["25% increased Attack Damage while Surrounded"],"stringId":"being_surrounded7"},"58058":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connectionArt":"CharacterPlanned","connections":[],"group":86,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Bow Mastery","orbit":0,"orbitIndex":0,"skill":58058,"stats":[],"stringId":"oracle_bow_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58088":{"connections":[{"id":16620,"orbit":5}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Block and Movement Penalty with Raised Shield","orbit":4,"orbitIndex":36,"skill":58088,"stats":["4% increased Block chance","5% reduced Movement Speed Penalty while Actively Blocking"],"stringId":"shield29"},"58090":{"connections":[{"id":21540,"orbit":4},{"id":34367,"orbit":3}],"group":851,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":58090,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup1"},"58096":{"connections":[{"id":17411,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Lasting Incantations","orbit":3,"orbitIndex":20,"recipe":["Isolation","Greed","Disgust"],"skill":58096,"stats":["20% increased Spell Damage","15% increased Skill Effect Duration"],"stringId":"spells31"},"58109":{"connections":[{"id":14340,"orbit":0}],"group":886,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":58109,"stats":["+5 to any Attribute"],"stringId":"dexterity69"},"58115":{"connections":[{"id":52241,"orbit":2},{"id":11672,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana on Kill","orbit":2,"orbitIndex":12,"skill":58115,"stats":["Recover 1% of maximum Mana on Kill"],"stringId":"mana_regeneration48"},"58117":{"connections":[{"id":41186,"orbit":0},{"id":13839,"orbit":0},{"id":56996,"orbit":0},{"id":53719,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":5,"orbitIndex":3,"skill":58117,"stats":["15% increased Totem Damage"],"stringId":"totems39"},"58125":{"connections":[{"id":10681,"orbit":5}],"group":125,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Shield Block","orbit":4,"orbitIndex":60,"skill":58125,"stats":["5% increased Block chance"],"stringId":"shield12"},"58138":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[],"group":125,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":1,"orbitIndex":6,"skill":58138,"stats":[],"stringId":"mastery_armour_and_energy_shield_6274"},"58149":{"ascendancyName":"Ritualist","connections":[{"id":62804,"orbit":8}],"group":1618,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Life Recovery Rate","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":58149,"stats":["10% increased Life Recovery rate"],"stringId":"AscendancyHuntress3Small5"},"58157":{"connections":[{"id":61149,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":7,"orbitIndex":17,"skill":58157,"stats":["20% increased Stun Recovery"],"stringId":"monkchakra28"},"58170":{"connections":[{"id":61067,"orbit":0}],"group":680,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isSwitchable":true,"name":"Spell Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","id":41568,"name":"Life Regeneration","stats":["Regenerate 0.2% of maximum Life per second"]}},"orbit":2,"orbitIndex":1,"skill":58170,"stats":["10% increased Spell Damage"],"stringId":"spells2"},"58182":{"connections":[{"id":49220,"orbit":-5}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/HiredKiller2.dds","name":"Life on Kill","orbit":3,"orbitIndex":22,"skill":58182,"stats":["Gain 3 Life per enemy killed"],"stringId":"life_on_kill1"},"58183":{"connections":[{"id":60241,"orbit":0},{"id":21245,"orbit":0},{"id":32278,"orbit":0}],"group":531,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Blood Tearing","orbit":2,"orbitIndex":11,"recipe":["Despair","Isolation","Greed"],"skill":58183,"stats":["15% increased Magnitude of Bleeding you inflict","25% increased Physical Damage"],"stringId":"physical35"},"58197":{"connectionArt":"CharacterPlanned","connections":[{"id":35980,"orbit":0}],"group":88,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Unquenchable Iron","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":6,"orbitIndex":60,"skill":58197,"stats":["Gain 18% of Physical Damage as Extra Lightning Damage"],"stringId":"oracle_rust_king8","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58198":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":319,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Well of Power","orbit":0,"orbitIndex":0,"recipe":["Fear","Ire","Ire"],"skill":58198,"stats":["20% increased Critical Damage Bonus if you've consumed a Power Charge Recently","Recover 5% of maximum Mana when you consume a Power Charge"],"stringId":"power_charges16"},"58215":{"connections":[{"id":292,"orbit":0}],"group":476,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Sanguimantic Rituals","orbit":4,"orbitIndex":8,"recipe":["Paranoia","Suffering","Isolation"],"skill":58215,"stats":["Regenerate 1% of maximum Life per second","Arcane Surge grants more Life Regeneration Rate instead of Mana Regeneration Rate"],"stringId":"life_recoup26"},"58295":{"connections":[],"group":271,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":2,"orbitIndex":4,"skill":58295,"stats":["+5 to any Attribute"],"stringId":"strength45_"},"58312":{"connections":[{"id":49497,"orbit":0}],"group":1177,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Culling Strike Threshold","orbit":7,"orbitIndex":10,"skill":58312,"stats":["5% increased Culling Strike Threshold"],"stringId":"slaying2_"},"58329":{"connections":[{"id":56360,"orbit":0},{"id":61196,"orbit":0},{"id":56638,"orbit":0}],"group":987,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":18,"skill":58329,"stats":["+5 to any Attribute"],"stringId":"intelligence77"},"58362":{"connections":[{"id":51335,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagenode.dds","isSwitchable":true,"name":"Elemental Ailment Chance","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","id":15545,"name":"Physical Damage","stats":["10% increased Physical Damage"]}},"orbit":4,"orbitIndex":69,"skill":58362,"stats":["20% increased Flammability Magnitude","10% increased Freeze Buildup","10% increased chance to Shock"],"stringId":"sorcerer_start1"},"58363":{"connections":[{"id":55938,"orbit":2}],"group":1147,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Archon Effect","orbit":7,"orbitIndex":6,"skill":58363,"stats":["10% increased effect of Archon Buffs on you"],"stringId":"archon9"},"58368":{"connectionArt":"CharacterPlanned","connections":[{"id":40511,"orbit":0}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","name":"Minion Life","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":0,"skill":58368,"stats":["Minions have 12% increased maximum Life"],"stringId":"oracle_forbidden_path2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"58379":{"ascendancyName":"Pathfinder","connections":[{"id":57141,"orbit":0}],"group":1570,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderBrewConcoctionPoison.dds","isMultipleChoiceOption":true,"name":"Acidic Concoction","nodeOverlay":{"alloc":"PathfinderFrameSmallAllocated","path":"PathfinderFrameSmallCanAllocate","unalloc":"PathfinderFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":58379,"stats":["Grants Skill: Acidic Concoction"],"stringId":"AscendancyRanger3Notable7_4"},"58387":{"connections":[{"id":52454,"orbit":4}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":4,"orbitIndex":6,"skill":58387,"stats":["7% increased Chaos Damage"],"stringId":"chaos14"},"58388":{"connections":[{"id":13157,"orbit":0},{"id":17702,"orbit":0}],"group":1189,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":3,"orbitIndex":23,"skill":58388,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks4"},"58397":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttributesPattern","connections":[{"id":19338,"orbit":0},{"id":31647,"orbit":0},{"id":2334,"orbit":0}],"group":1426,"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","isNotable":true,"name":"Proficiency","orbit":0,"orbitIndex":0,"recipe":["Fear","Guilt","Paranoia"],"skill":58397,"stats":["+25 to Dexterity"],"stringId":"dexterity102"},"58416":{"connections":[],"group":1361,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Projectile Speed","orbit":2,"orbitIndex":11,"skill":58416,"stats":["10% increased Projectile Speed"],"stringId":"quivers6"},"58426":{"connections":[{"id":34401,"orbit":0}],"group":1442,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Pocket Sand","orbit":2,"orbitIndex":21,"recipe":["Paranoia","Guilt","Paranoia"],"skill":58426,"stats":["50% increased Blind Effect"],"stringId":"blind9"},"58496":{"connections":[{"id":9328,"orbit":-4},{"id":37187,"orbit":5}],"group":150,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage against Immobilised","orbit":0,"orbitIndex":0,"skill":58496,"stats":["20% increased Damage against Immobilised Enemies while Shapeshifted"],"stringId":"bear5"},"58513":{"connections":[{"id":14418,"orbit":2147483647},{"id":11774,"orbit":0}],"group":1341,"icon":"Art/2DArt/SkillIcons/passives/AzmeriSacredRabbit.dds","name":"Evasion and Movement Speed","orbit":3,"orbitIndex":9,"skill":58513,"stats":["1% increased Movement Speed","8% increased Evasion Rating"],"stringId":"azmerianimals7"},"58526":{"connections":[],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":15,"skill":58526,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect37"},"58528":{"connections":[{"id":5710,"orbit":6}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":3,"orbitIndex":2,"skill":58528,"stats":["10% increased Melee Damage"],"stringId":"melee54"},"58539":{"connections":[{"id":60899,"orbit":0}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Movement Penalty","orbit":7,"orbitIndex":2,"skill":58539,"stats":["3% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"spell_suppression36"},"58574":{"ascendancyName":"Ritualist","connections":[],"group":1612,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Reduced Mana","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":58574,"stats":["30% reduced maximum Mana"],"stringId":"AscendancyHuntress3Small1_1"},"58591":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":589,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingInherentBonusesFromAttributesDouble.dds","isNotable":true,"name":"Enhanced Effectiveness","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":58591,"stats":["20% less Attributes","Inherent bonuses gained from Attributes are doubled"],"stringId":"AscendancyMercenary3Notable5__"},"58593":{"connections":[{"id":33463,"orbit":9},{"id":26556,"orbit":-5}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":5,"orbitIndex":48,"skill":58593,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield30"},"58644":{"connections":[{"id":42714,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":7,"orbitIndex":21,"skill":58644,"stats":["15% increased Magnitude of Bleeding you inflict against Enemies affected by Incision"],"stringId":"bleed44"},"58646":{"ascendancyName":"Shaman","connections":[{"id":46654,"orbit":2147483647}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanAdaptToElements.dds","isNotable":true,"name":"Reactive Growth","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":6,"orbitIndex":26,"skill":58646,"stats":["10% less Elemental Damage taken","Adapt to the highest Elemental Damage Type of each Hit you take","10% less Damage taken of each Elemental Damage Type per matching Adaptation"],"stringId":"AscendancyDruid2Notable4"},"58651":{"connections":[{"id":49357,"orbit":0},{"id":50558,"orbit":0}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isSwitchable":true,"name":"Minion Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","id":63913,"name":"Armour and Energy Shield","stats":["12% increased Armour","12% increased maximum Energy Shield"]}},"orbit":4,"orbitIndex":71,"skill":58651,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence1"},"58674":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[],"group":695,"icon":"Art/2DArt/SkillIcons/passives/MasteryElementalDamage.dds","isOnlyImage":true,"name":"Elemental Mastery","orbit":7,"orbitIndex":1,"skill":58674,"stats":[],"stringId":"mastery_elemental_6469"},"58692":{"connections":[],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflectNode.dds","name":"Deflection and Energy Shield Delay","orbit":3,"orbitIndex":1,"skill":58692,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield29_"},"58704":{"ascendancyName":"Warbringer","connections":[{"id":49380,"orbit":0}],"group":29,"icon":"Art/2DArt/SkillIcons/passives/Warbringer/WarbringerBreakEnemyArmour.dds","isNotable":true,"name":"Anvil's Weight","nodeOverlay":{"alloc":"WarbringerFrameLargeAllocated","path":"WarbringerFrameLargeCanAllocate","unalloc":"WarbringerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":58704,"stats":["Break Armour equal to 10% of Hit Damage dealt"],"stringId":"AscendancyWarrior2Notable1"},"58714":{"connections":[{"id":39431,"orbit":0}],"group":767,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Grenadier","orbit":4,"orbitIndex":60,"recipe":["Paranoia","Fear","Isolation"],"skill":58714,"stats":["Grenade Skills have +1 Cooldown Use"],"stringId":"grenades10"},"58718":{"connections":[{"id":35015,"orbit":0}],"group":727,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Damage","orbit":0,"orbitIndex":0,"skill":58718,"stats":["10% increased Magnitude of Bleeding you inflict"],"stringId":"bleed25"},"58747":{"ascendancyName":"Chronomancer","connections":[],"group":390,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistGrantsTimeStopSkill.dds","isNotable":true,"name":"Ultimate Command","nodeOverlay":{"alloc":"ChronomancerFrameLargeAllocated","path":"ChronomancerFrameLargeCanAllocate","unalloc":"ChronomancerFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":58747,"stats":["Grants Skill: Time Freeze"],"stringId":"AscendancySorceress2Notable2"},"58751":{"ascendancyName":"Lich","connections":[{"id":17788,"orbit":0}],"group":1215,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Energy Shield","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":35941,"name":"Energy Shield","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["20% increased maximum Energy Shield"]}},"orbit":8,"orbitIndex":0,"skill":58751,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancyWitch3Small9"},"58779":{"connections":[{"id":51040,"orbit":0},{"id":327,"orbit":0},{"id":23822,"orbit":0},{"id":47976,"orbit":0}],"group":1344,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Deflection and Energy Shield Delay","orbit":2,"orbitIndex":6,"skill":58779,"stats":["Gain Deflection Rating equal to 5% of Evasion Rating","4% faster start of Energy Shield Recharge"],"stringId":"deflect65"},"58783":{"connections":[{"id":26520,"orbit":0}],"group":935,"icon":"Art/2DArt/SkillIcons/passives/lifeleech.dds","name":"Life Leech, Armour and Evasion while Leeching","orbit":2,"orbitIndex":19,"skill":58783,"stats":["6% increased amount of Life Leeched","8% increased Armour and Evasion Rating while Leeching"],"stringId":"life_leech1"},"58789":{"connections":[{"id":13307,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun and Ailment Threshold from Energy Shield","orbit":4,"orbitIndex":20,"skill":58789,"stats":["Gain additional Ailment Threshold equal to 8% of maximum Energy Shield","Gain additional Stun Threshold equal to 8% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield14"},"58814":{"connections":[{"id":55802,"orbit":0},{"id":244,"orbit":0},{"id":12465,"orbit":0},{"id":26830,"orbit":0},{"id":26952,"orbit":0}],"group":1005,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":58814,"stats":["+5 to any Attribute"],"stringId":"attributes8_"},"58817":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":631,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","isNotable":true,"name":"Artillery Strike","orbit":4,"orbitIndex":15,"recipe":["Suffering","Suffering","Fear"],"skill":58817,"stats":["Attack Skills have +1 to maximum number of Summoned Ballista Totems","15% increased Area of Effect while you have a Totem"],"stringId":"ballista16"},"58838":{"connections":[{"id":26725,"orbit":6}],"group":324,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":5,"orbitIndex":60,"skill":58838,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold21"},"58848":{"connections":[{"id":22962,"orbit":2147483647},{"id":10576,"orbit":0}],"group":1349,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":7,"orbitIndex":10,"skill":58848,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed40"},"58855":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":250,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":58855,"stats":[],"stringId":"mastery_armour_6293"},"58884":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTwoHandsPattern","connections":[],"group":930,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupTwoHands.dds","isOnlyImage":true,"name":"Two Hand Mastery","orbit":0,"orbitIndex":0,"skill":58884,"stats":[],"stringId":"mastery_two_hand_6773"},"58894":{"connections":[],"group":189,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Dominus' Providence","orbit":2,"orbitIndex":1,"recipe":["Guilt","Suffering","Envy"],"skill":58894,"stats":["+8% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","30% reduced effect of Curses on you","Immune to Exposure"],"stringId":"energy_shield_and_armour48"},"58926":{"connections":[{"id":64572,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":16,"skill":58926,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze27"},"58930":{"connections":[{"id":14934,"orbit":7}],"group":662,"icon":"Art/2DArt/SkillIcons/passives/castspeed.dds","name":"Cast Speed","orbit":7,"orbitIndex":9,"skill":58930,"stats":["3% increased Cast Speed"],"stringId":"cast_speed25"},"58932":{"ascendancyName":"Lich","connections":[],"group":1160,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichSpellCostESandMoreDMG.dds","isNotable":true,"isSwitchable":true,"name":"Eldritch Empowerment","nodeOverlay":{"alloc":"LichFrameLargeAllocated","path":"LichFrameLargeCanAllocate","unalloc":"LichFrameLargeNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"}}},"orbit":0,"orbitIndex":0,"skill":58932,"stats":["Sacrificing Energy Shield does not interrupt Recharge","Sacrifice 5% of maximum Energy Shield when you Cast a Spell","Spells for which this Sacrifice was fully made deal 30% more Damage"],"stringId":"AscendancyWitch3Notable8"},"58939":{"connections":[{"id":44608,"orbit":0}],"group":945,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"Dispatch Foes","orbit":2,"orbitIndex":8,"recipe":["Envy","Envy","Paranoia"],"skill":58939,"stats":["40% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently"],"stringId":"criticals80"},"58971":{"connections":[{"id":12998,"orbit":-6},{"id":38678,"orbit":-7}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","name":"Ailment Threshold","orbit":2,"orbitIndex":11,"skill":58971,"stats":["15% increased Elemental Ailment Threshold"],"stringId":"spell_suppression27"},"59006":{"connections":[{"id":37956,"orbit":7}],"group":500,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Duration","orbit":0,"orbitIndex":0,"skill":59006,"stats":["8% reduced Skill Effect Duration"],"stringId":"duration_spells5"},"59028":{"connections":[{"id":41210,"orbit":0}],"group":838,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":4,"orbitIndex":16,"skill":59028,"stats":["10% increased Projectile Damage"],"stringId":"projectiles6__"},"59039":{"connectionArt":"CharacterPlanned","connections":[{"id":28223,"orbit":4}],"group":176,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":38,"skill":59039,"stats":["20% increased Critical Damage Bonus"],"stringId":"oracle_slow_crits1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59053":{"connections":[{"id":54805,"orbit":-7}],"group":1117,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect and Hinder Duration","orbit":3,"orbitIndex":8,"skill":59053,"stats":["Debuffs you inflict have 4% increased Slow Magnitude","20% increased Hinder Duration"],"stringId":"slowed_enemies14_"},"59061":{"connections":[{"id":28267,"orbit":0}],"group":228,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":6,"skill":59061,"stats":["20% increased Critical Damage Bonus if you haven't dealt a Critical Hit Recently"],"stringId":"criticals31"},"59064":{"connections":[],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","name":"Mark Effect","orbit":3,"orbitIndex":21,"skill":59064,"stats":["10% increased Effect of your Mark Skills"],"stringId":"marks16"},"59070":{"connections":[{"id":55011,"orbit":0}],"group":580,"icon":"Art/2DArt/SkillIcons/passives/ArchonGenericNotable.dds","isNotable":true,"name":"Enduring Archon","orbit":7,"orbitIndex":13,"recipe":["Disgust","Isolation","Paranoia"],"skill":59070,"stats":["30% increased Archon Buff duration"],"stringId":"archon4"},"59083":{"connections":[{"id":32364,"orbit":0}],"group":1472,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Ignite Magnitude","orbit":7,"orbitIndex":4,"skill":59083,"stats":["10% increased Ignite Magnitude"],"stringId":"fire51_"},"59093":{"connections":[{"id":14110,"orbit":0},{"id":5088,"orbit":0},{"id":53444,"orbit":0},{"id":4621,"orbit":0},{"id":25890,"orbit":0}],"group":287,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59093,"stats":["+5 to any Attribute"],"stringId":"intelligence71"},"59136":{"connectionArt":"CharacterPlanned","connections":[{"id":17729,"orbit":0}],"group":636,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Chance to Poison and Spell Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":21,"skill":59136,"stats":["12% increased Spell Damage","8% chance to Poison on Hit"],"stringId":"oracle_spell_poison2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59180":{"connections":[{"id":50023,"orbit":2147483647}],"group":538,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Attack Damage","orbit":7,"orbitIndex":15,"skill":59180,"stats":["10% increased Attack Damage"],"stringId":"glory3"},"59208":{"connections":[{"id":5681,"orbit":0}],"group":483,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.dds","isNotable":true,"name":"Frantic Fighter","orbit":2,"orbitIndex":16,"recipe":["Ire","Guilt","Suffering"],"skill":59208,"stats":["30% reduced Accuracy Rating while Surrounded","100% increased Attack Damage while Surrounded"],"stringId":"being_surrounded24"},"59213":{"connections":[{"id":48240,"orbit":3}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":2,"orbitIndex":15,"skill":59213,"stats":["20% increased Stun Recovery"],"stringId":"stun_threshold3"},"59214":{"connections":[{"id":26268,"orbit":0},{"id":6570,"orbit":0}],"group":1316,"icon":"Art/2DArt/SkillIcons/passives/CurseEffectNode.dds","isNotable":true,"name":"Fated End","orbit":7,"orbitIndex":18,"recipe":["Disgust","Isolation","Despair"],"skill":59214,"stats":["30% increased Curse Duration","Targets Cursed by you have 50% reduced Life Regeneration Rate","Enemies you Curse cannot Recharge Energy Shield"],"stringId":"curses14"},"59256":{"connections":[{"id":8531,"orbit":0}],"group":591,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":7,"skill":59256,"stats":["10% increased Critical Hit Chance if you have Killed Recently"],"stringId":"criticals6"},"59263":{"connections":[{"id":37963,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","isNotable":true,"name":"Ripping Blade","orbit":4,"orbitIndex":33,"skill":59263,"stats":["25% increased Damage with Swords"],"stringId":"sword14"},"59281":{"connections":[{"id":14394,"orbit":7},{"id":1221,"orbit":0},{"id":50124,"orbit":-7},{"id":58109,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":2,"orbitIndex":22,"skill":59281,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion30_"},"59289":{"connections":[{"id":22532,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Immobilisation Buildup","orbit":2,"orbitIndex":21,"skill":59289,"stats":["15% increased Immobilisation buildup"],"stringId":"immobilisation2"},"59303":{"connections":[{"id":25029,"orbit":0}],"group":1329,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Lucky Rabbit Foot","orbit":4,"orbitIndex":3,"recipe":["Isolation","Disgust","Ire"],"skill":59303,"stats":["30% increased Damage while you have an active Charm","6% increased Movement Speed while you have an active Charm"],"stringId":"charms6"},"59342":{"ascendancyName":"Blood Mage","connections":[{"id":23416,"orbit":9}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Life Leech","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":6,"orbitIndex":68,"skill":59342,"stats":["12% increased amount of Life Leeched"],"stringId":"AscendancyWitch2Small6"},"59355":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":1210,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":59355,"stats":[],"stringId":"mastery_attack_6298"},"59356":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFlaskPattern","connections":[],"group":1299,"icon":"Art/2DArt/SkillIcons/passives/MasteryFlasks.dds","isOnlyImage":true,"name":"Flask Mastery","orbit":0,"orbitIndex":0,"skill":59356,"stats":[],"stringId":"mastery_flask6173_"},"59362":{"connections":[{"id":41669,"orbit":0},{"id":62677,"orbit":0},{"id":50720,"orbit":0}],"group":810,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59362,"stats":["+5 to any Attribute"],"stringId":"intelligence45"},"59367":{"connections":[{"id":10774,"orbit":0}],"group":467,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":2,"orbitIndex":6,"skill":59367,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"duration_spells10"},"59368":{"connections":[{"id":61215,"orbit":4},{"id":48116,"orbit":0}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":2,"skill":59368,"stats":["12% increased Stun Threshold"],"stringId":"azmerianimals2"},"59372":{"ascendancyName":"Titan","connections":[{"id":56842,"orbit":-5}],"group":79,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanYourHitsCrushEnemies.dds","isNotable":true,"name":"Crushing Impacts","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":59372,"stats":["25% more Damage against Heavy Stunned Enemies","Your Hits are Crushing Blows"],"stringId":"AscendancyWarrior1Notable4"},"59376":{"connections":[],"group":673,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":3,"skill":59376,"stats":["+5 to any Attribute"],"stringId":"intelligence83"},"59387":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Infusion of Power","orbit":0,"orbitIndex":0,"recipe":["Despair","Guilt","Fear"],"skill":59387,"stats":["Gain a Power Charge when you consume an Elemental Infusion"],"stringId":"power_charges20"},"59390":{"connections":[{"id":11472,"orbit":0}],"group":1250,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","name":"Evasion if Consumed Frenzy Charge","orbit":2,"orbitIndex":16,"skill":59390,"stats":["20% increased Evasion Rating if you've consumed a Frenzy Charge Recently"],"stringId":"frenzy_charges3"},"59413":{"connections":[],"group":675,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59413,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup29"},"59425":{"connections":[{"id":23939,"orbit":0}],"group":639,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":7,"orbitIndex":16,"skill":59425,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup21"},"59433":{"connections":[{"id":60916,"orbit":0}],"group":233,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","isNotable":true,"name":"Thirst for Endurance","orbit":2,"orbitIndex":20,"recipe":["Despair","Envy","Ire"],"skill":59433,"stats":["25% chance when you gain an Endurance Charge to gain an additional Endurance Charge"],"stringId":"power_endurance_charges6"},"59438":{"connections":[{"id":18101,"orbit":-7},{"id":15801,"orbit":0}],"group":674,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","isNotable":true,"name":"Flow of Life","orbit":0,"orbitIndex":0,"recipe":["Suffering","Envy","Fear"],"skill":59438,"stats":["Debuffs on you expire 10% faster","20% increased speed of Recoup Effects"],"stringId":"life_recoup35"},"59442":{"connections":[{"id":59413,"orbit":0}],"group":656,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":59442,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup33"},"59446":{"connections":[{"id":4544,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Life Flask Charges","orbit":2,"orbitIndex":5,"skill":59446,"stats":["10% increased Life Recovery from Flasks"],"stringId":"azmerianimals63"},"59466":{"connections":[],"group":415,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":7,"orbitIndex":0,"skill":59466,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries6"},"59480":{"connections":[{"id":3999,"orbit":0}],"group":714,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Area Damage","orbit":4,"orbitIndex":69,"skill":59480,"stats":["10% increased Attack Area Damage"],"stringId":"area_attacks14"},"59498":{"connections":[{"id":54814,"orbit":0}],"group":473,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":10,"skill":59498,"stats":["20% increased Presence Area of Effect"],"stringId":"auras6"},"59501":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlindPattern","connections":[{"id":25619,"orbit":0},{"id":42354,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Blind Mastery","orbit":0,"orbitIndex":0,"skill":59501,"stats":[],"stringId":"mastery_attack16"},"59503":{"connections":[{"id":22208,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Critical Chance","orbit":7,"orbitIndex":13,"skill":59503,"stats":["8% increased Critical Hit Chance for Attacks","8% increased Accuracy Rating"],"stringId":"accuracy10"},"59538":{"connections":[{"id":34912,"orbit":0},{"id":47976,"orbit":0}],"group":1425,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59538,"stats":["+5 to any Attribute"],"stringId":"intelligence67"},"59540":{"ascendancyName":"Titan","connections":[],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanMountainSplitter.dds","isNotable":true,"name":"Mountain Splitter","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":9,"orbitIndex":67,"skill":59540,"stats":["Every Third Slam skill that doesn't create Fissures which you use yourself causes 3 additional Aftershocks ahead and to each side of the initial area"],"stringId":"AscendancyWarrior1Notable3"},"59541":{"connections":[{"id":28573,"orbit":7},{"id":56926,"orbit":0}],"group":977,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Necrotised Flesh","orbit":3,"orbitIndex":3,"recipe":["Fear","Guilt","Fear"],"skill":59541,"stats":["Minions have 40% increased maximum Life","Minions have 10% reduced Life Recovery rate"],"stringId":"minion_defence15"},"59542":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":0}],"group":1555,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeDealMoreProjectileDamageFarAway.dds","isMultipleChoiceOption":true,"name":"Far Shot","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":59542,"stats":["Projectiles deal 0% more Hit damage to targets in the first 3.5 metres of their movement, scaling up with distance travelled to reach 20% after 7 metres"],"stringId":"AscendancyRanger1Notable2_1"},"59589":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[{"id":52659,"orbit":0}],"group":172,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Heavy Armour","orbit":3,"orbitIndex":23,"recipe":["Despair","Fear","Greed"],"skill":59589,"stats":["Gain Armour equal to 150% of total Strength Requirements of Equipped Boots, Gloves and Helmet"],"stringId":"armour33"},"59600":{"connections":[{"id":9411,"orbit":0}],"group":1253,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":7,"orbitIndex":21,"skill":59600,"stats":["25% increased Life Recovery from Flasks used when on Low Life"],"stringId":"life_flasks17"},"59603":{"connections":[],"group":982,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":0,"orbitIndex":0,"skill":59603,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup12"},"59636":{"connections":[{"id":13769,"orbit":-4},{"id":48007,"orbit":0}],"group":817,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","isNotable":true,"name":"Open Mind","orbit":7,"orbitIndex":12,"skill":59636,"stats":["25% increased Mana Regeneration Rate"],"stringId":"mana_regeneration22_"},"59644":{"connections":[{"id":42959,"orbit":-7}],"group":1332,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":7,"orbitIndex":15,"skill":59644,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison31"},"59647":{"connections":[{"id":8791,"orbit":3}],"group":1123,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":7,"orbitIndex":10,"skill":59647,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"duelist_minions8"},"59651":{"connections":[{"id":41654,"orbit":2147483647},{"id":47821,"orbit":4},{"id":25557,"orbit":0}],"group":1135,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Offering Duration","orbit":2,"orbitIndex":11,"skill":59651,"stats":["Offering Skills have 20% increased Duration"],"stringId":"corpses18"},"59653":{"connections":[{"id":35987,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":7,"orbitIndex":10,"skill":59653,"stats":["2% increased Movement Speed"],"stringId":"movement_speed3"},"59657":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":42078,"orbit":0}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldRechargeDeflect.dds","isNotable":true,"name":"First Teachings of the Keeper","orbit":3,"orbitIndex":16,"recipe":["Disgust","Greed","Despair"],"skill":59657,"stats":["+5% to Fire Resistance","+5% to Chaos Resistance","Gain Deflection Rating equal to 8% of Evasion Rating","10% faster start of Energy Shield Recharge"],"stringId":"evasion_and_energy_shield28"},"59661":{"connections":[{"id":12245,"orbit":0}],"group":1049,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Faster Ignites and Flammability Magnitude","orbit":7,"orbitIndex":17,"skill":59661,"stats":["15% increased Flammability Magnitude","Ignites you inflict deal Damage 4% faster"],"stringId":"fire59"},"59694":{"connections":[{"id":52399,"orbit":0}],"group":1506,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Critical Damage","orbit":0,"orbitIndex":0,"skill":59694,"stats":["18% increased Critical Damage Bonus with Quarterstaves"],"stringId":"quarterstaff17"},"59695":{"connections":[{"id":28950,"orbit":8}],"group":704,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":2,"orbitIndex":19,"skill":59695,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration9"},"59710":{"connections":[{"id":52618,"orbit":5}],"group":340,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifting Spell Damage","orbit":7,"orbitIndex":21,"skill":59710,"stats":["12% increased Spell Damage if you have Shapeshifted to Human form Recently"],"stringId":"shapeshifting15"},"59720":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":41163,"orbit":0}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","isNotable":true,"name":"Beastial Skin","orbit":5,"orbitIndex":42,"recipe":["Greed","Disgust","Envy"],"skill":59720,"stats":["100% increased Evasion Rating from Equipped Body Armour"],"stringId":"evasion33"},"59759":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":60251,"orbit":4}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaExtraChaosResistance.dds","isNotable":true,"name":"Chayula's Gift","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameLargeAllocated","path":"Acolyte of ChayulaFrameLargeCanAllocate","unalloc":"Acolyte of ChayulaFrameLargeNormal"},"orbit":8,"orbitIndex":4,"skill":59759,"stats":["+10% to Maximum Chaos Resistance","Chaos Resistance is doubled"],"stringId":"AscendancyMonk3Notable4"},"59767":{"connections":[{"id":31292,"orbit":0},{"id":20645,"orbit":0}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Reverberating Impact","orbit":3,"orbitIndex":11,"skill":59767,"stats":["Break 25% increased Armour","12% increased Area of Effect for Attacks"],"stringId":"area_attacks32"},"59775":{"connections":[{"id":20782,"orbit":-4}],"group":1324,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":0,"orbitIndex":0,"skill":59775,"stats":["7% increased Chaos Damage"],"stringId":"chaos23"},"59777":{"connections":[{"id":10362,"orbit":0},{"id":17791,"orbit":0},{"id":13937,"orbit":0},{"id":53719,"orbit":0}],"group":159,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59777,"stats":["+5 to any Attribute"],"stringId":"strength65_"},"59779":{"connections":[{"id":50986,"orbit":0},{"id":42350,"orbit":6},{"id":97,"orbit":6},{"id":11311,"orbit":5}],"group":805,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":0,"orbitIndex":0,"skill":59779,"stats":["+10 to Armour","+8 to Evasion Rating"],"stringId":"armour_and_evasion2"},"59781":{"connections":[{"id":39416,"orbit":0}],"group":732,"icon":"Art/2DArt/SkillIcons/passives/ArchonofUndeathNoteble.dds","isNotable":true,"name":"Embodiment of Death","orbit":2,"orbitIndex":19,"recipe":["Despair","Greed","Fear"],"skill":59781,"stats":["Immune to Bleeding while affected by an Archon Buff"],"stringId":"archon25"},"59785":{"connections":[{"id":27296,"orbit":0},{"id":1200,"orbit":0},{"id":33452,"orbit":0},{"id":8852,"orbit":0}],"group":130,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59785,"stats":["+5 to any Attribute"],"stringId":"attributes5"},"59795":{"connections":[{"id":10156,"orbit":-3}],"group":707,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":5,"orbitIndex":33,"skill":59795,"stats":["+5 to any Attribute"],"stringId":"strength95"},"59798":{"connections":[{"id":5335,"orbit":-4}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Ailment Threshold from Energy Shield","orbit":1,"orbitIndex":5,"skill":59798,"stats":["Gain additional Ailment Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield20"},"59799":{"connections":[{"id":7338,"orbit":4}],"group":1319,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Stun Threshold from Energy Shield","orbit":1,"orbitIndex":10,"skill":59799,"stats":["Gain additional Stun Threshold equal to 12% of maximum Energy Shield"],"stringId":"stun_threshold_from_energy_shield18"},"59822":{"ascendancyName":"Blood Mage","connections":[{"id":8415,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Blood Mage","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":9,"orbitIndex":0,"skill":59822,"stats":[],"stringId":"AscendancyWitch2Start"},"59881":{"connections":[{"id":54417,"orbit":0},{"id":28556,"orbit":-5}],"group":844,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":16,"skill":59881,"stats":["+5 to any Attribute"],"stringId":"dexterity28"},"59886":{"connections":[{"id":4442,"orbit":0}],"group":154,"icon":"Art/2DArt/SkillIcons/passives/lightningstr.dds","name":"Armour Applies to Lightning Damage Hits","orbit":5,"orbitIndex":23,"skill":59886,"stats":["+15% of Armour also applies to Lightning Damage"],"stringId":"maximum_resistances11"},"59908":{"connectionArt":"CharacterPlanned","connections":[{"id":36197,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Area of Effect","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":23,"skill":59908,"stats":["10% increased Area of Effect for Skills used by Totems"],"stringId":"oracle_totems5","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"59909":{"connections":[{"id":30539,"orbit":4}],"group":1106,"icon":"Art/2DArt/SkillIcons/passives/CorpseDamage.dds","name":"Corpses","orbit":7,"orbitIndex":22,"skill":59909,"stats":["5% chance to not destroy Corpses when Consuming Corpses"],"stringId":"corpses7"},"59913":{"ascendancyName":"Deadeye","connections":[{"id":29871,"orbit":0}],"group":1556,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeMarkEnemiesSpread.dds","isNotable":true,"name":"Called Shots","nodeOverlay":{"alloc":"DeadeyeFrameLargeAllocated","path":"DeadeyeFrameLargeCanAllocate","unalloc":"DeadeyeFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":59913,"stats":["Grants Skill: Called Shots"],"stringId":"AscendancyRanger1Notable7"},"59915":{"connections":[{"id":7741,"orbit":-6},{"id":97,"orbit":-6},{"id":2455,"orbit":-6}],"group":837,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":0,"orbitIndex":0,"skill":59915,"stats":["10% increased Projectile Damage"],"stringId":"projectiles18"},"59938":{"connections":[{"id":50757,"orbit":0}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Against the Elements","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Envy"],"skill":59938,"stats":["30% increased Elemental Ailment Threshold","15% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation19_"},"59945":{"connections":[{"id":4527,"orbit":0},{"id":45327,"orbit":0},{"id":21684,"orbit":0}],"group":214,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":59945,"stats":["+5 to any Attribute"],"stringId":"attributes81"},"60014":{"connectionArt":"CharacterPlanned","connections":[{"id":38474,"orbit":0}],"group":560,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Scent of Blood","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":7,"orbitIndex":16,"skill":60014,"stats":["3% increased Movement Speed","20% increased Bleeding Duration","40% chance for Attack Hits to apply Incision"],"stringId":"oracle_bleed3","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern","connections":[{"id":15207,"orbit":0},{"id":22208,"orbit":0}],"group":1368,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","isNotable":true,"name":"Falcon Dive","orbit":0,"orbitIndex":0,"recipe":["Isolation","Paranoia","Paranoia"],"skill":60034,"stats":["4% increased Attack Speed","1% increased Attack Speed per 400 Accuracy Rating, up to 20%"],"stringId":"accuracy20"},"60064":{"connections":[{"id":47263,"orbit":0},{"id":3027,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage","orbit":2,"orbitIndex":18,"skill":60064,"stats":["10% increased Physical Damage"],"stringId":"physical26"},"60068":{"connections":[{"id":55925,"orbit":7}],"group":190,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":3,"orbitIndex":12,"skill":60068,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage22"},"60083":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":44239,"orbit":0}],"group":1141,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","isNotable":true,"name":"Pin and Run","orbit":0,"orbitIndex":0,"recipe":["Disgust","Despair","Disgust"],"skill":60083,"stats":["30% increased Pin Buildup","5% increased Movement Speed if you've Pinned an Enemy Recently"],"stringId":"pin10"},"60085":{"connections":[{"id":55802,"orbit":0}],"group":938,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Damage","orbit":7,"orbitIndex":15,"skill":60085,"stats":["10% increased Damage"],"stringId":"mercenary11"},"60107":{"connections":[{"id":57204,"orbit":0}],"group":964,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":9,"skill":60107,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals24"},"60116":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":906,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":3,"orbitIndex":10,"skill":60116,"stats":[],"stringId":"mastery_armour_and_evasion_6283"},"60138":{"connections":[{"id":52695,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","isNotable":true,"name":"Stylebender","orbit":5,"orbitIndex":3,"recipe":["Greed","Paranoia","Suffering"],"skill":60138,"stats":["Hits Break 30% increased Armour on targets with Ailments","+10 to Strength","25% increased Physical Damage"],"stringId":"chaos35"},"60170":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryColdPattern","connections":[],"group":1297,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCold.dds","isOnlyImage":true,"name":"Cold Mastery","orbit":0,"orbitIndex":0,"skill":60170,"stats":[],"stringId":"mastery_cold59"},"60173":{"connections":[{"id":4238,"orbit":2}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Accuracy","orbit":7,"orbitIndex":21,"skill":60173,"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"stringId":"one_handed11"},"60191":{"connections":[{"id":54985,"orbit":0}],"group":598,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bolt Speed","orbit":7,"orbitIndex":11,"skill":60191,"stats":["8% increased Bolt Speed"],"stringId":"crossbow27"},"60203":{"connections":[{"id":5332,"orbit":9}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":2,"orbitIndex":2,"skill":60203,"stats":["+8 to Strength"],"stringId":"attributes112"},"60210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":63431,"orbit":0}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/MasteryPoison.dds","isOnlyImage":true,"name":"Poison Mastery","orbit":1,"orbitIndex":9,"skill":60210,"stats":[],"stringId":"mastery_poison200"},"60230":{"connections":[{"id":56935,"orbit":0},{"id":58362,"orbit":0},{"id":10192,"orbit":0},{"id":55909,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isSwitchable":true,"name":"Elemental Damage","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","id":19602,"name":"Spell and Minion Damage","stats":["8% increased Spell Damage","Minions deal 8% increased Damage"]}},"orbit":5,"orbitIndex":0,"skill":60230,"stats":["8% increased Elemental Damage"],"stringId":"elemental15"},"60239":{"connections":[{"id":15343,"orbit":5},{"id":49356,"orbit":-2}],"group":1454,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":7,"skill":60239,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield32"},"60241":{"connections":[{"id":57178,"orbit":0}],"group":521,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Bleed Chance","orbit":0,"orbitIndex":0,"skill":60241,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical16"},"60251":{"ascendancyName":"Acolyte of Chayula","connections":[{"id":34567,"orbit":6}],"group":1582,"icon":"Art/2DArt/SkillIcons/passives/AcolyteofChayula/AcolyteOfChayulaNode.dds","name":"Chaos Damage","nodeOverlay":{"alloc":"Acolyte of ChayulaFrameSmallAllocated","path":"Acolyte of ChayulaFrameSmallCanAllocate","unalloc":"Acolyte of ChayulaFrameSmallNormal"},"orbit":8,"orbitIndex":71,"skill":60251,"stats":["11% increased Chaos Damage"],"stringId":"AscendancyMonk3Small10"},"60269":{"connections":[{"id":6588,"orbit":0}],"group":898,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","isNotable":true,"name":"Roil","orbit":7,"orbitIndex":19,"recipe":["Disgust","Greed","Ire"],"skill":60269,"stats":["10% reduced Spell Area Damage","Spell Skills have 25% increased Area of Effect"],"stringId":"area_spells24"},"60273":{"connections":[{"id":28199,"orbit":0},{"id":40626,"orbit":0}],"group":1323,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Hindering Obstacles","orbit":0,"orbitIndex":0,"recipe":["Disgust","Guilt","Despair"],"skill":60273,"stats":["Debuffs inflicted by Hazards have 30% increased Slow Magnitude","30% increased Hazard Immobilisation buildup"],"stringId":"hazards20"},"60274":{"connections":[{"id":13293,"orbit":4},{"id":19236,"orbit":0}],"group":163,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour","orbit":7,"orbitIndex":0,"skill":60274,"stats":["15% increased Armour"],"stringId":"armour4_"},"60287":{"ascendancyName":"Gemling Legionnaire","connections":[{"id":37397,"orbit":0},{"id":32952,"orbit":0},{"id":63259,"orbit":0}],"group":394,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelAllSkillGems.dds","isMultipleChoice":true,"isNotable":true,"name":"Implanted Gems","nodeOverlay":{"alloc":"Gemling LegionnaireFrameLargeAllocated","path":"Gemling LegionnaireFrameLargeCanAllocate","unalloc":"Gemling LegionnaireFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":60287,"stats":[],"stringId":"AscendancyMercenary3Notable2"},"60298":{"ascendancyName":"Smith of Kitava","connections":[],"group":15,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaImbueMainHandWeapon.dds","isNotable":true,"name":"Against the Anvil","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":60298,"stats":["Grants Skill: Temper Weapon"],"stringId":"AscendancyWarrior3Notable3"},"60313":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":724,"icon":"Art/2DArt/SkillIcons/passives/MasteryChaos.dds","isOnlyImage":true,"name":"Chaos Mastery","orbit":0,"orbitIndex":0,"skill":60313,"stats":[],"stringId":"mastery_chaos6172"},"60323":{"connections":[{"id":9199,"orbit":0},{"id":47560,"orbit":0}],"group":1342,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Surpassing Projectile Chance","orbit":6,"orbitIndex":54,"skill":60323,"stats":["+8% Surpassing chance to fire an additional Projectile"],"stringId":"projectiles43"},"60324":{"connections":[{"id":1506,"orbit":2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":14,"skill":60324,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant16_"},"60332":{"connections":[{"id":21213,"orbit":0}],"group":169,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","name":"Armour and Energy Shield","orbit":7,"orbitIndex":4,"skill":60332,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour54"},"60362":{"connections":[{"id":56265,"orbit":0}],"group":1500,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Damage","orbit":2,"orbitIndex":6,"skill":60362,"stats":["15% increased Critical Damage Bonus"],"stringId":"criticals88_"},"60404":{"connections":[{"id":20691,"orbit":0},{"id":25011,"orbit":0}],"group":569,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Perfect Opportunity","orbit":2,"orbitIndex":14,"recipe":["Ire","Suffering","Suffering"],"skill":60404,"stats":["30% increased Stun Buildup","Damage with Hits is Lucky against Heavy Stunned Enemies"],"stringId":"stun16"},"60464":{"connections":[{"id":58971,"orbit":-6},{"id":28623,"orbit":0}],"group":1327,"icon":"Art/2DArt/SkillIcons/passives/SpellSuppresionNode.dds","isNotable":true,"name":"Fan the Flames","orbit":4,"orbitIndex":45,"recipe":["Suffering","Paranoia","Despair"],"skill":60464,"stats":["25% reduced Ignite Duration on you","40% increased Elemental Ailment Threshold"],"stringId":"spell_suppression23"},"60480":{"connections":[],"group":1504,"icon":"Art/2DArt/SkillIcons/passives/HeraldBuffEffectNode2.dds","name":"Herald Reservation","orbit":2,"orbitIndex":4,"skill":60480,"stats":["8% increased Reservation Efficiency of Herald Skills"],"stringId":"heralds11"},"60483":{"connections":[{"id":7809,"orbit":0},{"id":36540,"orbit":0}],"group":1429,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":60483,"stats":["12% increased Lightning Damage"],"stringId":"lightning5"},"60488":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTrapsPattern","connections":[],"group":903,"icon":"Art/2DArt/SkillIcons/passives/MasteryTraps.dds","isOnlyImage":true,"name":"Trap Mastery","orbit":0,"orbitIndex":0,"skill":60488,"stats":[],"stringId":"mastery_trap_6765"},"60505":{"connections":[{"id":28050,"orbit":0},{"id":65009,"orbit":0},{"id":19808,"orbit":0},{"id":18831,"orbit":0}],"group":1119,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":60505,"stats":["+5 to any Attribute"],"stringId":"dexterity19"},"60515":{"connections":[{"id":19955,"orbit":-4}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":4,"skill":60515,"stats":["12% increased Cold Damage"],"stringId":"cold12"},"60551":{"connections":[{"id":21861,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Presence Area","orbit":2,"orbitIndex":14,"skill":60551,"stats":["20% increased Presence Area of Effect"],"stringId":"auras15_"},"60560":{"connections":[{"id":29527,"orbit":-3}],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage vs Full Life","orbit":0,"orbitIndex":0,"skill":60560,"stats":["20% increased Damage with Hits against Enemies that are on Full Life"],"stringId":"enemies_on_full_life7"},"60568":{"connections":[{"id":52348,"orbit":-6}],"group":556,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Placement Speed","orbit":3,"orbitIndex":13,"skill":60568,"stats":["20% increased Totem Placement speed"],"stringId":"totems25"},"60619":{"connections":[{"id":541,"orbit":-5},{"id":41609,"orbit":-5},{"id":31010,"orbit":0},{"id":27216,"orbit":0},{"id":12005,"orbit":0}],"group":215,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNotable.dds","isNotable":true,"name":"Scales of the Wyvern","orbit":4,"orbitIndex":15,"recipe":["Fear","Fear","Suffering"],"skill":60619,"stats":["20% faster start of Energy Shield Recharge while Shapeshifted","20% increased Energy Shield Recharge Rate while Shapeshifted","+1% to Maximum Lightning Resistance while Shapeshifted"],"stringId":"wyvern4"},"60620":{"connections":[{"id":45992,"orbit":0}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":4,"skill":60620,"stats":["+8 to Strength"],"stringId":"strength106"},"60634":{"ascendancyName":"Titan","connections":[{"id":27418,"orbit":0}],"group":77,"icon":"Art/2DArt/SkillIcons/passives/Titan/TitanAdditionalInventory.dds","isNotable":true,"name":"Colossal Capacity","nodeOverlay":{"alloc":"TitanFrameLargeAllocated","path":"TitanFrameLargeCanAllocate","unalloc":"TitanFrameLargeNormal"},"orbit":5,"orbitIndex":48,"skill":60634,"stats":["Carry a Chest which adds 20 Inventory Slots"],"stringId":"AscendancyWarrior1Notable6"},"60662":{"ascendancyName":"Amazon","connections":[{"id":7979,"orbit":0}],"group":1597,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonNode.dds","name":"Elemental Damage","nodeOverlay":{"alloc":"AmazonFrameSmallAllocated","path":"AmazonFrameSmallCanAllocate","unalloc":"AmazonFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":60662,"stats":["12% increased Elemental Damage"],"stringId":"AscendancyHuntress1Small5"},"60685":{"connections":[{"id":1826,"orbit":0}],"group":895,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":60685,"stats":["+5 to any Attribute"],"stringId":"intelligence19"},"60692":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[{"id":16367,"orbit":2}],"group":1113,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Echoing Flames","orbit":7,"orbitIndex":12,"recipe":["Guilt","Suffering","Disgust"],"skill":60692,"stats":["30% increased Elemental Damage if you've Ignited an Enemy Recently"],"stringId":"fire34"},"60700":{"connections":[{"id":44974,"orbit":2147483647}],"group":1268,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Empowered Attack Freeze Buildup","orbit":7,"orbitIndex":3,"skill":60700,"stats":["20% increased Freeze Buildup with Empowered Attacks"],"stringId":"cold49"},"60708":{"connectionArt":"CharacterPlanned","connections":[{"id":17894,"orbit":0}],"group":86,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","name":"Bow Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":17,"skill":60708,"stats":["16% increased Damage with Bows"],"stringId":"oracle_bow_movement2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"60735":{"connections":[{"id":42658,"orbit":0},{"id":11825,"orbit":0}],"group":1314,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":60735,"stats":[],"stringId":"jewel_slot1960"},"60738":{"connections":[{"id":37408,"orbit":0}],"group":1122,"icon":"Art/2DArt/SkillIcons/passives/flaskstr.dds","name":"Life Flasks","orbit":2,"orbitIndex":19,"skill":60738,"stats":["10% increased Life Recovery from Flasks"],"stringId":"life_flasks29"},"60741":{"connections":[{"id":33922,"orbit":0}],"group":925,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage","orbit":2,"orbitIndex":12,"skill":60741,"stats":["10% increased Elemental Damage"],"stringId":"elemental57"},"60764":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[],"group":1510,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Feathered Fletching","orbit":5,"orbitIndex":12,"recipe":["Isolation","Suffering","Suffering"],"skill":60764,"stats":["Increases and Reductions to Projectile Speed also apply to Damage with Bows"],"stringId":"bow13"},"60809":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLinkPattern","connections":[],"group":478,"icon":"Art/2DArt/SkillIcons/passives/ChannellingAttacksMasterySymbol.dds","isOnlyImage":true,"name":"Channelling Mastery","orbit":0,"orbitIndex":0,"skill":60809,"stats":[],"stringId":"mastery_channelling_6377"},"60829":{"connections":[{"id":36630,"orbit":2147483647}],"group":1081,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Incision Chance","orbit":2,"orbitIndex":22,"skill":60829,"stats":["20% chance for Attack Hits to apply Incision"],"stringId":"bleed35"},"60859":{"ascendancyName":"Ritualist","connections":[{"id":4891,"orbit":9}],"group":1620,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistNode.dds","name":"Charm Charges","nodeOverlay":{"alloc":"RitualistFrameSmallAllocated","path":"RitualistFrameSmallCanAllocate","unalloc":"RitualistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":60859,"stats":["15% increased Charm Charges gained"],"stringId":"AscendancyHuntress3Small4"},"60878":{"connections":[{"id":17044,"orbit":2147483647},{"id":14122,"orbit":0},{"id":44405,"orbit":2}],"group":799,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Lightning Storm","orbit":0,"orbitIndex":0,"recipe":["Guilt","Despair","Isolation"],"skill":60878,"stats":["Gain 6% of Lightning damage as Extra Cold damage","15% reduced effect of Shock on you","15% increased Magnitude of Shock you inflict"],"stringId":"lightning69_"},"60886":{"connections":[{"id":59213,"orbit":3}],"group":492,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Recovery","orbit":1,"orbitIndex":5,"skill":60886,"stats":["20% increased Stun Recovery"],"stringId":"stun_threshold6"},"60891":{"connections":[{"id":53185,"orbit":0}],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Accuracy Rating","orbit":1,"orbitIndex":9,"skill":60891,"stats":["8% increased Accuracy Rating"],"stringId":"azmerianimals50"},"60899":{"connections":[{"id":32543,"orbit":-7}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Reduced Movement Penalty","orbit":7,"orbitIndex":22,"skill":60899,"stats":["3% reduced Movement Speed Penalty from using Skills while moving"],"stringId":"spell_suppression6"},"60913":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":52,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus5.dds","isNotable":true,"name":"Kitavan Engraving","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":60913,"stats":["Body Armour grants 15% increased maximum Life"],"stringId":"AscendancyWarrior3Notable6_5"},"60916":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":233,"icon":"Art/2DArt/SkillIcons/passives/EnduranceFrenzyChargeMastery.dds","isOnlyImage":true,"name":"Endurance Charge Mastery","orbit":0,"orbitIndex":0,"skill":60916,"stats":[],"stringId":"mastery_endurance_charge_6478"},"60974":{"connections":[{"id":1506,"orbit":-2}],"group":1148,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Additional Remnant Chance","orbit":2,"orbitIndex":2,"skill":60974,"stats":["5% chance to create an additional Remnant"],"stringId":"remnant12_"},"60992":{"connections":[{"id":24889,"orbit":0}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNotable1.dds","isNotable":true,"name":"Nurturing Guardian","orbit":1,"orbitIndex":1,"recipe":["Paranoia","Despair","Suffering"],"skill":60992,"stats":["Life Recovery from your Flasks also applies to your Companions"],"stringId":"companions3"},"61026":{"connections":[{"id":34552,"orbit":0},{"id":17378,"orbit":0}],"group":505,"icon":"Art/2DArt/SkillIcons/passives/minionlife.dds","isNotable":true,"name":"Crystalline Flesh","orbit":3,"orbitIndex":0,"recipe":["Despair","Paranoia","Suffering"],"skill":61026,"stats":["Minions have +20% to all Elemental Resistances","Minions have +5% to all Maximum Elemental Resistances"],"stringId":"minion_defence21"},"61027":{"connections":[],"group":858,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","isNotable":true,"name":"Mana Blessing","orbit":0,"orbitIndex":0,"skill":61027,"stats":["+20 to maximum Mana","20% increased Mana Regeneration Rate"],"stringId":"mana18"},"61039":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":55,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus1.dds","isNotable":true,"name":"Tantalum Alloy","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":61039,"stats":["Body Armour grants +75% to Fire Resistance"],"stringId":"AscendancyWarrior3Notable6_1"},"61042":{"connections":[{"id":44344,"orbit":0}],"group":667,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61042,"stats":["+5 to any Attribute"],"stringId":"attributes62"},"61056":{"connections":[{"id":40399,"orbit":-4}],"group":1282,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy","orbit":7,"orbitIndex":1,"skill":61056,"stats":["Meta Skills gain 8% increased Energy"],"stringId":"triggers9"},"61063":{"connections":[],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":0,"skill":61063,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"stringId":"elemental2"},"61067":{"connections":[],"group":680,"icon":"Art/2DArt/SkillIcons/passives/SpellMultiplyer2.dds","isSwitchable":true,"name":"Spell Critical Damage","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","id":50065,"name":"Life Regeneration","stats":["Regenerate 0.2% of maximum Life per second"]}},"orbit":2,"orbitIndex":21,"skill":61067,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals6"},"61104":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBleedingPattern","connections":[],"group":1110,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","isNotable":true,"name":"Staggering Wounds","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Greed","Guilt"],"skill":61104,"stats":["50% chance to Knock Back Bleeding Enemies with Hits"],"stringId":"bleed34"},"61106":{"connections":[{"id":59653,"orbit":0}],"group":947,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":2,"orbitIndex":15,"skill":61106,"stats":["2% increased Movement Speed"],"stringId":"movement_speed1"},"61112":{"connections":[{"id":36071,"orbit":0},{"id":20105,"orbit":0}],"group":1435,"icon":"Art/2DArt/SkillIcons/passives/SpearsNotable1.dds","isNotable":true,"name":"Roll and Strike","orbit":5,"orbitIndex":14,"recipe":["Guilt","Paranoia","Disgust"],"skill":61112,"stats":["25% increased Damage with Spears","10% increased Attack Speed with Spears"],"stringId":"spear18"},"61113":{"connectionArt":"CharacterPlanned","connections":[{"id":53910,"orbit":-3}],"group":313,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":10,"skill":61113,"stats":["Minions deal 15% increased Damage"],"stringId":"oracle_forbidden_path4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61119":{"connections":[{"id":64325,"orbit":4},{"id":63431,"orbit":0}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Duration","orbit":2,"orbitIndex":18,"skill":61119,"stats":["10% increased Poison Duration"],"stringId":"poison25"},"61142":{"connections":[{"id":38365,"orbit":0}],"group":217,"icon":"Art/2DArt/SkillIcons/passives/chargestr.dds","name":"Recover Life on consuming Endurance Charge","orbit":2,"orbitIndex":12,"skill":61142,"stats":["Recover 2% of maximum Life for each Endurance Charge consumed"],"stringId":"endurance_charges5"},"61149":{"connections":[{"id":42760,"orbit":0}],"group":1345,"icon":"Art/2DArt/SkillIcons/passives/MonkStunChakra.dds","name":"Stun Recovery","orbit":2,"orbitIndex":13,"skill":61149,"stats":["20% increased Stun Recovery"],"stringId":"monkchakra29"},"61170":{"connections":[{"id":27186,"orbit":7}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/firedamage.dds","name":"Fire Damage","orbit":1,"orbitIndex":3,"skill":61170,"stats":["10% increased Fire Damage"],"stringId":"ground1"},"61179":{"connections":[{"id":21245,"orbit":0}],"group":536,"icon":"Art/2DArt/SkillIcons/WitchBoneStorm.dds","name":"Spell Critical Chance","orbit":0,"orbitIndex":0,"skill":61179,"stats":["10% increased Critical Hit Chance for Spells"],"stringId":"physical18"},"61196":{"connections":[{"id":56045,"orbit":5},{"id":13419,"orbit":0}],"group":1132,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":54,"skill":61196,"stats":["+5 to any Attribute"],"stringId":"intelligence10"},"61215":{"connections":[{"id":37242,"orbit":3}],"group":1458,"icon":"Art/2DArt/SkillIcons/passives/AzmeriWildBoar.dds","name":"Stun Threshold","orbit":7,"orbitIndex":8,"skill":61215,"stats":["12% increased Stun Threshold"],"stringId":"azmerianimals3"},"61246":{"connections":[{"id":144,"orbit":5}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Freeze Buildup","orbit":4,"orbitIndex":18,"skill":61246,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"stringId":"elemental26"},"61263":{"connections":[{"id":4544,"orbit":0}],"group":1208,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Poison Duration on You","orbit":2,"orbitIndex":11,"skill":61263,"stats":["10% reduced Poison Duration on you"],"stringId":"azmerianimals62"},"61267":{"ascendancyName":"Infernalist","connections":[],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistTransformIntoDemon2.dds","isNotable":true,"name":"Mastered Darkness","nodeOverlay":{"alloc":"InfernalistFrameLargeAllocated","path":"InfernalistFrameLargeCanAllocate","unalloc":"InfernalistFrameLargeNormal"},"orbit":6,"orbitIndex":60,"skill":61267,"stats":["Demonflame has no maximum"],"stringId":"AscendancyWitch1Notable6"},"61281":{"connections":[{"id":9217,"orbit":0}],"group":842,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Damage","orbit":2,"orbitIndex":14,"skill":61281,"stats":["10% increased Damage with One Handed Weapons"],"stringId":"one_handed23"},"61309":{"connections":[{"id":42169,"orbit":5},{"id":37434,"orbit":0}],"group":1003,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","isNotable":true,"name":"Redblade Discipline","orbit":7,"orbitIndex":15,"recipe":["Despair","Despair","Greed"],"skill":61309,"stats":["+8% to Fire Resistance","20% increased Stun Threshold","+30% of Armour also applies to Fire Damage"],"stringId":"armour_and_evasion44"},"61312":{"connections":[{"id":56841,"orbit":0}],"group":1019,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":42,"skill":61312,"stats":["+5 to any Attribute"],"stringId":"dexterity22"},"61318":{"connections":[{"id":61396,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":13,"skill":61318,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion17"},"61333":{"connections":[{"id":46197,"orbit":0}],"group":1360,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Critical Chance","orbit":2,"orbitIndex":11,"skill":61333,"stats":["10% increased Critical Hit Chance"],"stringId":"criticals85"},"61338":{"connections":[{"id":7333,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Breath of Lightning","orbit":4,"orbitIndex":6,"recipe":["Disgust","Paranoia","Isolation"],"skill":61338,"stats":["Damage Penetrates 15% Lightning Resistance","+10 to Dexterity"],"stringId":"lightning_penetration25"},"61347":{"connections":[{"id":64488,"orbit":3}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Critical Chance","orbit":7,"orbitIndex":8,"skill":61347,"stats":["Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m"],"stringId":"projectiles34"},"61354":{"connections":[{"id":50383,"orbit":0}],"group":785,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"name":"Infernal Limit","orbit":3,"orbitIndex":18,"recipe":["Envy","Greed","Fear"],"skill":61354,"stats":["+1 to maximum Fire Infusions"],"stringId":"infusion24"},"61355":{"connections":[{"id":29306,"orbit":2}],"group":1278,"icon":"Art/2DArt/SkillIcons/passives/MonkManaChakra.dds","name":"Damage from Mana","orbit":2,"orbitIndex":8,"skill":61355,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"monkchakra5"},"61356":{"connections":[{"id":12498,"orbit":0}],"group":1195,"icon":"Art/2DArt/SkillIcons/passives/attackspeedbow.dds","name":"Quiver Effect","orbit":7,"orbitIndex":12,"skill":61356,"stats":["6% increased bonuses gained from Equipped Quiver"],"stringId":"quivers2"},"61362":{"connections":[{"id":36737,"orbit":-2}],"group":255,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area Damage","orbit":2,"orbitIndex":20,"skill":61362,"stats":["10% increased Area Damage"],"stringId":"area_of_effect19"},"61367":{"connectionArt":"CharacterPlanned","connections":[{"id":64239,"orbit":2147483647}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Attack Added Lighting Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":61367,"stats":["Adds 1 to 7 Lightning damage to Attacks"],"stringId":"oracle_flat_lightning2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61373":{"connections":[{"id":63610,"orbit":-7},{"id":5988,"orbit":7}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Damage vs Blinded","orbit":3,"orbitIndex":4,"skill":61373,"stats":["15% increased Damage with Hits against Blinded Enemies"],"stringId":"blind5"},"61393":{"connections":[{"id":43941,"orbit":-7}],"group":119,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":61393,"stats":["12% increased Damage while Shapeshifted"],"stringId":"wolf1"},"61396":{"connections":[{"id":10998,"orbit":0}],"group":957,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","name":"Armour and Evasion","orbit":3,"orbitIndex":11,"skill":61396,"stats":["12% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion16"},"61403":{"connections":[{"id":56349,"orbit":0},{"id":14231,"orbit":3},{"id":24150,"orbit":0},{"id":17602,"orbit":0},{"id":45377,"orbit":2147483647}],"group":1288,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61403,"stats":["+5 to any Attribute"],"stringId":"intelligence69"},"61404":{"connections":[{"id":51210,"orbit":2},{"id":61429,"orbit":0}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","isNotable":true,"name":"Equilibrium","orbit":0,"orbitIndex":0,"recipe":["Fear","Suffering","Despair"],"skill":61404,"stats":["30% increased Attack Damage if you've Cast a Spell Recently","10% increased Cast Speed if you've Attacked Recently"],"stringId":"attacks_and_spells20"},"61409":{"connections":[{"id":13075,"orbit":0}],"group":227,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":22,"skill":61409,"stats":["+12 to Strength"],"stringId":"strength101"},"61419":{"connections":[{"id":3025,"orbit":0},{"id":5314,"orbit":0},{"id":46819,"orbit":0}],"group":813,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61419,"stats":[],"stringId":"jewel_slot1972"},"61421":{"connections":[{"id":16121,"orbit":7}],"group":1489,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Energy and Critical Chance","orbit":7,"orbitIndex":19,"skill":61421,"stats":["Meta Skills gain 4% increased Energy","5% increased Critical Hit Chance"],"stringId":"monkelemental2"},"61429":{"connections":[{"id":44902,"orbit":3}],"group":206,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":7,"orbitIndex":20,"skill":61429,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells6"},"61432":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBowPattern","connections":[{"id":6178,"orbit":0}],"group":976,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupBow.dds","isOnlyImage":true,"name":"Crossbow Mastery","orbit":0,"orbitIndex":0,"skill":61432,"stats":[],"stringId":"mastery_crossbow_6418"},"61438":{"connections":[{"id":28510,"orbit":0}],"group":795,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":62,"skill":61438,"stats":["+5 to any Attribute"],"stringId":"strength33_"},"61441":{"connections":[{"id":54138,"orbit":0}],"group":592,"icon":"Art/2DArt/SkillIcons/passives/damagesword.dds","name":"Sword Speed","orbit":6,"orbitIndex":7,"skill":61441,"stats":["3% increased Attack Speed with Swords"],"stringId":"sword7_"},"61444":{"connections":[{"id":17411,"orbit":0},{"id":34096,"orbit":0}],"group":527,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Wasting Casts","orbit":3,"orbitIndex":2,"recipe":["Fear","Envy","Despair"],"skill":61444,"stats":["25% increased Damage with Hits against Hindered Enemies","15% chance to Hinder Enemies on Hit with Spells"],"stringId":"spells30"},"61461":{"ascendancyName":"Deadeye","connections":[{"id":42416,"orbit":2147483647}],"group":1551,"icon":"Art/2DArt/SkillIcons/passives/DeadEye/DeadeyeNode.dds","name":"Projectile Speed","nodeOverlay":{"alloc":"DeadeyeFrameSmallAllocated","path":"DeadeyeFrameSmallCanAllocate","unalloc":"DeadeyeFrameSmallNormal"},"orbit":6,"orbitIndex":24,"skill":61461,"stats":["10% increased Projectile Speed"],"stringId":"AscendancyRanger1Small2"},"61471":{"connectionArt":"CharacterPlanned","connections":[{"id":49153,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":60,"skill":61471,"stats":["15% increased Damage","Minions deal 15% increased Damage"],"stringId":"oracle_damage_and_minions1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61472":{"connections":[{"id":9417,"orbit":0},{"id":36389,"orbit":6}],"group":407,"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","name":"Strength","orbit":7,"orbitIndex":10,"skill":61472,"stats":["+8 to Strength"],"stringId":"strength107"},"61487":{"connections":[{"id":36596,"orbit":-4},{"id":19341,"orbit":5},{"id":11410,"orbit":0}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":4,"orbitIndex":48,"skill":61487,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life5"},"61490":{"connections":[{"id":47429,"orbit":-8},{"id":64995,"orbit":0},{"id":8600,"orbit":0}],"group":437,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61490,"stats":["+5 to any Attribute"],"stringId":"strength75"},"61525":{"classesStart":["Templar","Druid"],"connections":[{"id":13855,"orbit":0},{"id":35715,"orbit":0},{"id":26353,"orbit":0},{"id":950,"orbit":0},{"id":28429,"orbit":0},{"id":35535,"orbit":0},{"id":42761,"orbit":0}],"group":747,"icon":"Art/2DArt/SkillIcons/passives/axedmgspeed.dds","name":"TEMPLAR","orbit":0,"orbitIndex":0,"skill":61525,"stats":[],"stringId":"templar598"},"61534":{"connections":[{"id":4665,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration","orbit":7,"orbitIndex":18,"skill":61534,"stats":["Regenerate 0.2% of maximum Life per second"],"stringId":"life_regeneration20"},"61586":{"ascendancyName":"Martial Artist","connections":[],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistAllAttacksGenerateCombo.dds","isNotable":true,"name":"Martial Master","nodeOverlay":{"alloc":"Martial ArtistFrameLargeAllocated","path":"Martial ArtistFrameLargeCanAllocate","unalloc":"Martial ArtistFrameLargeNormal"},"orbit":5,"orbitIndex":19,"skill":61586,"stats":["Skills can build and retain Combo regardless of Weapon Set","Gain Combo from all Attack Hits"],"stringId":"AscendancyMonk1Notable2"},"61601":{"connections":[{"id":44420,"orbit":0},{"id":9586,"orbit":0}],"group":1246,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","isNotable":true,"name":"True Strike","orbit":0,"orbitIndex":0,"recipe":["Ire","Guilt","Disgust"],"skill":61601,"stats":["+10 to Dexterity","20% increased Critical Hit Chance"],"stringId":"criticals28"},"61615":{"connections":[{"id":59442,"orbit":0}],"group":633,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup Speed","orbit":0,"orbitIndex":0,"skill":61615,"stats":["8% increased speed of Recoup Effects"],"stringId":"life_recoup31"},"61632":{"connections":[{"id":34316,"orbit":0}],"group":1511,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Freeze and Daze Buildup","orbit":5,"orbitIndex":2,"skill":61632,"stats":["5% chance to Daze on Hit","20% increased Freeze Buildup with Quarterstaves"],"stringId":"quarterstaff6"},"61657":{"connections":[{"id":17750,"orbit":6},{"id":45808,"orbit":-5}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":2,"skill":61657,"stats":["+5% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"armour_and_evasion46"},"61703":{"connections":[{"id":41180,"orbit":0},{"id":9037,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNotable.dds","isNotable":true,"name":"Sharpened Claw","orbit":3,"orbitIndex":20,"recipe":["Ire","Greed","Greed"],"skill":61703,"stats":["30% increased Physical Damage while Shapeshifted"],"stringId":"shapeshifting12"},"61718":{"connections":[{"id":38342,"orbit":0}],"group":1499,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","name":"Damage vs Dazed Enemies","orbit":2,"orbitIndex":16,"skill":61718,"stats":["15% increased Damage against Dazed Enemies"],"stringId":"daze_4"},"61722":{"ascendancyName":"Shaman","connections":[{"id":58646,"orbit":6}],"group":65,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanNode.dds","name":"Elemental Resistances","nodeOverlay":{"alloc":"ShamanFrameSmallAllocated","path":"ShamanFrameSmallCanAllocate","unalloc":"ShamanFrameSmallNormal"},"orbit":6,"orbitIndex":36,"skill":61722,"stats":["+3% to all Elemental Resistances"],"stringId":"AscendancyDruid2Small4_"},"61741":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":40024,"orbit":2}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Lasting Toxins","orbit":0,"orbitIndex":0,"recipe":["Despair","Isolation","Envy"],"skill":61741,"stats":["10% increased Skill Effect Duration","40% increased Poison Duration"],"stringId":"poison28"},"61768":{"connections":[],"group":975,"icon":"Art/2DArt/SkillIcons/passives/ColdResistNode.dds","name":"Minion Cold Resistance","orbit":0,"orbitIndex":0,"skill":61768,"stats":["Minions have +20% to Cold Resistance","Minions have +3% to Maximum Cold Resistances"],"stringId":"minion_defence27"},"61796":{"connections":[{"id":8260,"orbit":-4}],"group":219,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Duration","orbit":7,"orbitIndex":20,"skill":61796,"stats":["20% increased Armour Break Duration"],"stringId":"armour_break2"},"61800":{"connections":[],"group":1413,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Critical Damage vs Full Life","orbit":7,"orbitIndex":11,"skill":61800,"stats":["40% increased Critical Damage Bonus against Enemies that are on Full Life"],"stringId":"enemies_on_full_life1"},"61811":{"connectionArt":"CharacterPlanned","connections":[{"id":44452,"orbit":-8}],"group":191,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Increased Duration","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":5,"orbitIndex":42,"skill":61811,"stats":["5% increased Skill Effect Duration","12% increased Physical Damage"],"stringId":"oracle_duration_physical1__","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61834":{"connections":[{"id":17088,"orbit":0},{"id":24958,"orbit":0}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Jewel Socket","orbit":0,"orbitIndex":0,"skill":61834,"stats":[],"stringId":"jewel_slot1961"},"61835":{"connections":[{"id":32549,"orbit":0},{"id":56237,"orbit":-2}],"group":177,"icon":"Art/2DArt/SkillIcons/passives/Inquistitor/IncreasedElementalDamageAttackCasteSpeed.dds","name":"Attack and Spell Damage","orbit":2,"orbitIndex":20,"skill":61835,"stats":["8% increased Spell Damage","8% increased Attack Damage"],"stringId":"attacks_and_spells9"},"61836":{"connections":[{"id":65243,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":4,"skill":61836,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras14"},"61842":{"connections":[{"id":33240,"orbit":0},{"id":14712,"orbit":0}],"group":504,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":3,"orbitIndex":0,"skill":61842,"stats":["Minions deal 12% increased Damage"],"stringId":"minion_offence12_"},"61847":{"connections":[{"id":43443,"orbit":-4}],"group":175,"icon":"Art/2DArt/SkillIcons/passives/macedmg.dds","name":"Flail Critical Chance","orbit":0,"orbitIndex":0,"skill":61847,"stats":["10% increased Critical Hit Chance with Flails"],"stringId":"flail7"},"61863":{"connections":[{"id":42045,"orbit":0}],"group":765,"icon":"Art/2DArt/SkillIcons/passives/ArchonGeneric.dds","name":"Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":6,"skill":61863,"stats":["4% faster start of Energy Shield Recharge","8% increased Elemental Damage"],"stringId":"cold16"},"61896":{"connections":[{"id":53354,"orbit":-1},{"id":8850,"orbit":-3}],"group":117,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWolfNode.dds","name":"Shapeshifted Critical Chance","orbit":0,"orbitIndex":0,"skill":61896,"stats":["10% increased Critical Hit Chance while Shapeshifted"],"stringId":"wolf6"},"61897":{"ascendancyName":"Witchhunter","connections":[{"id":38601,"orbit":8}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterNode.dds","name":"Armour and Evasion","nodeOverlay":{"alloc":"WitchhunterFrameSmallAllocated","path":"WitchhunterFrameSmallCanAllocate","unalloc":"WitchhunterFrameSmallNormal"},"orbit":8,"orbitIndex":32,"skill":61897,"stats":["15% increased Armour and Evasion Rating"],"stringId":"AscendancyMercenary2Small5"},"61905":{"connections":[{"id":12778,"orbit":0},{"id":8938,"orbit":0},{"id":3251,"orbit":-4}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":3,"orbitIndex":12,"skill":61905,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical_witch5_"},"61921":{"connections":[],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Storm Surge","orbit":3,"orbitIndex":23,"recipe":["Envy","Isolation","Greed"],"skill":61921,"stats":["Damage Penetrates 8% Cold Resistance","Damage Penetrates 15% Lightning Resistance"],"stringId":"lightning_penetration24"},"61923":{"connections":[{"id":16256,"orbit":-6}],"group":1041,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration","orbit":3,"orbitIndex":4,"skill":61923,"stats":["10% increased Mana Regeneration Rate"],"stringId":"mana_regeneration34"},"61926":{"connections":[{"id":1603,"orbit":0}],"group":1183,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Recoup","orbit":2,"orbitIndex":12,"skill":61926,"stats":["3% of Elemental Damage taken Recouped as Energy Shield"],"stringId":"energy_shield_recovery39"},"61927":{"connections":[{"id":14515,"orbit":0},{"id":3698,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Jagged Ground Effect","orbit":2,"orbitIndex":5,"skill":61927,"stats":["15% increased Magnitude of Jagged Ground you create"],"stringId":"jagged_ground5"},"61934":{"connections":[{"id":48418,"orbit":0}],"group":600,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":2,"orbitIndex":2,"skill":61934,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold20"},"61935":{"connections":[{"id":4624,"orbit":7}],"group":579,"icon":"Art/2DArt/SkillIcons/passives/Rage.dds","name":"Rage on Hit","orbit":0,"orbitIndex":0,"skill":61935,"stats":["Gain 1 Rage on Melee Hit"],"stringId":"rage7"},"61938":{"connections":[{"id":14515,"orbit":0}],"group":302,"icon":"Art/2DArt/SkillIcons/icongroundslam.dds","name":"Jagged Ground Effect","orbit":3,"orbitIndex":14,"skill":61938,"stats":["15% increased Magnitude of Jagged Ground you create"],"stringId":"jagged_ground3"},"61942":{"connections":[],"flavourText":"Strength begets respect. There is no simpler law.","group":170,"icon":"Art/2DArt/SkillIcons/passives/DruidAnimism.dds","isKeystone":true,"name":"Lord of the Wilds","orbit":0,"orbitIndex":0,"skill":61942,"stats":["You can equip a non-Unique Sceptre while wielding a Talisman","50% less Spirit","Non-Minion Skills have 50% less Reservation Efficiency"],"stringId":"passive_keystone_lord_of_the_wilds"},"61973":{"ascendancyName":"Witchhunter","connections":[{"id":40719,"orbit":0}],"group":288,"icon":"Art/2DArt/SkillIcons/passives/Witchhunter/WitchunterCullingStrike.dds","isNotable":true,"name":"Pitiless Killer","nodeOverlay":{"alloc":"WitchhunterFrameLargeAllocated","path":"WitchhunterFrameLargeCanAllocate","unalloc":"WitchhunterFrameLargeNormal"},"orbit":6,"orbitIndex":44,"skill":61973,"stats":["Culling Strike"],"stringId":"AscendancyMercenary2Notable1"},"61974":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connectionArt":"CharacterPlanned","connections":[],"group":614,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupExtra.dds","isOnlyImage":true,"name":"Invocation Mastery","orbit":7,"orbitIndex":2,"skill":61974,"stats":[],"stringId":"oracle_energy_gain_mastery1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61976":{"connections":[{"id":7526,"orbit":0},{"id":36298,"orbit":6},{"id":2200,"orbit":0}],"group":1181,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":61976,"stats":["+5 to any Attribute"],"stringId":"attributes43"},"61977":{"connectionArt":"CharacterPlanned","connections":[{"id":61471,"orbit":0}],"group":389,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Damage and Minion Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":4,"orbitIndex":54,"skill":61977,"stats":["15% increased Damage","Minions deal 15% increased Damage"],"stringId":"oracle_damage_and_minions2","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"61983":{"ascendancyName":"Shaman","connections":[],"group":70,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanEvenMoreAdaptation.dds","isNotable":true,"name":"Avatar of Evolution","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":61983,"stats":["5% of Physical Damage taken as Fire Damage","5% of Physical Damage taken as Lightning Damage","5% of Physical Damage taken as Cold Damage","Adaptations have a duration of 5 seconds","Double Adaptation Effect"],"stringId":"AscendancyDruid2Notable5"},"61985":{"ascendancyName":"Stormweaver","connections":[{"id":29398,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/ChillAddditionalTime.dds","isNotable":true,"name":"Heavy Snows","nodeOverlay":{"alloc":"StormweaverFrameLargeAllocated","path":"StormweaverFrameLargeCanAllocate","unalloc":"StormweaverFrameLargeNormal"},"orbit":6,"orbitIndex":6,"skill":61985,"stats":["Targets can be affected by two of your Chills at the same time","Your Chills can Slow targets by up to a maximum of 35%","25% less Magnitude of Chill you inflict"],"stringId":"AscendancySorceress1Notable7"},"61991":{"ascendancyName":"Pathfinder","connections":[],"group":1562,"icon":"Art/2DArt/SkillIcons/passives/PathFinder/PathfinderMoreMovemenSpeedUsingSkills.dds","isNotable":true,"name":"Running Assault","nodeOverlay":{"alloc":"PathfinderFrameLargeAllocated","path":"PathfinderFrameLargeCanAllocate","unalloc":"PathfinderFrameLargeNormal"},"orbit":9,"orbitIndex":96,"skill":61991,"stats":["Cannot be Heavy Stunned while Sprinting","30% less Movement Speed Penalty from using Skills while moving"],"stringId":"AscendancyRanger3Notable1_"},"61992":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":880,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupMinions.dds","isOnlyImage":true,"name":"Minion Offence Mastery","orbit":1,"orbitIndex":6,"skill":61992,"stats":[],"stringId":"mastery_minionoffence184"},"62001":{"connections":[],"group":1526,"icon":"Art/2DArt/SkillIcons/passives/criticaldaggerint.dds","isNotable":true,"name":"Backstabbing","orbit":2,"orbitIndex":1,"skill":62001,"stats":["25% increased Critical Damage Bonus with Daggers"],"stringId":"dagger18"},"62015":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryWarcryPattern","connections":[],"group":387,"icon":"Art/2DArt/SkillIcons/passives/WarcryMastery.dds","isOnlyImage":true,"name":"Warcry Mastery","orbit":0,"orbitIndex":0,"skill":62015,"stats":[],"stringId":"mastery_warcry253"},"62023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAttackPattern","connections":[],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Attack Mastery","orbit":0,"orbitIndex":0,"skill":62023,"stats":[],"stringId":"mastery_attack12"},"62034":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryResistancesAndAilmentProtectionPattern","connections":[],"group":154,"icon":"Art/2DArt/SkillIcons/passives/ElementalResistance2.dds","isNotable":true,"name":"Prism Guard","orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Ire"],"skill":62034,"stats":["+30% of Armour also applies to Elemental Damage"],"stringId":"maximum_resistances21"},"62039":{"connections":[{"id":49618,"orbit":0}],"group":644,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":7,"orbitIndex":18,"skill":62039,"stats":["10% increased Melee Damage"],"stringId":"melee42"},"62051":{"connections":[{"id":21755,"orbit":-9}],"group":845,"icon":"Art/2DArt/SkillIcons/passives/increasedrunspeeddex.dds","name":"Movement Speed","orbit":3,"orbitIndex":0,"skill":62051,"stats":["3% increased Movement Speed if you've Killed Recently"],"stringId":"movement_speed8_"},"62096":{"connections":[{"id":28414,"orbit":0}],"group":1464,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":62096,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions63"},"62122":{"connections":[{"id":4295,"orbit":-3}],"group":567,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":3,"orbitIndex":4,"skill":62122,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"damage_from_mana1"},"62152":{"aliasPassiveSocket":"voices_jewel_slot1","connections":[],"group":703,"icon":"Art/2DArt/SkillIcons/passives/MasteryBlank.dds","isJewelSocket":true,"name":"Sinister Jewel Socket","noRadius":true,"nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"},"orbit":0,"orbitIndex":0,"sinister":true,"skill":62152,"stats":[],"stringId":"voices_jewel_slot1"},"62153":{"connections":[{"id":55947,"orbit":3}],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Spell Critical Damage","orbit":3,"orbitIndex":17,"skill":62153,"stats":["15% increased Critical Spell Damage Bonus"],"stringId":"spell_criticals17_"},"62159":{"connections":[{"id":59603,"orbit":-7}],"group":982,"icon":"Art/2DArt/SkillIcons/passives/LifeRecoupNode.dds","name":"Life Recoup","orbit":2,"orbitIndex":8,"skill":62159,"stats":["3% of Damage taken Recouped as Life"],"stringId":"life_recoup11"},"62166":{"connections":[{"id":19337,"orbit":0}],"group":1224,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Speed","orbit":2,"orbitIndex":0,"skill":62166,"stats":["2% increased Attack Speed","5% increased Accuracy Rating"],"stringId":"accuracy39"},"62185":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1336,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","isNotable":true,"name":"Rattled","orbit":0,"orbitIndex":0,"recipe":["Greed","Fear","Ire"],"skill":62185,"stats":["+20 to maximum Mana","50% increased Shock Duration"],"stringId":"shock18"},"62194":{"connections":[{"id":19129,"orbit":2147483647}],"group":781,"icon":"Art/2DArt/SkillIcons/passives/IncreasedProjectileSpeedNode.dds","name":"Pin Buildup","orbit":3,"orbitIndex":0,"skill":62194,"stats":["15% increased Pin Buildup"],"stringId":"bleed48"},"62200":{"connections":[{"id":8460,"orbit":-3},{"id":29762,"orbit":-4}],"group":203,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown Speed","orbit":2,"orbitIndex":20,"skill":62200,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries13"},"62210":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionOffencePattern","connections":[],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNoteble.dds","isNotable":true,"name":"Puppet Master chance","orbit":3,"orbitIndex":5,"recipe":["Greed","Despair","Fear"],"skill":62210,"stats":["15% increased Mana Cost Efficiency of Command Skills","+1 maximum stacks of Puppet Master"],"stringId":"Puppetmaster6"},"62216":{"connections":[{"id":26070,"orbit":3},{"id":38130,"orbit":-3}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":2,"orbitIndex":8,"skill":62216,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries23"},"62230":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEnergyPattern","connections":[{"id":19355,"orbit":0}],"group":1040,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","isNotable":true,"name":"Patient Barrier","orbit":6,"orbitIndex":0,"recipe":["Suffering","Isolation","Fear"],"skill":62230,"stats":["50% increased maximum Energy Shield","20% slower start of Energy Shield Recharge"],"stringId":"energy_shield33_"},"62235":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern","connections":[],"group":957,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEvasion.dds","isOnlyImage":true,"name":"Armour and Evasion Mastery","orbit":2,"orbitIndex":12,"skill":62235,"stats":[],"stringId":"mastery_evasion109"},"62237":{"connections":[{"id":60116,"orbit":0}],"group":906,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEvasionNode.dds","isNotable":true,"name":"Saqawal's Talon","orbit":4,"orbitIndex":24,"recipe":["Disgust","Fear","Envy"],"skill":62237,"stats":["+5% to Cold Resistance","25% increased Armour and Evasion Rating"],"stringId":"armour_and_evasion29"},"62258":{"connections":[{"id":62455,"orbit":0},{"id":21096,"orbit":0}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":7,"orbitIndex":22,"skill":62258,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners6"},"62303":{"connections":[{"id":59938,"orbit":-4}],"group":308,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Ailment Threshold and Slow Effect on You","orbit":7,"orbitIndex":23,"skill":62303,"stats":["10% increased Elemental Ailment Threshold","5% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation17"},"62310":{"connections":[{"id":36325,"orbit":2},{"id":56934,"orbit":0}],"group":588,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Incendiary","orbit":7,"orbitIndex":22,"recipe":["Isolation","Disgust","Guilt"],"skill":62310,"stats":["60% increased Flammability Magnitude","30% increased Damage with Hits against Burning Enemies"],"stringId":"fire39"},"62313":{"connections":[],"group":154,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Armour Applies to Fire Damage Hits","orbit":5,"orbitIndex":52,"skill":62313,"stats":["+15% of Armour also applies to Fire Damage"],"stringId":"maximum_resistances2"},"62341":{"connections":[{"id":52836,"orbit":7}],"group":1046,"icon":"Art/2DArt/SkillIcons/passives/blockstr.dds","name":"Block","orbit":4,"orbitIndex":61,"skill":62341,"stats":["5% increased Block chance"],"stringId":"block9"},"62350":{"connections":[],"group":1281,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed and Flask Duration","orbit":2,"orbitIndex":12,"skill":62350,"stats":["5% increased Flask Effect Duration","2% increased Attack Speed"],"stringId":"attack_speed17"},"62360":{"connections":[{"id":25014,"orbit":0}],"group":237,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Empowered Attack Damage","orbit":3,"orbitIndex":2,"skill":62360,"stats":["Empowered Attacks deal 16% increased Damage"],"stringId":"warcries41"},"62376":{"connections":[{"id":54640,"orbit":-5}],"group":447,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","name":"Physical Damage and Reduced Duration","orbit":7,"orbitIndex":9,"skill":62376,"stats":["4% reduced Skill Effect Duration","8% increased Physical Damage"],"stringId":"physical57"},"62378":{"connectionArt":"CharacterPlanned","connections":[{"id":47633,"orbit":0}],"group":509,"icon":"Art/2DArt/SkillIcons/passives/ThornsNode1.dds","name":"Thorns","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":2,"orbitIndex":20,"skill":62378,"stats":["20% increased Thorns damage"],"stringId":"oracle_thorns1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"62388":{"ascendancyName":"Blood Mage","connections":[{"id":26282,"orbit":0}],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageNode.dds","name":"Bleed on Critical Chance","nodeOverlay":{"alloc":"Blood MageFrameSmallAllocated","path":"Blood MageFrameSmallCanAllocate","unalloc":"Blood MageFrameSmallNormal"},"orbit":5,"orbitIndex":70,"skill":62388,"stats":["15% chance to inflict Bleeding on Critical Hit"],"stringId":"AscendancyWitch2Small4_"},"62424":{"ascendancyName":"Spirit Walker","connections":[],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Critical Chance","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":5,"orbitIndex":29,"skill":62424,"stats":["12% increased Critical Hit Chance"],"stringId":"AscendancyHuntress2Small5"},"62427":{"connections":[],"group":1310,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection Rating","orbit":2,"orbitIndex":21,"skill":62427,"stats":["4% increased Deflection Rating"],"stringId":"deflect40"},"62431":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCasterPattern","connections":[],"group":1037,"icon":"Art/2DArt/SkillIcons/passives/damagespells.dds","isNotable":true,"name":"Anticipation","orbit":0,"orbitIndex":0,"recipe":["Disgust","Ire","Despair"],"skill":62431,"stats":["Sealed Skills have 25% increased Seal gain frequency"],"stringId":"spells29_"},"62436":{"connections":[{"id":3215,"orbit":0}],"group":920,"icon":"Art/2DArt/SkillIcons/passives/energyshield.dds","name":"Energy Shield","orbit":7,"orbitIndex":5,"skill":62436,"stats":["15% increased maximum Energy Shield"],"stringId":"energy_shield16"},"62439":{"connections":[{"id":24224,"orbit":0},{"id":52300,"orbit":0}],"group":186,"icon":"Art/2DArt/SkillIcons/passives/damageaxe.dds","isNotable":true,"name":"Enraged Reaver","orbit":3,"orbitIndex":11,"skill":62439,"stats":["+10 to Maximum Rage while wielding an Axe"],"stringId":"axe14"},"62455":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerAreaNotable.dds","isNotable":true,"name":"Bannerman","orbit":0,"orbitIndex":0,"recipe":["Suffering","Greed","Ire"],"skill":62455,"stats":["Banner Buffs linger on you for 2 seconds after you leave the Area"],"stringId":"banners9"},"62464":{"connections":[{"id":17854,"orbit":7}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":3,"orbitIndex":22,"skill":62464,"stats":["15% increased Evasion Rating"],"stringId":"evasion17_"},"62496":{"connections":[{"id":34912,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Damage","orbit":6,"orbitIndex":48,"skill":62496,"stats":["10% increased Trap Damage"],"stringId":"trap2"},"62498":{"connections":[{"id":3446,"orbit":0},{"id":51561,"orbit":0},{"id":21390,"orbit":0},{"id":41363,"orbit":0},{"id":12255,"orbit":0}],"group":295,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":62498,"stats":["+5 to any Attribute"],"stringId":"attributes6"},"62505":{"connections":[{"id":32436,"orbit":0}],"group":871,"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","name":"Intelligence","orbit":3,"orbitIndex":18,"skill":62505,"stats":["+8 to Intelligence"],"stringId":"attributes110"},"62510":{"connections":[{"id":8697,"orbit":4},{"id":17118,"orbit":6}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":4,"orbitIndex":69,"skill":62510,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks1"},"62518":{"connections":[{"id":41414,"orbit":4}],"group":253,"icon":"Art/2DArt/SkillIcons/passives/fireresist.dds","name":"Fire Resistance","orbit":3,"orbitIndex":7,"skill":62518,"stats":["+5% to Fire Resistance"],"stringId":"maximum_resistances1"},"62523":{"ascendancyName":"Shaman","connections":[{"id":26063,"orbit":2147483647}],"group":74,"icon":"Art/2DArt/SkillIcons/passives/Shaman/ShamanPickEleDmg.dds","isNotable":true,"name":"Turning of the Seasons","nodeOverlay":{"alloc":"ShamanFrameLargeAllocated","path":"ShamanFrameLargeCanAllocate","unalloc":"ShamanFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":62523,"stats":["Enemies in your Presence have Exposure","Gain 10% of Damage as Extra Damage of a random Element"],"stringId":"AscendancyDruid2Notable1"},"62542":{"connections":[{"id":16329,"orbit":7},{"id":57821,"orbit":0}],"group":1391,"icon":"Art/2DArt/SkillIcons/passives/flaskdex.dds","name":"Flask Charges Gained","orbit":3,"orbitIndex":0,"skill":62542,"stats":["10% increased Flask Charges gained"],"stringId":"flasks1"},"62578":{"connections":[{"id":30102,"orbit":-7}],"group":1330,"icon":"Art/2DArt/SkillIcons/passives/IncreasedChaosDamage.dds","name":"Volatility on Kill","orbit":7,"orbitIndex":16,"skill":62578,"stats":["3% chance to gain Volatility on Kill"],"stringId":"volatility7"},"62581":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBlockPattern","connections":[],"group":486,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupShield.dds","isOnlyImage":true,"name":"Block Mastery","orbit":0,"orbitIndex":0,"skill":62581,"stats":[],"stringId":"mastery_block_6339"},"62588":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[{"id":50609,"orbit":0}],"group":787,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62588,"stats":[],"stringId":"mastery_life138"},"62603":{"connections":[{"id":19715,"orbit":3}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/FireDamagenode.dds","name":"Fire Penetration","orbit":3,"orbitIndex":20,"skill":62603,"stats":["Damage Penetrates 6% Fire Resistance"],"stringId":"fire_penetration11_"},"62609":{"connections":[{"id":11014,"orbit":0},{"id":16051,"orbit":0}],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","isNotable":true,"name":"Ancestral Unity","orbit":7,"orbitIndex":6,"recipe":["Suffering","Fear","Envy"],"skill":62609,"stats":["Attacks used by Totems have 4% increased Attack Speed per Summoned Totem"],"stringId":"totems15"},"62624":{"connections":[],"group":1365,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":7,"orbitIndex":22,"skill":62624,"stats":["+30 to Evasion Rating","+15 to maximum Energy Shield"],"stringId":"evasion_and_energy_shield7"},"62628":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":966,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":0,"orbitIndex":0,"skill":62628,"stats":[],"stringId":"mastery_projectile_6648"},"62640":{"connections":[{"id":24880,"orbit":-7}],"group":721,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":4,"orbitIndex":32,"skill":62640,"stats":["3% increased Attack Speed"],"stringId":"attack_speed28"},"62661":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":583,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":0,"orbitIndex":0,"skill":62661,"stats":[],"stringId":"mastery_critical_271_"},"62670":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryMinionDefencePattern","connections":[],"group":160,"icon":"Art/2DArt/SkillIcons/passives/MinionMastery.dds","isOnlyImage":true,"name":"Minion Defence Mastery","orbit":0,"orbitIndex":0,"skill":62670,"stats":[],"stringId":"mastery_minion_defence_6610"},"62677":{"connections":[],"group":907,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":62677,"stats":["+5 to any Attribute"],"stringId":"intelligence58"},"62679":{"connections":[],"group":872,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":12,"skill":62679,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant5"},"62702":{"ascendancyName":"Spirit Walker","connections":[{"id":27773,"orbit":-7}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerNode.dds","name":"Movement Speed","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":4,"orbitIndex":38,"skill":62702,"stats":["2% increased Movement Speed"],"stringId":"AscendancyHuntress2Small2_"},"62723":{"connections":[{"id":38732,"orbit":8}],"group":882,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":4,"orbitIndex":33,"skill":62723,"stats":["15% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill"],"stringId":"Puppetmaster8"},"62732":{"connections":[{"id":64192,"orbit":0},{"id":49391,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/Hearty.dds","isNotable":true,"name":"Titan's Determination","orbit":3,"orbitIndex":9,"skill":62732,"stats":["25% increased Stun Threshold","20% increased Life Regeneration Rate while moving"],"stringId":"stun_threshold11"},"62743":{"ascendancyName":"Spirit Walker","connections":[{"id":21519,"orbit":0}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/Wildspeaker/WildspeakerWildBear.dds","isNotable":true,"name":"Wild Protector","nodeOverlay":{"alloc":"Spirit WalkerFrameLargeAllocated","path":"Spirit WalkerFrameLargeCanAllocate","unalloc":"Spirit WalkerFrameLargeNormal"},"orbit":6,"orbitIndex":34,"skill":62743,"stats":["Grants Skill: Wild Protector"],"stringId":"AscendancyHuntress2Notable3"},"62748":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLifePattern","connections":[],"group":351,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLife.dds","isOnlyImage":true,"name":"Life Mastery","orbit":0,"orbitIndex":0,"skill":62748,"stats":[],"stringId":"mastery_life148"},"62757":{"connections":[{"id":46741,"orbit":0}],"group":248,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","name":"Stun Buildup","orbit":2,"orbitIndex":4,"skill":62757,"stats":["15% increased Stun Buildup"],"stringId":"stun1"},"62779":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCompanionsPattern","connections":[],"group":1039,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Companion Mastery","orbit":0,"orbitIndex":0,"skill":62779,"stats":[],"stringId":"mastery_companion296"},"62785":{"connections":[{"id":4948,"orbit":-7}],"group":404,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":7,"orbitIndex":2,"skill":62785,"stats":["Break 20% increased Armour"],"stringId":"armour_break15__"},"62797":{"ascendancyName":"Lich","connections":[{"id":23352,"orbit":-4}],"group":1182,"icon":"Art/2DArt/SkillIcons/passives/Lich/LichNode.dds","isSwitchable":true,"name":"Curse Area","nodeOverlay":{"alloc":"LichFrameSmallAllocated","path":"LichFrameSmallCanAllocate","unalloc":"LichFrameSmallNormal"},"options":{"Abyssal Lich":{"ascendancyName":"Abyssal Lich","icon":"Art/2DArt/SkillIcons/passives/Lich/AbyssalLichNode.dds","id":11965,"name":"Curse Area","nodeOverlay":{"alloc":"Abyssal LichFrameSmallAllocated","path":"Abyssal LichFrameSmallCanAllocate","unalloc":"Abyssal LichFrameSmallNormal"},"stats":["15% increased Area of Effect of Curses"]}},"orbit":0,"orbitIndex":0,"skill":62797,"stats":["15% increased Area of Effect of Curses"],"stringId":"AscendancyWitch3Small2"},"62803":{"connections":[{"id":25029,"orbit":0}],"group":1378,"icon":"Art/2DArt/SkillIcons/passives/CharmNotable1.dds","isNotable":true,"name":"Woodland Aspect","orbit":4,"orbitIndex":51,"recipe":["Suffering","Guilt","Isolation"],"skill":62803,"stats":["Charms applied to you have 25% increased Effect"],"stringId":"charms7"},"62804":{"ascendancyName":"Ritualist","connections":[],"group":1609,"icon":"Art/2DArt/SkillIcons/passives/Primalist/PrimalistLifeLeechFromElementalOrChaos.dds","isNotable":true,"name":"Wildwood Persistence","nodeOverlay":{"alloc":"RitualistFrameLargeAllocated","path":"RitualistFrameLargeCanAllocate","unalloc":"RitualistFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":62804,"stats":["10% increased Life Recovery rate per 5% missing Unreserved Life"],"stringId":"AscendancyHuntress3Notable5"},"62841":{"connections":[{"id":17367,"orbit":-6},{"id":56045,"orbit":0},{"id":53941,"orbit":5}],"group":1149,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","name":"Evasion and Energy Shield","orbit":3,"orbitIndex":20,"skill":62841,"stats":["12% increased Evasion Rating","12% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield17"},"62844":{"connections":[{"id":32427,"orbit":0}],"group":761,"icon":"Art/2DArt/SkillIcons/passives/ColdDamagenode.dds","name":"Cold Penetration","orbit":3,"orbitIndex":18,"skill":62844,"stats":["Damage Penetrates 6% Cold Resistance"],"stringId":"cold_penetration9"},"62887":{"connections":[{"id":41225,"orbit":0}],"group":973,"icon":"Art/2DArt/SkillIcons/passives/MinionElementalResistancesNode.dds","isNotable":true,"name":"Living Death","orbit":2,"orbitIndex":16,"recipe":["Greed","Suffering","Disgust"],"skill":62887,"stats":["Minions have +22% to all Elemental Resistances","Minions have +3% to all Maximum Elemental Resistances"],"stringId":"minion_defence42"},"62914":{"connections":[{"id":47270,"orbit":5},{"id":44455,"orbit":0}],"group":821,"icon":"Art/2DArt/SkillIcons/passives/colddamage.dds","name":"Cold Damage","orbit":3,"orbitIndex":20,"skill":62914,"stats":["12% increased Cold Damage"],"stringId":"cold5"},"62936":{"connections":[{"id":51891,"orbit":7}],"group":1343,"icon":"Art/2DArt/SkillIcons/passives/damage_blue.dds","name":"Damage from Mana","orbit":2,"orbitIndex":11,"skill":62936,"stats":["4% of Damage is taken from Mana before Life"],"stringId":"mana14"},"62948":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern","connections":[{"id":34617,"orbit":0},{"id":64770,"orbit":0}],"group":377,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupEnergyShield.dds","isOnlyImage":true,"name":"Armour and Energy Shield Mastery","orbit":0,"orbitIndex":0,"skill":62948,"stats":[],"stringId":"mastery_armour_and_energy_shield_6276"},"62963":{"connections":[{"id":14601,"orbit":0}],"group":712,"icon":"Art/2DArt/SkillIcons/passives/flameborn.dds","isNotable":true,"name":"Flamewalker","orbit":7,"orbitIndex":18,"recipe":["Suffering","Fear","Greed"],"skill":62963,"stats":["40% reduced Magnitude of Ignite on you","Gain 15% of Damage as Extra Fire Damage while on Ignited Ground"],"stringId":"ground5"},"62973":{"connections":[{"id":26070,"orbit":0}],"group":363,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Power Counted","orbit":3,"orbitIndex":1,"skill":62973,"stats":["10% increased total Power counted by Warcries"],"stringId":"warcries28"},"62984":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionAndEnergyShieldPattern","connections":[{"id":15975,"orbit":0}],"group":1042,"icon":"Art/2DArt/SkillIcons/passives/EvasionandEnergyShieldNode.dds","isNotable":true,"name":"Mindful Awareness","orbit":2,"orbitIndex":4,"skill":62984,"stats":["24% increased Evasion Rating","24% increased maximum Energy Shield"],"stringId":"evasion_and_energy_shield35_"},"62986":{"connections":[{"id":60173,"orbit":4}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Accuracy","orbit":7,"orbitIndex":18,"skill":62986,"stats":["12% increased Accuracy Rating with One Handed Melee Weapons"],"stringId":"one_handed13"},"62998":{"connections":[{"id":63600,"orbit":0}],"group":1476,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":62998,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation2"},"63002":{"ascendancyName":"Chronomancer","connections":[{"id":26638,"orbit":0}],"group":337,"icon":"Art/2DArt/SkillIcons/passives/Temporalist/TemporalistNode.dds","name":"Buff Expiry Rate","nodeOverlay":{"alloc":"ChronomancerFrameSmallAllocated","path":"ChronomancerFrameSmallCanAllocate","unalloc":"ChronomancerFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63002,"stats":["Buffs on you expire 10% slower"],"stringId":"AscendancySorceress2Small2"},"63009":{"connections":[{"id":37593,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/Remnant.dds","name":"Remnant Pickup Range","orbit":2,"orbitIndex":0,"skill":63009,"stats":["Remnants can be collected from 20% further away"],"stringId":"remnant6"},"63021":{"connections":[{"id":23091,"orbit":0}],"group":748,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","name":"Fire Damage","orbit":3,"orbitIndex":14,"skill":63021,"stats":["12% increased Fire Damage"],"stringId":"fire18"},"63031":{"connections":[{"id":41821,"orbit":0}],"group":225,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","isNotable":true,"name":"Glorious Anticipation","orbit":4,"orbitIndex":54,"recipe":["Paranoia","Despair","Despair"],"skill":63031,"stats":["Skills gain 1 Glory every 2 seconds for each Rare or Unique monster in your Presence"],"stringId":"glory15"},"63037":{"connections":[{"id":24430,"orbit":0},{"id":44298,"orbit":0}],"group":275,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Sigil of Fire","orbit":4,"orbitIndex":70,"recipe":["Suffering","Guilt","Ire"],"skill":63037,"stats":["30% increased Damage with Hits against Ignited Enemies"],"stringId":"fire31"},"63064":{"connections":[{"id":30634,"orbit":3},{"id":54413,"orbit":0}],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/MineManaReservationNotable.dds","isNotable":true,"name":"Mystic Stance","orbit":2,"orbitIndex":10,"skill":63064,"stats":["12% faster start of Energy Shield Recharge","30% increased Stun Threshold while on Full Life"],"stringId":"energy_shield_recovery12"},"63074":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChaosPattern","connections":[],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","isNotable":true,"name":"Dark Entries","orbit":1,"orbitIndex":2,"recipe":["Despair","Isolation","Isolation"],"skill":63074,"stats":["+1 to Level of all Chaos Skills"],"stringId":"chaos31"},"63085":{"connections":[{"id":36100,"orbit":9},{"id":34490,"orbit":0}],"group":168,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Damage","orbit":0,"orbitIndex":0,"skill":63085,"stats":["12% increased Damage while Shapeshifted"],"stringId":"bear6"},"63114":{"connections":[{"id":26725,"orbit":0},{"id":21387,"orbit":0},{"id":26176,"orbit":0},{"id":35048,"orbit":0}],"group":231,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":3,"orbitIndex":4,"skill":63114,"stats":["+5 to any Attribute"],"stringId":"strength68"},"63170":{"connectionArt":"CharacterPlanned","connections":[{"id":6999,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed and Elemental Resistance","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":9,"skill":63170,"stats":["Totems gain +1% to all Maximum Elemental Resistances","Spells Cast by Totems have 2% increased Cast Speed","Attacks used by Totems have 2% increased Attack Speed"],"stringId":"oracle_totems9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63182":{"connections":[{"id":29930,"orbit":3}],"group":1079,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":7,"orbitIndex":6,"skill":63182,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"duelist_minions7"},"63192":{"connections":[{"id":62096,"orbit":0},{"id":48116,"orbit":0}],"group":1474,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalSnake.dds","name":"Attack Damage and Companion Damage as Chaos","orbit":0,"orbitIndex":0,"skill":63192,"stats":["6% increased Attack Damage","Companions gain 4% Damage as extra Chaos Damage"],"stringId":"companions67"},"63209":{"connections":[{"id":30704,"orbit":0},{"id":22045,"orbit":0},{"id":17655,"orbit":-4},{"id":36602,"orbit":-3}],"group":608,"icon":"Art/2DArt/SkillIcons/passives/lifepercentage.dds","name":"Life Regeneration and Damage","orbit":2,"orbitIndex":22,"skill":63209,"stats":["5% increased Damage","Regenerate 0.1% of maximum Life per second"],"stringId":"life_regeneration11"},"63236":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEnergyDoubled.dds","isNotable":true,"name":"The Soul Springs Eternal","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":6,"orbitIndex":17,"skill":63236,"stats":["Meta Skills gain 35% more Energy","Meta Skills have 50% increased Reservation Efficiency"],"stringId":"AscendancyMonk2Notable9"},"63243":{"connectionArt":"CharacterPlanned","connections":[{"id":48160,"orbit":2147483647},{"id":49543,"orbit":0}],"group":202,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Ally Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":10,"skill":63243,"stats":["Allies in your Presence deal 20% increased Damage","10% reduced Damage"],"stringId":"oracle_self_sacrificing1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63246":{"connections":[{"id":33585,"orbit":-7}],"group":1388,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Ailment Threshold and Companion Resistance","orbit":4,"orbitIndex":12,"skill":63246,"stats":["8% increased Elemental Ailment Threshold","Companions have +12% to all Elemental Resistances"],"stringId":"companions25"},"63254":{"ascendancyName":"Amazon","connections":[],"group":1602,"icon":"Art/2DArt/SkillIcons/passives/Amazon/AmazonDoubleEvasionfromGlovesBootsHelmsHalvedBodyArmour.dds","isNotable":true,"name":"Stalking Panther","nodeOverlay":{"alloc":"AmazonFrameLargeAllocated","path":"AmazonFrameLargeCanAllocate","unalloc":"AmazonFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":63254,"stats":["Evasion Rating from Equipped Helmet, Gloves and Boots is doubled","Evasion Rating from Equipped Body Armour is halved"],"stringId":"AscendancyHuntress1Notable8"},"63255":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[],"group":1038,"icon":"Art/2DArt/SkillIcons/passives/chargedex.dds","isNotable":true,"name":"Savagery","orbit":0,"orbitIndex":0,"recipe":["Suffering","Fear","Paranoia"],"skill":63255,"stats":["50% increased Evasion Rating if you've consumed a Frenzy Charge Recently","+1 to Maximum Frenzy Charges"],"stringId":"frenzy_charges8"},"63259":{"ascendancyName":"Gemling Legionnaire","connections":[],"group":405,"icon":"Art/2DArt/SkillIcons/passives/Gemling/GemlingLevelDexSkillGems.dds","isMultipleChoiceOption":true,"name":"Motoric Implants","nodeOverlay":{"alloc":"Gemling LegionnaireFrameSmallAllocated","path":"Gemling LegionnaireFrameSmallCanAllocate","unalloc":"Gemling LegionnaireFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63259,"stats":["+2 to Level of all Skills with a Dexterity requirement"],"stringId":"AscendancyMercenary3Notable2_2_"},"63267":{"connections":[{"id":65424,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Damage","orbit":2,"orbitIndex":3,"skill":63267,"stats":["12% increased Attack Damage while Dual Wielding"],"stringId":"dual_wielding1"},"63268":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":532,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":7,"orbitIndex":6,"skill":63268,"stats":[],"stringId":"mastery_fire119"},"63360":{"connections":[{"id":62258,"orbit":2147483647}],"group":715,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Glory Gained","orbit":7,"orbitIndex":14,"skill":63360,"stats":["20% increased Glory generation for Banner Skills"],"stringId":"banners4_"},"63393":{"connections":[{"id":7721,"orbit":3},{"id":36709,"orbit":0}],"group":685,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":7,"orbitIndex":12,"skill":63393,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold15"},"63400":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryElementalPattern","connections":[{"id":22851,"orbit":-7}],"group":1213,"icon":"Art/2DArt/SkillIcons/passives/MonkElementalChakra.dds","isNotable":true,"name":"Chakra of Elements","orbit":2,"orbitIndex":6,"recipe":["Greed","Suffering","Greed"],"skill":63400,"stats":["Gain 8% of Physical Damage as Extra Cold Damage against Shocked Enemies","Gain 8% of Physical Damage as Extra Lightning Damage against Chilled Enemies"],"stringId":"monkchakra24"},"63401":{"ascendancyName":"Smith of Kitava","connections":[{"id":48537,"orbit":0}],"group":26,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithofKitavaNode.dds","name":"Fire Resistance","nodeOverlay":{"alloc":"Smith of KitavaFrameSmallAllocated","path":"Smith of KitavaFrameSmallCanAllocate","unalloc":"Smith of KitavaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63401,"stats":["+8% to Fire Resistance"],"stringId":"AscendancyWarrior3Small5"},"63402":{"connections":[{"id":29881,"orbit":2}],"group":427,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftWyvernNode.dds","name":"Arcane Surge Effect","orbit":2,"orbitIndex":4,"skill":63402,"stats":["15% increased effect of Arcane Surge on you"],"stringId":"wyvern16"},"63431":{"connections":[],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Leeching Toxins","orbit":1,"orbitIndex":3,"recipe":["Greed","Suffering","Suffering"],"skill":63431,"stats":["30% increased Magnitude of Poison you inflict","Recover 2% of maximum Life on Killing a Poisoned Enemy"],"stringId":"poison27"},"63445":{"connections":[{"id":43562,"orbit":0}],"group":884,"icon":"Art/2DArt/SkillIcons/passives/attackspeed.dds","name":"Attack Speed","orbit":3,"orbitIndex":6,"skill":63445,"stats":["3% increased Attack Speed"],"stringId":"attack_speed45"},"63451":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44406,"orbit":0},{"id":64312,"orbit":0}],"group":435,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Cranial Impact","orbit":6,"orbitIndex":6,"recipe":["Greed","Paranoia","Disgust"],"skill":63451,"stats":["30% increased Stun Buildup","Gain an Endurance Charge when you Heavy Stun a Rare or Unique Enemy"],"stringId":"stun15"},"63469":{"connections":[{"id":30834,"orbit":0},{"id":50216,"orbit":0}],"group":640,"icon":"Art/2DArt/SkillIcons/passives/manaregeneration.dds","name":"Mana Regeneration and Skill Speed","orbit":2,"orbitIndex":10,"skill":63469,"stats":["2% increased Skill Speed","5% increased Mana Regeneration Rate"],"stringId":"mana1"},"63470":{"connections":[{"id":9908,"orbit":-3}],"group":436,"icon":"Art/2DArt/SkillIcons/passives/manastr.dds","name":"Life Costs","orbit":3,"orbitIndex":14,"skill":63470,"stats":["6% of Skill Mana Costs Converted to Life Costs"],"stringId":"life_costs1"},"63482":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[{"id":47387,"orbit":0}],"group":101,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupLightning.dds","isOnlyImage":true,"name":"Lightning Mastery","orbit":0,"orbitIndex":0,"skill":63482,"stats":[],"stringId":"mastery_lightning148"},"63484":{"ascendancyName":"Infernalist","connections":[{"id":18158,"orbit":7}],"group":774,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Flammability Magnitude","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":63484,"stats":["40% increased Flammability Magnitude"],"stringId":"AscendancyWitch1Small8"},"63493":{"ascendancyName":"Spirit Walker","connections":[{"id":26294,"orbit":6},{"id":37769,"orbit":9},{"id":45228,"orbit":0},{"id":5733,"orbit":6},{"id":62424,"orbit":5},{"id":28254,"orbit":5}],"group":1591,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","isAscendancyStart":true,"name":"Spirit Walker","nodeOverlay":{"alloc":"Spirit WalkerFrameSmallAllocated","path":"Spirit WalkerFrameSmallCanAllocate","unalloc":"Spirit WalkerFrameSmallNormal"},"orbit":8,"orbitIndex":21,"skill":63493,"stats":[],"stringId":"AscendancyHuntress2Start"},"63517":{"connections":[{"id":48974,"orbit":0},{"id":53958,"orbit":2}],"group":1337,"icon":"Art/2DArt/SkillIcons/passives/flaskint.dds","name":"Mana Flask Recovery","orbit":2,"orbitIndex":22,"skill":63517,"stats":["10% increased Mana Recovery from Flasks"],"stringId":"mana_flasks4_"},"63525":{"connections":[{"id":53094,"orbit":0}],"group":1139,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy and Attack Critical Chance","orbit":7,"orbitIndex":2,"skill":63525,"stats":["8% increased Critical Hit Chance for Attacks","6% increased Accuracy Rating"],"stringId":"accuracy33"},"63526":{"connections":[{"id":28370,"orbit":6},{"id":7788,"orbit":4}],"group":832,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":63526,"stats":["+5 to any Attribute"],"stringId":"strength37"},"63541":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[{"id":17994,"orbit":0}],"group":846,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","isNotable":true,"name":"Brush Off","orbit":2,"orbitIndex":9,"recipe":["Ire","Suffering","Ire"],"skill":63541,"stats":["15% increased Armour","Prevent +15% of Damage from Deflected Critical Hits"],"stringId":"deflect34"},"63545":{"connections":[],"group":952,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","name":"Minion Damage","orbit":7,"orbitIndex":6,"skill":63545,"stats":["Minions deal 10% increased Damage"],"stringId":"minion_offence26"},"63566":{"connections":[{"id":42658,"orbit":0},{"id":62350,"orbit":0},{"id":30871,"orbit":0}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":36,"skill":63566,"stats":["+5 to any Attribute"],"stringId":"dexterity61"},"63579":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[],"group":671,"icon":"Art/2DArt/SkillIcons/passives/legstrength.dds","isNotable":true,"name":"Momentum","orbit":4,"orbitIndex":30,"recipe":["Greed","Isolation","Disgust"],"skill":63579,"stats":["Ignore all Movement Penalties from Armour","5% reduced Slowing Potency of Debuffs on You"],"stringId":"slow_mitigation7_"},"63585":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryLightningPattern","connections":[],"group":1120,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Thunderstruck","orbit":0,"orbitIndex":0,"recipe":["Despair","Paranoia","Paranoia"],"skill":63585,"stats":["50% increased Electrocute Buildup against Shocked Enemies","50% increased Shock Chance against Electrocuted Enemies"],"stringId":"lightning36"},"63600":{"connections":[{"id":36364,"orbit":0}],"group":1465,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Electrocute Buildup","orbit":0,"orbitIndex":0,"skill":63600,"stats":["15% increased Electrocute Buildup"],"stringId":"shock_mitigation3"},"63608":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryFirePattern","connections":[],"group":110,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupFire.dds","isOnlyImage":true,"name":"Fire Mastery","orbit":0,"orbitIndex":0,"skill":63608,"stats":[],"stringId":"mastery_fire_6518"},"63610":{"connections":[{"id":38459,"orbit":-7}],"group":1124,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Blind Effect","orbit":2,"orbitIndex":0,"skill":63610,"stats":["10% increased Blind Effect"],"stringId":"blind6_"},"63618":{"connections":[{"id":31129,"orbit":2147483647}],"group":1537,"icon":"Art/2DArt/SkillIcons/passives/CompanionsNode1.dds","name":"Defences and Companion Life","orbit":0,"orbitIndex":0,"skill":63618,"stats":["Companions have 12% increased maximum Life","10% increased Armour, Evasion and Energy Shield while your Companion is in your Presence"],"stringId":"companions17"},"63659":{"connections":[{"id":33964,"orbit":0},{"id":37616,"orbit":0}],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","isNotable":true,"name":"Clever Construction","orbit":4,"orbitIndex":45,"skill":63659,"stats":["25% increased Critical Hit Chance with Traps"],"stringId":"trap13"},"63668":{"connections":[{"id":9069,"orbit":0},{"id":4328,"orbit":0}],"group":1214,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Triggered Spell Damage","orbit":3,"orbitIndex":4,"skill":63668,"stats":["Triggered Spells deal 14% increased Spell Damage"],"stringId":"triggers24_"},"63678":{"connections":[],"group":173,"icon":"Art/2DArt/SkillIcons/passives/DruidShapeshiftBearNode.dds","name":"Shapeshifted Armour","orbit":0,"orbitIndex":0,"skill":63678,"stats":["10% increased Armour while Shapeshifted","+5% of Armour also applies to Elemental Damage while Shapeshifted"],"stringId":"bear13"},"63679":{"connections":[{"id":20008,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Stun Buildup","orbit":1,"orbitIndex":11,"skill":63679,"stats":["18% increased Projectile Stun Buildup"],"stringId":"ranged24"},"63713":{"ascendancyName":"Invoker","connections":[{"id":57181,"orbit":-4}],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerCriticalStrikesIgnoreResistances.dds","isNotable":true,"name":"Sunder my Enemies...","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":43,"skill":63713,"stats":["Critical Hits ignore non-negative Enemy Monster Elemental Resistances"],"stringId":"AscendancyMonk2Notable6"},"63731":{"connections":[{"id":244,"orbit":0}],"group":1004,"icon":"Art/2DArt/SkillIcons/passives/executioner.dds","name":"Attack Damage","orbit":0,"orbitIndex":0,"skill":63731,"stats":["16% increased Attack Damage against Rare or Unique Enemies"],"stringId":"boss_slaying7"},"63732":{"connections":[{"id":8440,"orbit":-3}],"group":930,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":1,"orbitIndex":10,"skill":63732,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life8"},"63739":{"connections":[{"id":37593,"orbit":0}],"group":889,"icon":"Art/2DArt/SkillIcons/passives/RemnantNotable.dds","isNotable":true,"name":"Vigorous Remnants","orbit":7,"orbitIndex":14,"recipe":["Envy","Despair","Guilt"],"skill":63739,"stats":["Recover 3% of Maximum Life when you collect a Remnant"],"stringId":"remnant9"},"63759":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPoisonPattern","connections":[{"id":26565,"orbit":0}],"group":1283,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","isNotable":true,"name":"Stacking Toxins","orbit":3,"orbitIndex":0,"recipe":["Isolation","Disgust","Paranoia"],"skill":63759,"stats":["Targets can be affected by +1 of your Poisons at the same time","20% reduced Magnitude of Poison you inflict"],"stringId":"poison30"},"63762":{"connections":[{"id":44522,"orbit":0}],"group":1419,"icon":"Art/2DArt/SkillIcons/passives/EvasionNode.dds","name":"Deflection","orbit":2,"orbitIndex":2,"skill":63762,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"deflect45"},"63772":{"connectionArt":"CharacterPlanned","connections":[{"id":37888,"orbit":0}],"group":315,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","name":"Cooldown Recovery Rate","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":23,"skill":63772,"stats":["6% increased Cooldown Recovery Rate"],"stringId":"oracle_movement_cooldown4","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"63790":{"connections":[{"id":48014,"orbit":0}],"group":222,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage against Immobilised","orbit":5,"orbitIndex":54,"skill":63790,"stats":["20% increased Melee Damage against Immobilised Enemies"],"stringId":"melee53"},"63813":{"connections":[{"id":1169,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Speed","orbit":7,"orbitIndex":20,"skill":63813,"stats":["16% increased Warcry Speed"],"stringId":"warcries37"},"63814":{"connections":[{"id":33216,"orbit":0}],"group":749,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":63814,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed4"},"63828":{"connections":[],"group":970,"icon":"Art/2DArt/SkillIcons/passives/RangedTotemDamage.dds","name":"Ballista Critical Strike and Damage","orbit":7,"orbitIndex":18,"skill":63828,"stats":["6% increased Ballista Critical Damage Bonus","10% increased Ballista Critical Hit Chance"],"stringId":"ballista8"},"63830":{"connections":[{"id":13624,"orbit":-5},{"id":45390,"orbit":5}],"group":1387,"icon":"Art/2DArt/SkillIcons/passives/MarkNode.dds","isNotable":true,"name":"Marked for Sickness","orbit":3,"orbitIndex":3,"recipe":["Guilt","Disgust","Isolation"],"skill":63830,"stats":["Enemies you Mark have 10% reduced Accuracy Rating","Enemies you Mark take 10% increased Damage"],"stringId":"marks12"},"63861":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryCriticalsPattern","connections":[],"group":1104,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupCrit.dds","isOnlyImage":true,"name":"Critical Mastery","orbit":2,"orbitIndex":13,"skill":63861,"stats":[],"stringId":"mastery_criticals62"},"63863":{"connections":[],"group":917,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":63863,"stats":["12% increased Lightning Damage"],"stringId":"lightning20__"},"63888":{"connections":[{"id":35901,"orbit":0},{"id":61356,"orbit":0},{"id":26068,"orbit":0}],"group":1196,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":0,"orbitIndex":0,"skill":63888,"stats":["+5 to any Attribute"],"stringId":"attributes29"},"63891":{"connections":[{"id":63074,"orbit":0}],"group":965,"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","name":"Chaos Damage","orbit":1,"orbitIndex":7,"skill":63891,"stats":["7% increased Chaos Damage"],"stringId":"chaos11"},"63894":{"ascendancyName":"Infernalist","connections":[{"id":61267,"orbit":-4}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Spell Damage","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":6,"orbitIndex":64,"skill":63894,"stats":["12% increased Spell Damage"],"stringId":"AscendancyWitch1Small6"},"63926":{"connections":[],"group":992,"icon":"Art/2DArt/SkillIcons/passives/LightningResistNode.dds","name":"Minion Lightning Resistance","orbit":0,"orbitIndex":0,"skill":63926,"stats":["Minions have +20% to Lightning Resistance","Minions have +3% to Maximum Lightning Resistances"],"stringId":"minion_defence23"},"63979":{"connections":[{"id":9750,"orbit":0}],"group":314,"icon":"Art/2DArt/SkillIcons/passives/WarCryEffect.dds","name":"Warcry Cooldown","orbit":7,"orbitIndex":8,"skill":63979,"stats":["10% increased Warcry Cooldown Recovery Rate"],"stringId":"warcries32"},"64023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryThornsPattern","connections":[],"group":274,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Thorns Mastery","orbit":0,"orbitIndex":0,"skill":64023,"stats":[],"stringId":"mastery_thorns308"},"64031":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerUnboundAvatar.dds","isNotable":true,"name":"...and I Shall Rage","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":3,"orbitIndex":4,"skill":64031,"stats":["Grants Skill: Unbound Avatar"],"stringId":"AscendancyMonk2Notable5"},"64042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryPhysicalPattern","connections":[],"group":447,"icon":"Art/2DArt/SkillIcons/passives/MasteryPhysicalDamage.dds","isOnlyImage":true,"name":"Physical Mastery","orbit":7,"orbitIndex":18,"skill":64042,"stats":[],"stringId":"mastery_physical197"},"64046":{"connections":[{"id":45522,"orbit":6},{"id":5726,"orbit":0}],"group":777,"icon":"Art/2DArt/SkillIcons/passives/InstillationsNotable1.dds","isNotable":true,"isSwitchable":true,"name":"Principal Infusion","options":{"Witch":{"icon":"Art/2DArt/SkillIcons/passives/ChaosDamagenode.dds","id":10941,"name":"Entropy","stats":["20% increased Chaos Damage","18% increased Skill Effect Duration"]}},"orbit":7,"orbitIndex":3,"skill":64046,"stats":["30% increased Elemental Infusion duration","Remnants can be collected from 30% further away"],"stringId":"lightning34"},"64050":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryEvasionPattern","connections":[],"group":1395,"icon":"Art/2DArt/SkillIcons/passives/MovementSpeedandEvasion.dds","isNotable":true,"name":"Marathon Runner","orbit":0,"orbitIndex":0,"recipe":["Paranoia","Fear","Guilt"],"skill":64050,"stats":["12% increased Movement Speed while Sprinting"],"stringId":"Sprint9_"},"64056":{"connections":[{"id":36931,"orbit":0}],"group":1115,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Daze Chance","orbit":2,"orbitIndex":6,"skill":64056,"stats":["5% chance to Daze on Hit"],"stringId":"attack44"},"64064":{"connections":[],"group":1359,"icon":"Art/2DArt/SkillIcons/passives/accuracydex.dds","name":"Accuracy","orbit":0,"orbitIndex":0,"skill":64064,"stats":["8% increased Accuracy Rating"],"stringId":"accuracy26"},"64083":{"connectionArt":"CharacterPlanned","connections":[{"id":12940,"orbit":0}],"group":566,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":7,"orbitIndex":3,"skill":64083,"stats":["20% increased Lightning Damage"],"stringId":"oracle_hierarchy5_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64119":{"connections":[{"id":33596,"orbit":0}],"group":922,"icon":"Art/2DArt/SkillIcons/passives/BowDamage.dds","isNotable":true,"name":"Rapid Reload","orbit":7,"orbitIndex":20,"recipe":["Fear","Guilt","Suffering"],"skill":64119,"stats":["40% increased Crossbow Reload Speed"],"stringId":"crossbow13"},"64139":{"connectionArt":"CharacterPlanned","connections":[{"id":22221,"orbit":-5},{"id":15842,"orbit":0}],"group":89,"icon":"Art/2DArt/SkillIcons/passives/miniondamageBlue.dds","isNotable":true,"name":"Friend to Many","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":10,"skill":64139,"stats":["Minions deal 10% increased Damage with Command Skills for each different type of Persistent Minion in your Presence"],"stringId":"oracle_big_family9","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64140":{"connections":[{"id":51336,"orbit":-5},{"id":30905,"orbit":-4}],"group":1101,"icon":"Art/2DArt/SkillIcons/passives/ElementalDamagewithAttacks2.dds","name":"Elemental Attack Damage","orbit":3,"orbitIndex":10,"skill":64140,"stats":["12% increased Elemental Damage with Attacks"],"stringId":"elemental_attacks4"},"64192":{"connections":[{"id":53373,"orbit":3}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","name":"Stun Threshold","orbit":3,"orbitIndex":12,"skill":64192,"stats":["12% increased Stun Threshold"],"stringId":"stun_threshold28"},"64213":{"connections":[{"id":12611,"orbit":-3},{"id":61246,"orbit":3}],"group":1247,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Damage and Freeze Buildup","orbit":7,"orbitIndex":8,"skill":64213,"stats":["10% increased Freeze Buildup","8% increased Elemental Damage"],"stringId":"elemental16"},"64223":{"ascendancyName":"Disciple of Varashta","connections":[{"id":56857,"orbit":6}],"group":593,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/DjinnNode.dds","name":"Energy Shield","nodeOverlay":{"alloc":"Disciple of VarashtaFrameSmallAllocated","path":"Disciple of VarashtaFrameSmallCanAllocate","unalloc":"Disciple of VarashtaFrameSmallNormal"},"orbit":0,"orbitIndex":0,"skill":64223,"stats":["20% increased maximum Energy Shield"],"stringId":"AscendancySorceress3Small2"},"64239":{"connectionArt":"CharacterPlanned","connections":[{"id":2733,"orbit":0}],"group":306,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","isNotable":true,"name":"Innate Rune","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"},"orbit":2,"orbitIndex":17,"skill":64239,"stats":["Adds 1 to 37 Lightning damage to Attacks"],"stringId":"oracle_flat_lightning3_","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"64240":{"connections":[{"id":52220,"orbit":0}],"group":226,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageNode.dds","isNotable":true,"name":"Battle Fever","orbit":2,"orbitIndex":6,"recipe":["Disgust","Guilt","Isolation"],"skill":64240,"stats":["5% increased Skill Speed","25% increased Physical Damage"],"stringId":"physical37"},"64284":{"connections":[{"id":27373,"orbit":0},{"id":19011,"orbit":4}],"group":557,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Melee Damage","orbit":4,"orbitIndex":51,"skill":64284,"stats":["8% increased Melee Damage"],"stringId":"melee19"},"64295":{"connections":[],"group":1467,"icon":"Art/2DArt/SkillIcons/passives/trapdamage.dds","name":"Trap Critical Chance","orbit":4,"orbitIndex":54,"skill":64295,"stats":["10% increased Critical Hit Chance with Traps"],"stringId":"trap11"},"64299":{"connections":[{"id":17655,"orbit":2147483647}],"group":597,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"isSwitchable":true,"name":"Bolstering Presence","options":{"Druid":{"icon":"Art/2DArt/SkillIcons/passives/BattleRouse.dds","id":56845,"name":"Harbinger of Disaster","stats":["10% increased Critical Damage Bonus","10% increased Damage","10% increased Area Damage"]}},"orbit":2,"orbitIndex":20,"skill":64299,"stats":["Aura Skills have 12% increased Magnitudes"],"stringId":"auras18"},"64312":{"connections":[{"id":23861,"orbit":-7},{"id":54886,"orbit":7}],"group":471,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":7,"orbitIndex":2,"skill":64312,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed9"},"64318":{"connections":[{"id":61063,"orbit":0}],"group":372,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Penetration","orbit":3,"orbitIndex":2,"skill":64318,"stats":["Damage Penetrates 4% of Enemy Elemental Resistances"],"stringId":"elemental1"},"64324":{"connections":[{"id":41442,"orbit":9}],"group":260,"icon":"Art/2DArt/SkillIcons/passives/shieldblock.dds","name":"Block and Stun Threshold","orbit":3,"orbitIndex":17,"skill":64324,"stats":["4% increased Block chance","5% increased Stun Threshold"],"stringId":"shield33"},"64325":{"connections":[{"id":45304,"orbit":-4}],"group":1441,"icon":"Art/2DArt/SkillIcons/passives/Poison.dds","name":"Poison Damage","orbit":3,"orbitIndex":11,"skill":64325,"stats":["10% increased Magnitude of Poison you inflict"],"stringId":"poison23"},"64327":{"connections":[{"id":39517,"orbit":0},{"id":49391,"orbit":0}],"group":612,"icon":"Art/2DArt/SkillIcons/passives/steelspan.dds","isNotable":true,"name":"Defender's Resolve","orbit":3,"orbitIndex":21,"skill":64327,"stats":["12% increased Block chance","Your Heavy Stun buildup empties 50% faster"],"stringId":"block15"},"64345":{"connections":[{"id":49968,"orbit":0},{"id":63679,"orbit":0}],"group":1206,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Attack Damage","orbit":2,"orbitIndex":16,"skill":64345,"stats":["10% increased Attack Damage"],"stringId":"ranged22"},"64352":{"connections":[{"id":44345,"orbit":0}],"group":1031,"icon":"Art/2DArt/SkillIcons/passives/LightningDamagenode.dds","name":"Lightning Damage","orbit":0,"orbitIndex":0,"skill":64352,"stats":["10% increased Lightning Damage"],"stringId":"lightning11"},"64357":{"connections":[{"id":50062,"orbit":0},{"id":506,"orbit":0}],"group":284,"icon":"Art/2DArt/SkillIcons/passives/ArmourAndEnergyShieldNode.dds","name":"Armour and Energy Shield","orbit":2,"orbitIndex":8,"skill":64357,"stats":["12% increased Armour","12% increased maximum Energy Shield"],"stringId":"energy_shield_and_armour16_"},"64370":{"connections":[{"id":53396,"orbit":0}],"group":654,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":17,"skill":64370,"stats":["+5 to any Attribute"],"stringId":"intelligence31"},"64379":{"ascendancyName":"Infernalist","connections":[{"id":25239,"orbit":-4}],"group":793,"icon":"Art/2DArt/SkillIcons/passives/Infernalist/InfernalistNode.dds","name":"Spell Damage","nodeOverlay":{"alloc":"InfernalistFrameSmallAllocated","path":"InfernalistFrameSmallCanAllocate","unalloc":"InfernalistFrameSmallNormal"},"orbit":8,"orbitIndex":69,"skill":64379,"stats":["12% increased Spell Damage"],"stringId":"AscendancyWitch1Small5"},"64399":{"connections":[{"id":2511,"orbit":3}],"group":574,"icon":"Art/2DArt/SkillIcons/passives/criticalstrikechance.dds","name":"Attack Critical Damage","orbit":1,"orbitIndex":7,"skill":64399,"stats":["15% increased Critical Damage Bonus for Attack Damage"],"stringId":"criticals67__"},"64405":{"connections":[],"group":342,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":3,"orbitIndex":12,"skill":64405,"stats":["15% increased Totem Damage"],"stringId":"totems48_"},"64415":{"connections":[{"id":22063,"orbit":0},{"id":1416,"orbit":0}],"group":1404,"icon":"Art/2DArt/SkillIcons/passives/stun2h.dds","isNotable":true,"name":"Shattering Daze","orbit":7,"orbitIndex":19,"recipe":["Disgust","Isolation","Envy"],"skill":64415,"stats":["5% chance to Daze on Hit","Gain 12% of Physical Damage as Extra Cold Damage against Dazed Enemies"],"stringId":"daze_17"},"64427":{"connections":[],"group":969,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Infusion and Power Charge Duration","orbit":2,"orbitIndex":15,"skill":64427,"stats":["6% increased Power Charge Duration","6% increased Elemental Infusion duration"],"stringId":"power_charges17"},"64434":{"connections":[{"id":3893,"orbit":2}],"group":1216,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":4,"skill":64434,"stats":["15% increased Evasion Rating"],"stringId":"deflect28"},"64443":{"connections":[{"id":41126,"orbit":0},{"id":62023,"orbit":0}],"group":304,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","isNotable":true,"name":"Impact Force","orbit":3,"orbitIndex":8,"recipe":["Fear","Ire","Fear"],"skill":64443,"stats":["20% increased Stun Buildup","25% increased Attack Area Damage"],"stringId":"area_attacks29"},"64462":{"connections":[{"id":53150,"orbit":0}],"group":1452,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":2,"orbitIndex":17,"skill":64462,"stats":["10% increased amount of Mana Leeched"],"stringId":"mana_leech2"},"64471":{"connections":[{"id":43843,"orbit":0}],"group":628,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":4,"orbitIndex":54,"skill":64471,"stats":["+5 to any Attribute"],"stringId":"strength84"},"64474":{"connections":[],"group":1134,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":9,"skill":64474,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery27"},"64488":{"connections":[{"id":7201,"orbit":7}],"group":752,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Critical Chance","orbit":7,"orbitIndex":3,"skill":64488,"stats":["Projectiles have 12% increased Critical Hit Chance against Enemies further than 6m"],"stringId":"projectiles35"},"64489":{"connections":[{"id":6952,"orbit":0},{"id":25162,"orbit":0}],"group":106,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area","orbit":2,"orbitIndex":14,"skill":64489,"stats":["6% increased Area of Effect for Attacks"],"stringId":"area_attacks33"},"64492":{"connections":[{"id":46688,"orbit":7}],"group":1248,"icon":"Art/2DArt/SkillIcons/passives/onehanddamage.dds","name":"One Handed Attack Speed","orbit":7,"orbitIndex":9,"skill":64492,"stats":["3% increased Attack Speed with One Handed Melee Weapons"],"stringId":"one_handed9"},"64525":{"connections":[{"id":58855,"orbit":0}],"group":251,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Easy Target","orbit":7,"orbitIndex":4,"recipe":["Guilt","Greed","Fear"],"skill":64525,"stats":["Your Hits cannot be Evaded by Heavy Stunned Enemies"],"stringId":"stun21"},"64543":{"connections":[],"group":1354,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","isNotable":true,"name":"Unbound Forces","orbit":5,"orbitIndex":57,"recipe":["Disgust","Envy","Guilt"],"skill":64543,"stats":["40% increased Chill Duration on Enemies","40% increased Shock Duration","25% increased Magnitude of Chill you inflict","25% increased Magnitude of Shock you inflict"],"stringId":"elemental30"},"64550":{"connections":[{"id":22532,"orbit":0}],"group":899,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","name":"Damage vs Immobilised","orbit":2,"orbitIndex":5,"skill":64550,"stats":["20% increased Damage against Immobilised Enemies"],"stringId":"immobilisation5"},"64572":{"connections":[{"id":48925,"orbit":0}],"group":350,"icon":"Art/2DArt/SkillIcons/passives/avoidchilling.dds","name":"Freeze Buildup","orbit":7,"orbitIndex":20,"skill":64572,"stats":["15% increased Freeze Buildup"],"stringId":"chill_and_freeze28"},"64591":{"ascendancyName":"Disciple of Varashta","connections":[{"id":34207,"orbit":-8}],"flavourText":"\"I have seen countless battles. I know war! The taste of defeat... The taste of victory! But in this war... everything is at stake. So yes, those you speak of will know my blade. I will do whatever I must!\" \\n\\nRuzhan confided in his Tale-woman, Navira.","group":641,"icon":"Art/2DArt/SkillIcons/passives/DiscipleoftheDjinn/FireDjinnFlameRunes.dds","isNotable":true,"name":"Ruzhan's Trap","nodeOverlay":{"alloc":"Disciple of VarashtaFrameLargeAllocated","path":"Disciple of VarashtaFrameLargeCanAllocate","unalloc":"Disciple of VarashtaFrameLargeNormal"},"orbit":9,"orbitIndex":106,"skill":64591,"stats":["Grants Skill: Ruzhan's Trap"],"stringId":"AscendancySorceress3Notable16"},"64601":{"connections":[],"flavourText":"The body is a weapon waiting to be mastered.","group":1338,"icon":"Art/2DArt/SkillIcons/passives/HollowPalmTechniqueKeystone.dds","isKeystone":true,"name":"Hollow Palm Technique","orbit":0,"orbitIndex":0,"skill":64601,"stats":["Can Attack as though using a Quarterstaff while both of your hand slots are empty","Unarmed Attacks that would use an Equipped Quarterstaff's damage have:","Base Unarmed Physical damage replaced with damage based on their Skill Level","1% more Attack Speed per 75 Item Evasion on Equipped Armour Items","+0.1% to Critical Hit Chance per 10 Item Energy Shield on Equipped Armour Items"],"stringId":"passive_keystone_hollow_palm_technique"},"64637":{"connections":[{"id":32543,"orbit":7}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":14,"skill":64637,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"spell_suppression7"},"64643":{"connections":[{"id":56360,"orbit":0},{"id":27176,"orbit":0}],"group":1094,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","name":"Power Charge Duration","orbit":2,"orbitIndex":3,"skill":64643,"stats":["20% increased Power Charge Duration"],"stringId":"power_charges3"},"64650":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[],"group":1179,"icon":"Art/2DArt/SkillIcons/passives/life1.dds","isNotable":true,"name":"Wary Dodging","orbit":2,"orbitIndex":12,"recipe":["Suffering","Suffering","Disgust"],"skill":64650,"stats":["Cannot be Light Stunned if you haven't been Hit Recently"],"stringId":"stun_threshold16_"},"64653":{"connections":[{"id":47420,"orbit":7}],"group":283,"icon":"Art/2DArt/SkillIcons/passives/MinionsandManaNode.dds","name":"Minion Damage","orbit":7,"orbitIndex":15,"skill":64653,"stats":["Minions deal 16% increased Damage"],"stringId":"minion_reservation8"},"64659":{"connections":[{"id":3355,"orbit":0}],"group":638,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","isNotable":true,"name":"Lasting Boons","orbit":3,"orbitIndex":21,"recipe":["Isolation","Fear","Greed"],"skill":64659,"stats":["20% reduced Slowing Potency of Debuffs on You","Buffs on you expire 10% slower"],"stringId":"slowed_enemies18"},"64665":{"connections":[{"id":51847,"orbit":0},{"id":21274,"orbit":0}],"group":877,"icon":"Art/2DArt/SkillIcons/passives/accuracystr.dds","name":"Attack Damage and Accuracy","orbit":4,"orbitIndex":30,"skill":64665,"stats":["8% increased Attack Damage","5% increased Accuracy Rating"],"stringId":"attack34"},"64683":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":685,"icon":"Art/2DArt/SkillIcons/passives/MasteryGroupArmour.dds","isOnlyImage":true,"name":"Armour Mastery","orbit":0,"orbitIndex":0,"skill":64683,"stats":[],"stringId":"mastery_armour_6287"},"64700":{"connections":[{"id":61632,"orbit":0}],"group":1514,"icon":"Art/2DArt/SkillIcons/passives/damagestaff.dds","name":"Quarterstaff Freeze and Daze Buildup","orbit":0,"orbitIndex":0,"skill":64700,"stats":["5% chance to Daze on Hit","20% increased Freeze Buildup with Quarterstaves"],"stringId":"quarterstaff15"},"64724":{"connections":[],"group":188,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Flammability and Ignite Magnitude","orbit":2,"orbitIndex":14,"skill":64724,"stats":["15% increased Flammability Magnitude","8% increased Ignite Magnitude"],"stringId":"ignite3"},"64726":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryProjectilePattern","connections":[{"id":46296,"orbit":0},{"id":38479,"orbit":0}],"group":959,"icon":"Art/2DArt/SkillIcons/passives/MasteryProjectiles.dds","isOnlyImage":true,"name":"Projectile Mastery","orbit":2,"orbitIndex":8,"skill":64726,"stats":[],"stringId":"mastery_projectile_6651"},"64747":{"connections":[{"id":33838,"orbit":-5}],"group":1174,"icon":"Art/2DArt/SkillIcons/passives/PhysicalDamageChaosNode.dds","name":"Ailment Chance and Duration","orbit":4,"orbitIndex":39,"skill":64747,"stats":["6% increased chance to inflict Ailments","6% increased Duration of Damaging Ailments on Enemies"],"stringId":"ailments45"},"64770":{"connections":[],"group":384,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","isNotable":true,"name":"Morgana, the Storm Seer","orbit":3,"orbitIndex":19,"recipe":["Envy","Despair","Paranoia"],"skill":64770,"stats":["+8% of Armour also applies to Elemental Damage","10% faster start of Energy Shield Recharge","You cannot be Electrocuted","50% reduced effect of Shock on you"],"stringId":"energy_shield_and_armour24"},"64789":{"ascendancyName":"Stormweaver","connections":[{"id":8867,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Mana Regeneration","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":68,"skill":64789,"stats":["12% increased Mana Regeneration Rate"],"stringId":"AscendancySorceress1Small1"},"64804":{"connections":[],"group":485,"icon":"Art/2DArt/SkillIcons/passives/PuppeteerNode.dds","name":"Puppet Master chance","orbit":3,"orbitIndex":10,"skill":64804,"stats":["25% increased Duration of each Puppet Master stack"],"stringId":"Puppetmaster3"},"64807":{"connections":[{"id":59945,"orbit":0}],"group":249,"icon":"Art/2DArt/SkillIcons/passives/AreaDmgNode.dds","name":"Attack Area Damage and Area","orbit":2,"orbitIndex":20,"skill":64807,"stats":["6% increased Attack Area Damage","4% increased Area of Effect for Attacks"],"stringId":"slam_area1"},"64819":{"connections":[{"id":47753,"orbit":-3}],"group":92,"icon":"Art/2DArt/SkillIcons/passives/firedamagestr.dds","name":"Fire Damage and Armour ","orbit":4,"orbitIndex":48,"skill":64819,"stats":["6% increased Fire Damage","10% increased Armour"],"stringId":"ignite_mitigation2"},"64851":{"connections":[{"id":21324,"orbit":0}],"group":1146,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Flashy Parrying","orbit":7,"orbitIndex":9,"recipe":["Greed","Guilt","Greed"],"skill":64851,"stats":["12% increased Block chance","20% increased Parried Debuff Duration"],"stringId":"deflect10"},"64870":{"connections":[{"id":27439,"orbit":0}],"group":388,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","name":"Armour and Applies to Fire Damage","orbit":0,"orbitIndex":0,"skill":64870,"stats":["10% increased Armour","+10% of Armour also applies to Fire Damage"],"stringId":"armour13_"},"64900":{"connections":[{"id":54999,"orbit":-4}],"group":132,"icon":"Art/2DArt/SkillIcons/passives/MeleeAoENode.dds","name":"Ancestral Boosted Attack Damage and Stun","orbit":7,"orbitIndex":23,"skill":64900,"stats":["10% increased Stun Buildup","Ancestrally Boosted Attacks deal 16% increased Damage"],"stringId":"melee59_"},"64927":{"connections":[{"id":52464,"orbit":4},{"id":51741,"orbit":-4},{"id":54351,"orbit":-6}],"group":1280,"icon":"Art/2DArt/SkillIcons/passives/ManaLeechThemedNode.dds","name":"Mana Leech","orbit":6,"orbitIndex":18,"skill":64927,"stats":["10% increased amount of Mana Leeched"],"stringId":"life_on_kill4"},"64939":{"connections":[{"id":30123,"orbit":0}],"group":424,"icon":"Art/2DArt/SkillIcons/passives/2handeddamage.dds","name":"Two Handed Damage","orbit":2,"orbitIndex":12,"skill":64939,"stats":["10% increased Damage with Two Handed Weapons"],"stringId":"two_handed2"},"64948":{"connections":[{"id":48264,"orbit":0}],"group":332,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","name":"Aura Effect","orbit":2,"orbitIndex":9,"skill":64948,"stats":["Aura Skills have 5% increased Magnitudes"],"stringId":"auras27"},"64962":{"applyToArmour":true,"ascendancyName":"Smith of Kitava","connections":[],"group":19,"icon":"Art/2DArt/SkillIcons/passives/SmithofKitava/SmithOfKitavaNormalArmourBonus11.dds","isNotable":true,"name":"Dedication to Kitava","nodeOverlay":{"alloc":"Smith of KitavaFrameLargeAllocated","path":"Smith of KitavaFrameLargeCanAllocate","unalloc":"Smith of KitavaFrameLargeNormal"},"orbit":0,"orbitIndex":0,"skill":64962,"stats":["Body Armour grants +100% of Armour also applies to Chaos Damage"],"stringId":"AscendancyWarrior3Notable6_11"},"64990":{"connections":[{"id":60891,"orbit":0},{"id":18897,"orbit":0},{"id":27705,"orbit":0}],"group":1498,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalOwl.dds","name":"Intelligence","orbit":2,"orbitIndex":10,"skill":64990,"stats":["+8 to Intelligence"],"stringId":"azmerianimals53_"},"64995":{"connections":[{"id":17924,"orbit":0}],"group":408,"icon":"Art/2DArt/SkillIcons/passives/damage.dds","name":"Damage against Enemies on Low Life","orbit":3,"orbitIndex":0,"skill":64995,"stats":["30% increased Damage with Hits against Enemies that are on Low Life"],"stringId":"enemies_on_low_life1"},"64996":{"connections":[{"id":7782,"orbit":-4},{"id":4810,"orbit":7}],"group":1172,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleed Chance","orbit":7,"orbitIndex":20,"skill":64996,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"physical_witch9"},"65009":{"connections":[{"id":29517,"orbit":0},{"id":31855,"orbit":7},{"id":61373,"orbit":0}],"group":1131,"icon":"Art/2DArt/SkillIcons/passives/plusattribute.dds","isAttribute":true,"name":"Attribute","options":[{"icon":"Art/2DArt/SkillIcons/passives/plusstrength.dds","id":26297,"name":"Strength","stats":["+5 to Strength"]},{"icon":"Art/2DArt/SkillIcons/passives/plusdexterity.dds","id":14927,"name":"Dexterity","stats":["+5 to Dexterity"]},{"icon":"Art/2DArt/SkillIcons/passives/plusintelligence.dds","id":57022,"name":"Intelligence","stats":["+5 to Intelligence"]}],"orbit":6,"orbitIndex":30,"skill":65009,"stats":["+5 to any Attribute"],"stringId":"dexterity36"},"65016":{"connections":[{"id":11505,"orbit":0}],"group":632,"icon":"Art/2DArt/SkillIcons/passives/firedamageint.dds","isNotable":true,"name":"Intense Flames","orbit":3,"orbitIndex":16,"recipe":["Guilt","Suffering","Fear"],"skill":65016,"stats":["35% increased Damage with Hits against Burning Enemies"],"stringId":"fire35"},"65023":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourPattern","connections":[],"group":708,"icon":"Art/2DArt/SkillIcons/passives/dmgreduction.dds","isNotable":true,"name":"Impenetrable Shell","orbit":3,"orbitIndex":6,"recipe":["Paranoia","Paranoia","Ire"],"skill":65023,"stats":["Defend with 150% of Armour against Hits from Enemies that are further than 6m away"],"stringId":"armour36"},"65042":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryImpalePattern","connections":[],"group":190,"icon":"Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.dds","isOnlyImage":true,"name":"Rage Mastery","orbit":1,"orbitIndex":6,"skill":65042,"stats":[],"stringId":"mastery_rage_6669"},"65091":{"connections":[{"id":51707,"orbit":6}],"group":1475,"icon":"Art/2DArt/SkillIcons/passives/evade.dds","name":"Evasion","orbit":7,"orbitIndex":20,"skill":65091,"stats":["15% increased Evasion Rating"],"stringId":"evasion16"},"65149":{"connections":[],"group":1029,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break Effect","orbit":2,"orbitIndex":20,"skill":65149,"stats":["10% increased effect of Fully Broken Armour"],"stringId":"armour_break20"},"65154":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryTotemPattern","connections":[],"group":182,"icon":"Art/2DArt/SkillIcons/passives/AttackTotemMastery.dds","isOnlyImage":true,"name":"Totem Mastery","orbit":0,"orbitIndex":0,"skill":65154,"stats":[],"stringId":"mastery_totem235"},"65160":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryStunPattern","connections":[{"id":44069,"orbit":0}],"group":161,"icon":"Art/2DArt/SkillIcons/passives/stunstr.dds","isNotable":true,"name":"Titanic","orbit":3,"orbitIndex":7,"recipe":["Despair","Paranoia","Guilt"],"skill":65160,"stats":["30% increased Stun Buildup","30% increased Stun Threshold","5% increased Strength"],"stringId":"stun14"},"65161":{"connections":[],"group":1436,"icon":"Art/2DArt/SkillIcons/passives/AzmeriVividCat.dds","name":"Deflection","orbit":2,"orbitIndex":16,"skill":65161,"stats":["Gain Deflection Rating equal to 8% of Evasion Rating"],"stringId":"azmerianimals40"},"65167":{"connections":[{"id":712,"orbit":4}],"group":1427,"icon":"Art/2DArt/SkillIcons/passives/AzmeriPrimalMonkey.dds","name":"Area Damage and Companion Area of Effect","orbit":0,"orbitIndex":0,"skill":65167,"stats":["6% increased Area Damage","Companions have 10% increased Area of Effect"],"stringId":"companions61"},"65173":{"ascendancyName":"Invoker","connections":[],"group":1554,"icon":"Art/2DArt/SkillIcons/passives/Invoker/InvokerEvasionGrantsPhysicalDamageReduction.dds","isNotable":true,"name":"...and Protect me from Harm","nodeOverlay":{"alloc":"InvokerFrameLargeAllocated","path":"InvokerFrameLargeCanAllocate","unalloc":"InvokerFrameLargeNormal"},"orbit":9,"orbitIndex":139,"skill":65173,"stats":["Physical Damage Reduction from Armour is based on your combined Armour and Evasion Rating","35% less Evasion Rating"],"stringId":"AscendancyMonk2Notable2_"},"65176":{"connections":[{"id":14045,"orbit":0},{"id":42250,"orbit":0}],"group":1137,"icon":"Art/2DArt/SkillIcons/passives/projectilespeed.dds","name":"Projectile Damage","orbit":6,"orbitIndex":48,"skill":65176,"stats":["10% increased Projectile Damage"],"stringId":"ranged15"},"65189":{"connections":[{"id":17260,"orbit":0}],"group":355,"icon":"Art/2DArt/SkillIcons/passives/DruidGenericShapeshiftNode.dds","name":"Shapeshifted Elemental Penetration","orbit":2,"orbitIndex":7,"skill":65189,"stats":["Damage Penetrates 6% of Enemy Elemental Resistances while Shapeshifted"],"stringId":"shapeshifting7"},"65192":{"connectionArt":"CharacterPlanned","connections":[{"id":63170,"orbit":2147483647}],"group":114,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Cast and Attack Speed","nodeOverlay":{"alloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframeactive.dds","path":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds","unalloc":"art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"},"orbit":3,"orbitIndex":11,"skill":65192,"stats":["Spells Cast by Totems have 4% increased Cast Speed","Attacks used by Totems have 4% increased Attack Speed"],"stringId":"oracle_totems1","unlockConstraint":{"ascendancy":"Oracle","nodes":[5571]}},"65193":{"connections":[{"id":48714,"orbit":0},{"id":10245,"orbit":0}],"group":488,"icon":"Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNotable.dds","isNotable":true,"name":"Viciousness","orbit":3,"orbitIndex":13,"recipe":["Disgust","Greed","Paranoia"],"skill":65193,"stats":["3% increased Attack Speed per Enemy in Close Range","+10 to Dexterity"],"stringId":"melee34"},"65204":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryChargesPattern","connections":[{"id":30615,"orbit":0},{"id":10162,"orbit":0}],"group":1457,"icon":"Art/2DArt/SkillIcons/passives/chargeint.dds","isNotable":true,"name":"Overflowing Power","orbit":2,"orbitIndex":7,"recipe":["Isolation","Envy","Greed"],"skill":65204,"stats":["+2 to Maximum Power Charges"],"stringId":"power_charges8"},"65207":{"connections":[{"id":63566,"orbit":-6}],"group":1285,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":3,"orbitIndex":14,"skill":65207,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"evasion20"},"65212":{"connections":[{"id":58539,"orbit":0},{"id":34968,"orbit":0}],"group":1482,"icon":"Art/2DArt/SkillIcons/passives/ReducedSkillEffectDurationNode.dds","name":"Slow Effect on You","orbit":7,"orbitIndex":6,"skill":65212,"stats":["8% reduced Slowing Potency of Debuffs on You"],"stringId":"spell_suppression11+"},"65226":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryInstillationsPattern","connections":[],"group":479,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Infusion Mastery","orbit":0,"orbitIndex":0,"skill":65226,"stats":[],"stringId":"mastery_infusion294"},"65228":{"ascendancyName":"Martial Artist","connections":[{"id":61586,"orbit":4}],"group":1559,"icon":"Art/2DArt/SkillIcons/passives/MartialArtist/MartialArtistNode.dds","name":"Attack Speed","nodeOverlay":{"alloc":"Martial ArtistFrameSmallAllocated","path":"Martial ArtistFrameSmallCanAllocate","unalloc":"Martial ArtistFrameSmallNormal"},"orbit":4,"orbitIndex":28,"skill":65228,"stats":["4% increased Attack Speed"],"stringId":"AscendancyMonk1Small2"},"65243":{"connections":[{"id":46421,"orbit":0}],"group":329,"icon":"Art/2DArt/SkillIcons/passives/auraeffect.dds","isNotable":true,"name":"Enveloping Presence","orbit":2,"orbitIndex":22,"recipe":["Fear","Greed","Fear"],"skill":65243,"stats":["30% increased Presence Area of Effect","Aura Skills have 6% increased Magnitudes"],"stringId":"auras17"},"65248":{"connections":[],"group":770,"icon":"Art/2DArt/SkillIcons/passives/elementaldamage.dds","name":"Elemental Ailment Duration","orbit":4,"orbitIndex":24,"skill":65248,"stats":["10% increased Duration of Ignite, Shock and Chill on Enemies"],"stringId":"elemental49"},"65256":{"connections":[{"id":34845,"orbit":0},{"id":40626,"orbit":0}],"group":1306,"icon":"Art/2DArt/SkillIcons/passives/trapsmax.dds","isNotable":true,"name":"Widespread Coverage","orbit":0,"orbitIndex":0,"recipe":["Guilt","Disgust","Despair"],"skill":65256,"stats":["50% increased Hazard Area of Effect","20% reduced Hazard Damage"],"stringId":"hazards18"},"65265":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBucklersPattern","connections":[{"id":31366,"orbit":0},{"id":17146,"orbit":0}],"group":1389,"icon":"Art/2DArt/SkillIcons/passives/BucklersNotable1.dds","isNotable":true,"name":"Swift Interruption","orbit":0,"orbitIndex":0,"recipe":["Guilt","Envy","Greed"],"skill":65265,"stats":["12% increased Attack Speed if you've successfully Parried Recently","6% increased Movement Speed if you've successfully Parried Recently"],"stringId":"deflect9"},"65287":{"connections":[{"id":5580,"orbit":0}],"group":158,"icon":"Art/2DArt/SkillIcons/passives/totemandbrandlife.dds","name":"Totem Damage","orbit":2,"orbitIndex":6,"skill":65287,"stats":["15% increased Totem Damage"],"stringId":"totems16"},"65290":{"connections":[{"id":57069,"orbit":0}],"group":1488,"icon":"Art/2DArt/SkillIcons/passives/lightningint.dds","name":"Lightning Damage and Resistance","orbit":0,"orbitIndex":0,"skill":65290,"stats":["5% increased Lightning Damage","+3% to Lightning Resistance"],"stringId":"shock22_"},"65310":{"connections":[{"id":22682,"orbit":0}],"group":1235,"icon":"Art/2DArt/SkillIcons/passives/spellcritical.dds","name":"Additional Spell Projectiles","orbit":3,"orbitIndex":2,"skill":65310,"stats":["6% chance for Spell Skills to fire 2 additional Projectiles"],"stringId":"spells13_"},"65322":{"connections":[{"id":54818,"orbit":0},{"id":13425,"orbit":0},{"id":47709,"orbit":0},{"id":58718,"orbit":0}],"group":744,"icon":"Art/2DArt/SkillIcons/passives/Blood2.dds","name":"Bleeding Chance","orbit":0,"orbitIndex":0,"skill":65322,"stats":["5% chance to inflict Bleeding on Hit"],"stringId":"bleed10"},"65324":{"connections":[{"id":1861,"orbit":7},{"id":9863,"orbit":-5}],"group":620,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageDeflect.dds","name":"Armour applies to Elemental Damage and Deflection","orbit":3,"orbitIndex":16,"skill":65324,"stats":["+5% of Armour also applies to Elemental Damage","Gain Deflection Rating equal to 5% of Evasion Rating"],"stringId":"armour_and_evasion50"},"65328":{"connections":[{"id":48565,"orbit":0}],"group":272,"icon":"Art/2DArt/SkillIcons/passives/MiracleMaker.dds","name":"Sentinels","orbit":2,"orbitIndex":2,"skill":65328,"stats":["10% increased Damage","Minions deal 10% increased Damage"],"stringId":"sentinels2"},"65353":{"activeEffectImage":"Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryBannerPattern","connections":[],"group":535,"icon":"Art/2DArt/SkillIcons/passives/AttackBlindMastery.dds","isOnlyImage":true,"name":"Banner Mastery","orbit":0,"orbitIndex":0,"skill":65353,"stats":[],"stringId":"mastery_banner304"},"65393":{"connections":[{"id":2732,"orbit":-2},{"id":11672,"orbit":0}],"group":946,"icon":"Art/2DArt/SkillIcons/passives/mana.dds","name":"Mana Cost Efficiency","orbit":2,"orbitIndex":16,"skill":65393,"stats":["8% increased Mana Cost Efficiency"],"stringId":"mana_regeneration46"},"65413":{"ascendancyName":"Stormweaver","connections":[{"id":12882,"orbit":0}],"group":547,"icon":"Art/2DArt/SkillIcons/passives/Stormweaver/StormweaverNode.dds","name":"Spell Critical Chance","nodeOverlay":{"alloc":"StormweaverFrameSmallAllocated","path":"StormweaverFrameSmallCanAllocate","unalloc":"StormweaverFrameSmallNormal"},"orbit":8,"orbitIndex":4,"skill":65413,"stats":["12% increased Critical Hit Chance for Spells"],"stringId":"AscendancySorceress1Small3"},"65424":{"connections":[{"id":58109,"orbit":0}],"group":869,"icon":"Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.dds","name":"Dual Wielding Damage","orbit":3,"orbitIndex":3,"skill":65424,"stats":["12% increased Attack Damage while Dual Wielding"],"stringId":"dual_wielding2"},"65437":{"connections":[{"id":63064,"orbit":0}],"group":1059,"icon":"Art/2DArt/SkillIcons/passives/EnergyShieldNode.dds","name":"Energy Shield Delay","orbit":2,"orbitIndex":14,"skill":65437,"stats":["6% faster start of Energy Shield Recharge"],"stringId":"energy_shield_recovery4"},"65439":{"connections":[{"id":12821,"orbit":0}],"group":535,"icon":"Art/2DArt/SkillIcons/passives/BannerResourceAreaNode.dds","name":"Banner Aura Effect","orbit":1,"orbitIndex":4,"skill":65439,"stats":["Banner Skills have 12% increased Aura Magnitudes"],"stringId":"banners2"},"65468":{"connections":[{"id":61432,"orbit":0},{"id":25807,"orbit":0}],"group":916,"icon":"Art/2DArt/SkillIcons/passives/MineAreaOfEffectNode.dds","isNotable":true,"name":"Repeating Explosives","orbit":0,"orbitIndex":0,"recipe":["Suffering","Despair","Isolation"],"skill":65468,"stats":["Grenades have 15% chance to activate a second time"],"stringId":"crossbow10"},"65472":{"connections":[{"id":9323,"orbit":0}],"group":112,"icon":"Art/2DArt/SkillIcons/passives/IncreasedPhysicalDamage.dds","name":"Glory Generation","orbit":3,"orbitIndex":21,"skill":65472,"stats":["15% increased Glory generation"],"stringId":"glory26"},"65493":{"connections":[{"id":43854,"orbit":2}],"group":571,"icon":"Art/2DArt/SkillIcons/passives/areaofeffect.dds","name":"Area and Presence","orbit":3,"orbitIndex":10,"skill":65493,"stats":["15% reduced Presence Area of Effect","6% increased Area of Effect"],"stringId":"auras33"},"65498":{"connections":[{"id":37026,"orbit":0}],"group":1470,"icon":"Art/2DArt/SkillIcons/passives/ArmourBreak1BuffIcon.dds","name":"Armour Break","orbit":1,"orbitIndex":10,"skill":65498,"stats":["Break 20% increased Armour"],"stringId":"physical43"},"65509":{"connections":[{"id":41384,"orbit":0},{"id":51821,"orbit":0}],"group":286,"icon":"Art/2DArt/SkillIcons/passives/ArmourElementalDamageEnergyShieldRecharge.dds","name":"Armour Applies to Elemental Damage and Energy Shield Delay","orbit":3,"orbitIndex":22,"skill":65509,"stats":["+5% of Armour also applies to Elemental Damage","4% faster start of Energy Shield Recharge"],"stringId":"energy_shield_and_armour41"},"65518":{"ascendancyName":"Blood Mage","connections":[],"group":993,"icon":"Art/2DArt/SkillIcons/passives/Bloodmage/BloodMageSaguineTides.dds","isNotable":true,"name":"Sanguine Tides","nodeOverlay":{"alloc":"Blood MageFrameLargeAllocated","path":"Blood MageFrameLargeCanAllocate","unalloc":"Blood MageFrameLargeNormal"},"orbit":5,"orbitIndex":6,"skill":65518,"stats":["Flasks do not recover Life","Gain 1 Life Flask Charge per 2% Life spent","On Hitting an Enemy while a Life Flask is at full Charges, 40% of its Charges are consumed","Gain 1% of damage as Physical damage for 5 seconds per Charge consumed this way"],"stringId":"AscendancyWitch2Notable9"}},"tree":"Default"} \ No newline at end of file diff --git a/src/TreeData/0_5/tree.lua b/src/TreeData/0_5/tree.lua index 4d8122b1d9..7b8747266b 100644 --- a/src/TreeData/0_5/tree.lua +++ b/src/TreeData/0_5/tree.lua @@ -1406,14 +1406,17 @@ return { ClassesWitch=34, ClassesWitchhunter=35 }, - ["ascendancy-background_4000_4000_BC7.dds.zst"]={ + ["ascendancy-background_4008_4008_BC7.dds.zst"]={ BGTree=1, BGTreeActive=2 }, - ["background_1024_1024_BC7.dds.zst"]={ + ["background_1048_1048_BC7.dds.zst"]={ Background2=1 }, - ["group-background_104_104_BC7.dds.zst"]={ + ["group-background_100_100_BC7.dds.zst"]={ + AscendancyMiddle=1 + }, + ["group-background_112_112_BC7.dds.zst"]={ PSSkillFrame=6, PSSkillFrameActive=4, PSSkillFrameHighlighted=5, @@ -1421,7 +1424,7 @@ return { ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframecanallocate.dds"]=2, ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreenpassiveframenormal.dds"]=3 }, - ["group-background_152_156_BC7.dds.zst"]={ + ["group-background_160_164_BC7.dds.zst"]={ JewelFrameAllocated=16, JewelFrameCanAllocate=17, JewelFrameUnallocated=18, @@ -1441,15 +1444,15 @@ return { ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframecanallocate.dds"]=11, ["art/textures/interface/2d/2dart/uiimages/ingame/oraclepassiveskillscreennotableframenormal.dds"]=12 }, - ["group-background_156_156_BC7.dds.zst"]={ + ["group-background_164_164_BC7.dds.zst"]={ ["art/textures/interface/2d/2dart/uiimages/ingame/delirium/voicesjewel/voicesjewelframe.dds"]=1 }, - ["group-background_160_160_BC7.dds.zst"]={ + ["group-background_168_168_BC7.dds.zst"]={ ["art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargeallocated.dds"]=1, ["art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargecanallocate.dds"]=2, ["art/textures/interface/2d/2dart/uiimages/ingame/anointpassiveskillscreenframelargenormal.dds"]=3 }, - ["group-background_160_164_BC7.dds.zst"]={ + ["group-background_168_172_BC7.dds.zst"]={ ["Abyssal LichFrameSmallAllocated"]=1, ["Abyssal LichFrameSmallCanAllocate"]=2, ["Abyssal LichFrameSmallNormal"]=3, @@ -1520,7 +1523,7 @@ return { WitchhunterFrameSmallCanAllocate=5, WitchhunterFrameSmallNormal=6 }, - ["group-background_208_208_BC7.dds.zst"]={ + ["group-background_216_216_BC7.dds.zst"]={ ["Abyssal LichFrameLargeAllocated"]=1, ["Abyssal LichFrameLargeCanAllocate"]=2, ["Abyssal LichFrameLargeNormal"]=3, @@ -1591,30 +1594,27 @@ return { WitchhunterFrameLargeCanAllocate=5, WitchhunterFrameLargeNormal=6 }, - ["group-background_220_224_BC7.dds.zst"]={ + ["group-background_228_232_BC7.dds.zst"]={ KeystoneFrameAllocated=1, KeystoneFrameCanAllocate=2, KeystoneFrameUnallocated=3 }, - ["group-background_360_360_BC7.dds.zst"]={ + ["group-background_368_368_BC7.dds.zst"]={ PSGroupBackground1=1, PSGroupBackgroundSmallBlank=1 }, - ["group-background_468_468_BC7.dds.zst"]={ + ["group-background_476_476_BC7.dds.zst"]={ PSGroupBackground2=1, PSGroupBackgroundMediumBlank=1 }, - ["group-background_528_528_BC7.dds.zst"]={ + ["group-background_536_536_BC7.dds.zst"]={ PSStartNodeBackgroundInactive=1 }, - ["group-background_740_376_BC7.dds.zst"]={ + ["group-background_748_392_BC7.dds.zst"]={ PSGroupBackground3=1, PSGroupBackgroundLargeBlank=1 }, - ["group-background_92_92_BC7.dds.zst"]={ - AscendancyMiddle=1 - }, - ["jewel-sockets_152_156_BC7.dds.zst"]={ + ["jewel-sockets_160_164_BC7.dds.zst"]={ ["Against the Darkness"]=15, ["Controlled Metamorphosis"]=4, Diamond=6, @@ -1636,7 +1636,7 @@ return { ["Undying Hate"]=2, Voices=5 }, - ["legion_1024_1024_BC7.dds.zst"]={ + ["legion_1032_1032_BC7.dds.zst"]={ ["art/textures/interface/2d/2dart/uiimages/ingame/abyss/abysspassiveskillscreenjewelcircle1.dds"]=1 }, ["legion_128_128_BC1.dds.zst"]={ @@ -1680,7 +1680,7 @@ return { ["Art/2DArt/SkillIcons/passives/VaalNotableOffensive.dds"]=38, ["Art/2DArt/SkillIcons/passives/WindDancer.dds"]=39 }, - ["legion_564_564_BC7.dds.zst"]={ + ["legion_572_572_BC7.dds.zst"]={ ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle1.dds"]=1, ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreeneternalempirejewelcircle2.dds"]=2, ["art/textures/interface/2d/2dart/uiimages/ingame/passiveskillscreenkalguuranjewelcircle1.dds"]=3, @@ -1701,7 +1701,7 @@ return { ["Art/2DArt/SkillIcons/passives/VaalDefensive.dds"]=4, ["Art/2DArt/SkillIcons/passives/VaalOffensive.dds"]=5 }, - ["mastery-active-effect_776_768_BC7.dds.zst"]={ + ["mastery-active-effect_784_776_BC7.dds.zst"]={ ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryAccuracyPattern"]=1, ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEnergyShieldPattern"]=2, ["Art/2DArt/UIImages/InGame/PassiveMastery/MasteryBackgroundGraphic/MasteryArmourAndEvasionPattern"]=3, @@ -51835,7 +51835,7 @@ return { }, group=1388, icon="Art/2DArt/SkillIcons/passives/CompanionsNode1.dds", - name="Defenses and Companion Life", + name="Defences and Companion Life", orbit=3, orbitIndex=2, skill=16568, @@ -88444,7 +88444,7 @@ return { group=1467, icon="Art/2DArt/SkillIcons/passives/trapdamage.dds", isNotable=true, - name="Devestating Devices", + name="Devastating Devices", orbit=6, orbitIndex=36, skill=37688, @@ -107717,7 +107717,7 @@ return { }, group=935, icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", - name="Life Leech. Armour and Evasion while Leeching", + name="Life Leech, Armour and Evasion while Leeching", orbit=2, orbitIndex=23, skill=48583, @@ -125906,7 +125906,7 @@ return { }, group=935, icon="Art/2DArt/SkillIcons/passives/lifeleech.dds", - name="Life Leech. Armour and Evasion while Leeching", + name="Life Leech, Armour and Evasion while Leeching", orbit=2, orbitIndex=19, skill=58783, diff --git a/src/_SimpleGraphic.def.lua b/src/_SimpleGraphic.def.lua index 158ed456dc..287475e154 100644 --- a/src/_SimpleGraphic.def.lua +++ b/src/_SimpleGraphic.def.lua @@ -104,7 +104,7 @@ local texHandleClass = {} local textureInfoClass = {} ---@class Texture -local Texture = {} +Texture = {} ---@return TexHandle function Texture.new() end @@ -218,8 +218,21 @@ function DrawImage(imgHandle, left, top, width, height, tcLeft, tcTop, tcRight, ---@param top number ---@param width number ---@param height number ----@param stackIdx integer must be positive ----@param mask? integer must be positive +---@param stackIdx integer must be positive +---@param mask? integer must be positive +function DrawImage(imgHandle, left, top, width, height, stackIdx, mask) end + +---@param imgHandle? ImageHandle +---@param left number +---@param top number +---@param width number +---@param height number +---@param tcLeft number +---@param tcTop number +---@param tcRight number +---@param tcBottom number +---@param stackIdx integer must be positive +---@param mask? integer must be positive function DrawImage(imgHandle, left, top, width, height, tcLeft, tcTop, tcRight, tcBottom, stackIdx, mask) end ---@param imgHandle? ImageHandle @@ -241,6 +254,7 @@ function DrawImageQuad(imgHandle, x1, y1, x2, y2, x3, y3, x4, y4) end ---@param x3 number ---@param y3 number ---@param x4 number +---@param y4 number ---@param s1 number ---@param t1 number ---@param s2 number @@ -260,8 +274,29 @@ function DrawImageQuad(imgHandle, x1, y1, x2, y2, x3, y3, x4, y4, s1, t1, s2, t2 ---@param y3 number ---@param x4 number ---@param y4 number ----@param stackIdx integer? must be positive ----@param mask integer? must be positive +---@param s1 number +---@param t1 number +---@param s2 number +---@param t2 number +---@param s3 number +---@param t3 number +---@param s4 number +---@param t4 number +---@param stackIdx integer must be positive +---@param mask? integer must be positive +function DrawImageQuad(imgHandle, x1, y1, x2, y2, x3, y3, x4, y4, s1, t1, s2, t2, s3, t3, s4, t4, stackIdx, mask) end + +---@param imgHandle? ImageHandle +---@param x1 number +---@param y1 number +---@param x2 number +---@param y2 number +---@param x3 number +---@param y3 number +---@param x4 number +---@param y4 number +---@param stackIdx integer must be positive +---@param mask? integer must be positive function DrawImageQuad(imgHandle, x1, y1, x2, y2, x3, y3, x4, y4, stackIdx, mask) end ---@param left number